@charset "utf-8";
/* ===============================
common
================================*/
:root {
    --primary-white: #FFFDF6;
    --primary-brown: #3F250A;
    --primary-yellow: #FFE09D;
    --primary-orange: #FF893B;
    --primary-yellowOrange: #FFBB28;
    --primary-paleYellow: #FFF1D3;
    --primary-paleYellow2: #FFF8E8;
    --contentWidth: 91.4%;
    --contentPadding: 5.3%;
    --contentPaddingPC : 8.2%;
}

html {
    font-size: 62.5%;
    scroll-padding-top: 60px;
}

body {
    font-family:
        'Zen Maru Gothic',
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary--brown, #3F250A);
    background-color: var(--primary-white, #FFFDF6);
    line-height: 1.8;
    font-size: 1.4rem;
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
}

.main {
    padding-top: 60px;
}

.topic {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 1px;
    width: fit-content;
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 700;
    position: relative;
    border-bottom: 2px solid #FF893B60;
    border-radius: 1px;
}

.page__topic {
    display: block;
    margin: 0 auto;
    width: fit-content;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 700;
    z-index: 1;
    position: relative;  
}

.page__topic::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 100%;
    height: 10px;
    transform: translateX(-50%);
    background-color:#FF893B;
    border-radius: 10px;
    z-index: -1;
    opacity: 0.6;
}

.pcBr {
    display: none;
}

.emphasis {
    font-weight: 700;
    color: var(--primary-orange);
}

.btn__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    margin: 0 auto;
    border-radius: 40px;
    background-color: var(--primary-orange);
    padding: 17px 40px;
    color: var(--primary-white,#FDFDFD);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
    transition: 0.4s;
    gap: 10px;
}

.btn__link::after {
    content: '';
    display: inline-block;
    width: 13px;
    height: 10px;
    background-image: url(../images/arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 10px;
    top: 50%;
}

.btn__page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    margin: 0 auto;
    border-radius: 40px;
    background-color: var(--primary-orange);
    padding: 17px 40px;
    color: var(--primary-white,#FDFDFD);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
    transition: 0.4s;
    gap: 10px;
}

.btn__page::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url(../images/page.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 10px;
    top: 50%;
}

.btn__pdf {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    margin: 0 auto;
    border-radius: 40px;
    background-color: var(--primary-yellowOrange);
    padding: 14px 40px;
    color: var(--primary-white,#FDFDFD);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
    transition: 0.4s;
    gap: 10px;
}

.btn__pdf::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 19px;
    background-image: url(../images/pdf.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 10px;
    top: 50%;
}

a:hover {
    opacity: 0.8;
}

.js-video-thumb {
    position: relative;
    display: block;
    cursor: pointer;
    margin: 0 auto;
    width: 89.3vw;
}

.js-video-thumb img {
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: transform 0.2s;
    width: 15vw;
    height: 15vw;
}

.play-icon img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.js-video-thumb:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.15);
}

/* common pc */
@media screen and (min-width: 769px) {
    body {
        font-size: 1.6rem;
    }

    html {
        scroll-padding-top: 85px;
    }

    .main {
        padding-top: 85px;
    }

    .topic {
        padding-bottom: 10px;
        font-size: 2.8rem;
        line-height: 1;
        border-bottom: 4px solid #FF893B60;
        border-radius: 2px;
    }

    .page__topic {
        font-size: 3.5rem;
    }

    .page__topic::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -6px;
        width: 100%;
        height: 15px;
        transform: translateX(-50%);
        background-color:#FF893B;
        border-radius: 10px;
        z-index: -1;
        opacity: 0.6;
    }

    .spBr {
        display: none;
    }

    .pcBr {
        display: block;
    }

    .pcNone {
        display: none;
    }

    .btn__link {
        border-radius: 90px;
        padding: 28px 70px;
        font-size: 1.8rem;
        gap: 15px;
    }

    .btn__link::after {
        width: 18px;
        height: 13px;
    }

    .btn__page {
        border-radius: 90px;
        padding: 28px 70px;
        font-size: 1.8rem;
        gap: 15px;
    }

    .btn__page::after {
        width: 20px;
        height: 20px;
    }

    .btn__pdf {
        border-radius: 90px;
        padding: 24px 70px;
        font-size: 1.8rem;
        gap: 15px;
    }

    .btn__pdf::after {
        width: 20px;
        height: 25px;
    }

    .js-video-thumb {
        width: 60vw;
        margin: 0 auto;
    }

    .js-video-thumb img {
        border-radius: 40px;
        width: 100%;
    }

    .play-icon {
        width: 10vw;
        height: 10vw;
    }
}
/* pc 769px */

/* ===============================
header
================================*/
.header {
    padding: 0 0 0 var(--contentPadding);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:fixed;
    top: 0;
    left: 0;
    background: var(--primary-white);
    width: 100%;
    z-index: 1000;
}

.header_logo {
    display: flex;
    gap: 5px;
}

.header__logo1 {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.header__logo2 {
    width: 73px;
    height: 35px;
}

/* nav初期表示 */
.nav {
    background-color: var(--primary-white);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.4s;
}

.nav__header {
    padding: 0 0 0 var(--contentPadding);
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__list {
    margin: 28px auto 0;
    height: calc(100vh - 60px);
    overflow: auto;
}

.btn__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
    padding: 0 10px 5px;
    color: var(--primary-brown);
    font-size: 1.4rem;
    font-weight: 500;
    transition: 0.4s;
    border-bottom: 1px solid #BDB5A3;
    margin: 15px auto 0;
}

.btn__nav::after {
    content: '';
    display: inline-block;
    width: 11px;
    height: 9px;
    background-image: url(../images/arrow_brown.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 10px;
    top: 50%;
}

.btn__nav__emphasis {
    display: block;
    width: 240px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 17px 40px;
    color: var(--primary-white,#FDFDFD);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    transition: 0.4s;
}

.btn__nav__emphasis--eventList {
    margin-top: 30px;
    background-color: var(--primary-yellowOrange);    
}

.btn__nav__emphasis--support {
    margin-top: 15px;
    background-color: var(--primary-orange);
}

.nav__menu--yellow {
    margin-top: 70px;
    padding: 10px 0 150px;
    background-color: var(--primary-paleYellow);
    position: relative;
}

.nav__menu--yellow::before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 50px;
    aspect-ratio: auto;
    background-image: url(../images/wave_yellowBefore.svg);
    background-repeat: no-repeat;
    background-size: cover;
    top: -45px;
    z-index: -1;
}

.btn__nav__shopmail {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid #BDB5A3;
    background-color: #fff;
    padding: 10px 40px;
    color: var(--primary--brown);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
    transition: 0.4s;
    gap: 15px;
}

.btn__nav__shopmail::before {
    content: '';
    display: inline-block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 10px;
    top: 50%;
}

.btn__nav__shopmail--shop::before {
    width: 15px;
    height: 15px;
    background-image: url(../images/shop.svg);
}

.btn__nav__shopmail--mail {
    margin-top: 10px;
}

.btn__nav__shopmail--mail::before {
    width: 18px;
    height: 14px;
    background-image: url(../images/mail.svg);    
}

.nav__sns {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.nav__btn {
    padding-right:  var(--contentPadding);
}

/* nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: block;
    width: 45px;
    height: 45px;
    margin-right: var(--contentPadding);
}

/* pc1 header */
@media screen and (min-width: 769px) {
    .header {
        height: 85px;
    }

    .nav__header {
        height: 85px;
    }

    .header_logo {
        gap: 15px;
    }

    .header__logo1 {
        width: 45px;
        height: 45px;
    }

    .header__logo2 {
        width: 100px;
        height: 45px;
    }

    .nav__menu--yellow {
        margin-top: 30px;
        padding: 30px 0 60vw;
    }

    .nav__menu--yellow::before {
        display: none;
    }
}

/* pc2 header */
@media screen and (min-width: 1200px) {
    .header {
        height: 85px;
        margin: 0 auto;
        padding: 0 30px;
    }

    .header_logo {
        gap: 20px;
    }

    .header__logo1 {
        width: 60px;
        height: 60px;
    }

    .header__logo2 {
        width: 135px;
        height: 60px;
    }

    .nav__header {
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .nav__list {
        margin: 0;
        height: auto;
        overflow: visible;
        display: grid;
        grid-template-columns:  1fr auto;
        grid-template-areas: "yellowAria emphasisAria" "mainAria emphasisAria";
        grid-template-rows: auto auto;
        align-items: start;
    }

    .nav__menu--main {
        grid-area: mainAria;
        margin-top: 3px;
    }

    .nav__menu--yellow {
        grid-area: yellowAria;
        margin-top: 0;
        margin-bottom: 3px;
        padding: 0;
        background-color: transparent;
    }

    .nav__menu--yellow::before {
        display: none;
    }

    .nav__menu--emphasis {
        grid-area: emphasisAria;
        align-self: center;
        gap: 20px;
    }

    .nav__menu {
        display: flex;
        justify-content: end;
        align-items: center;
        font-size: 1.5rem;
    }

    .btn__nav {
        padding: 0;
        transition: 0.4s;
        border-bottom: none;
        margin: 0 20px 0 0;
        display: unset;
        width: unset;
    }

    .btn__nav:last-of-type {
        margin: 0 30px 0 0;
    }

    .btn__nav::after {
        display: none;
    }

    .btn__nav--top {
        display: none;
    }

    .btn__nav__emphasis {
        width: 100%;
        padding: 20px 40px;
        font-size: 1.5rem;
    }

    .btn__nav__emphasis--eventList {
        margin-top: 0;
    }

    .btn__nav__emphasis--support {
        margin-top: 0;
    }

    .btn__nav__shopmail {
        border-radius: 10px;
        width: auto;
        padding: 7px 20px;
        font-size: 1.3rem;
        line-height: 1.3;
        margin: 0;
        margin-right: 20px;
    }

    .btn__nav__shopmail:last-of-type {
        margin-right: 30px;
    }

    .btn__nav__shopmail::before {
        content: '';
        display: inline-block;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        right: 10px;
        top: 50%;
    }

    .btn__nav__shopmail--shop::before {
        width: 15px;
        height: 15px;
        background-image: url(../images/shop.svg);
    }

    .btn__nav__shopmail--mail {
        margin-top: 0;
    }

    .btn__nav__shopmail--mail::before {
        width: 18px;
        height: 14px;
        background-image: url(../images/mail.svg);    
    }

    .nav__btn {
        padding-right:  var(--contentPadding);
    }

    .nav__sns {
        display:none;
    }

    .header__btn {
        display: none;
    }
}
/* pc */

/* ===============================
sns
================================*/
.sns__button {
    display: block;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 50px;
    width: 240px;
    height: 54px;
    background-color: #FFF;
    border-radius: 20px;
    border: 1px solid var(--primary-brown);
}

.mail__icon {
    width: 30px;
    height: 23px;
}

.mail__txt {
    font-size: 1.3rem;
}

.insta__icon {
    width: 30px;
    height: 30px;
}

.insta__txt {
    font-size: 1.5rem;
}

.facebook__icon {
    width: 30px;
    height: 30px;
}

.facebook__txt {
    font-size: 1.5rem;
}

.youtube__icon {
    width: 35px;
    height: 24px;
}

.youtube__txt {
    font-size: 1.5rem;
}

.line__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 100px;
    background-color: #FFF;
    border-radius: 20px;
    border: 1px solid var(--primary-brown);
}

.line__icon {
    width: 40px;
    height: 40px;
}

/* pc */
@media screen and (min-width: 769px) {
    .sns__button {
        justify-content: center;
        padding-left: 0;
        gap: 25px;
        width: 280px;
        height: 80px;
    }

    .mail__icon {
        width: 37px;
        height: 28px;
    }

    .mail__txt {
        font-size: 1.7rem;
    }

    .insta__icon {
        width: 38px;
        height: 38px;
    }

    .insta__txt {
        font-size: 1.9rem;
    }

    .facebook__icon {
        width: 38px;
        height: 38px;
    }

    .facebook__txt {
        font-size: 1.9rem;
    }

    .youtube__icon {
        width: 41px;
        height: 28px;
    }

    .youtube__txt {
        font-size: 1.9rem;
    }

    .line__txt__sp {
        display: none;
    }
    
    .line__button {
        width: 180px;
        height: 140px;
        border-radius: 40px;
        margin: 70px auto 0;
    }

    .line__icon {
        width: 50px;
        height: 50px;
    }
}

/* ===============================
footer
================================*/
.footer {
    background-color: var(--primary-white);
    padding: 20px;
    position: relative;
}

.footer__logo {
    display: block;
    margin: 0 auto;
    width: 120px;
    height: 55px;    
}

.footer__sns {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.copy {
    text-align: center;
    margin-top: 20px;
}

.copy small {
    font-size: 1rem;
    line-height: 1.5;
}

.page_top {
    display: none;
}

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

    .footer__logo {
        width: 150px;
        height: 68px;    
    }

    .footer__sns {
        margin-top: 15px;
    }

    .insta__icon-footer {
        width: 30px;
        height: 30px;
    }

    .facebook__icon-footer {
        width: 30px;
        height: 30px;
    }

    .youtube__icon-footer {
        width: 35px;
        height: 30px;
    }

    .copy {
        margin-top: 30px;
    }

    .copy small {
        font-size: 1.2rem;
    }

    .page_top {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        bottom: 60px;
        right: 50px;
    }

    .page_top::after {
        content: '';
        display: inline-block;
        width: 50px;
        height: 50px;
        background-image: url(../images/btn_pageTop.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* pc */

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

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

.fadeInTop {
    transform: translate(0,50px);
    opacity: 0;
    transition: 1.5s;
}

.fadeInTop-visual {
    transform: translate(-50px,0);    
}

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

.fadeInTop:nth-child(1) {
    transition-delay: 0s;
}

.fadeInTop:nth-child(2) { 
    transition-delay: 0.5s; 
}

.fadeInTop:nth-child(3) { 
    transition-delay: 1s; 
}


/* pc */
@media screen and (min-width: 769px) {
    .fadeIn-sp {
        transform: translate(0,0);
        opacity: 1;
    }

    .fadeIn-pc {
        transform: translate(0,80px);
        opacity: 0;
        transition: 1s;
    }

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

    .fadeIn--delay:nth-child(1) {
        transition-delay: 0s;
    }

    .fadeIn--delay:nth-child(2) { 
        transition-delay: 0.3s; 
    }

    .fadeIn--delay:nth-child(3) { 
        transition-delay: 0.6s; 
    }
}

/* pc */