@charset "utf-8";

/******************************/


/* common */


/******************************/

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

@media screen and (min-width:1361px) {
    html {
        font-size: .72vw;
    }
}

@media screen and (min-width:2001px) {
    html {
        font-size: 88.5%;
    }
}

body {
    font-family: "Rubik", "Zen Maru Gothic", sans-serif;
    font-size: 1.5rem;
    color: #231815;
    line-height: 1.96;
    letter-spacing: .03em;
}

a {
    color: #231815;
    text-decoration: none;
    transition: all .3s;
}

a:hover {}

span {
    font-weight: inherit;
    line-height: 1.1;
}

#container {
    padding: 11rem 0 0 0;
}

.main {
    z-index: 10;
    width: 100%;
    max-width: 136rem;
    overflow-x: hidden;
    position: relative;
    margin: 0 auto;
}


/* これで全セクション共通の箱幅に */

.sc .sc__in {
    width: 64rem;
    margin: 0 auto;
    position: relative;
}


/* sc__in1だけ幅100%に */

.sc__in.sc__in1 {
    width: 100% !important;
    max-width: none;
}

.btn {
    margin: 2.5rem 0 0;
}

.btn a {
    display: inline-block;
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
    background-color: #e73e25;
    padding: .6rem 3rem;
    border-radius: 3rem;
}


/******************************/


/* header */


/******************************/

#header {
    z-index: 100;
    width: 100%;
    /* height: 0; */
    height: 11rem;
    /* overflow: hidden; */
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 3rem;
    transition: all .6s;
}


/* #header.is-active {
 height: 11rem;
 overflow: inherit;
} */


/********** logo */

.h-logo {
    text-align: center;
    padding-top: 2rem;
}

.h-logo img {
    width: auto;
    height: 6.8rem;
}


/********** menu */

.menu {
    z-index: 10;
    cursor: pointer;
    background-color: #15adb2;
    border: none;
    border-radius: 10rem;
    margin: auto;
    outline: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 3rem;
    transition: all .3s;
    width: 7rem;
    height: 7rem;
}

.menu.active {
    background-color: #fff;
}

.openbtn1 {
    position: absolute;
    display: flex;
    flex-flow: column;
    width: 3.5rem;
    left: 0;
    right: 0;
    margin: auto;
    top: 1.5rem;
}

.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    height: .35rem;
    background: #fff;
    width: 100%;
    margin: .3rem 0;
}

.openbtn1 span:nth-of-type(1) {
    top: 1.5rem;
}

.openbtn1 span:nth-of-type(2) {
    top: 2.3rem;
}

.openbtn1 span:nth-of-type(3) {
    top: 3.1rem;
}

#header.open .openbtn1 span {
    background-color: #15adb2;
}

#header.open .openbtn1 span:nth-of-type(1) {
    top: 1.8rem;
    left: 1.8rem;
    transform: translateY(.8rem) translateX(.3rem) rotate(-45deg);
    width: 90%;
}

#header.open .openbtn1 span:nth-of-type(2) {
    opacity: 0;
}

#header.open .openbtn1 span:nth-of-type(3) {
    top: 3.0rem;
    left: 1.8rem;
    transform: translateY(-1rem) translateX(.3rem) rotate(45deg);
    width: 90%;
}

.menu span.m {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    opacity: 1;
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    transition: all .3s;
}

#header.open .menu span.m {
    color: #15adb2;
}

.nav__sp {
    display: inline-block;
    width: 85vw;
    height: 100vh;
    opacity: 0;
    background-color: #15adb2;
    overflow-y: scroll;
    padding: 9rem 6rem 6rem 4.5rem;
    position: absolute;
    top: 0rem;
    right: 0rem;
    transition: all .9s;
    transform: translateX(100%);
    pointer-events: none;
}

#header.open .nav__sp {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.nav__sp li {
    position: relative;
}

.nav__sp li a {
    display: flex;
    flex-flow: column;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.4;
    border-bottom: .15rem solid #fff;
    padding: 1rem 9rem .5rem 0;
    margin: 0 0 1rem;
}

.nav__sp li span {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    padding-left: .2rem;
}

.nav__raw {
    position: absolute;
    right: 1rem;
    transition: all .3s;
}

.nav__raw img {
    width: auto;
    height: 2rem;
}

.nav__sp li a:hover .nav__raw {
    transform: translateX(1rem);
}


/******************************/


/* hana */


/******************************/

.hana {
    opacity: 0;
    animation-delay: 1s;
}


/******************************/


/* foter */


/******************************/

#footer {
    background-color: #fff8de;
    padding: 8rem 0;
}

.f__in {
    width: 64rem;
    margin: 0 auto;
    position: relative;
}

.f__logo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
}

.f__logo__h2 {
    width: 60%;
}

.f__logo__h2 img {
    width: auto;
    height: 16rem;
}

.f__logo__h3 {
    text-align: center;
    width: 40%;
}

.f__logo__h3 img {
    width: auto;
    height: 16rem;
}

.f__sns {
    height: 7rem;
    position: absolute;
    bottom: 6rem;
    right: 0;
}

.f__sns img {
    width: auto;
    height: 100%;
}

.syu__kyo {
    margin-bottom: 3rem;
}

.coryright {
    font-size: 1.1rem;
    text-align: right;
}


/******************************/


/* contents */


/******************************/

.sc {
    padding: 0 0 10rem;
    position: relative;
}

.section01,
.section02,
.section03,
.section04 {
    padding: 12rem 0 8rem;
}

.sc__title {
    margin-bottom: 2rem;
}

.sc__title h2 {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.6;
}

.sc__title h2 span {
    /* font-size: 2.4rem;
 font-weight: 600; */
}

.sc__title h3 {
    font-family: "Rubik";
    font-size: 2rem;
    font-weight: 500;
}

.ul01,
.ul02,
.ul03 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4.5rem;
}

.ul01 li.left,
.ul01 li.right,
.ul02 li.left,
.ul02 li.right,
.ul03 li.left,
.ul03 li.right {
    width: 50%;
    margin: 0 0 2rem;
}

.ul01 li img,
.ul02 li img,
.ul03 li img {
    width: 130%;
    height: auto;
}

.ul01 li h3,
.ul02 li h3,
.ul03 li h3 {
    font-size: 2.8rem;
    line-height: 1.6;
    font-weight: 600;
    margin: 0 0 1rem;
    animation-delay: .3s;
}

.ul01 li p,
.ul02 li p,
.ul03 li p {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: justify;
    line-height: 1.6;
    opacity: 0;
    animation-delay: .5s;
}

.section01 .ul01 .right,
.section01 .ul02 .left,
.section02 .ul01 .left,
.section02 .ul02 .right,
.section02 .ul03 .left,
.section03 .ul01 .right,
.section03 .ul02 .left,
.section04 .ul01 .right,
.section04 .ul02 .left,
.section04 .ul03 .right {
    padding: 3rem 1.5rem 0;
    width: 55%;
}

.section01 .ul01 .left,
.section01 .ul02 .right,
.section02 .ul01 .right,
.section02 .ul02 .left,
.section02 .ul03 .right,
.section03 .ul01 .left,
.section03 .ul02 .right,
.section04 .ul01 .right,
.section04 .ul02 .left,
.section04 .ul03 .right {
    width: 45%;
}

.section01 .ul01 .left img,
.section02 .ul02 .left img,
.section03 .ul01 .left img,
.section04 .ul02 .left img {
    margin-left: -10rem;
    opacity: 0;
}

.section01 .ul02 .right img,
.section02 .ul01 .right img,
.section02 .ul03 .right img,
.section03 .ul02 .right img,
.section04 .ul01 .right img,
.section04 .ul03 .right img {
    margin-left: 3rem;
    opacity: 0;
}


/* その場で */

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1.1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 下から */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 上から */

.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeDownAnime {
    from {
        opacity: 0;
        transform: translateY(-5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 左から */

.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-5rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* 右から */

.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(5rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.textanimation {
    opacity: 0;
}

.textanimation.anim__start {
    opacity: 1;
}

@keyframes showTextFromBottom {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0rem);
    }
}

.textanimation.anim__start span {
    animation: showText 1s backwards;
    display: inline-block;
}

.textanimation.anim__start>span {
    overflow: hidden;
}

.textanimation.anim__start>span>span {
    animation: showTextFromBottom .6s backwards;
}


/******************************/


/* sponsor logo align (size untouched) */


/******************************/


/* 行（li）= 揃えのみ。サイズは既存の松竹梅ルールに従う */

.sp__matsu li,
.sp__take li,
.sp__ume li,
.sp__kyoryoku li {
    display: flex;
    align-items: center;
    /* 上下センター */
    justify-content: center;
    /* 横センター（左寄せなら left） */
    margin-bottom: 2rem;
    box-sizing: border-box;
}


/* 直下の a/span は“高さを強制しない”。中身のサイズに任せる */

.sp__matsu li>a,
.sp__matsu li>span,
.sp__take li>a,
.sp__take li>span,
.sp__ume li>a,
.sp__ume li>span,
.sp__kyoryoku li>a,
.sp__kyoryoku li>span {
    display: block;
    /* flexでも可だが高さ制御はしない */
    width: 100%;
    /* 枠いっぱいに広げる */
    /* height: 100%; ← これが縮小の元。入れない！ */
    box-sizing: border-box;
}


/* ロゴ画像はセル幅いっぱいに（大きく表示） */

.sponsor li img {
    width: 100%;
    height: auto;
    display: block;
}


/* テキストロゴは中央寄せだけ（サイズは既存ルールを尊重） */

.sp__matsu li p.sp__name,
.sp__take li p.sp__name,
.sp__ume li p.sp__name,
.sp__kyoryoku li p {
    margin: 0 auto;
    text-align: center;
}

/* ==== スポンサー行：a の直下に .intv を縦積み ==== */
.sp__matsu li,
.sp__take li,
.sp__ume li,
.sp__kyoryoku li {
  display: flex;
  flex-direction: column;   /* ← 横並び→縦並びに */
  align-items: center;
  justify-content: center;
  text-align: center;       /* テキスト中央寄せ */
}

/* ロゴリンクはブロック化＆下に少し余白 */
.sp__matsu li > a,
.sp__take li > a,
.sp__ume li > a,
.sp__kyoryoku li > a {
  display: block;
  width: 100%;
  margin-bottom: 0.8rem;    /* a の下に .intv の余白 */
}

/* 「インタビューを見る」表示を整える */
.sp__matsu li .intv,
.sp__take  li .intv,
.sp__ume   li .intv,
.sp__kyoryoku li .intv {
  font-size: 1.4rem;
  line-height: 1.6;
}

.sp__matsu li .intv a,
.sp__take  li .intv a,
.sp__ume   li .intv a,
.sp__kyoryoku li .intv a {
  display: inline-block;
  text-decoration: underline; /* 視認性アップ（お好みで） */
}

/* 画像はセル幅いっぱい（既存踏襲） */
.sponsor li img,
.sp__matsu li img,
.sp__take  li img,
.sp__ume   li img,
.sp__kyoryoku li img {
  width: 100%;
  height: auto;
  display: block;
}