@charset "utf-8";
/* common */
:root {
    --primary-white: #FFFFFF;
    --primary-green: #73BAB2;
    --primary-greenL: 115,186,178,50;
    --primary-lightBlue: #E6EDF3;
    --primary-lightGray: #F5F5F5;
    --primary-brown: #5B5144;
    --primary-black: #595959;
    --primary-orange: #FF6F31;
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-black,#595959);
    background-color: var(--primary-white, #FFFFFF);
    line-height: 1.5;
}

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

.btn {
    display: flex;
    color: var(--primary-white);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--primary-green, #73BAB2);
    transition: 0.4s;
    position: relative;
}

.btn__fixed {
    width: 280px;
    height: 50px;
    padding: 0;          
    display: flex;
    margin: 30px auto;
}

.btn:hover {
    opacity: 0.5;
}

.topic{
    position: relative;
    font-family: 'Old Standard TT', serif;
    font-style: italic;
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
    color: var(--primary-brown);
}

.topic::after{
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    background-color: var(--primary-brown, #5B5144);
    margin: 12px auto 0;
}

/* common pc 始*/
@media screen and (min-width:769px) {
.topic {
    font-size: 4.8rem;
}

.topic::after {
    margin: 20px auto 0;
}

.btn {
    width: 343px;
    height: 56px;
    font-size: 2.2rem;
    margin-top: 50px;
}
}/* common　pc 終 */

/* ここからheader */
.header {
    padding: 0 0 0 6.6%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__topic,
.nav__topic {
    font-size: 2rem;
    font-family: 'Old Standard TT', serif;
    font-style: italic;
    color: var(--primary-brown);
    line-height: 1.3;
}

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

/* ここからnav sp版*/
.nav {
    background-color: var(--primary-lightBlue);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    padding-left: 4.2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav__list {
    margin-top: 67px;
    font-family: 'Roboto Mono', monospace;
    
}

.nav__item {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
}

.nav__item::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background-color: var(--primary-white);
    margin-right: 16px;
}

.nav__btnContact{
    color: var(--primary-white);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    border-radius: 4px;
    background-color: var(--primary-green);
    padding: 12px 0 12px 16px;
    display: flex;
    align-items: center;
    transition: 0.4s;
}

.nav__btnContact::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-position: center;
    margin: 0 8px;
}

.nav__btn:hover {
    opacity: 0.5;
}

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

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

.header__btn,
.nav__btn {
    display: block;
    width: 64px;
    height: 64px;
}

/* header pc 始*/
@media screen and (min-width:769px){
    .header {
        max-width: 1280px;
        height: 80px;
        margin: 0 auto;
        padding: 20px 60px;
    }
    .header__topic {
        font-size: 3rem;
    }
    .nav__header {
        display: none;
    }

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

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

    .nav__item {
        margin: 0 0 0 32px;
        text-align: center;
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .nav__item::before {
        display: none;
    }

    .nav__item:nth-last-of-type(2) {
        display: none;
    }

    .nav__item:last-of-type {
        display: block;
    }

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

/* ここからfooter */
.contact__topic {
    background-color: var(--primary-lightBlue);
    padding: 14px 2.6% 25px;
    text-align: center;
}

.contact__txt {
    font-size: 1.3rem;
    line-height: 1.2;
    text-align: center;
}

.contact__btn {
    width: auto;
    height: auto;
    padding: 12px 16px;
    margin: 24px auto 0;
    display: inline-flex;
}


.contact__btn::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/LINE-icon.svg);
    background-size: contain;
    background-position: center;
    margin: 0 8px;
}

.contact__btn:hover {
    opacity: 0.5;
}

.footer__group {
    padding: 30px 29%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footerNav {
    order: 1;
}

.footerNav__item {
    font-size: 1.5rem;
    font-family: 'Roboto Mono', monospace;
    margin: 15px 0;
}

.footer__topic {
    order: 2;
    margin-top: 30px;
    font-size: 1.5rem;
    color: var(--primary-brown);
    font-family: 'Old Standard TT', serif;
    font-style: italic;
    line-height: 1.3;
}

.footer__sns {
    order: 3;
    display: flex;
    margin-top: 30px;
    align-items: flex-end;
}

.footer__snsItem {
    padding-right: 20px;
}

.footer__snsItem:last-of-type {
    padding-right: 0;
}

.copy {
    text-align: center;
    padding: 8px 0;
    margin-top: 48px;
}

.copy small {
    color: var(--primary-black);
    font-size: 1.2rem;
    line-height: 1.5;
}

/* footer pc　始 */
@media screen and (min-width:769px) {
.footer {
    margin-top: 60px;
}
    
.contact__topic {
    padding-top: 46px;
}
    
.contact__txt {
    font-size: 1.8rem;
    line-height: 1.5;
}
.footer__title {
    font-size: 3rem;
}

.footerNav__list {
    display: flex;
    margin-top: 50px;
}

.footerNav__item {
    font-size: 2rem;
    padding-right: 40px;
}

.footerNav__item:last-of-type {
    padding-right: 0;
}
}/* footer pc　終 */