@charset "UTF-8";

html {
    font-size: 62.5%;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #453e3e;
    line-height: 1.5;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.background-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/mv-bg.jpg);
    opacity: 0.7;
    background-size: cover;
    background-position: center;
    z-index: -1;
    /* コンテンツの背面に配置 */
}

/* 羽を包む親（落下アニメーション用） */
.feather-wrapper {
    position: absolute;
    animation: fall linear infinite;
    opacity: 0.8;
    max-width: 100%;
    visibility: hidden;
    animation-fill-mode: forwards;
}

/* 羽画像（揺れアニメーション） */
.feather {
    width: 100px;
    height: auto;
    animation: sway ease-in-out infinite;
}

@media screen and (max-width: 768px) {
    .feather {
        width: 50px;
    }
}

/* 下に落ちる */
@keyframes fall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    70% {
        opacity: 0.3;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(110vh);
        opacity: 0;
    }
}

/* 左右にゆれる */
@keyframes sway {
    0% {
        transform: translateX(0px) rotate(0deg);
    }

    50% {
        transform: translateX(20px) rotate(10deg);
    }

    100% {
        transform: translateX(0px) rotate(0deg);
    }
}

.wrapper {
    padding: 0 6.9%;
}

.section-title {
    display: flex;
    flex-direction: column;
}

.section-title .en {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: clamp(60px, calc(60px + 40 * ((100vw - 375px) / 1065)), 100px);
    color: #fff;
    line-height: 1;
    display: flex;
    gap: 0.1em;
    z-index: -1;
}

.section-about .char,
.section-info .char,
.section-intervew .char,
.section-faq .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
}

.section-about .char.animate,
.section-info .char.animate,
.section-intervew .char.animate,
.section-faq .char.animate {
    animation: bounceIn 0.8s ease-out forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.section-title .char:nth-child(1) {
    animation-delay: 0s;
}

.section-title .char:nth-child(2) {
    animation-delay: 0.1s;
}

.section-title .char:nth-child(3) {
    animation-delay: 0.2s;
}

.section-title .char:nth-child(4) {
    animation-delay: 0.3s;
}

.section-title .char:nth-child(5) {
    animation-delay: 0.4s;
}

.section-title .ja {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.7;
    display: block;
    margin-top: -40px;
}

.section-campanyDate .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.section-campanyDate .char.animate {
    animation: bounceIn2 0.8s ease-out forwards;
}

@keyframes bounceIn2 {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.section-title .char:nth-child(1) {
    animation-delay: 0s;
}

.section-title .char:nth-child(2) {
    animation-delay: 0.06s;
}

.section-title .char:nth-child(3) {
    animation-delay: 0.12s;
}

.section-title .char:nth-child(4) {
    animation-delay: 0.18s;
}

.section-title .char:nth-child(5) {
    animation-delay: 0.24s;
}

.section-title .char:nth-child(6) {
    animation-delay: 0.3s;
}

.section-title .char:nth-child(7) {
    animation-delay: 0.36s;
}

.section-title .char:nth-child(8) {
    animation-delay: 0.42s;
}

.section-title .char:nth-child(9) {
    animation-delay: 0.48s;
}

.section-title .char:nth-child(10) {
    animation-delay: 0.54s;
}

.section-title .char:nth-child(11) {
    animation-delay: 0.6s;
}

@media screen and (max-width: 768px) {
    .wrapper {
        padding: 0 8%;
    }

    .section-title .en {
        font-size: clamp(40px, 5.2vw, 60px);
    }

    .section-title .ja {
        font-size: clamp(16px, 1vw + 0.5rem, 18px);
        margin-top: -25px;
    }
}

/* ----------------------------------------------------------
header
----------------------------------------------------------*/
.header {
    position: relative;
}

.header-wrapper {
    width: 100%;
    height: 102px;
    padding: 0 9% 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 30px;
    left: 0;
    z-index: 100;
}

.header-logo {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.header-logo .logo {
    max-width: 142px;
    line-height: 0;
}

.header-logo .logo a {
    display: block;
}

.header-logo .logo img {
    width: 100%;
}

.header-logo p {
    font-size: 1.5rem;
    font-family: 'Josefin Sans', sans-serif;
    color: #009a90;
    line-height: 1;
    letter-spacing: 0.05em;
    padding-bottom: 26px;
}

.header-btn {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.header-btn li {
    font-size: 1.8rem;
    font-weight: bold;
    background-color: #fff;
    padding: 13px 30px 13px 30px;
    border-radius: 70px;
    transition: transform 0.2s;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.1em;
}

.header-btn li.entry {
    background: linear-gradient(#ffe4cc, #ff7800);
}

.header-btn li.entry_new {
    background: linear-gradient(#ccfffd, #159b96);
    position: relative;
}

.header-btn li.entry > a {
    position: relative;
}

.header-btn li.entry_new > a {
    position: relative;
}

.header-btn li.entry > a::before {
    position: absolute;
    top: 50%;
    right: -10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);
    content: '';
}

.header-btn li.entry_new > a::before {
    position: absolute;
    top: 50%;
    right: -10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);
    content: '';
}

.header-btn li.entry_new .dropdown {
    display: none;
    position: absolute;
    top: calc(100% - 5px); /* 親の下に配置 */
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    list-style: none;
    padding: 0;
    margin: 5px auto 0 auto;
    width: 90%;
    z-index: 1000;
}

/* PC（hoverが可能なデバイス）だけホバーで表示 */
@media (hover: hover) and (pointer: fine) {
    .header-btn li.entry_new:hover .dropdown,
    .header-btn li.entry_new .dropdown:hover {
        display: block;
    }
}

/* スマホ（hoverできないデバイス）はホバー無効にする */
@media (hover: none) and (pointer: coarse) {
    .header-btn li.entry_new:hover .dropdown {
        display: none; /* 無効化 */
    }
}

.header-btn li.entry_new .dropdown li {
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 10px;
    background-color: #f2f2f2;
}

.header-btn li.entry_new .dropdown li:last-child {
    border-bottom: 0;
}

.header-btn li.entry_new .dropdown li a {
    display: block;
    font-size: 1.2rem;
    color: #333;
    position: relative;
}

.header-btn li.entry_new .dropdown li a::before {
    position: absolute;
    top: 50%;
    right: 10px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);
    content: '';
}

.header-btn li:hover {
    transform: scale(1.05);
}

.header-btn li.entry_new .dropdown li:hover {
    transform: none;
    background: rgba(217, 240, 239, 0.95);
}

/* ▼ スマホで開いた状態 ▼ */
.header-btn li.entry_new.open .dropdown {
    display: block;
    position: absolute;
    width: 100%;
    border: none;
    background: #f9f9f9;
    z-index: 1000;
}

.hamburger {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: fixed;
    top: 50px;
    right: 4%;
    z-index: 300;
}

.hamburger span {
    width: 50px;
    height: 2px;
    background-color: #000;
    display: inline-block;
    position: absolute;
    left: 5px;
    transition: all 0.4s;
}

.hamburger span:nth-of-type(1) {
    top: 25px;
}

.hamburger span:nth-of-type(2) {
    top: 35px;
}

/* ハンバーガー "開いた状態" のアニメーション */
.hamburger.open span:nth-of-type(1) {
    transform: rotate(15deg);
    top: 30px;
}

.hamburger.open span:nth-of-type(2) {
    transform: rotate(-15deg);
    top: 30px;
}

.header .nav {
    width: 40%;
    height: 150vh;
    background-color: #fff;
    position: fixed;
    top: 50%;
    right: -80%;
    transform: translateY(-50%);
    z-index: 250;
    transition: all 0.6s;
    overflow: hidden;
    border-top-left-radius: 120% 70%;
    border-bottom-left-radius: 120% 70%;
}

.header .nav ul {
    /* width: 100%;
    height: 100vh;
    padding: 100px 0; */
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    overflow: auto;
    display: flex;
    flex-direction: column;
    padding: 200px 0 0 25%;
}

.header .nav.active {
    right: 0;
}

.overlay {
    position: fixed;
    inset: 0;
    /* top: 0; right: 0; bottom: 0; left: 0 の省略形 */
    background: rgba(234, 231, 227, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 200;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.header .nav ul li {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin-top: 40px;
    width: 300px;
    position: relative;
    padding-left: 24px;
}

.header .nav ul li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: #f16e6b;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header .nav ul li:last-child {
    padding-left: 0;
    margin-top: 70px;
}

.header .nav ul li:last-child::before {
    display: none;
}

.header .nav ul li:first-child {
    margin-top: 0;
}

.entry-btnNav {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 100;
}

.entry-txt {
    display: flex;
    justify-content: center;
    align-items: center;
}

.entry-txt p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 6.8rem;
    color: #f16e6b;
}

.mynaviNav {
    text-align: center;
    transition: transform 0.2s;
}

.mynaviNav:hover {
    transform: scale(1.05);
}

.mynaviNav p {
    font-size: 1.4rem;
    color: #f16e6b;
}

.mynaviNav div {
    width: 100%;
    background-color: #fff;
    padding: 16px 0 16px 0;
    border-radius: 143px;
    margin-top: 10px;
    border: 1px solid #f16e6b;
}

.header .nav ul li a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header .nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #f16e6b;
    transition: width 0.3s ease;
}

.header .nav ul li a:hover {
    color: #f16e6b;
}

.header .nav ul li a:hover::after {
    width: 100%;
}

.header .nav ul li:not(:last-child) a:hover {
    color: none;
}

.header .nav ul li:not(:last-child) a:hover::after {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .header-wrapper {
        width: 100%;
        height: 80px;
        padding: 0 15% 0 5%;
        display: flex;
        top: 20px;
        left: 0;
        align-items: flex-start;
    }

    .header-logo {
        gap: 0;
        flex-direction: column;
        align-items: center;
    }

    .header-logo br {
        display: none;
    }

    .header-logo .logo {
        max-width: 90px;
        line-height: 0;
    }

    .header-logo .logo a {
        display: block;
    }

    .header-logo .logo img {
        width: 100%;
    }

    .header-logo p {
        font-size: 1.1rem;
        padding-bottom: 0;
        margin-top: 6px;
    }

    .header-btn {
        gap: 8px;
        margin-right: 13px;
    }

    .header-btn li {
        font-family: 'Zen Kaku Gothic New';
        font-size: 1.1rem;
        padding: 6px 13px 6px 13px;
        border-radius: 42px;
        text-align: center;
        position: relative;
        line-height: 1;
        min-width: 87px;
    }

    .header-btn li::before {
        width: 4.2px;
        height: 4.2px;
        margin-right: 0;
        display: block;
        position: absolute;
        top: 4.8px;
        left: 50%;
        transform: translateX(-50%);
    }

    .header-btn li span {
        font-size: 1.1rem;
        display: block;
        padding-left: 0;
    }

    .hamburger {
        width: 43px;
        height: 43px;
        cursor: pointer;
        position: fixed;
        top: 20px;
        right: 5%;
    }

    .hamburger span {
        width: 25px;
        left: 9px;
    }

    .hamburger span:nth-of-type(1) {
        top: 17px;
    }

    .hamburger span:nth-of-type(2) {
        top: 24px;
    }

    /* ハンバーガー "開いた状態" のアニメーション */
    .hamburger.open span:nth-of-type(1) {
        top: 21.5px;
    }

    .hamburger.open span:nth-of-type(2) {
        top: 21.5px;
    }

    .header .nav {
        width: 150%;
        height: 87vh;
        right: 0;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: -87vh;
        border-radius: 0;
        border-top-left-radius: 100% 70%;
        border-top-right-radius: 100% 70%;
        transition: bottom 0.6s ease;
    }

    .header .nav ul {
        width: auto;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: #fff;
        transform: translate(-50%, -50%);
        overflow: auto;
        display: flex;
        flex-direction: column;
    }

    .header .nav.active {
        bottom: 0;
        right: 0;
    }

    .entry-txt p {
        font-size: 5.4rem;
        color: #f16e6b;
    }

    .header .nav ul {
        padding: 0;
    }

    .header .nav ul li {
        font-size: 2rem;
        margin-top: 32px;
        width: 240px;
        position: relative;
        padding-left: 14px;
    }

    .header .nav ul li::before {
        width: 4.8px;
        height: 4.8px;
    }

    .header .nav ul li:last-child {
        padding-left: 0;
        margin-top: 56px;
    }

    .mynaviNav {
        text-align: center;
        transition: transform 0.2s;
    }

    .mynaviNav p {
        font-size: 1.1rem;
    }

    .mynaviNav div {
        padding: 13px 0 13px 0;
        margin-top: 8px;
    }

    .header-btn li.entry_new .dropdown li {
        padding: 5px;
    }

    .header-btn li.entry_new .dropdown li a {
        font-size: 1.1rem;
        text-align: left;
    }

    .header-btn li.entry_new .dropdown li a::before {
        position: absolute;
        top: 50%;
        right: 0px;
    }
}

/* ----------------------------------------------------------
mv
----------------------------------------------------------*/
.mv {
    /* background: url(../img/mv-bg.jpg) no-repeat center / cover; */
    height: 900px;
    overflow: hidden;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.mv-img {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 100%;
    max-width: 960px;
    height: auto;
    transform: translateX(-50%);
}

.img-container {
    /* aspect-ratio: 3 / 4; */
    max-width: 440px;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
    /* 初期状態 */
    animation-fill-mode: forwards;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 扇状配置 */
.img-left {
    width: 37%;
    left: 50%;
    top: 50%;
    transform: translate(-123%, -41%) rotate(-13deg);
    z-index: 1;
    animation: openLeft 1s ease-out 0.2s forwards;
}

.img-center {
    width: 41%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 2;
    animation: openCenter 1s ease-out 0.4s forwards;
}

.img-right {
    width: 37%;
    left: 50%;
    top: 50%;
    transform: translate(20%, -42%) rotate(13deg);
    z-index: 1;
    animation: openRight 1s ease-out 0.6s forwards;
}

@keyframes openCenter {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
}

@keyframes openLeft {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: translate(-123%, -41%) scale(1) rotate(-13deg);
    }
}

@keyframes openRight {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: translate(20%, -42%) scale(1) rotate(13deg);
    }
}

.mv-text {
    position: absolute;
    left: 4.1%;
    bottom: 0;
}

.mv-text p {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: clamp(27px, 2vw + 12.2px, 36px);
    letter-spacing: 0;
    display: inline-block;
}

.mv-text p:nth-of-type(2) {
    font-family: 'Zen Kaku Gothic New';
    font-weight: 500;
    display: block;
    font-size: 1.8rem;
    line-height: 1.7;
    margin-top: 15px;
    letter-spacing: 0.05em;
    opacity: 0;
    filter: blur(4px);
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 3.4s;
}

.spbr {
    display: none;
    line-height: 0;
    font-size: 0;
    height: 0;
}

.mv-text p:nth-of-type(1) span {
    display: inline-block;
    opacity: 0;
    transform: translateX(-20px);
    filter: blur(4px);
    animation: fadeInBlur 0.8s forwards;
    animation-delay: 1.5s;
}

.mv-text p span:nth-child(1) {
    animation-delay: 1.1s;
}

.mv-text p span:nth-child(2) {
    animation-delay: 1.15s;
}

.mv-text p span:nth-child(3) {
    animation-delay: 1.2s;
}

.mv-text p span:nth-child(4) {
    animation-delay: 1.25s;
}

.mv-text p span:nth-child(5) {
    animation-delay: 1.3s;
}

.mv-text p span:nth-child(6) {
    animation-delay: 1.35s;
}

.mv-text p span:nth-child(7) {
    animation-delay: 1.4s;
}

.mv-text p span:nth-child(8) {
    animation-delay: 1.45s;
}

.mv-text p span:nth-child(9) {
    animation-delay: 1.5s;
}

.mv-text p span:nth-child(10) {
    animation-delay: 1.55s;
}

.mv-text p span:nth-child(11) {
    animation-delay: 1.6s;
}

.mv-text p span:nth-child(12) {
    animation-delay: 1.65s;
}

.mv-text p span:nth-child(13) {
    animation-delay: 1.7s;
}

.mv-text p span:nth-child(14) {
    animation-delay: 1.75s;
}

.mv-text p span:nth-child(15) {
    animation-delay: 1.8s;
}

.mv-text p span:nth-child(16) {
    animation-delay: 1.85s;
}

.mv-text p span:nth-child(17) {
    animation-delay: 1.9s;
}

.mv-text p span:nth-child(18) {
    animation-delay: 1.95s;
}

.mv-text p span:nth-child(19) {
    animation-delay: 2s;
}

.mv-text p span:nth-child(20) {
    animation-delay: 2.15s;
}

.mv-text p span:nth-child(21) {
    animation-delay: 2.2s;
}

.mv-text p span:nth-child(22) {
    animation-delay: 2.25s;
}

.mv-text p span:nth-child(23) {
    animation-delay: 2.3s;
}

.mv-text p span:nth-child(24) {
    animation-delay: 2.35s;
}

.mv-text p span:nth-child(25) {
    animation-delay: 2.4s;
}

.mv-text p span:nth-child(26) {
    animation-delay: 2.45s;
}

.mv-text p span:nth-child(27) {
    animation-delay: 2.5s;
}
.mv-text p span:nth-child(28) {
    animation-delay: 2.55s;
}
.mv-text p span:nth-child(29) {
    animation-delay: 2.6s;
}
.mv-text p span:nth-child(30) {
    animation-delay: 2.65s;
}
.mv-text p span:nth-child(31) {
    animation-delay: 2.7s;
}
.mv-text p span:nth-child(32) {
    animation-delay: 2.75s;
}
.mv-text p span:nth-child(33) {
    animation-delay: 2.8s;
}
.mv-text p span:nth-child(34) {
    animation-delay: 2.85s;
}
.mv-text p span:nth-child(35) {
    animation-delay: 2.9s;
}
.mv-text p span:nth-child(36) {
    animation-delay: 2.95s;
}
.mv-text p span:nth-child(37) {
    animation-delay: 3s;
}
.mv-text p span:nth-child(38) {
    animation-delay: 3.05s;
}
.mv-text p span:nth-child(39) {
    animation-delay: 3.1s;
}
.mv-text p span:nth-child(40) {
    animation-delay: 3.15s;
}

@keyframes fadeInBlur {
    0% {
        opacity: 0;
        transform: translateX(-20px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* インタビューbtn */
.btn-intervew {
    position: absolute;
    right: 4.1%;
    bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeBtn 1s ease-out 1.2s forwards;
    animation-delay: 4.4s;
}

@keyframes fadeBtn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.circle-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 217px;
    height: 217px;
    border-radius: 50%;
    background: linear-gradient(-45deg, #e65f5c 50%, #de7674 50%);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    padding: 20px;
    box-sizing: border-box;
    line-height: 1.4;
    transition: transform 0.2s;
    font-size: 2.6rem;
    position: relative;
    overflow: hidden;
}

.circle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
}

.circle-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.circle-btn:hover::before {
    animation: shine 1s ease-in-out;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

span.en {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 3.5rem;
}

span.small {
    display: block;
    font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
    .mv {
        /* background: url(../img/mv-spbg.jpg) no-repeat center / cover; */
        height: 870px;
    }

    .mv-img {
        top: 35%;
        width: 100%;
        min-width: 570px;
    }

    .mv-text {
        position: absolute;
        left: 0;
        right: 0;
        top: 510px;
        bottom: auto;
        text-align: center;
    }

    .mv-text p {
        font-size: 2.8rem;
    }

    .mv-text p:nth-of-type(2) {
        font-size: 1.5rem;
    }

    .spbr {
        display: inline;
        line-height: normal;
        font-size: inherit;
    }

    .btn-intervew {
        right: 3.4%;
        bottom: auto;
        top: 370px;
    }

    .circle-btn {
        width: 140px;
        height: 140px;
        font-size: 1.6rem;
    }

    /* インタビューbtn */
    /* .circle-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 140px;
        height: 140px;
        background: #de7674;
        padding: 20px;
        right: 3.4%;
        bottom: auto;
        top: 370px;
        font-size: 1.6rem;
    } */

    span.en {
        font-size: 2.2rem;
    }

    span.small {
        display: block;
        font-size: 1.2rem;
    }

    .arrow img {
        width: 60%;
    }
}

/* ----------------------------------------------------------
about
----------------------------------------------------------*/
.about {
    padding: 140px 0 100px;
}

.about li.animate {
    opacity: 1;
    transform: translateY(0);
}

.about ul {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 15px auto 0 auto;
}

.about li {
    width: 43%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about li img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about ul li p:nth-of-type(1) {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin-top: 22px;
}

.about ul li p:nth-of-type(2) {
    font-size: 1.5rem;
    margin-top: 20px;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .about {
        padding: 0;
    }

    .about ul {
        flex-direction: column;
        gap: 60px;
        margin: 40px auto 0 auto;
    }

    .about li {
        width: 100%;
    }

    .about ul li p:nth-of-type(1) {
        font-family: 'Noto Serif JP', serif;
        font-weight: 600;
        font-size: 2.5rem;
        margin-top: 22px;
    }

    .about ul li p:nth-of-type(2) {
        font-size: 1.5rem;
        margin-top: 20px;
        line-height: 1.7;
    }
}

/* ----------------------------------------------------------
entry
----------------------------------------------------------*/
.entry {
    overflow: hidden;
}

.entry-btn {
    background-color: #f16e6b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 100% 150%;
    border-top-right-radius: 100% 150%;
    height: 404px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.entry-btn.animate {
    opacity: 1;
    transform: translateY(0);
}

.entry-btn > img {
    z-index: 10;
}

.entry-btn::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/gray-circle.png) no-repeat center/ cover;
    mix-blend-mode: soft-light;
    /* opacity: 0.4; */
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

@keyframes bgShiftLeft {
    from {
        left: 0;
    }

    to {
        left: 100%;
    }
}

.entry-btn > p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11.3rem;
    color: #fff;
    margin-right: 20px;
    z-index: 10;
}

.mynavi {
    text-align: center;
    transition: transform 0.2s;
}

.mynavi:hover {
    transform: scale(1.05);
}

.mynavi p {
    color: #fff;
    font-size: 1.4rem;
    z-index: 10;
}

.mynavi div {
    background-color: #fff;
    padding: 16px 53px 16px 57px;
    border-radius: 143px;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .entry {
        padding-top: 60px;
        overflow: hidden;
    }

    .entry-btn {
        background-color: #f16e6b;
        flex-direction: column;
        height: auto;
        padding: 30px 0 50px 0;
    }

    .entry-btn > p {
        font-family: 'Josefin Sans', sans-serif;
        font-size: 6rem;
        margin-right: 0;
    }

    .mynavi p {
        font-size: 1.4rem;
    }

    .mynavi div {
        padding: 16px 56px 16px 58px;
        border-radius: 150px;
        margin-top: 10px;
    }

    .entry-btn > img {
        width: 10%;
        display: none;
    }

    .entry-btn::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: url(../img/gray-circle.png) no-repeat center/ cover;
        position: absolute;
        top: 50%;
        left: -30%;
        transform: translateY(-50%);
        opacity: 0.6;
        z-index: -1;
    }
}

/* ----------------------------------------------------------
campanyDate
----------------------------------------------------------*/
.campanyDate {
    padding: 140px 0 100px 0;
}

.grid-container {
    max-width: 1240px;
    padding: 0 10px;
    display: grid;
    /* grid-template-columns: 1fr 1fr 1fr; */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* grid-template-rows: 420px 360px 360px 420px; */
    gap: 10px;
    margin: -55px auto 0 auto;
}

.grid_item.animate {
    opacity: 1;
    transform: translateY(0);
}

.grid_item {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #ffffff;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.grid_item h3 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: clamp(14px, calc(1.1vw + 1rem), 25px);
    letter-spacing: 0.05em;
}

.grid_item p {
    font-size: 1.5rem;
    margin-top: 12px;
}

.grid_item1 {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
    display: flex;
    justify-content: space-between;
    padding: 4%;
}

.grid_item1 div:nth-of-type(1) {
    width: 42%;
}

.grid_item1 div:nth-of-type(2) {
    width: 56%;
}

.grid_item1 img,
.grid_item2 img,
.grid_item3 img,
.grid_item4 img,
.grid_item5 img,
.grid_item6 img,
.grid_item7 img,
.grid_item8 img {
    width: 100%;
    object-fit: cover;
}

.grid_item2 div,
.grid_item3 div,
.grid_item4 div,
.grid_item5 div,
.grid_item6 div,
.grid_item7 div,
.grid_item8 div {
    width: 100%;
    padding: 8%;
}

.grid_item2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    padding: 4%;
}

.grid_item3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 4%;
}

.grid_item4 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    padding: 4%;
}

.grid_item5 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    padding: 4%;
}

.grid_item6 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    padding: 4%;
}

.grid_item7 {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    padding: 4%;
}

.grid_item8 {
    grid-column: 1 / 4;
    grid-row: 4 / 5;
    padding: 4%;
}

.grid_item8 ul {
    display: flex;
    justify-content: space-between;
}

.grid_item8 ul li {
    width: 30%;
}

.grid_item8 ul li p:nth-of-type(1) {
    font-family: 'Noto Serif JP', serif;
    color: #f16e6b;
    font-size: 1.8rem;
    margin-top: 21px;
    position: relative;
    padding-left: 10px;
}

.grid_item8 ul li p:nth-of-type(1)::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #f16e6b;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.grid_item8 ul li p:nth-of-type(2) {
    font-size: 1.5rem;
    margin-top: 10px;
    line-height: 1.7;
}

.note {
    text-align: right;
    font-size: 1.6rem;
    max-width: 1240px;
    margin: 40px auto 0 auto;
}

@media screen and (max-width: 768px) {
    .campanyDate {
        padding: 50px 0 0 0;
    }

    .campanyDate .wrapper {
        padding: 0 2%;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 5px;
        margin: 0 auto;
    }

    .grid_item h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        height: 40px;
    }

    .grid_item2 div,
    .grid_item3 div,
    .grid_item4 div,
    .grid_item5 div,
    .grid_item6 div,
    .grid_item7 div,
    .grid_item8 div {
        width: 100%;
        padding: 0;
    }

    .grid_item8 ul {
        flex-direction: column;
    }

    .grid_item8 ul li {
        width: 100%;
        margin-top: 20px;
    }

    .grid_item8 ul li:first-child {
        margin-top: 0;
    }

    .grid_item8 ul li p:nth-of-type(1) {
        font-size: 1.6rem;
        font-weight: 600;
        margin-top: 0;
    }

    .grid_item8 ul li p:nth-of-type(2) {
        font-size: 1.6rem;
        margin-top: 5px;
    }

    .note {
        text-align: left;
        margin-top: 20px;
        font-size: 1.4rem;
        padding: 4%;
    }
}

@media screen and (max-width: 425px) {
    .campanyDate {
        padding: 50px 0 0 0;
    }

    .campanyDate .wrapper {
        padding: 0 2%;
    }

    .grid-container {
        display: block;
    }

    .grid_item {
        margin-top: 10px;
    }

    .grid_item h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        height: auto;
    }

    .grid_item p {
        font-size: 1.4rem;
        margin-top: 0;
    }

    .grid_item2 div,
    .grid_item3 div,
    .grid_item4 div,
    .grid_item5 div,
    .grid_item6 div,
    .grid_item7 div,
    .grid_item8 div {
        width: 100%;
        padding: 0 8%;
    }

    .grid_item1 {
        flex-direction: column;
    }

    .grid_item1 img {
        margin-top: 10px;
    }

    .grid_item1 div:nth-of-type(1) {
        width: 100%;
        margin-top: 0;
    }

    .grid_item1 div:nth-of-type(2) {
        width: 100%;
    }

    .grid_item8 ul {
        flex-direction: column;
    }

    .grid_item8 ul li {
        width: 100%;
        margin-top: 20px;
    }

    .grid_item8 ul li:first-child {
        margin-top: 0;
    }

    .grid_item8 ul li p:nth-of-type(1) {
        font-size: 1.6rem;
        font-weight: 600;
        margin-top: 0;
    }

    .grid_item8 ul li p:nth-of-type(2) {
        font-size: 1.6rem;
        margin-top: 5px;
    }
}

/* ----------------------------------------------------------
info
----------------------------------------------------------*/
.info {
    padding: 140px 0;
}

.info ul {
    margin: 50px auto 0 auto;
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    gap: 20px;
}

.info ul li.animate {
    opacity: 1;
    transform: translateY(0);
}

.info ul li {
    display: flex;
    flex-direction: column;
    width: 31%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    padding: 20px 2%;
}

.info ul li img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.info ul li p:nth-of-type(1) {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 2.5rem;
    margin-top: 25px;
}

.info ul li p:nth-of-type(2) {
    font-size: 1.8rem;
    margin-top: 10px;
}

.info ul li:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
    .info {
        padding: 50px 0;
    }

    .info ul {
        margin: 50px auto 0 auto;
        flex-direction: column;
        gap: 10px;
    }

    .info ul li {
        width: 100%;
    }

    .info ul li p:nth-of-type(1) {
        font-size: 2.5rem;
    }

    .info ul li p:nth-of-type(2) {
        font-size: 1.5rem;
    }
}

/* ----------------------------------------------------------
intervew
----------------------------------------------------------*/
.intervew {
    padding: 60px 0 200px 0;
}

.message-wrapper {
    margin: 50px auto 0 auto;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    max-width: 1240px;
    position: relative;
    padding: 33px 15% 33px 4.5%;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.message-wrapper.animate {
    opacity: 1;
    transform: translateY(0);
}

.message-box {
    display: flex;
    align-items: center;
    gap: 60px;
}

.message-box .img {
    width: 57%;
}

.message-box img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.message-box .text {
    width: 39%;
}

.btn-viewAll {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7%;
    height: 100%;
    background: linear-gradient(
        172.89deg,
        #fab6bb 19.11%,
        #4bd8f4 58.62%,
        #05c1bd 93.76%
    );
    color: #fff;
    writing-mode: vertical-rl;
    border-radius: 0 10px 10px 0;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-viewAll::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    /* 初期位置は左の外側 */
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
    /* ホバー判定に影響させない */
}

/* ホバーで光の帯が右へスライド */
.btn-viewAll:hover::before {
    left: 125%;
}

.text p:nth-of-type(1) {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0.05em;
}

.text p:nth-of-type(2) {
    font-size: 1.5rem;
    color: #f16e6b;
    margin-top: 16px;
}

@media screen and (max-width: 768px) {
    .intervew {
        padding: 0 0 50px 0;
    }

    .message-wrapper {
        margin: 20px auto 0 auto;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 10px 10px 0 0;
        padding: 20px 4% 20px 4%;
    }

    .message-box {
        flex-direction: column;
        gap: 20px;
    }

    .message-box .img {
        width: 100%;
    }

    .message-box .text {
        width: 100%;
    }

    .btn-viewAll {
        width: 100%;
        height: 60px;
        writing-mode: horizontal-tb;
        border-radius: 0 0 10px 10px;
        top: auto;
        bottom: -60px;
        right: 0;
        left: 0;
        text-align: center;
        background: linear-gradient(
            90deg,
            #fab6bb 15%,
            #4bd8f4 57%,
            #05c1bd 94%
        );
    }

    .btn-viewAll::before {
        content: '';
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        transform: skewX(-20deg);
        pointer-events: none;
    }

    .btn-viewAll:hover {
        filter: brightness(1.1);
    }

    .btn-viewAll:hover::before {
        animation: shine 1s ease-in-out;
    }

    @keyframes shine {
        0% {
            left: -75%;
        }

        100% {
            left: 125%;
        }
    }

    .text p:nth-of-type(1) {
        font-family: 'Noto Serif JP', serif;
        font-weight: 600;
        font-size: 1.8rem;
        letter-spacing: 0.05em;
    }

    .text p:nth-of-type(2) {
        font-size: 1.4rem;
        color: #f16e6b;
        margin-top: 16px;
    }
}

/* ----------------------------------------------------------
faq
----------------------------------------------------------*/
.faq {
    padding: 0 0 100px 0;
}

.faq dl {
    margin: 55px auto 0 auto;
    max-width: 815px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.faq dl.animate {
    opacity: 1;
    transform: translateY(0);
}

.faq dt {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 45px;
    margin-top: 45px;
}

.faq dt::before {
    content: 'Q';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #f16e6b;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq dd {
    font-size: 1.5rem;
    margin-top: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid #fff;
    padding-left: 60px;
    position: relative;
}

.faq dd::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #f16e6b;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 20px);
    left: 48px;
    transform: translateY(-50%);
}

.faq dd.dot::before {
    top: calc(50% - 32px);
    left: 48px;
}

@media screen and (max-width: 768px) {
    .faq {
        padding: 60px 0 60px 0;
    }

    .faq dl {
        margin: 40px auto 0 auto;
    }

    .faq dt {
        font-size: 1.8rem;
        padding-left: 35px;
        margin-top: 20px;
    }

    .faq dt::before {
        width: 30px;
        height: 30px;
        top: 15px;
        left: 0;
    }

    .faq dd {
        font-size: 1.5rem;
        margin-top: 20px;
        padding-bottom: 20px;
        padding-left: 40px;
    }

    .faq dd::before {
        top: 12px;
        left: 30px;
    }

    .faq dd.dot::before {
        top: 12px;
        left: 30px;
    }
}

/* ----------------------------------------------------------

----------------------------------------------------------*/

.copyright {
    text-align: center;
    background-color: #f16e6b;
    color: #fff;
    position: relative;
    z-index: 30;
}

/* ----------------------------------------------------------

----------------------------------------------------------*/

/* ----------------------------------------------------------

----------------------------------------------------------*/
/* ----------------------------------------------------------

----------------------------------------------------------*/
