@charset "UTF-8";

/* ===================
common
===================== */

:root {
    --primary-brown: #5D321B;
    --primary-wPink: #F58B9A;
    --primary-wGreen: #7FD1B0;
    --primary-wOrange: #F7C07C;
    --primary-wOrange: #F7C07C;
    --primary-Green: #2AB27B;
    --primary-Orange: #F19625;
    --primary-Pink: #EF3E57;
    --primary-blue: #6EC2D7;
    --primary-ibory: #FFF7E4;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Noto Sans JP", Arial, sans-serif;
    color: var(--primary-brown, #5D321B);
    background-color: var(---primary-ibory, #FFF7E4);
    line-height: 1.5;
}

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


.topic {
    text-align: center;
    width: 100%;
    margin: 40px auto;
}

.title__group {
    display: inline-block;
}

.topic__en {
    display: block; 
    font-family: Poppins;
    font-size: 1.2rem;
    font-weight: 500;
}

.topic__title {
    font-family: "Zen Maru Gothic";
    font-size: 2rem;
    font-weight: 600;
}

.title__group::after {
    content: '';
    display: block;
    width: 200px;
    height: 9px;
    background-image: url(../images/topic_dotcolor.png) ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.title--white::after {
    content: '';
    display: block;
    width: 100%;
    height: 9px;
    background-image: url(../images/topic_dotwhite.png) ;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.topic__txt {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    margin-top: 16px;
}

.news__en {
    display: block;
    color: var(--primary-brown, #5D321B);
    text-align: center;
    text-shadow: 0px 4px 4px #D9D9D9;
    font-family: Poppins;
    font-size: 1.2rem;
    font-weight: 500;
}

.btn {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    border-radius: 50px;
    /* background-image: url(../images/btn_background.png); */
    background-color: #A8DAE7;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px;
    box-shadow: 0px 4px 4px 0px #CCC;
    color: var(--primary-brown, #5D321B);
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    transition: 0.4s;
}

.btn--news::after {
    content: '';
    display: inline-block;
    width: 35%;
    height: 59px;
    background-image: url(../images/btn_newsFlower.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: -18.5px;
    bottom: -19.449px;
}

.btn:hover {
    opacity: 0.5;
}

/* common PC */

@media screen and (min-width:769px) {

.topic {
    margin: 0 auto;
    padding: 80px 0 40px;
}

.topic__en {
    font-size: 2.4rem;
}

.topic__title {
    font-size: 4rem;
}

.title__group::after {
    width: 100%;
    height: 18px;
}

.title--white::after {
    width: 100%;
    height: 18px;
}

.topic__txt {
    margin-top: 40px;
    font-size: 2.4rem;
}

.news__en {
    font-size: 1.6rem;
}

.btn {
    max-width: 442px;
    padding: 43px;
    font-size: 2.4rem;
}

.btn::after {
    content: '';
    display: inline-block;
    width: 45%;
    height: 101px;
    right: -26px;
    bottom: -40.987px;
}

.main {
    padding-top: 100px;
}

}/* common PC */

/* ===================
header
===================== */

.header {
    background-color: #FFFFFF;
    padding: 0 5%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__topic,
.nav__topic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 600;
}

.header__topic a,
.nav__topic a {
    display: block;
    align-items: center;
}

.topic__sub {
    display: block;
    font-size: 1rem;
    font-weight: 500;
}

/* nav初期表示 */

.nav {
    background-color: var( --primary-ibory, #FFF7E4);
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateY(-100%); 
    transition: transform 0.4s;
    height: 100%;
    overflow: scroll;
}

.nav__header {
    background-color: #FFFFFF;
    padding: 0 5%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__list {
    margin: 33px 12%;
}

.nav__item {
    margin-top: 30px;
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 600;
}

.nav__txt {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.75;
}

.nav__item:first-of-type {
    margin-bottom: 30px;
}

.nav__icon {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.nav__arrow {
    margin-left: 4px;
    vertical-align: baseline;
}

.header__btn {
    position: fixed;
    right: 5%;
    z-index: 100;
}

.nav.active {
    transform: translateY(0);
}

.header__btn.active {
    display: none;
}

/* header pc */

@media screen and (min-width: 768px) and (max-width: 1023px){ 
    .main {
        padding-top: 0px;
    }
}


@media screen and (min-width:1024px) {

    .header {
        background-color: rgba(255, 255, 255, 0.9);
        position: fixed;
        z-index: 100;
        display: flex;
        width: 100%;
        height: 100px;
        margin: 0 auto;
        padding: 15px 10%;
        justify-content: space-between;
    }

    .header__topic {
        font-size: 3.2rem;
    }

    .topic__sub {
        font-size: 1.6rem;
    }

    .nav__header {
        display: none;
    }

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

    .nav__list {
        display: flex;
        align-items: center;
        margin: 0 auto;
    }

    .nav__item {
        display: block;
        width: 130px;
        margin: 0 auto;
        font-size: 1.8rem;
        text-align: center;
    }

    .nav__icon {
        display: block;
        margin: 0 auto;
        width: 36px;
        height: 36px;
    }
    
    .nav__txt {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .nav__item:first-of-type {
        display: none;
    }

    .nav__arrow {
        display: none;
    }

}

@media screen and (min-width: 1024px) and (max-width: 1100px){ 
    .header {
        padding: 15px 5%;
    }
}

    
/* ===================
footer
===================== */

.footer {
    display: flex;
    padding-top: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background-image: url(../images/footerSP.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.footer::before {
    content: '';
    display: block;
    width: 117px;
    height: 95px;
    position: absolute;
    background-image: url(../images/footerSP_ring.png);
    top: 5px;
    left: 0px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -10;
}

.footer__txt {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7;
}

.footer__ringlink {
    margin: 30px auto 0;
    max-width: 309px;
    display: flex;
    padding: 20px 30px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    background-color: #FFF;
}

.name__group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ringlink__name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 2.2rem;
    font-weight: 600;
}

.ringlink__group {
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    font-weight: 500;
}

.ringlink__adress {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7;
}

.privacy__btn {
    margin-top: 10px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration-line: underline;
}

.copy {
    margin: 102px auto 8px;
    font-size: 0.8rem;
    line-height: 1.04;
}

/* footer pc */

@media screen and (min-width:769px) {

    .footer {
        background-image: url(../images/footerPC.png);
    }
    
    .footer::before {
        width: 301px;
        height: 232px;
        background-image: url(../images/footerPC_ring.png);
        top: 5px;
        left: 0px;
    }
    
    .footer__txt {
        margin: 24px auto;
        font-size: 2rem;
    }

    .spBr {
        display: none;
    }
    
    .footer__ringlink {
        margin: 24px auto 10px;
        max-width: 460px;
        padding: 20px 60px;
    }
    
    .ringlink__name {
        font-size: 3.2rem;
    }
    
    .ringlink__group {
        font-size: 1.6rem;
    }
    
    .ringlink__adress {
        font-size: 1.6rem;
    }
    
    .privacy__btn {
        font-size: 1.8rem;
    }
    
    .copy {
        margin: 155px auto 20px;
        font-size: 1.2rem;
        line-height: 1.5;
    }
    
}/* footer pc */