@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
html {
    font-size: 62.5%;
}

body {
    font-size: 2.4rem;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #707070;
    background-color: #FFFEFE;
}

.body-wrapper {
    position: relative;
    overflow-x: hidden;
}

figure {
    line-height: 0;
}

.sp,
.tb {
    display: none;
}

@media screen and (max-width: 768px) {
    .tb {
        display: block;
    }
    .pc {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .sp {
        display: block;
    }
    .sp-hide {
        display: none;
    }
}

.container {
    width: 92%;
    max-width: 1480px;
    margin: 0 auto;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.position-relative {
    position: relative !important;
}

.flex-1 {
    flex: 1;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.f-18 {
    font-size: 1.8rem !important;
}

.f-20 {
    font-size: 2rem !important;
}

.f-27 {
    font-size: 2.7rem !important;
}

.f-32 {
    font-size: 3.2rem !important;
}

.f-40 {
    font-size: 4rem !important;
}

.bg-white {
    background-color: #fff !important;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table tr th,
table tr td {
    padding: 10px;
    border: 1px solid #707070;
    vertical-align: middle;
}

table thead tr {
    background-color: #F0F0F0;
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 1.8rem !important;
    }
    .f-18 {
        font-size: 1.6rem !important;
    }
    .f-20 {
        font-size: 1.7rem !important;
    }
    .f-27 {
        font-size: 2.1rem !important;
    }
    .f-32 {
        font-size: 2.3rem !important;
    }
    .f-40 {
        font-size: 2.6rem !important;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 1.6rem !important;
    }
    .f-18 {
        font-size: 1.4rem !important;
    }
    .f-20 {
        font-size: 1.5rem !important;
    }
    .f-27 {
        font-size: 1.8rem !important;
    }
    .f-32 {
        font-size: 2.1rem !important;
    }
    .f-40 {
        font-size: 2.4rem !important;
    }
}


/********************************************************
************************ Header *************************
********************************************************/

header {
    margin-bottom: 20px;
}

.header-wrapper {
    background-color: #F0F0F0;
}

.header-wrapper .container {
    height: 92px;
}

.header-logo {
    color: #2C6742;
}

.header-logo h1 {
    margin-right: 30px;
    line-height: 1.35;
}

.header-btn {
    width: 142px;
    text-align: center;
    margin-left: 20px;
    line-height: 50px;
    color: #fff;
    background-color: #2C6742;
    border-radius: 30px;
}

.header-btn--reg {
    background-color: #B0A364;
}

.header-menu {
    color: #fff;
    background: #2C6742;
}

.header-menu ul li {
    width: 20%;
}

.header-menu ul li a {
    position: relative;
    display: block;
    line-height: 73px;
    border: 2px solid #fff;
}

.header-menu ul li a:hover {
    background-color: #fff;
    color: #2C6742;
}

.menu-trigger {
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 100;
}

.menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2C6742;
    transition: all .4s;
}

.menu-trigger.active span {
    background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
}

.menu-trigger span:nth-of-type(2) {
    top: 9px;
}

.menu-trigger span:nth-of-type(3) {
    top: 18px;
}

.menu-trigger span:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01 {
    0% {
        transform: translateY(10px) rotate(45deg);
    }
    50% {
        transform: translateY(10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02 {
    0% {
        transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        transform: translateY(-10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger.active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(45deg);
    }
}

@keyframes active-menu-bar01 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(9px) rotate(0);
    }
    100% {
        transform: translateY(9px) rotate(45deg);
    }
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    width: 30px;
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(-45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-9px) rotate(0);
    }
    100% {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media screen and (max-width: 768px) {
    .header-menu {
        position: fixed;
        left: 100%;
        top: 0;
        width: 100%;
        height: 100vh;
        padding: 10vh 10vw;
        overflow-y: scroll;
        z-index: 99;
        transition: all .5s;
    }
    .header-menu.active {
        left: 0;
    }
    .header-menu ul li {
        width: 100%;
    }
    .header-menu ul li a {
        border-top: none;
        border-right: none;
        border-left: none;
    }
}

@media screen and (max-width: 480px) {
    .header-wrapper .container {
        height: 75px;
    }
}


/********************************************************
************************ Footer *************************
********************************************************/

footer {
    margin-top: 100px;
    padding: 30px 0;
    color: #fff;
    background-color: #2C6742;
}