@charset "utf-8";
/* ======================
article__header
====================== */
.article__header{
    display: flex;
    min-height: 40vh;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    position: relative;

    /* 画像を配置 */
    background-image: url(../images/profile02.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-color: rgba(0, 0, 0, 0.6); 
    /* コンテンツの下に配置　*/
    z-index: 1; 
}

.hero {
    display: flex;
    padding: 32px 0;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.pages__hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    z-index: 2;
}

.pages__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.title__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 24px;
    gap: 8px;
}

.left__en {
    display: flex;
    padding: 4px 0 6px 8px;
    justify-content: center;
    align-items: flex-start;

    border-left: 1px solid var(--primary-orange);

    color: var(--primary-white);
    font-family: "Noto Sans JP";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.65px;
}

.left__ja {
    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--primary-white);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.2px;
}

.title__right {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    margin-top: 56px;
    align-self: stretch;
}

.right__lead {
    padding-bottom: 8px;
    align-items: center;

    border-bottom: 2px solid var(--primary-white);

    color: var(--primary-white);
    text-align: center;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.3; /* 26px */
    letter-spacing: 1px;
}

.right__detail {
    align-items: center;
    align-self: stretch;

    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.75px;
}

.topics {
   display: flex;
    padding: 0 16px;
    flex-direction: column;
    align-items: center;
    align-self: stretch; 

    position: relative;
}

.topics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 画像を配置 */
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* 不透明度を20%に設定 */
    opacity: 0.2; 
    
    /* コンテンツの下に配置　*/
    z-index: -1; 
}

/* .article__header pc */
@media screen and (min-width: 769px) {
    .article__header {
        min-height: unset;
    }

    .hero {
        padding: 104px 0;
    }

    .pages__hero {
        flex-direction: row;
        margin: 0 auto;
    }

    .pages__title {
       flex-direction: row; 
       align-items: center;
    }

    .title__left {
        padding-left: 0;
        align-items: center;
    }

    .left__en {
        font-size: 1.6rem;
    }

    .left__ja {
        font-size: 3.6rem;
    }

    .title__right {
       margin-top: 0;
       padding-left: 56px;
       padding-right: 0; 
    }

    .right__lead {
        font-size: 4.0rem;
    }

    .right__detail {
        font-size: 1.8rem;
    }

    .topics {
        padding: 0;
    }
}

/*==========================
fadeIn
==========================*/
.fadeIn {
    transform: translate(0,50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0,0);
    opacity: 1;
}

/* ----------
自己紹介
---------- */
.intro__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 32px;
}

.intro__img {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 32px;
    overflow: hidden;
    aspect-ratio: 3/2;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.intro__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px 6px 2px 2px;
}

.intro__name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    margin-top: -82px;
}

.intro__type {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;

    background: var(--about, linear-gradient(90deg, #2244A1 0%, #253A73 80%));

    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.75px;
}

.intro__namebox {
    display: flex;
    padding: 4px 16px;
    justify-content: center;
    align-items: center;
    gap: 24px;

    background: var(--about, linear-gradient(90deg, #2244A1 0%, #253A73 80%));
}

.namebox__kanji {
    color: var(--primary-white);
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 1px;
}

.namebox__kana {
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.8px;
}

.intro__from {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;

    background: var(--about, linear-gradient(90deg, #2244A1 0%, #253A73 80%));
    
    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.75px;
}

/* intro pc */
@media screen and (min-width: 769px) {
    .intro__container {
        flex-direction: row;
        align-items: center;
        margin-top: 0;
        padding: 96px 0;
    }

    .intro__img {
        width: 70%;
    }

    .intro__name {
        margin-left: -64px;
    }

    .intro__type {
        font-size: 2.0rem;
    }

    .namebox__kanji {
        font-size: 3.2rem;
    }

    .intro__from {
        font-size: 2.0rem;
    }
}

/* ----------
経歴
---------- */
.section--history {
    display: flex;
    padding: 0 8px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    align-self: stretch;
    margin-top: 32px;
}

.section__title--history {
    display: flex;
    padding-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.history__inner {
    display: flex;
    flex-direction: column;
}

.history__group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-bottom: 5px solid var(--primary-orange);
}

.history__title {
    color: var(--primary-blue);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.2px;
}

.history__years {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
}

.years__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
}

.years__item {
    display: flex;
    padding-bottom: 12px;
    align-items: flex-start;
    align-self: stretch;

    border-bottom: 1px dashed var(--primary-black);

    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.8px;
}

.history__detail {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;

    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.8px;
}

.gunma__img {
    display: flex;
    align-items: flex-start;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 392/235;
}

.gunma__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section--gunma {
    display: flex;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    margin-top: 24px;
}

.gunma__inner {
   display: flex;
    padding-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch; 
}

.gunma__group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-bottom: 5px solid var(--primary-orange);
}

.gunma__title {
    color: var(--primary-blue);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1.2px;
}

.gunma__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.gunma__item {
    display: flex;
    padding-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;

    border-radius: 2px;
    border-bottom: 1px dashed #202020;
}

.gunmaItem__title {
    align-items: flex-end;

    color: var(--primary-black);
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
}

.gunma__txt {
    align-items: center;
    align-self: stretch;

    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.8px;
}

.gunma__item:nth-of-type(2), .gunma__item:nth-of-type(3) {
    padding-top: 16px;
}

.netsugen__img {
    display: flex;
    align-items: flex-start;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 392/235;
}

.netsugen__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* history pc */
@media screen and (min-width: 769px) {
    .section--history {
        padding: 0;
        margin-top: 0;
    }

    .section__title--history {
        max-width: 900px;
        margin-left: auto;
        padding-bottom: 64px;
        padding-right: 96px;
    }

    .history__title {
        font-size: 3.2rem;
    }

    .gunma__img {
        aspect-ratio: 3/1;
    }

    .section--gunma {
        padding: 0;
        margin-top: 0;
    }

    .gunma__inner {
        max-width: 900px;
        margin-right: auto;
        margin-top: 96px;
        padding: 0 0 96px 64px;
        gap: 56px;
    }

    .gunma__title {
        font-size: 3.2rem;
    }

    .gunma__list {
        width: 100%;
    }

    .gunma__item {
        flex-direction: row;
        padding-bottom: 40px;
        align-items: center;
        justify-content: flex-start;
        gap: 96px;
    }

    .gunmaItem__title {
        font-size: 2.8rem;
        min-width: 200px;
    }

    .gunma__item:nth-of-type(2),
    .gunma__item:nth-of-type(3) {
        padding-top: 40px;
    }
    
    .netsugen__img {
        aspect-ratio: 3/1;
    }

    .netsugen__img img {
        width: 150%;
        height: auto;
        margin-top: -80px;
    }
}

/* ----------
メディア掲載実績
---------- */
.section--media {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.media__inner {
    display: flex;
    width: 100%;
    padding: 48px 0;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.section__title--media {
   display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch; 
}

.title__en {
    display: flex;
    padding: 4px 0 6px 8px;
    align-items: flex-start;

    border-left: 1px solid #F27511;
}

.media__contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.media__item {
    display: flex;
    width: 100%;
    padding: 32px 0;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.media__img {
    display: flex;
    align-items: flex-start;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.media__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media__group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.media__content {
    display: flex;
    padding: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.media__title {
    display: flex;
    padding-bottom: 4px;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;

    color: var(--primary-black);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3; /* 23.4px */
    letter-spacing: 0.9px;

    border-bottom: 1px solid var(--primary-orange);
}

.media__txt {
    display: flex;
    align-items: flex-start;

    color: var(--primary-black);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3; /* 19.5px */
    letter-spacing: 0.75px;
}

/* media pc */
@media screen and (min-width: 769px) {
    .section--media {
        padding: 0;
    }

    .media__inner {
        margin: 96px 0;
        padding: 0;
        gap: 40px;
    }

    .section__title--media {
        align-items: center;
    }

    .media__item {
        flex-direction: row;
        padding: 32px 56px;
        margin-left: 64px;
    }

    .media__img {
        width: 40%;
    }

    .media__group {
        justify-content: center;
    }

    .media__content {
        margin-bottom: 16px;
    }

    .media__title {
        font-size: 2.4rem;
    }

    .media__txt {
        font-size: 1.6rem;
    }
}