@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --color-black: #353840;
    --color-green: #04AA64;
    --color-dark-green: #07844F;
    --color-ivory: #FFFBD9;
    --color-orange: #FDAB10;
    --color-blue: #546AC7;
    --header-height: 80px;
}
@media screen and (max-width: 767px) {
    :root {
        --header-height: 42px;
    }
}

html {
    font-size: 62.5%;
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-black);
    background-color: #ffffff;
    font-weight: 400;
    font-family: "LINE Seed JP", sans-serif;
    position: relative;
}
@media screen and (max-width: 767px) {
    html body {
        font-size: 1.4rem;
    }
}
html body main {
    margin-top: var(--header-height);
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease-in;
}
a:hover {
    text-decoration: none;
    opacity: 0.7;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* ------------------------------------- /
/   共通
/* ------------------------------------- */
:root {
    --inner-width: 1200px;
}

.inner {
    width: min(100%, var(--inner-width) / 0.88);
    margin: 0 auto;
    padding: 0 min(6%, var(--inner-width) * 0.03 / 0.44);
}
@media screen and (max-width: 767px) {
    .inner {
        padding: 0 4%;
    }
}

@media screen and (max-width: 1199px) {
    .pc1200 {
        display: none !important;
    }
}

.sp1200 {
    display: none;
}
@media screen and (max-width: 1199px) {
    .sp1200 {
        display: block !important;
    }
}

.sp1000 {
    display: none;
}
@media screen and (max-width: 999px) {
    .sp1000 {
        display: block !important;
    }
}

@media screen and (max-width: 999px) {
    .pc1000 {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .pc768 {
        display: none !important;
    }
}

.sp768 {
    display: none;
}
@media screen and (max-width: 767px) {
    .sp768 {
        display: block !important;
    }
}

.taC {
    text-align: center;
}

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

.grecaptcha-badge {
    visibility: hidden;
}

.m0a {
    margin: 0 auto;
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    --trigger-wrapper-width: 31px;
    --trigger-wrapper-height: 31px;
    --trigger-width: 15px;
    --trigger-gap: 4px;
    display: none;
    width: var(--trigger-wrapper-width);
    height: var(--trigger-wrapper-height);
    background: var(--color-green);
    border-radius: 50%;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: calc((var(--header-height) - var(--trigger-wrapper-height)) / 2);
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
}
@media screen and (max-width: 1199px) {
    .menu-trigger {
        display: block;
    }
}
@media screen and (max-width: 399px) {
    .menu-trigger {
        right: 10px;
    }
}
.menu-trigger span {
    display: inline-block;
    width: var(--trigger-width);
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: calc(50% - var(--trigger-width) / 2);
    transition-duration: 0.6s;
}
.menu-trigger span:nth-of-type(1) {
    top: calc(50% - var(--trigger-gap));
}
.menu-trigger span:nth-of-type(2) {
    top: calc(50% + var(--trigger-gap));
}
.menu-trigger span:nth-of-type(3) {
    top: 50%;
}
.menu-trigger.opened span {
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu-trigger.opened span:nth-of-type(1) {
    animation-name: menu-close_01;
}
.menu-trigger.opened span:nth-of-type(2) {
    animation-name: menu-close_02;
}
.menu-trigger.opened span:nth-of-type(3) {
    animation-name: menu-close_03;
}
.menu-trigger.active span:nth-of-type(1) {
    animation-name: menu-open_01;
}
.menu-trigger.active span:nth-of-type(2) {
    animation-name: menu-open_02;
}
.menu-trigger.active span:nth-of-type(3) {
    animation-name: menu-open_03;
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - var(--trigger-gap));
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
}
@keyframes menu-close_01 {
    0% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - var(--trigger-gap));
        transform: rotate(0deg);
    }
}
@keyframes menu-open_03 {
    0% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    66.6666% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    70% {
        width: 0;
        left: calc(50% - 0px);
    }
    100% {
        width: 0;
        left: calc(50% - 0px);
    }
}
@keyframes menu-close_03 {
    0% {
        width: 0;
        left: calc(50% - 0px);
    }
    66.6666% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    70% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    100% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + var(--trigger-gap));
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
}
@keyframes menu-close_02 {
    0% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + var(--trigger-gap));
        transform: rotate(0deg);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    padding: 0 50px 0 27px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    font-weight: 700;
}
@media screen and (max-width: 1619px) {
    header {
        padding: 0 20px;
    }
}
@media screen and (max-width: 767px) {
    header {
        padding: 0 10px 0 17px;
    }
}
header.shadow {
    box-shadow: 0px 3px 6px rgba(9, 78, 49, 0.07);
}
header .header__left {
    display: flex;
    align-items: center;
    gap: 9px;
}
@media screen and (max-width: 1619px) {
    header .header__left {
        gap: 5px;
    }
}
@media screen and (max-width: 767px) {
    header .header__left {
        gap: 3px;
    }
}
header .header__left .header__logo {
    max-width: 204px;
}
@media screen and (max-width: 1619px) {
    header .header__left .header__logo {
        max-width: 130px;
    }
}
@media screen and (max-width: 767px) {
    header .header__left .header__logo {
        max-width: 94px;
    }
}
header .header__left .header__left__txt {
    font-size: 1.4rem;
    line-height: 1.43;
}
@media screen and (max-width: 1619px) {
    header .header__left .header__left__txt {
        font-size: 1.1rem;
    }
}
@media screen and (max-width: 767px) {
    header .header__left .header__left__txt {
        font-size: 0.6rem;
    }
}
header .header__left .header__left__txt .sm {
    font-size: 1.3rem;
}
@media screen and (max-width: 1619px) {
    header .header__left .header__left__txt .sm {
        font-size: 1rem;
    }
}
@media screen and (max-width: 767px) {
    header .header__left .header__left__txt .sm {
        font-size: 0.5rem;
    }
}
header .header__right {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media screen and (max-width: 1619px) {
    header .header__right {
        gap: 15px;
    }
}
@media screen and (max-width: 1199px) {
    header .header__right {
        display: none;
    }
}
header .header__right .header__menu {
    display: flex;
    gap: 30px;
    font-size: 1.8rem;
}
@media screen and (max-width: 1619px) {
    header .header__right .header__menu {
        gap: 10px;
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 1619px) {
    header .header__right .cta__container {
        font-size: 1.4rem;
        gap: 6px;
    }
    header .header__right .cta__container a {
        width: 200px;
        gap: 6px;
    }
    header .header__right .cta__container a::before {
        width: 17px;
    }
    header .header__right .cta__container a.or::before {
        width: 22px;
    }
}

.nav {
    display: none;
}
@media screen and (max-width: 1199px) {
    .nav {
        display: block;
        width: min(100%, 400px);
        height: 100vh;
        background: #FFF;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateX(100%);
        z-index: 99;
        padding: 95px 22px 0;
    }
    .nav.active {
        transform: translateX(0);
        transition-delay: 0s;
    }
    .nav.active .wrapper {
        transition-delay: 0.8s;
        opacity: 1;
    }
    .nav .wrapper {
        opacity: 0;
        transition-duration: 0.4s;
    }
    .nav .wrapper .nav__menu {
        display: flex;
        flex-direction: column;
        gap: 20px;
        font-size: 1.6rem;
        font-weight: 700;
    }
    .nav .wrapper .nav__menu li {
        padding-left: 33px;
        position: relative;
    }
    .nav .wrapper .nav__menu li::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 13px;
        transform: translateY(-50%);
        width: 5px;
        aspect-ratio: 1;
        border-radius: 50%;
        background: var(--color-green);
    }
    .nav .wrapper .cta__container {
        font-weight: 700;
        flex-direction: column;
        row-gap: 25px;
    }
    .nav .wrapper .cta__container a {
        width: min(100%, 346px);
    }
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    color: #fff;
    font-weight: 700;
    border-bottom: 20px solid var(--color-dark-green);
}
@media screen and (max-width: 767px) {
    footer {
        border-bottom-width: 10px;
    }
}
footer .footer__bg {
    background: var(--color-green);
    border-radius: 50px 50px 0 0;
}
@media screen and (max-width: 767px) {
    footer .footer__bg {
        border-radius: 20px 20px 0 0;
    }
}
@media screen and (max-width: 767px) {
    footer .footer__bottom {
        margin-top: 25px;
    }
}
@media screen and (max-width: 399px) {
    footer .footer__bottom {
        flex-direction: column;
        align-items: center;
    }
    footer .footer__bottom.sp768 {
        display: flex !important;
    }
}
footer .footer__bottom .footer__bottom__link {
    display: flex;
    align-items: center;
    gap: 26px;
}
@media screen and (max-width: 767px) {
    footer .footer__bottom .footer__bottom__link {
        gap: 30px;
    }
}
footer .footer__bottom .footer__bottom__link .border {
    width: 1px;
    height: 18px;
    background: #fff;
}
footer .footer__bottom .footer__copyright {
    margin-top: 45px;
    font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
    footer .footer__bottom .footer__copyright {
        margin-top: 15px;
        font-size: 1rem;
    }
}
footer .footer__container {
    display: flex;
}
@media screen and (max-width: 767px) {
    footer .footer__container {
        flex-direction: column;
        row-gap: 50px;
    }
}
footer .footer__container .footer__left, footer .footer__container .footer__right {
    flex: 1 1 50%;
}
footer .footer__container .footer__left {
    padding-right: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    footer .footer__container .footer__left {
        padding-right: unset;
    }
}
footer .footer__container .footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
footer .footer__logo {
    max-width: 306px;
    display: block;
}
@media screen and (max-width: 1199px) {
    footer .footer__logo {
        max-width: 220px;
    }
}
@media screen and (max-width: 767px) {
    footer .footer__logo {
        max-width: 186px;
    }
}
footer .cta__container {
    flex-direction: column;
    gap: 15px;
}
@media screen and (max-width: 399px) {
    footer .cta__container {
        width: 100%;
    }
    footer .cta__container a {
        width: 100%;
    }
}
footer .font21 {
    font-size: 2.1rem;
}
@media screen and (max-width: 1199px) {
    footer .font21 {
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 767px) {
    footer .font21 {
        font-size: 1.4rem;
    }
}
footer .font14 {
    font-size: 1.4rem;
}
@media screen and (max-width: 1199px) {
    footer .font14 {
        font-size: 1.3rem;
    }
}
@media screen and (max-width: 767px) {
    footer .font14 {
        font-size: 1.2rem;
    }
}
footer .footer__menu {
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media screen and (max-width: 1199px) {
    footer .footer__menu {
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 767px) {
    footer .footer__menu {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.cta__container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
}
.cta__container a {
    width: 250px;
    height: 56px;
    border-radius: 28px;
    background: #09C374;
    border: 1px solid #09C374;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    color: #fff;
}
.cta__container a::before {
    content: "";
    display: block;
    width: 19.4px;
    aspect-ratio: 19.4/26;
    background: #fff;
    -webkit-mask: url(../img/common/icon_sim.svg) center/contain no-repeat;
            mask: url(../img/common/icon_sim.svg) center/contain no-repeat;
}
.cta__container a.or {
    background: var(--color-orange);
    border: 1px solid var(--color-orange);
}
.cta__container a.or::before {
    width: 27.2px;
    aspect-ratio: 27.2/22.9;
    background: #fff;
    -webkit-mask: url(../img/common/icon_area.svg) center/contain no-repeat;
            mask: url(../img/common/icon_area.svg) center/contain no-repeat;
}
.cta__container a:hover {
    opacity: unset;
    background: #fff;
    color: #09C374;
}
.cta__container a:hover::before {
    background: #09C374;
}
.cta__container a:hover.or {
    color: var(--color-orange);
}
.cta__container a:hover.or::before {
    background: var(--color-orange);
}

.lower__ttl__sec {
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px 20px 0;
}
@media screen and (max-width: 767px) {
    .lower__ttl__sec {
        padding: 10px 15px 0;
    }
}
.lower__ttl__sec .lower__ttl__wrapper {
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
@media screen and (max-width: 767px) {
    .lower__ttl__sec .lower__ttl__wrapper {
        padding: 40px;
    }
}
.lower__ttl__sec .lower__ttl__wrapper::before {
    content: "";
    position: absolute;
    border-radius: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(200deg, #e2fdbb 0%, #e0fcdb 38.92%, #bff7d1 100%);
    opacity: 0.49;
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .lower__ttl__sec .lower__ttl__wrapper::before {
        border-radius: 10px;
    }
}
.lower__ttl__sec .lower__ttl__wrapper .lower__ttl__h1 {
    font-size: 5.6rem;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .lower__ttl__sec .lower__ttl__wrapper .lower__ttl__h1 {
        font-size: 2.8rem;
    }
}
.lower__ttl__sec .lower__ttl__wrapper .lower__ttl__h1__en {
    font-size: 2.9rem;
    font-weight: 700;
    color: var(--color-green);
}
@media screen and (max-width: 767px) {
    .lower__ttl__sec .lower__ttl__wrapper .lower__ttl__h1__en {
        font-size: 1.6rem;
    }
}
.lower__ttl__sec .lower__ttl__wrapper .lower__ttl__popup {
    font-size: 3.4rem;
    background: var(--color-green);
    color: #fff;
    font-weight: 700;
    height: 66px;
    border-radius: 33px;
    padding: 0 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .lower__ttl__sec .lower__ttl__wrapper .lower__ttl__popup {
        font-size: 1.8rem;
        height: 40px;
        border-radius: 20px;
        padding: 0 20px;
        margin-bottom: 15px;
    }
}
.lower__ttl__sec .lower__ttl__wrapper .lower__ttl__popup::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 31px;
    aspect-ratio: 31/27;
    background: var(--color-green);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    transform: translate(-50%, 50%);
}
@media screen and (max-width: 767px) {
    .lower__ttl__sec .lower__ttl__wrapper .lower__ttl__popup::before {
        width: 25px;
    }
}

.breadcrumb__sec {
    padding-top: 20px;
}
@media screen and (max-width: 767px) {
    .breadcrumb__sec {
        padding-top: 10px;
    }
}
.breadcrumb__sec .breadcrumb__container {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px 15px;
    font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
    .breadcrumb__sec .breadcrumb__container {
        gap: 4px 8px;
        font-size: 1.5rem;
    }
}
.breadcrumb__sec .breadcrumb__container li:not(:first-child) {
    padding-left: 25px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .breadcrumb__sec .breadcrumb__container li:not(:first-child) {
        padding-left: 16px;
    }
}
.breadcrumb__sec .breadcrumb__container li:not(:first-child)::before {
    content: ">";
    position: absolute;
    left: 0;
}
.breadcrumb__sec .breadcrumb__container .top {
    color: var(--color-green);
}

.navigate {
    --navigate-border-width: 10px;
    padding: 80px 15px 60px;
    border-radius: 10px;
    border: var(--navigate-border-width) solid #94E6C4;
    font-weight: 700;
    position: relative;
}
@media screen and (max-width: 1199px) {
    .navigate {
        padding: 50px 15px 45px;
    }
}
@media screen and (max-width: 767px) {
    .navigate {
        --navigate-border-width: 5px;
        padding: 40px 15px 30px;
    }
}
.navigate .popup {
    position: absolute;
    top: 0;
    left: 50%;
    background: var(--color-green);
    color: #fff;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    border-radius: 33px;
    padding: 0 50px;
    transform: translate(-50%, calc(-50% - var(--navigate-border-width)));
    white-space: nowrap;
}
@media screen and (max-width: 1199px) {
    .navigate .popup {
        font-size: 2.5rem;
        height: 50px;
        border-radius: 25px;
        padding: 0 30px;
    }
}
@media screen and (max-width: 767px) {
    .navigate .popup {
        font-size: 1.9rem;
        height: 40px;
        border-radius: 20px;
        padding: 0 20px;
    }
}
.navigate .popup::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 31px;
    aspect-ratio: 31/27;
    background: var(--color-green);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    transform: translate(-50%, 50%);
}
@media screen and (max-width: 767px) {
    .navigate .popup::before {
        width: 25px;
    }
}
.navigate .font40 {
    font-size: 4rem;
}
@media screen and (max-width: 1199px) {
    .navigate .font40 {
        font-size: 3.2rem;
    }
}
@media screen and (max-width: 767px) {
    .navigate .font40 {
        font-size: 2.4rem;
        line-height: 1.4;
    }
}

.navigate__btn__container {
    max-width: 1046px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-weight: 700;
}
@media screen and (max-width: 1199px) {
    .navigate__btn__container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
@media screen and (max-width: 767px) {
    .navigate__btn__container {
        gap: 15px;
    }
}
.navigate__btn__container a {
    --border-width: 44px;
    width: calc((100% - 30px) / 2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 15px;
    background: var(--color-green);
    min-height: 150px;
    color: #fff;
    border-right: var(--border-width) solid var(--color-dark-green);
    font-size: 3.3rem;
    position: relative;
    transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    padding: 10px;
    box-shadow: 0px 3px 30px rgba(54, 63, 85, 0.15);
}
@media screen and (max-width: 1199px) {
    .navigate__btn__container a {
        --border-width: 38px;
        width: unset;
        gap: 10px;
        font-size: 2.5rem;
        padding: 20px;
        min-height: 120px;
    }
}
@media screen and (max-width: 767px) {
    .navigate__btn__container a {
        width: min(100%, 374px);
        --border-width: 30px;
        border-radius: 10px;
        font-size: 2rem;
        padding: 10px;
        min-height: 80px;
        gap: 6px;
        box-shadow: 0px 2px 10px rgba(54, 63, 85, 0.15);
    }
}
.navigate__btn__container a.or {
    background: var(--color-orange);
    border-right-color: #E09303;
}
.navigate__btn__container a.or::before {
    background: url(../img/common/navigate_2.svg) center/contain no-repeat;
}
.navigate__btn__container a::before {
    content: "";
    display: block;
    width: 70px;
    aspect-ratio: 1;
    background: url(../img/common/navigate_1.svg) center/contain no-repeat;
}
@media screen and (max-width: 1199px) {
    .navigate__btn__container a::before {
        width: 56px;
    }
}
@media screen and (max-width: 767px) {
    .navigate__btn__container a::before {
        width: 44px;
    }
}
.navigate__btn__container a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(0px - var(--border-width) / 2);
    transform: translate(25%, -50%);
    width: calc(var(--border-width) / 2);
    aspect-ratio: 1;
    background: url(../img/common/navigate_chevron.svg) center/contain no-repeat;
}
.navigate__btn__container a:hover {
    opacity: unset;
    transform: translateY(-5px);
}
.navigate__btn__container a .font22 {
    font-size: 2.2rem;
}
@media screen and (max-width: 1199px) {
    .navigate__btn__container a .font22 {
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 767px) {
    .navigate__btn__container a .font22 {
        font-size: 1.6rem;
    }
}

.dot__container {
    display: flex;
    justify-content: center;
    gap: 7px;
}
@media screen and (max-width: 1199px) {
    .dot__container {
        gap: 6px;
    }
}
@media screen and (max-width: 999px) {
    .dot__container {
        gap: 5px;
    }
}
@media screen and (max-width: 767px) {
    .dot__container {
        gap: 4px;
    }
}
.dot__container div {
    width: 11px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-green);
}
.dot__container div:nth-of-type(2) {
    background: var(--color-orange);
}
.dot__container div:nth-of-type(3) {
    background: var(--color-blue);
}
@media screen and (max-width: 1199px) {
    .dot__container div {
        width: 9px;
    }
}
@media screen and (max-width: 999px) {
    .dot__container div {
        width: 8px;
    }
}
@media screen and (max-width: 767px) {
    .dot__container div {
        width: 6px;
    }
}

.btn__gr {
    width: min(100%, 400px);
    height: 90px;
    border-radius: 45px;
    background: var(--color-green);
    display: flex;
    justify-content: center;
    align-items: center;
    border: unset;
    font: inherit;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.16);
    position: relative;
    cursor: pointer;
    border: 2px solid var(--color-green);
}
.btn__gr.rev {
    background: #fff;
    color: var(--color-green);
}
.btn__gr.rev .btn__gr__dot__container div {
    background: var(--color-green);
}
.btn__gr.rev:hover {
    background: var(--color-green);
    color: #fff;
}
.btn__gr.rev:hover .btn__gr__dot__container div {
    background: #fff;
}
.btn__gr:hover {
    color: var(--color-green);
    background: #fff;
    opacity: unset;
}
.btn__gr:hover .btn__gr__dot__container div {
    background: var(--color-green);
}
.btn__gr:disabled {
    cursor: unset;
}
@media screen and (max-width: 1199px) {
    .btn__gr {
        width: min(100%, 320px);
        font-size: 1.8rem;
        height: 80px;
        border-radius: 40px;
    }
}
@media screen and (max-width: 999px) {
    .btn__gr {
        width: min(100%, 280px);
        height: 70px;
        border-radius: 35px;
    }
}
@media screen and (max-width: 767px) {
    .btn__gr {
        width: min(100%, 346px);
        height: 60px;
    }
}
.btn__gr .btn__gr__dot__container {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
}
@media screen and (max-width: 1199px) {
    .btn__gr .btn__gr__dot__container {
        right: 30px;
    }
}
@media screen and (max-width: 999px) {
    .btn__gr .btn__gr__dot__container {
        right: 25px;
    }
}
@media screen and (max-width: 767px) {
    .btn__gr .btn__gr__dot__container {
        right: 18px;
        gap: 4px;
    }
}
.btn__gr .btn__gr__dot__container div {
    width: 7px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
}
@media screen and (max-width: 999px) {
    .btn__gr .btn__gr__dot__container div {
        width: 6px;
    }
}
@media screen and (max-width: 767px) {
    .btn__gr .btn__gr__dot__container div {
        width: 5px;
    }
}

.lower__h2__wrapper h2 {
    font-size: 4.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.44;
}
@media screen and (max-width: 1199px) {
    .lower__h2__wrapper h2 {
        font-size: 3.6rem;
    }
}
@media screen and (max-width: 767px) {
    .lower__h2__wrapper h2 {
        font-size: 2.8rem;
    }
}
.lower__h2__wrapper .dot__container {
    margin-top: 10px;
}

.form__wrapper {
    max-width: 1020px;
    margin: 0 auto;
}
.form__wrapper dl {
    display: flex;
    align-items: flex-start;
    gap: 70px;
    margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
    .form__wrapper dl {
        margin-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
.form__wrapper dl dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-weight: 700;
    font-size: 1.6rem;
    width: 246px;
    padding-top: 6px;
}
@media screen and (max-width: 767px) {
    .form__wrapper dl dt {
        padding-top: unset;
        width: unset;
        justify-content: flex-start;
        gap: 10px;
        font-size: 1.4rem;
    }
}
.form__wrapper dl dt .required {
    font-size: 1.4rem;
    color: #fff;
    background: #FA894D;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 25px;
    border-radius: 23px;
}
@media screen and (max-width: 767px) {
    .form__wrapper dl dt .required {
        font-size: 1.2rem;
        width: 44px;
        height: 22px;
    }
}
.form__wrapper dl dd {
    flex: 1 1;
}
@media screen and (max-width: 767px) {
    .form__wrapper dl dd {
        width: 100%;
    }
}
.form__wrapper dl dd input,
.form__wrapper dl dd textarea {
    border: 1px solid #848484;
    background: #FAFAFA;
    border-radius: 5px;
    font: inherit;
    width: 100%;
    padding: 12px;
    padding: 5px;
}
.form__wrapper .error {
    color: red;
}
.form__wrapper .error.false {
    display: none;
}
.form__wrapper .pp__notice {
    font-size: 1.8rem;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .form__wrapper .pp__notice {
        font-size: 1.6rem;
        text-align: left;
    }
}

.form__btn__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.pp__container {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto;
    position: relative;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 767px) {
    .pp__container {
        font-size: 1.2rem;
    }
}
.pp__container a {
    text-decoration: underline;
}
.pp__container span {
    padding-left: 36px;
}
@media screen and (max-width: 767px) {
    .pp__container span {
        padding-left: 30px;
    }
}
.pp__container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 26px;
    aspect-ratio: 1;
    border-radius: 5px;
    border: 1px solid #848484;
    background: #FAFAFA;
}
@media screen and (max-width: 767px) {
    .pp__container::before {
        width: 20px;
    }
}
.pp__container:has(input[type=checkbox]:checked)::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 8px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    top: 50%;
    left: 5px;
    transform: translate(0, -50%) rotate(310deg);
}
@media screen and (max-width: 767px) {
    .pp__container:has(input[type=checkbox]:checked)::after {
        width: 12px;
        height: 6px;
        left: 4px;
    }
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.top__mv {
    position: relative;
    padding-top: 30px;
    border-bottom: 20px solid var(--color-green);
}
@media screen and (max-width: 767px) {
    .top__mv {
        border-bottom-width: 10px;
    }
}
.top__mv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(190deg, #b8eb71 0%, #7dcc72 38.92%, #2fb458 100%);
    opacity: 0.49;
    z-index: -1;
}
.top__mv h2 {
    font-size: clamp(6rem, 4rem + 1.667vw, 7.2rem);
    color: #fff;
    text-shadow: 2px 6px 0px rgba(10, 77, 49, 0.24);
    font-weight: 800;
    line-height: 1.61;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 15px;
    text-align: center;
    position: relative;
}
@media screen and (max-width: 1199px) {
    .top__mv h2 {
        font-size: clamp(5rem, 0rem + 5vw, 6rem);
    }
}
@media screen and (max-width: 999px) {
    .top__mv h2 {
        line-height: 1.2;
    }
}
@media screen and (max-width: 767px) {
    .top__mv h2 {
        font-size: 3.6rem;
        text-shadow: 1px 4px 0px rgba(10, 77, 49, 0.24);
    }
}
.top__mv h2::before {
    content: "";
    position: absolute;
    width: 45px;
    aspect-ratio: 45/57;
    left: -30px;
    top: 50%;
    transform: translate(-100%, -50%);
    background: url(../img/top/mv_1.svg) center/contain no-repeat;
}
@media screen and (max-width: 1199px) {
    .top__mv h2::before {
        width: 30px;
        left: -15px;
    }
}
@media screen and (max-width: 999px) {
    .top__mv h2::before {
        width: 23px;
        top: unset;
        bottom: 0;
        transform: unset;
    }
}
.top__mv h2::after {
    content: "";
    position: absolute;
    width: 60px;
    aspect-ratio: 60/58;
    right: -13px;
    top: 50%;
    transform: translate(100%, -50%);
    background: url(../img/top/mv_2.svg) center/contain no-repeat;
}
@media screen and (max-width: 1199px) {
    .top__mv h2::after {
        width: 40px;
        right: -8px;
    }
}
@media screen and (max-width: 999px) {
    .top__mv h2::after {
        width: 31px;
        top: unset;
        bottom: 0;
        transform: unset;
    }
}
.top__mv h2 .sm {
    font-size: clamp(4.8rem, 2.467rem + 1.944vw, 6.2rem);
}
@media screen and (max-width: 1199px) {
    .top__mv h2 .sm {
        font-size: clamp(4rem, 0rem + 4vw, 4.8rem);
    }
}
@media screen and (max-width: 767px) {
    .top__mv h2 .sm {
        font-size: 2.6rem;
    }
}
.top__mv .top__mv__container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
@media screen and (max-width: 999px) {
    .top__mv .top__mv__container {
        flex-direction: column-reverse;
        align-items: center;
        row-gap: 50px;
    }
}
.top__mv .top__mv__container .top__mv__left {
    width: 50%;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 45px;
}
@media screen and (max-width: 999px) {
    .top__mv .top__mv__container .top__mv__left {
        border-radius: 10px 10px 0 0;
        width: 100%;
        padding: 20px;
    }
}
.top__mv .top__mv__container .top__mv__left dl {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
    .top__mv .top__mv__container .top__mv__left dl {
        gap: 12px;
    }
}
@media screen and (max-width: 767px) {
    .top__mv .top__mv__container .top__mv__left dl {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
.top__mv .top__mv__container .top__mv__left dl dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-weight: 700;
    font-size: 1.6rem;
    width: 210px;
}
@media screen and (max-width: 1199px) {
    .top__mv .top__mv__container .top__mv__left dl dt {
        font-size: 1.5rem;
        width: 190px;
        gap: 11px;
    }
}
@media screen and (max-width: 767px) {
    .top__mv .top__mv__container .top__mv__left dl dt {
        width: unset;
        justify-content: flex-start;
        gap: 10px;
        font-size: 1.4rem;
    }
}
.top__mv .top__mv__container .top__mv__left dl dt .required {
    font-size: 1.4rem;
    color: #fff;
    background: #FA894D;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 25px;
    border-radius: 23px;
}
@media screen and (max-width: 1199px) {
    .top__mv .top__mv__container .top__mv__left dl dt .required {
        width: 42px;
        font-size: 1.3rem;
    }
}
@media screen and (max-width: 767px) {
    .top__mv .top__mv__container .top__mv__left dl dt .required {
        font-size: 1.2rem;
        width: 44px;
        height: 22px;
    }
}
.top__mv .top__mv__container .top__mv__left dl dd {
    flex: 1 1;
}
@media screen and (max-width: 1199px) {
    .top__mv .top__mv__container .top__mv__left dl dd {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 767px) {
    .top__mv .top__mv__container .top__mv__left dl dd {
        width: 100%;
    }
}
.top__mv .top__mv__container .top__mv__left dl dd input {
    border: 1px solid #848484;
    background: #FAFAFA;
    border-radius: 5px;
    font: inherit;
    color: inherit;
    width: 100%;
    padding: 5px;
    display: block;
}
.top__mv .top__mv__container .top__mv__left dl dd input::-webkit-date-and-time-value {
    text-align: left;
}
.top__mv .top__mv__container .top__mv__left dl dd .select__wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    background: #FAFAFA;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #848484;
}
.top__mv .top__mv__container .top__mv__left dl dd .select__wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    width: 12px;
    aspect-ratio: 22/19;
    background: url(../img/simulation/select.svg) center/contain no-repeat;
}
.top__mv .top__mv__container .top__mv__left dl dd .select__wrapper select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: unset;
    cursor: pointer;
    border: unset;
    font: inherit;
    color: inherit;
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    padding-right: 20px;
}
.top__mv .top__mv__container .top__mv__left button[type=submit] {
    font: inherit;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--color-green);
    width: min(100%, 400px);
    height: 65px;
    border-radius: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto 0;
    border: unset;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .top__mv .top__mv__container .top__mv__left button[type=submit] {
        width: min(100%, 306px);
        font-size: 1.8rem;
        height: 60px;
    }
}
.top__mv .top__mv__container .top__mv__right {
    max-width: 532px;
}
@media screen and (max-width: 1199px) {
    .top__mv .top__mv__container .top__mv__right {
        flex: 1 1;
    }
}
.top__mv .top__mv__container .top__mv__right .navigate__btn__container {
    max-width: 510px;
    margin: 0 0 0 auto;
    flex-direction: column;
}
.top__mv .top__mv__container .top__mv__right .navigate__btn__container a {
    width: 100%;
}

.top__h2__container {
    text-align: center;
}
.top__h2__container .top__h2__upside {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
@media screen and (max-width: 1199px) {
    .top__h2__container .top__h2__upside {
        gap: 14px;
    }
}
@media screen and (max-width: 767px) {
    .top__h2__container .top__h2__upside {
        gap: 8px;
    }
}
.top__h2__container .top__h2__en {
    color: var(--color-green);
    font-size: 2.9rem;
    font-weight: 700;
}
@media screen and (max-width: 1199px) {
    .top__h2__container .top__h2__en {
        font-size: 2.2rem;
    }
}
@media screen and (max-width: 767px) {
    .top__h2__container .top__h2__en {
        font-size: 1.4rem;
    }
}
.top__h2__container .top__h2 {
    font-size: 5.6rem;
    font-weight: 700;
}
@media screen and (max-width: 1199px) {
    .top__h2__container .top__h2 {
        font-size: 4rem;
    }
}
@media screen and (max-width: 767px) {
    .top__h2__container .top__h2 {
        font-size: 2.4rem;
    }
}

.top__reason .top__reason__container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
@media screen and (max-width: 1199px) {
    .top__reason .top__reason__container {
        gap: 20px;
    }
}
.top__reason .top__reason__container > div {
    width: calc((100% - 40px) / 2);
    min-height: 300px;
    background: #FAFAFA;
    border: 1px solid #94E6C4;
    border-radius: 25px;
    padding: 25px 25px 30px;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 1199px) {
    .top__reason .top__reason__container > div {
        width: calc((100% - 20px) / 2);
        padding: 35px 15px 30px;
    }
}
@media screen and (max-width: 767px) {
    .top__reason .top__reason__container > div {
        border-radius: 15px;
        min-height: 250px;
        width: 100%;
        padding: 35px 15px 35px;
    }
}
.top__reason .top__reason__container > div .top__reason__circle {
    position: absolute;
    width: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-green);
    font-size: 4.3rem;
    font-weight: 700;
    color: #fff;
    left: -8px;
    top: -8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1199px) {
    .top__reason .top__reason__container > div .top__reason__circle {
        width: 75px;
        font-size: 3.2rem;
        left: -6px;
        top: -6px;
    }
}
@media screen and (max-width: 767px) {
    .top__reason .top__reason__container > div .top__reason__circle {
        width: 60px;
        font-size: 2.5rem;
        left: -5px;
        top: -5px;
    }
}
.top__reason .top__reason__container > div .top__reason__circle .num {
    margin-top: 8px;
}
@media screen and (max-width: 1199px) {
    .top__reason .top__reason__container > div .top__reason__circle .num {
        margin-top: 5px;
    }
}
@media screen and (max-width: 767px) {
    .top__reason .top__reason__container > div .top__reason__circle .num {
        margin-top: 3px;
    }
}
.top__reason .top__reason__container > div img {
    margin: 0 auto;
    width: min(100%, 240px);
}
@media screen and (max-width: 767px) {
    .top__reason .top__reason__container > div img {
        width: min(100%, 200px);
    }
}
.top__reason .top__reason__container > div .top__reason__txt {
    margin-top: 10px;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
}
@media screen and (max-width: 1199px) {
    .top__reason .top__reason__container > div .top__reason__txt {
        font-size: 2.2rem;
    }
}
@media screen and (max-width: 767px) {
    .top__reason .top__reason__container > div .top__reason__txt {
        font-size: 1.6rem;
    }
}

.top__pickup {
    background: var(--color-ivory);
}
.top__pickup .top__pickup__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
}
@media screen and (max-width: 767px) {
    .top__pickup .top__pickup__container {
        gap: 10px 7px;
        justify-content: flex-start;
    }
}
.top__pickup .top__pickup__container .top__pickup__box {
    width: calc((100% - 52px) / 5);
    border-radius: 10px;
    border: 1px solid #94E6C4;
    background: #fff;
    min-height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
@media screen and (max-width: 767px) {
    .top__pickup .top__pickup__container .top__pickup__box {
        padding: 10px;
        width: calc((100% - 7px) / 2);
        min-height: 93px;
    }
}
.top__pickup .top__pickup__container .top__pickup__box.pdz {
    padding: 0;
}
.top__pickup .top__pickup__container .top__pickup__box.pdz img {
    border-radius: inherit;
}

.top__column .top__column__container {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    font-size: 1.8rem;
}
@media screen and (max-width: 1199px) {
    .top__column .top__column__container {
        font-size: 1.7rem;
        gap: 20px;
    }
}
@media screen and (max-width: 767px) {
    .top__column .top__column__container {
        gap: 40px;
        font-size: 1.6rem;
    }
}
.top__column .top__column__container a {
    width: calc((100% - 90px) / 3);
}
@media screen and (max-width: 1199px) {
    .top__column .top__column__container a {
        width: calc((100% - 40px) / 3);
    }
}
@media screen and (max-width: 767px) {
    .top__column .top__column__container a {
        width: 100%;
    }
}
.top__column .top__column__container a .date__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
@media screen and (max-width: 767px) {
    .top__column .top__column__container a .date__categories {
        gap: 15px;
    }
}
.top__column .top__column__container a .date__categories .categories {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.4rem;
    gap: 5px;
    color: var(--color-green);
}
.top__column .top__column__container a .date__categories .categories span {
    border: 1px solid var(--color-green);
    padding: 0 10px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .top__column .top__column__container a .date__categories .date {
        font-size: 1.4rem;
    }
}

.top__flow__container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 100px;
}
@media screen and (max-width: 1199px) {
    .top__flow__container {
        font-size: 1.7rem;
    }
}
@media screen and (max-width: 767px) {
    .top__flow__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 11px;
        margin-bottom: unset;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
    }
}
.top__flow__container > div {
    position: relative;
    flex: 0 1 180px;
}
@media screen and (max-width: 999px) {
    .top__flow__container > div {
        flex: 0 1 140px;
    }
}
@media screen and (max-width: 767px) {
    .top__flow__container > div {
        display: flex;
        align-items: center;
        gap: 25px;
        flex: unset;
    }
}
.top__flow__container > div.flow__mark {
    flex: 0 1 3%;
}
@media screen and (max-width: 767px) {
    .top__flow__container > div.flow__mark img {
        width: 25px;
        margin-left: 45px;
        transform: translate(-50%, 0) rotate(90deg);
    }
}
@media screen and (max-width: 767px) {
    .top__flow__container > div img {
        width: 90px;
    }
}
.top__flow__container > div p {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, calc(100% + 30px));
    min-height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .top__flow__container > div p {
        min-height: unset;
        position: unset;
        transform: unset;
    }
}

.top__comparison__bg {
    height: 8vw;
    position: relative;
    background: #fff;
    overflow: hidden;
}
.top__comparison__bg::before {
    content: "";
    position: absolute;
    width: 440%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-green);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.top__comparison {
    background: var(--color-green);
    overflow: hidden;
    position: relative;
}
.top__comparison::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 8%;
    width: 13%;
    aspect-ratio: 253/312;
    background: url(../img/top/comparison_bg.webp) center/contain no-repeat;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .top__comparison::before {
        width: 24%;
        right: 4%;
    }
}
.top__comparison .font50 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}
@media screen and (max-width: 1199px) {
    .top__comparison .font50 {
        font-size: 4rem;
    }
}
@media screen and (max-width: 999px) {
    .top__comparison .font50 {
        font-size: 3rem;
    }
}
@media screen and (max-width: 767px) {
    .top__comparison .font50 {
        font-size: 2rem;
        position: relative;
        padding: 35px 50px;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
    }
    .top__comparison .font50::before {
        content: "";
        position: absolute;
        top: 0;
        left: -20px;
        width: 66px;
        aspect-ratio: 66/101;
        background: url(../img/top/comparison_bg_1.webp) center/contain no-repeat;
    }
    .top__comparison .font50::after {
        content: "";
        position: absolute;
        top: 0;
        right: -20px;
        width: 62px;
        aspect-ratio: 62/101;
        background: url(../img/top/comparison_bg_2.webp) center/contain no-repeat;
    }
}
.top__comparison .top__comparison__img {
    display: block;
}
@media screen and (max-width: 999px) {
    .top__comparison .top__comparison__img {
        margin-top: -30px;
    }
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__img {
        margin-top: unset;
        margin-bottom: 70px;
    }
}
.top__comparison .top__h2__container {
    color: #fff;
}
.top__comparison .top__h2__container .top__h2__en {
    color: inherit;
}
.top__comparison .top__h2__container .dot__container div {
    background: #fff;
}
.top__comparison .top__comparison__tab {
    display: flex;
    flex-wrap: wrap;
    margin-inline: auto;
    gap: 20px;
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__tab {
        gap: 10px;
    }
}
.top__comparison .top__comparison__tab input {
    display: none;
}
.top__comparison .top__comparison__tab label {
    width: calc((100% - 20px) / 2);
    padding: 25px;
    background: #7AD2AD;
    cursor: pointer;
    order: -1;
    text-align: center;
    color: #fff;
    border-radius: 20px 20px 5px 5px;
    font-size: 2.2rem;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__tab label {
        width: calc((100% - 10px) / 2);
        font-size: 1.8rem;
        border-radius: 10px 10px 2px 2px;
        padding: 10px;
    }
}
.top__comparison .top__comparison__tab .tab__content {
    display: none;
    width: 100%;
}
.top__comparison .top__comparison__tab input:checked + label {
    background: #fff;
    color: var(--color-green);
}
.top__comparison .top__comparison__tab input:checked + label + .tab__content {
    display: block;
}
.top__comparison .top__comparison__tab .table__pc {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__tab .table__pc {
        display: none;
    }
}
.top__comparison .top__comparison__tab .table__pc tr th, .top__comparison .top__comparison__tab .table__pc tr td {
    text-align: center;
    font-weight: 700;
    background: #fff;
    padding: 25px;
    font-size: 1.8rem;
}
@media screen and (max-width: 1199px) {
    .top__comparison .top__comparison__tab .table__pc tr th, .top__comparison .top__comparison__tab .table__pc tr td {
        padding: 20px;
    }
}
.top__comparison .top__comparison__tab .table__pc tr th:first-child, .top__comparison .top__comparison__tab .table__pc tr td:first-child {
    background: #CFEEFA;
    white-space: nowrap;
}
.top__comparison .top__comparison__tab .table__pc tr th:not(:first-child), .top__comparison .top__comparison__tab .table__pc tr td:not(:first-child) {
    border-left: 5px solid var(--color-green);
    width: 33.3333333333%;
}
.top__comparison .top__comparison__tab .table__pc tr td {
    vertical-align: middle;
}
.top__comparison .top__comparison__tab .table__pc tr:first-child th {
    font-size: 2.4rem;
    line-height: 1.33;
    padding: 30px 20px;
    vertical-align: middle;
}
@media screen and (max-width: 1199px) {
    .top__comparison .top__comparison__tab .table__pc tr:first-child th {
        padding: 20px;
        font-size: 2rem;
    }
}
.top__comparison .top__comparison__tab .table__pc tr:first-child th:first-child {
    border-radius: 15px 0 0 0;
}
.top__comparison .top__comparison__tab .table__pc tr:first-child th:last-child {
    border-radius: 0 15px 0 0;
}
.top__comparison .top__comparison__tab .table__pc tr:not(:first-child) th:not(:first-child), .top__comparison .top__comparison__tab .table__pc tr:not(:first-child) td:not(:first-child) {
    position: relative;
    padding-top: 27px;
}
@media screen and (max-width: 1199px) {
    .top__comparison .top__comparison__tab .table__pc tr:not(:first-child) th:not(:first-child), .top__comparison .top__comparison__tab .table__pc tr:not(:first-child) td:not(:first-child) {
        padding-top: 22px;
    }
}
.top__comparison .top__comparison__tab .table__pc tr:not(:first-child) th:not(:first-child)::before, .top__comparison .top__comparison__tab .table__pc tr:not(:first-child) td:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background-image: radial-gradient(circle, #707070 1px, transparent 1px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 6px 2px;
}
.top__comparison .top__comparison__tab .table__pc tr:last-child td {
    text-align: left;
    font-size: 1.7rem;
}
.top__comparison .top__comparison__tab .table__pc tr:last-child th:first-child, .top__comparison .top__comparison__tab .table__pc tr:last-child td:first-child {
    border-radius: 0 0 0 15px;
}
.top__comparison .top__comparison__tab .table__pc tr:last-child th:last-child, .top__comparison .top__comparison__tab .table__pc tr:last-child td:last-child {
    border-radius: 0 0 15px 0;
}
.top__comparison .top__comparison__tab .table__sp {
    display: none;
    border-radius: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__tab .table__sp {
        display: block;
    }
}
.top__comparison .top__comparison__tab .table__sp > *:nth-child(2n) {
    background: #F4F4F4;
    padding: 9px;
}
.top__comparison .top__comparison__tab .table__sp > *:nth-child(2n+1) {
    background: #fff;
    padding: 15px 20px 20px;
}
.top__comparison .top__comparison__tab .table__sp > *:first-child {
    background: #CFEEFB;
    text-align: center;
    border-radius: 10px 10px 0 0;
    font-size: 1.8rem;
    padding: 12px;
}
.top__comparison .top__comparison__tab .table__sp > *:last-child {
    border-radius: 0 0 10px 10px;
    text-align: left;
    padding: 15px 20px 20px;
}
.top__comparison .top__comparison__price__container {
    display: flex;
    gap: 15px;
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__price__container {
        flex-direction: column;
        row-gap: 10px;
    }
}
.top__comparison .top__comparison__price__container > div {
    width: calc((100% - 30px) / 3);
    background: #fff;
    border-radius: 20px;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    padding: 25px;
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__price__container > div {
        font-size: 1.6rem;
        width: 100%;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
    }
}
.top__comparison .top__comparison__price__container > div p:nth-of-type(2) {
    color: var(--color-green);
    font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__price__container > div p:nth-of-type(2) {
        font-size: 1.8rem;
    }
}
.top__comparison .top__comparison__price__box {
    margin-top: 30px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    font-weight: 700;
    font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__price__box {
        font-size: 1.6rem;
        margin-top: 10px;
        border-radius: 10px;
        padding: 15px;
        border-radius: 10px;
    }
}
.top__comparison .top__comparison__price__box table {
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__price__box table tbody {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__price__box table tr {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.top__comparison .top__comparison__price__box table tr td:first-of-type {
    text-align: center;
}
.top__comparison .top__comparison__price__box table tr td {
    padding: 12px;
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__price__box table tr td {
        padding: unset;
    }
}
.top__comparison .top__comparison__price__box .font__gr {
    color: var(--color-green);
    font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__price__box .font__gr {
        font-size: 1.8rem;
    }
}
.top__comparison .top__comparison__price__box .sm {
    font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
    .top__comparison .top__comparison__price__box .sm {
        font-size: 1.2rem;
    }
}

.top__faq__wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
@media screen and (max-width: 767px) {
    .top__faq__wrapper {
        gap: 20px;
    }
}
.top__faq__wrapper .accordion {
    background: #FAFAFA;
    border-radius: 5px;
    padding: 0 25px;
    cursor: pointer;
}
.top__faq__wrapper .accordion .faq__q {
    font-size: 2.2rem;
    font-weight: 700;
    padding: 15px 0;
    display: flex;
    align-items: baseline;
    gap: 15px;
}
@media screen and (max-width: 767px) {
    .top__faq__wrapper .accordion .faq__q {
        font-size: 1.8rem;
    }
}
.top__faq__wrapper .accordion .faq__q .gr {
    font-size: 3rem;
    color: var(--color-green);
}
@media screen and (max-width: 767px) {
    .top__faq__wrapper .accordion .faq__q .gr {
        font-size: 1.8rem;
    }
}
.top__faq__wrapper .accordion .faq__q p {
    flex: 1 1;
}
.top__faq__wrapper .accordion .accordion__box {
    background-image: radial-gradient(circle, #707070 1px, transparent 1px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 6px 2px;
    padding: 20px 0 15px;
    font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
    .top__faq__wrapper .accordion .accordion__box {
        font-size: 1.6rem;
    }
}

/* ------------------------------------- /
/  投稿一覧・単体共通
/* ------------------------------------- */
.column__wrapper {
    display: flex;
    gap: 100px;
}
@media screen and (max-width: 1199px) {
    .column__wrapper {
        gap: 50px;
    }
}
@media screen and (max-width: 999px) {
    .column__wrapper {
        gap: 30px;
    }
}
@media screen and (max-width: 767px) {
    .column__wrapper {
        row-gap: 50px;
        flex-direction: column;
    }
}
.column__wrapper .main__column {
    flex: 1 1;
}
.column__wrapper .side__column {
    width: 316px;
}
@media screen and (max-width: 1199px) {
    .column__wrapper .side__column {
        width: 270px;
    }
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column {
        width: 230px;
    }
}
@media screen and (max-width: 767px) {
    .column__wrapper .side__column {
        width: 100%;
    }
}
.column__wrapper .side__column h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-green);
    border-bottom: 2px solid var(--color-green);
    padding-bottom: 14px;
}
@media screen and (max-width: 1199px) {
    .column__wrapper .side__column h2 {
        font-size: 2.2rem;
        padding-bottom: 12px;
    }
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column h2 {
        font-size: 2rem;
        padding-bottom: 10px;
    }
}
.column__wrapper .side__column .cat__container {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.8rem;
    gap: 17px 0;
}
@media screen and (max-width: 1199px) {
    .column__wrapper .side__column .cat__container {
        font-size: 1.7rem;
        gap: 14px 0;
    }
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .cat__container {
        font-size: 1.6rem;
        gap: 12px 0;
    }
}
.column__wrapper .side__column .cat__container li {
    width: 50%;
}
.column__wrapper .side__column .recommended__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media screen and (max-width: 1199px) {
    .column__wrapper .side__column .recommended__container {
        gap: 20px;
    }
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .recommended__container {
        gap: 15px;
    }
}
.column__wrapper .side__column .recommended__container a {
    border-bottom: 1px solid #C6C6C6;
    padding-bottom: 20px;
}
@media screen and (max-width: 1199px) {
    .column__wrapper .side__column .recommended__container a {
        padding-bottom: 15px;
    }
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .recommended__container a {
        padding-bottom: 10px;
    }
}
.column__wrapper .side__column .recommended__container a .cat__date__container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .recommended__container a .cat__date__container {
        gap: 5px 10px;
    }
}
.column__wrapper .side__column .recommended__container a .cat__date__container .categories {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 1.4rem;
    color: var(--color-green);
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .recommended__container a .cat__date__container .categories {
        font-size: 1.3rem;
    }
}
.column__wrapper .side__column .recommended__container a .cat__date__container .categories span {
    border: 1px solid var(--color-green);
    height: 25px;
    border-radius: 16px;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .recommended__container a .cat__date__container .categories span {
        height: 22px;
        padding: 0 8px;
    }
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .recommended__container a .cat__date__container .date {
        font-size: 1.5rem;
    }
}
.column__wrapper .side__column .recommended__container a .ttl {
    font-size: 1.5rem;
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .recommended__container a .ttl {
        font-size: 1.4rem;
    }
}
.column__wrapper .side__column .side__btn__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media screen and (max-width: 1199px) {
    .column__wrapper .side__column .side__btn__container {
        gap: 15px;
    }
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .side__btn__container {
        gap: 10px;
    }
}
.column__wrapper .side__column .side__btn__container a {
    width: 100%;
    height: 80px;
    border-radius: 10px;
    background: #09C374;
    border: 1px solid #09C374;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    padding: 5px;
}
@media screen and (max-width: 1199px) {
    .column__wrapper .side__column .side__btn__container a {
        font-size: 1.6rem;
        gap: 28px;
        height: 70px;
    }
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .side__btn__container a {
        font-size: 1.5rem;
        gap: 15px;
        height: 60px;
    }
}
.column__wrapper .side__column .side__btn__container a::before {
    content: "";
    display: block;
    width: 26px;
    aspect-ratio: 26/35;
    background: #fff;
    -webkit-mask: url(../img/common/icon_sim.svg) center/contain no-repeat;
            mask: url(../img/common/icon_sim.svg) center/contain no-repeat;
}
@media screen and (max-width: 1199px) {
    .column__wrapper .side__column .side__btn__container a::before {
        width: 20px;
    }
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .side__btn__container a::before {
        width: 17px;
    }
}
.column__wrapper .side__column .side__btn__container a.or {
    background: var(--color-orange);
    border-color: var(--color-orange);
    gap: 23px;
}
@media screen and (max-width: 1199px) {
    .column__wrapper .side__column .side__btn__container a.or {
        gap: 17px;
    }
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .side__btn__container a.or {
        gap: 6px;
    }
}
.column__wrapper .side__column .side__btn__container a.or::before {
    width: 37px;
    aspect-ratio: 37/31;
    -webkit-mask: url(../img/common/icon_area.svg) center/contain no-repeat;
            mask: url(../img/common/icon_area.svg) center/contain no-repeat;
}
@media screen and (max-width: 1199px) {
    .column__wrapper .side__column .side__btn__container a.or::before {
        width: 29px;
    }
}
@media screen and (max-width: 999px) {
    .column__wrapper .side__column .side__btn__container a.or::before {
        width: 25px;
    }
}
.column__wrapper .side__column .side__btn__container a:hover {
    opacity: unset;
    background: #fff;
    color: #09C374;
}
.column__wrapper .side__column .side__btn__container a:hover::before {
    background: #09C374;
}
.column__wrapper .side__column .side__btn__container a:hover.or {
    color: var(--color-orange);
}
.column__wrapper .side__column .side__btn__container a:hover.or::before {
    background: var(--color-orange);
}

/* ------------------------------------- /
/  投稿一覧ページ
/* ------------------------------------- */
.posts__container {
    display: flex;
    flex-wrap: wrap;
    gap: 70px 50px;
}
@media screen and (max-width: 1199px) {
    .posts__container {
        gap: 50px 30px;
    }
}
@media screen and (max-width: 999px) {
    .posts__container {
        gap: 40px 20px;
    }
}
@media screen and (max-width: 767px) {
    .posts__container {
        gap: 30px 15px;
    }
}
.posts__container .post__box {
    width: calc((100% - 50px) / 2);
    font-size: 1.8rem;
}
@media screen and (max-width: 1199px) {
    .posts__container .post__box {
        width: calc((100% - 30px) / 2);
        font-size: 1.7rem;
    }
}
@media screen and (max-width: 999px) {
    .posts__container .post__box {
        width: calc((100% - 20px) / 2);
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 767px) {
    .posts__container .post__box {
        width: calc((100% - 15px) / 2);
        font-size: 1.5rem;
    }
}
.posts__container .post__box .cat__date__container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
}
@media screen and (max-width: 999px) {
    .posts__container .post__box .cat__date__container {
        gap: 5px 10px;
    }
}
.posts__container .post__box .cat__date__container .categories {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.4rem;
    color: var(--color-green);
}
@media screen and (max-width: 999px) {
    .posts__container .post__box .cat__date__container .categories {
        font-size: 1.3rem;
    }
}
.posts__container .post__box .cat__date__container .categories span {
    border: 1px solid var(--color-green);
    height: 25px;
    border-radius: 16px;
    padding: 0 10px;
}
@media screen and (max-width: 999px) {
    .posts__container .post__box .cat__date__container .categories span {
        height: 22px;
        padding: 0 8px;
    }
}

.pagination__sec {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    color: var(--color-green);
    font-size: 1.8rem;
    font-weight: 700;
}
@media screen and (max-width: 1199px) {
    .pagination__sec {
        font-size: 1.7rem;
        gap: 18px;
    }
}
@media screen and (max-width: 767px) {
    .pagination__sec {
        font-size: 1.5rem;
        gap: 14px;
    }
}
.pagination__sec li:not(.dot) a, .pagination__sec li:not(.dot) span {
    width: 63px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-green);
}
@media screen and (max-width: 1199px) {
    .pagination__sec li:not(.dot) a, .pagination__sec li:not(.dot) span {
        width: 50px;
    }
}
@media screen and (max-width: 767px) {
    .pagination__sec li:not(.dot) a, .pagination__sec li:not(.dot) span {
        width: 40px;
    }
}
.pagination__sec li:not(.dot).current span {
    background: var(--color-green);
    color: #fff;
}

/* ------------------------------------- /
/  投稿単体ページ
/* ------------------------------------- */
.post__cat__date__container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .post__cat__date__container {
        gap: 5px 10px;
        margin-bottom: 10px;
    }
}
.post__cat__date__container .category {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.post__cat__date__container .category span {
    font-size: 1.4rem;
    color: var(--color-green);
    padding: 0 10px;
    height: 25px;
    border-radius: 16px;
    border: 1px solid var(--color-green);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .post__cat__date__container .category span {
        font-size: 1.2rem;
        padding: 0 5px;
        height: 22px;
    }
}
.post__cat__date__container .date {
    font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
    .post__cat__date__container .date {
        font-size: 1.6rem;
    }
}

.post__ttl {
    font-size: 2.8rem;
    font-weight: 700;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--color-green);
}
@media screen and (max-width: 999px) {
    .post__ttl {
        font-size: 2.4rem;
        padding-bottom: 20px;
    }
}
@media screen and (max-width: 767px) {
    .post__ttl {
        font-size: 2rem;
        padding-bottom: 10px;
        border-bottom-width: 1px;
    }
}

.post__contents {
    font-size: 1.8rem;
}
@media screen and (max-width: 1199px) {
    .post__contents {
        font-size: 1.7rem;
    }
}
@media screen and (max-width: 999px) {
    .post__contents {
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 767px) {
    .post__contents {
        font-size: 1.5rem;
    }
}
.post__contents img {
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .post__contents img {
        margin-bottom: 15px;
    }
}
.post__contents h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-green);
    background: #F7F7F7;
    padding: 10px 15px;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .post__contents h2 {
        font-size: 1.8rem;
        padding: 5px 10px;
        margin-bottom: 15px;
    }
}
.post__contents h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .post__contents h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
}
.post__contents h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .post__contents h4 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
}
.post__contents p {
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .post__contents p {
        margin-bottom: 15px;
    }
}
.post__contents ul, .post__contents ol {
    margin-bottom: 20px;
    list-style-type: disc;
    list-style-position: inside;
}
@media screen and (max-width: 767px) {
    .post__contents ul, .post__contents ol {
        margin-bottom: 15px;
    }
}
.post__contents table {
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .post__contents table {
        margin-bottom: 15px;
    }
}
.post__contents table th {
    font-weight: 700;
    background: #F7F7F7;
}

.post__pagination {
    font-size: 2rem;
    font-weight: 700;
}
@media screen and (max-width: 999px) {
    .post__pagination {
        font-size: 1.7rem;
    }
}
@media screen and (max-width: 767px) {
    .post__pagination {
        font-size: 1.6rem;
    }
}
.post__pagination .btn__gr.sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .post__pagination .btn__gr.sp {
        display: flex;
        margin: 30px auto 0;
    }
}
@media screen and (max-width: 767px) {
    .post__pagination .btn__gr.pc {
        display: none;
    }
}
@media screen and (max-width: 999px) {
    .post__pagination .btn__gr {
        width: min(100%, 250px);
    }
}
.post__pagination .btn__gr .btn__gr__dot__container {
    right: unset;
    left: 35px;
}
@media screen and (max-width: 1199px) {
    .post__pagination .btn__gr .btn__gr__dot__container {
        left: 30px;
    }
}
@media screen and (max-width: 999px) {
    .post__pagination .btn__gr .btn__gr__dot__container {
        left: 25px;
    }
}
@media screen and (max-width: 767px) {
    .post__pagination .btn__gr .btn__gr__dot__container {
        left: 18px;
    }
}
.post__pagination .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
@media screen and (max-width: 999px) {
    .post__pagination .wrapper {
        gap: 12px;
    }
}

/* ------------------------------------- /
/  会社概要ページ
/* ------------------------------------- */
.company__table {
    width: min(100%, 900px);
    margin: 0 auto;
}
.company__table tr {
    background-image: radial-gradient(circle, #707070 1px, transparent 1px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 6px 2px;
}
.company__table tr th, .company__table tr td {
    font-weight: 700;
    padding: 40px 0;
}
@media screen and (max-width: 767px) {
    .company__table tr th, .company__table tr td {
        padding: 15px 0;
    }
}
.company__table tr th {
    padding-right: 20px;
    color: var(--color-green);
}
@media screen and (max-width: 767px) {
    .company__table tr th {
        padding-right: 10px;
    }
}

/* ------------------------------------- /
/  ポリシーページ
/* ------------------------------------- */
.policy__link__container {
    width: min(100%, 950px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px 25px;
}
@media screen and (max-width: 1199px) {
    .policy__link__container {
        gap: 40px 20px;
    }
}
@media screen and (max-width: 767px) {
    .policy__link__container {
        gap: 15px;
    }
}
.policy__link__container a {
    width: calc((100% - 50px) / 3);
    border-bottom: 2px solid var(--color-green);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    padding: 18px 0;
}
@media screen and (max-width: 1199px) {
    .policy__link__container a {
        font-size: 1.6rem;
        width: calc((100% - 20px) / 2);
        padding: 15px 0;
    }
}
@media screen and (max-width: 767px) {
    .policy__link__container a {
        width: 100%;
        font-size: 1.4rem;
        padding: 10px 0;
    }
}

.policy__sec h2 {
    font-size: 4.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.44;
}
@media screen and (max-width: 1199px) {
    .policy__sec h2 {
        font-size: 3.6rem;
    }
}
@media screen and (max-width: 767px) {
    .policy__sec h2 {
        font-size: 2.8rem;
    }
}
.policy__sec .dot__container {
    margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
    .policy__sec .dot__container {
        margin: 10px auto 0;
    }
}
.policy__sec .policy__wrapper {
    margin: 70px auto 0;
    max-width: 770px;
    font-size: 1.8rem;
    line-height: 2.22;
}
@media screen and (max-width: 1199px) {
    .policy__sec .policy__wrapper {
        font-size: 1.6rem;
        margin: 50px auto 0;
    }
}
@media screen and (max-width: 767px) {
    .policy__sec .policy__wrapper {
        font-size: 1.4rem;
        margin: 30px auto 0;
    }
}
.policy__sec .policy__wrapper h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .policy__sec .policy__wrapper h3 {
        font-size: 2rem;
        margin-top: 20px;
    }
}
.policy__sec .policy__wrapper h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .policy__sec .policy__wrapper h4 {
        font-size: 1.7rem;
        margin-top: 15px;
    }
}
.policy__sec .policy__wrapper p {
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .policy__sec .policy__wrapper p {
        margin-top: 5px;
    }
}

/* ------------------------------------- /
/  私たちについてページ
/* ------------------------------------- */
.page-template-page-about .font17 {
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .page-template-page-about .font17 {
        font-size: 1.5rem;
    }
}

.about__mission {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #94E6C4;
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .about__mission {
        font-size: 1.7rem;
    }
}

.about__coaching .about__coaching__container {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .about__coaching .about__coaching__container {
        flex-direction: column;
        gap: 40px;
    }
}
.about__coaching .about__coaching__container > div {
    width: calc((100% - 120px) / 3);
    font-size: 1.7rem;
    font-weight: 700;
}
@media screen and (max-width: 767px) {
    .about__coaching .about__coaching__container > div {
        width: 100%;
        font-size: 1.5rem;
    }
}
.about__coaching .about__coaching__container > div img {
    width: min(100%, 142px);
    margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
    .about__coaching .about__coaching__container > div img {
        margin: 0 auto 20px;
    }
}
.about__coaching .about__coaching__container > div h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.about__greeting {
    padding: 0 50px;
}
@media screen and (max-width: 767px) {
    .about__greeting {
        padding: 0 15px;
    }
}
.about__greeting .about__greeting__wrapper {
    background: #FFFBD9;
    border-radius: 20px;
    padding: 100px;
}
@media screen and (max-width: 1199px) {
    .about__greeting .about__greeting__wrapper {
        padding: 60px 40px;
    }
}
@media screen and (max-width: 999px) {
    .about__greeting .about__greeting__wrapper {
        padding: 40px 20px;
        border-radius: 10px;
    }
}
@media screen and (max-width: 767px) {
    .about__greeting .about__greeting__wrapper {
        padding: 30px 0;
    }
}
.about__greeting .about__greeting__container {
    display: flex;
    gap: 100px;
}
@media screen and (max-width: 1199px) {
    .about__greeting .about__greeting__container {
        gap: 50px;
    }
}
@media screen and (max-width: 999px) {
    .about__greeting .about__greeting__container {
        gap: 30px;
    }
}
@media screen and (max-width: 767px) {
    .about__greeting .about__greeting__container {
        flex-direction: column;
        align-items: center;
    }
}
.about__greeting .about__greeting__container .left {
    width: min(100%, 380px);
}
@media screen and (max-width: 1199px) {
    .about__greeting .about__greeting__container .left {
        width: min(100%, 250px);
    }
}
@media screen and (max-width: 999px) {
    .about__greeting .about__greeting__container .left {
        width: min(100%, 210px);
    }
}
.about__greeting .about__greeting__container .right {
    padding-top: 30px;
    flex: 1 1;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.11;
}
@media screen and (max-width: 1199px) {
    .about__greeting .about__greeting__container .right {
        padding-top: unset;
        font-size: 1.7rem;
        line-height: 2;
    }
}
@media screen and (max-width: 999px) {
    .about__greeting .about__greeting__container .right {
        font-size: 1.6rem;
        line-height: 1.8;
    }
}

/* ------------------------------------- /
/  正規販売代理店についてページ
/* ------------------------------------- */
.page-template-page-distributor .font17 {
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .page-template-page-distributor .font17 {
        font-size: 1.5rem;
    }
}
.page-template-page-distributor .font24gr {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-green);
    text-align: center;
}
@media screen and (max-width: 767px) {
    .page-template-page-distributor .font24gr {
        font-size: 2rem;
    }
}
.page-template-page-distributor .top__flow__container {
    justify-content: center;
    gap: 45px;
}
@media screen and (max-width: 767px) {
    .page-template-page-distributor .top__flow__container {
        gap: 20px;
    }
}

/* ------------------------------------- /
/  法人様用お問い合わせページ
/* ------------------------------------- */
.page-template-page-contact .select__wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    background: #FAFAFA;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #848484;
}
.page-template-page-contact .select__wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    width: 12px;
    aspect-ratio: 22/19;
    background: url(../img/simulation/select.svg) center/contain no-repeat;
}
.page-template-page-contact .select__wrapper select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: unset;
    cursor: pointer;
    border: unset;
    font: inherit;
    color: #000;
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    padding-right: 20px;
}

/* ------------------------------------- /
/  料金シミュレーションページ
/* ------------------------------------- */
.simulation__sec .font34 {
    font-size: 3.4rem;
    font-weight: 700;
    text-align: center;
}
@media screen and (max-width: 1199px) {
    .simulation__sec .font34 {
        font-size: 3rem;
    }
}
@media screen and (max-width: 999px) {
    .simulation__sec .font34 {
        font-size: 2.6rem;
    }
}
@media screen and (max-width: 767px) {
    .simulation__sec .font34 {
        font-size: 2.2rem;
    }
}
.simulation__sec .input__zipcode__wrapper {
    position: relative;
    margin: 0 auto;
    width: min(100%, 516px);
}
@media screen and (max-width: 999px) {
    .simulation__sec .input__zipcode__wrapper {
        width: min(100%, 400px);
    }
}
.simulation__sec .input__zipcode__wrapper::before {
    content: "〒";
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #707070;
    font-weight: 700;
}
@media screen and (max-width: 999px) {
    .simulation__sec .input__zipcode__wrapper::before {
        left: 20px;
    }
}
@media screen and (max-width: 767px) {
    .simulation__sec .input__zipcode__wrapper::before {
        left: 15px;
    }
}
.simulation__sec .input__zipcode__wrapper .input__zipcode {
    border: unset;
    font: inherit;
    width: 100%;
    font-size: 2.2rem;
    font-weight: 700;
    background: #F2F2F2;
    border-radius: 5px;
    display: block;
    padding: 20px 30px 20px 60px;
}
@media screen and (max-width: 999px) {
    .simulation__sec .input__zipcode__wrapper .input__zipcode {
        font-size: 2rem;
        padding: 15px 25px 15px 50px;
    }
}
@media screen and (max-width: 767px) {
    .simulation__sec .input__zipcode__wrapper .input__zipcode {
        font-size: 1.8rem;
        padding: 10px 15px 10px 40px;
    }
}
.simulation__sec .radio__container {
    max-width: 1069px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 37px;
}
@media screen and (max-width: 999px) {
    .simulation__sec .radio__container {
        gap: 20px;
    }
}
@media screen and (max-width: 767px) {
    .simulation__sec .radio__container {
        flex-direction: column;
        gap: 10px;
    }
}
.simulation__sec .radio__container input[type=radio] {
    display: none;
}
.simulation__sec .radio__container input[type=radio]:checked + label {
    background: var(--color-orange);
    color: #fff;
}
.simulation__sec .radio__container label {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 37px) / 2);
    height: 79px;
    background: #F2F2F2;
    border-radius: 5px;
    font-size: 2.2rem;
    font-weight: 700;
}
@media screen and (max-width: 999px) {
    .simulation__sec .radio__container label {
        width: calc((100% - 20px) / 2);
        font-size: 2rem;
        height: 62px;
    }
}
@media screen and (max-width: 767px) {
    .simulation__sec .radio__container label {
        width: 100%;
        font-size: 1.8rem;
        height: 49px;
    }
}
.simulation__sec .select__wrapper {
    width: min(100%, 516px);
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    background: #F2F2F2;
    border-radius: 5px;
}
@media screen and (max-width: 999px) {
    .simulation__sec .select__wrapper {
        width: min(100%, 400px);
    }
}
.simulation__sec .select__wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 32px;
    width: 22px;
    aspect-ratio: 22/19;
    background: url(../img/simulation/select.svg) center/contain no-repeat;
}
@media screen and (max-width: 999px) {
    .simulation__sec .select__wrapper::before {
        right: 25px;
        width: 18px;
    }
}
@media screen and (max-width: 767px) {
    .simulation__sec .select__wrapper::before {
        right: 15px;
        width: 15px;
    }
}
.simulation__sec .select__wrapper select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: unset;
    cursor: pointer;
    border: unset;
    font: inherit;
    font-size: 2.2rem;
    font-weight: 700;
    color: inherit;
    height: 79px;
    width: 100%;
    display: block;
    text-align: center;
    -moz-text-align-last: center;
         text-align-last: center;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 999px) {
    .simulation__sec .select__wrapper select {
        font-size: 2rem;
        height: 62px;
    }
}
@media screen and (max-width: 767px) {
    .simulation__sec .select__wrapper select {
        font-size: 1.8rem;
        height: 49px;
    }
}
.simulation__sec .select__wrapper select option {
    text-align: center;
}
.simulation__sec .error {
    color: red;
}
.simulation__sec .error.false {
    display: none;
}

.form__complete {
    max-width: 1000px;
    margin: 0 auto;
}
.form__complete h2 {
    font-size: 3.4rem;
    font-weight: 700;
    text-align: center;
}
@media screen and (max-width: 1199px) {
    .form__complete h2 {
        font-size: 2.8rem;
    }
}
@media screen and (max-width: 767px) {
    .form__complete h2 {
        font-size: 2.2rem;
    }
}
.form__complete .font18 {
    font-size: 1.8rem;
    text-align: center;
}
@media screen and (max-width: 1199px) {
    .form__complete .font18 {
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 767px) {
    .form__complete .font18 {
        font-size: 1.4rem;
    }
}
.form__complete .tel__num {
    font-size: 5rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-green);
}
@media screen and (max-width: 1199px) {
    .form__complete .tel__num {
        font-size: 4rem;
    }
}
@media screen and (max-width: 767px) {
    .form__complete .tel__num {
        font-size: 3rem;
    }
}
.form__complete .border {
    height: 2px;
    background-image: radial-gradient(circle, #707070 1px, transparent 1px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 6px 2px;
}/*# sourceMappingURL=style.css.map */