@charset "utf-8";
/*==========================
common
==========================*/
:root {
    --primary-white: #FDFDFD;
    --primary-black: #333A3A;
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
}

html {
    font-size: 62.5%;
    /* ページ内スクロールがスムーズに動く */
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans";
    font-style: normal;
    color: var(--primary-black, #333A3A);
    overflow-x: hidden;
    transform-origin: top center;
    animation: loading 1s;
}

@keyframes loading {
    0% {opacity: 0;transform: scale(1.05);}
    100% {opacity: 1;transform: scale(1);}
}

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

.btn {
    display: flex;
    color: var(--primary-black);
    /* text-align: center; */
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    padding: 0 12px 0 18px;
    /* position: relative; */
    transition: 0.4s;
    justify-content: flex-end;
}

.btn::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.btn:hover {
    opacity: 0.5;
}

/* common pc */
@media screen and (min-width:769px) {
    .btn {
        font-size: 2rem;
        font-weight: 400;
    }
}/* PC 769px */

/*==========================
header
==========================*/
.header {
    background: white;
    position: fixed;
    width: 100%;
    height: 51px;
    z-index: 100;
}

.menu {
    list-style: none;
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 50px;
    padding: 0 0 10px 0;
    clear: both;
    background: var(--background-navbar);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    background-color: var(--primary-white);
}
  
/* Hamburger menu button */
.menu-btn:checked ~ .menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
  
/* Hamburger menbu text */
.menu a {
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 16px;
    color: var(--primary-black);
    opacity: 0;
    transition: 0.5s;
}
  
.menu li {
    border-top: 1px solid rgb(75, 75, 75);
    padding: 15px 0;
    margin: 0 54px;
    opacity: 0;
    transition: 0.5s;
}
  
.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
  
.menu-btn {
    display: none;
}
  
.menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
  
.navicon {
    background: var(--primary-black);
    display: block;
    height: 2px;
    width: 22px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
  
.navicon:before,
.navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: var(--primary-black);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
  
.navicon:before {
    top: 9px;
}
  
.navicon:after {
    bottom: 9px;
}
  
/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}
  
.menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}
  
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
}
  
.menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */
  
/* Navbar Container */
.navtext-container {
    width: 100%;
    height: 52px;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
/* Navbar Text */
.navtext {
    position: absolute;
    text-transform: uppercase;
    color: var(--primary-black);
    letter-spacing: 4px;
    font-size: 15px;
}

.menu__pc {
    display: none;
}

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

    .navtext-container {
        margin-top: 14px;
    }

    .navtext {
        color: var(--primary-black);
        font-size: 2.5rem;
        letter-spacing: 2.5px;
        font-weight: 400;
        line-height: normal;
    }

    .menu,.menu-icon,.menu-btn {
        display: none;
    }

    .menu__pc {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        margin-top: 80px;
    }

    .menu_list__pc {
        color: var(--primary-black);
        font-size: 2rem;
        font-weight: 400;
    }
}/* PC 769px */

/*==========================
footer
==========================*/
.footerTitle {
    padding: 40px 0 32px;
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-align: center;
}

.footernav__item {
    padding: 0 0 7px 30px;
    font-size: 1.2rem;
    font-weight: 400;
}

.social-list {
    display: flex;
    margin: 20px 0 30px;
    justify-content: center;
}

.social-list-instagram,.social-list-x {
    width: 25px;
    margin-left: 15px;
    margin-right: 15px;
}

.copy {
    text-align: center;
}

/* common pc */
@media screen and (min-width:769px) {
    .footerTitle {
        color: var(--primary-black);
        font-size: 2.5rem;
        font-weight: 400;
        padding: 94px 0 0;
        letter-spacing: 2.5px;
    }

    .footerNav__list {
        display: flex;
        justify-content: space-around;
        padding: 91px 0 0;
    }

    .footernav__item {
        color: var(--primary-black);
        font-size: 1.6rem;
        font-weight: 400;
    }

    .social-list {
        display: flex;
        margin: 91px 0 50px;
        justify-content: center;
    }
}/* PC 769px */