@charset "utf-8";

/* article header */

.article__header--mv {
    background-image: url(../images/main-concept.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    aspect-ratio: 375/392;
    display: flex;
    align-items: flex-end;
    padding: 0 0 100px 30px;
}

.article__header--title {
    font-size: 3rem;
    line-height: 1.2;
    font-family: 'Old Standard TT', serif;
    font-style: italic;
    color: var(--primary-white);
}

.article__header--title::after{
    content:"";
    display:block;
    width: 100px;
    height: 1px;
    background: var(--primary-white);
    margin-top: 10px;
}

/* ここから内容 */

.lead {
    margin-top: 24px;
    color: var(--primary-brown);
    text-align: center;
}

.lead__concept {
    font-size: 2rem;
}

.lead__txt {
    font-size: 1.2rem;
    margin-top: 20px;
}

.profile {
    margin-bottom: 25px;
}

.profile__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 20px var(--contentPadding) 0;
}

.profile__names {
    display: flex; 
    gap: 40px;
    margin-top: 16px;
}

.profile__list dt,
.profile__list dd {
    display: block;
    text-align: center;
    font-size: 2rem;
}

.profile__list {
    margin: 0;
    flex: 1;
}

.profile__list:first-child{
    text-align: left;
}

.profile__list:last-child {
    text-align: right;
}

/*concept pc 始*/
@media screen and (min-width: 769px) {
  .article__header--mv {
    padding: 0 0 180px 100px;
    aspect-ratio: auto;
    height: clamp(320px, 55vh, 550px);
    background-position: center 35%;
}
  .article__header--title {
    font-size: 6rem;
  }

  .article__header--title::after {
    content:"";
    display:block;
    width: 200px;
    height: 1px;
    background: var(--primary-white);
    margin-top: 15px;
  }
}
/*concept pc　終 */