@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-mn: "Shippori Mincho", serif;
    --font-en: "Castoro", serif;
    --color-black: #1F2943;
    --header-height: 100px;
    --inner-width: 1400px;
}
@media (max-width: 1280px) {
    :root {
        --header-height: 80px;
    }
}
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
}

.font-jp {
    font-family: var(--font-jp);
}

.font-en {
    font-family: var(--font-en);
}

.font-mn {
    font-family: var(--font-mn);
}

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%;
    -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: 500;
    font-family: var(--font-jp);
}
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;
}

/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

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

@media (max-width: 1280px) {
    .pc1280 {
        display: none !important;
    }
}

.sp1280 {
    display: none;
}
@media (max-width: 1280px) {
    .sp1280 {
        display: block !important;
    }
}

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

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

.grecaptcha-badge {
    visibility: hidden;
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    --trigger-wrapper-width: 40px;
    --trigger-wrapper-height: 24px;
    --trigger-width: 15px;
    --trigger-gap: 5px;
    visibility: hidden;
    width: var(--trigger-wrapper-width);
    height: var(--trigger-wrapper-height);
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: fixed;
    right: 57px;
    top: calc((var(--header-height) - var(--trigger-wrapper-height)) / 2);
    z-index: 200;
    padding-block-end: 0;
    padding-block-start: 0;
}
@media (max-width: 768px) {
    .menu-trigger {
        visibility: visible;
    }
}
.menu-trigger.mv {
    visibility: hidden;
    position: absolute;
    z-index: 300;
    color: #fff;
}
.menu-trigger.mv span {
    background: #fff;
}
.menu-trigger.mv p {
    color: #fff;
}
.menu-trigger.mv.active p {
    color: #000;
}
.menu-trigger p {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: var(--font-en);
    padding-left: 30px;
    padding-top: 4px;
    color: #000;
}
.menu-trigger span {
    display: inline-block;
    width: var(--trigger-width);
    height: 1px;
    background-color: var(--color-black);
    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 {
    background-color: var(--color-black);
}
.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 0 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.header__logo {
    max-width: 163px;
}
@media (max-width: 1280px) {
    .header__logo {
        max-width: 140px;
    }
}
@media (max-width: 768px) {
    .header__logo {
        max-width: 119px;
    }
}

.header__menu {
    display: flex;
    font-size: 2rem;
    font-weight: 600;
    height: 100%;
}
@media (max-width: 1280px) {
    .header__menu {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .header__menu {
        display: none;
    }
}
.header__menu > li {
    position: relative;
}
.header__menu > li > a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}
@media (max-width: 1280px) {
    .header__menu > li > a {
        padding: 0 10px;
    }
}
.header__menu > li > a svg {
    margin-left: 8px;
    width: 18px;
}
.header__menu > li:hover .header__sub__menu {
    display: flex;
    z-index: 1;
}
.header__menu > li .header__sub__menu {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(calc(100% - 1px));
    background: #fff;
    flex-direction: column;
    width: max(100%, 150px);
}
.header__menu > li .header__sub__menu.mv {
    color: #000;
}
.header__menu > li .header__sub__menu a {
    padding: 10px;
    font-size: 1.4rem;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .header__menu > li .header__sub__menu a {
        font-size: 1.3rem;
    }
}

.nav {
    display: none;
}
@media (max-width: 768px) {
    .nav {
        background: #fff;
        display: flex;
        justify-content: center;
        width: min(100%, 280px);
        height: 100vh;
        color: var(--color-black);
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        z-index: 140;
        padding-top: var(--header-height);
    }
    .nav.loaded {
        transition-duration: 0.8s;
        transition-delay: 0.4s;
    }
    .nav .wrapper .nav__menu {
        max-height: calc(100% - var(--header-height));
        font-size: 1.2rem;
        font-weight: 400;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }
    .nav .wrapper .nav__menu > li > a {
        font-size: 1.4rem;
        font-weight: 600;
        padding-left: 14px;
        position: relative;
    }
    .nav .wrapper .nav__menu > li > a::before {
        content: "";
        position: absolute;
        width: 7px;
        height: 3px;
        border-radius: 1.5px;
        background: #9A7618;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
    }
    .nav .wrapper .nav__menu > li.border {
        height: 1px;
        background: #DDDEE2;
    }
    .nav .wrapper .nav__menu > li .nav__sub__menu {
        padding-top: 10px;
        padding-left: 15px;
        display: flex;
        flex-direction: column;
        row-gap: 10px;
    }
    .nav .wrapper .nav__copyright {
        margin-top: 40px;
        font-size: 1.2rem;
        font-weight: 400;
        color: #636E8D;
    }
}
.nav.active {
    transform: translateX(0);
    transition-delay: 0s;
}
.nav.active .wrapper {
    transition-delay: 0.8s;
    opacity: 1;
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    background: #0F1526;
    color: #fff;
    font-size: 2rem;
    padding: 150px 0 100px;
}
@media (max-width: 1280px) {
    footer {
        padding: 90px 0 60px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    footer {
        padding: 30px 0;
    }
}
footer .footer__logo {
    display: block;
    width: min(100%, 390px);
}
@media (max-width: 1280px) {
    footer .footer__logo {
        width: min(100%, 240px);
    }
}
footer .footer__container {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    footer .footer__container {
        display: none;
    }
}
@media (max-width: 1280px) {
    footer .footer__container .footer__left, footer .footer__container .footer__right {
        width: unset;
    }
}
footer .footer__container .footer__link__container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 35px;
}
@media (max-width: 1280px) {
    footer .footer__container .footer__link__container {
        gap: 20px 25px;
    }
}
footer .footer__container .footer__link__container .link__border {
    position: relative;
    padding-left: 22px;
}
footer .footer__container .footer__link__container .link__border::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 3px;
    background: #9A7618;
}
footer .footer__container .footer__link__container .sub__menu {
    padding-left: 22px;
    font-size: 1.6rem;
    font-weight: 400;
}
footer .footer__container .footer__link__container .sub__menu a {
    margin-bottom: 15px;
    display: block;
}
footer .footer__container .footer__left {
    width: 50%;
    padding-right: 20px;
}
footer .footer__container .footer__left .footer__link__container {
    max-width: 340px;
}
footer .footer__container .footer__right {
    display: flex;
    gap: 110px;
}
@media (max-width: 1280px) {
    footer .footer__container .footer__right {
        gap: 30px;
    }
}
footer .footer__container .footer__right .footer__link__container {
    align-items: flex-start;
    flex-direction: column;
}
footer .footer__copyright {
    color: #636E8D;
    font-weight: 400;
    margin-top: 60px;
}
@media (max-width: 768px) {
    footer .footer__copyright {
        font-size: 1.4rem;
        text-align: center;
        margin-top: unset;
    }
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.consultation {
    display: flex;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    position: relative;
    background: #fff;
}
.consultation .left, .consultation .right {
    width: 50%;
}
@media (max-width: 768px) {
    .consultation .left {
        display: none;
    }
}
.consultation .left img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.consultation .right {
    padding: 90px 0;
}
@media (max-width: 768px) {
    .consultation .right {
        width: 100%;
        background: url(../img/common/consultation.webp) center/cover no-repeat;
    }
}
.consultation .consultation__right__wrapper {
    width: calc(min(50vw, var(--inner-width) / 0.88 / 2) - min(6vw, var(--inner-width) / 0.88 * 0.06));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .consultation .consultation__right__wrapper {
        width: unset;
    }
}
.consultation .consultation__right__wrapper .en {
    font-size: 6rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    .consultation .consultation__right__wrapper .en {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .consultation .consultation__right__wrapper .en {
        font-size: 3.5rem;
        color: #fff;
    }
}
.consultation .consultation__right__wrapper h2 {
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-mn);
}
@media (max-width: 768px) {
    .consultation .consultation__right__wrapper h2 {
        font-size: 1.8rem;
        color: #fff;
    }
}
.consultation .consultation__right__wrapper .consultation__link {
    margin-top: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    width: 540px;
    height: 120px;
    border-radius: 60px;
    background: #9a7618;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    position: relative;
}
@media (max-width: 1280px) {
    .consultation .consultation__right__wrapper .consultation__link {
        width: min(100%, 340px);
        height: 90px;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .consultation .consultation__right__wrapper .consultation__link {
        margin-top: 40px;
        width: min(100%, 320px);
        height: 60px;
        font-size: 1.5rem;
    }
}
.consultation .consultation__right__wrapper .consultation__link::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    width: 16px;
    aspect-ratio: 16/17;
    background: url(../img/common/arrow.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .consultation .consultation__right__wrapper .consultation__link::before {
        right: 30px;
        width: 12px;
    }
}
@media (max-width: 768px) {
    .consultation .consultation__right__wrapper .consultation__link::before {
        width: 10px;
        right: 25px;
    }
}

.h2__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
@media (max-width: 768px) {
    .h2__container {
        gap: 0;
    }
}
.h2__container .h2__en {
    font-size: 6rem;
    font-weight: 400;
    font-family: var(--font-en);
    line-height: 1;
}
@media (max-width: 1280px) {
    .h2__container .h2__en {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .h2__container .h2__en {
        font-size: 3.5rem;
    }
}
.h2__container h2 {
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-mn);
    line-height: 1.45;
}
@media (max-width: 768px) {
    .h2__container h2 {
        font-size: 1.8rem;
    }
}

.lower__header {
    background: url(../img/common/lower_bg.webp) center/cover no-repeat;
    padding: 145px 0;
    color: #fff;
}
@media (max-width: 1280px) {
    .lower__header {
        padding: 100px 0;
    }
}
@media (max-width: 768px) {
    .lower__header {
        padding: 40px 0 60px;
    }
}
.lower__header .h1__en {
    font-family: var(--font-en);
    font-size: 9rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
}
@media (max-width: 1280px) {
    .lower__header .h1__en {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .lower__header .h1__en {
        font-size: 3.5rem;
    }
}
.lower__header .h1 {
    font-size: 4.5rem;
    font-family: var(--font-mn);
    font-weight: 600;
    line-height: 1.44;
}
@media (max-width: 1280px) {
    .lower__header .h1 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .lower__header .h1 {
        font-size: 1.8rem;
    }
}

.lower__breadcrumb {
    background: #080E1F;
    color: #fff;
    padding: 30px 0;
    font-family: var(--font-en);
    font-weight: 400;
}
@media (max-width: 768px) {
    .lower__breadcrumb {
        padding: 20px 0;
        font-size: 1.4rem;
    }
}
.lower__breadcrumb .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.lower__breadcrumb .breadcrumb li:not(:last-child) {
    padding-right: 10px;
    position: relative;
}
.lower__breadcrumb .breadcrumb li:not(:last-child)::before {
    content: "-";
    position: absolute;
    right: 0;
    top: 0;
}
.lower__breadcrumb .breadcrumb .this {
    color: #6373A2;
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.page-template-front-page main {
    margin-top: unset;
}
@media (max-width: 768px) {
    .page-template-front-page .menu-trigger.mv {
        visibility: visible;
    }
}

.top__mv {
    position: relative;
    z-index: 120;
    color: #fff;
}
.top__mv .top__mv__img {
    min-height: 900px;
    -o-object-fit: cover;
       object-fit: cover;
}
@media (max-width: 768px) {
    .top__mv .top__mv__img {
        min-height: 700px;
    }
}
.top__mv .top__mv__header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top__mv .top__mv__txt {
    position: absolute;
    top: var(--header-height);
    bottom: 0;
    left: 0;
    right: 0;
    padding-left: 8%;
}
@media (max-width: 768px) {
    .top__mv .top__mv__txt {
        padding: 0 20px;
    }
}
.top__mv .top__mv__txt .bg {
    margin-top: 120px;
    font-size: clamp(3rem, 1.333rem + 2.17vw, 5.5rem);
    font-weight: 600;
    font-family: var(--font-mn);
}
@media (max-width: 768px) {
    .top__mv .top__mv__txt .bg {
        font-size: 3rem;
        text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.56);
    }
}
.top__mv .top__mv__txt .sm {
    margin-top: 45px;
    font-size: clamp(1.4rem, 0.333rem + 1.389vw, 3rem);
    line-height: 1.83;
}
@media (max-width: 768px) {
    .top__mv .top__mv__txt .sm {
        margin-top: 25px;
        font-size: 1.4rem;
    }
}
.top__mv .top__mv__txt .top__mv__txt__link {
    margin-top: 90px;
    font-size: 2.5rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #9A7618;
    width: min(100%, 540px);
    height: 120px;
    border-radius: 60px;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    position: relative;
}
@media (max-width: 768px) {
    .top__mv .top__mv__txt .top__mv__txt__link {
        margin-top: 30px;
        font-size: 1.5rem;
        width: min(100%, 320px);
        height: 60px;
    }
}
.top__mv .top__mv__txt .top__mv__txt__link::before {
    content: "";
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    aspect-ratio: 16/17;
    background: url(../img/common/arrow.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .top__mv .top__mv__txt .top__mv__txt__link::before {
        width: 10px;
        right: 25px;
    }
}

.top__mv__2 {
    background: #1F2943;
    color: #fff;
    text-align: center;
}
.top__mv__2 .top__mv__2__container {
    display: flex;
    flex-wrap: wrap;
    gap: 65px;
}
@media (max-width: 1280px) {
    .top__mv__2 .top__mv__2__container {
        gap: 40px;
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__container {
        flex-direction: column;
        gap: 45px;
    }
}
.top__mv__2 .top__mv__2__container > div {
    width: calc((100% - 195px) / 4);
    background: #fff;
    position: relative;
    color: #1F2943;
    padding: 60px 10px 35px;
    font-size: 1.8rem;
    line-height: 1.44;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 1280px) {
    .top__mv__2 .top__mv__2__container > div {
        width: calc((100% - 40px) / 2);
    }
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__container > div {
        width: 100%;
        padding: 25px 0 20px;
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__container > div.row {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
}
.top__mv__2 .top__mv__2__container > div .popup {
    color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    padding: 0 20px;
    height: 45px;
    border-radius: 23px;
    background: #9A7618;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}
@media (max-width: 1280px) {
    .top__mv__2 .top__mv__2__container > div .popup {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__container > div .popup {
        font-size: 1.4rem;
        height: 32px;
    }
}
.top__mv__2 .top__mv__2__container > div .popup::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 24px;
    aspect-ratio: 24/15;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.top__mv__2 .top__mv__2__container > div .arrow {
    width: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__container > div .arrow {
        margin: unset;
        width: 19px;
    }
}
.top__mv__2 .top__mv__2__container > div .font60 {
    font-size: 6rem;
    line-height: 1.1;
    font-weight: 600;
}
@media (max-width: 1280px) {
    .top__mv__2 .top__mv__2__container > div .font60 {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__container > div .font60 {
        font-size: 3rem;
    }
}
.top__mv__2 .top__mv__2__container > div .font40 {
    font-size: 4rem;
    font-weight: 600;
}
@media (max-width: 1280px) {
    .top__mv__2 .top__mv__2__container > div .font40 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__container > div .font40 {
        font-size: 2rem;
    }
}
.top__mv__2 .top__mv__2__container > div .font35 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 600;
}
@media (max-width: 1280px) {
    .top__mv__2 .top__mv__2__container > div .font35 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__container > div .font35 {
        font-size: 2rem;
    }
}
.top__mv__2 .top__mv__2__container > div .underline {
    text-decoration-thickness: 6px;
}
.top__mv__2 .top__mv__2__container > div .top__mv__2__link {
    width: min(100%, 215px);
    height: 40px;
    background: #1F2943;
    color: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 1.6rem;
}
@media (max-width: 1280px) {
    .top__mv__2 .top__mv__2__container > div .top__mv__2__link {
        width: min(100%, 180px);
    }
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__container > div .top__mv__2__link {
        font-size: 1.5rem;
        width: 250px;
        height: 50px;
        border-radius: 25px;
    }
}
.top__mv__2 .top__mv__2__container > div .top__mv__2__link::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    width: 9px;
    aspect-ratio: 1;
    background: url(../img/common/arrow.svg) center/contain no-repeat;
}
.top__mv__2 .gd {
    color: #C49722;
}
.top__mv__2 h2 {
    font-size: 4rem;
    font-family: var(--font-mn);
}
@media (max-width: 1280px) {
    .top__mv__2 h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .top__mv__2 h2 {
        font-size: 2rem;
    }
}
.top__mv__2 h2 .bg {
    font-size: 5.5rem;
}
@media (max-width: 1280px) {
    .top__mv__2 h2 .bg {
        font-size: 4.2rem;
    }
}
@media (max-width: 768px) {
    .top__mv__2 h2 .bg {
        font-size: 3rem;
    }
}
.top__mv__2 .h2__bottom {
    font-size: 2.5rem;
    font-weight: 400;
    margin-top: 50px;
    line-height: 2;
}
@media (max-width: 1280px) {
    .top__mv__2 .h2__bottom {
        font-size: 2.1rem;
        margin-top: 40px;
    }
}
@media (max-width: 768px) {
    .top__mv__2 .h2__bottom {
        margin-top: 30px;
        font-size: 1.6rem;
    }
}
.top__mv__2 .h2__bottom.md {
    font-weight: 500;
}
.top__mv__2 .underline {
    font-weight: 600;
    -webkit-text-decoration: underline 2px #FFE940;
            text-decoration: underline 2px #FFE940;
}
.top__mv__2 .top__mv__2__value {
    font-size: 3rem;
    padding: 30px 0 50px;
    position: relative;
    font-family: var(--font-mn);
    width: -moz-fit-content;
    width: fit-content;
    margin: 70px auto 0;
    z-index: 0;
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__value {
        margin: 45px auto 0;
        font-size: 1.8rem;
        padding: 15px 0 25px;
    }
}
.top__mv__2 .top__mv__2__value .gd {
    font-size: 4rem;
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__value .gd {
        font-size: 2rem;
    }
}
.top__mv__2 .top__mv__2__value::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3F4E77;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.top__mv__2 .top__mv__2__value__bottom {
    margin-top: 70px;
    font-size: 2.5rem;
    font-weight: 400;
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__value__bottom {
        margin-top: 35px;
        font-size: 1.6rem;
    }
}
.top__mv__2 .top__mv__2__value__container {
    display: flex;
    justify-content: center;
    gap: 90px;
    margin-top: 130px;
}
@media (max-width: 1280px) {
    .top__mv__2 .top__mv__2__value__container {
        gap: 35px;
        margin-top: 100px;
    }
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__value__container {
        margin-top: 60px;
        gap: 45px;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }
}
.top__mv__2 .top__mv__2__value__container > div {
    flex: 1 1;
    max-width: 350px;
    border: 1px solid #fff;
    padding: 20px 25px;
    position: relative;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    .top__mv__2 .top__mv__2__value__container > div {
        font-size: 1.8rem;
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__value__container > div {
        font-size: 1.6rem;
        padding: 15px;
        width: 100%;
    }
}
.top__mv__2 .top__mv__2__value__container > div .num {
    width: 65px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-size: 3rem;
    font-family: var(--font-mn);
    border: 1px solid #fff;
    background: #1F2943;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}
@media (max-width: 1280px) {
    .top__mv__2 .top__mv__2__value__container > div .num {
        font-size: 2.4rem;
        width: 40px;
    }
}
@media (max-width: 768px) {
    .top__mv__2 .top__mv__2__value__container > div .num {
        font-size: 1.8rem;
        width: 33px;
    }
}
.top__mv__2 .top__mv__2__value__container > div .yellow {
    color: #FFE940;
}

.top__model {
    background: #EFF0F4;
    text-align: center;
}
.top__model .font20 {
    font-size: 2rem;
    font-weight: 400;
}
@media (max-width: 768px) {
    .top__model .font20 {
        font-size: 1.6rem;
    }
}
.top__model .font20 .font25 {
    font-size: 2.5rem;
    font-weight: 500;
    -webkit-text-decoration: underline 2px #C49722;
            text-decoration: underline 2px #C49722;
}
@media (max-width: 768px) {
    .top__model .font20 .font25 {
        font-size: 2rem;
    }
}
.top__model .top__model__container {
    margin-top: 120px;
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
}
@media (max-width: 768px) {
    .top__model .top__model__container {
        margin-top: 70px;
        flex-direction: column;
        gap: 50px;
    }
}
.top__model .top__model__container img {
    width: 235px;
}
.top__model .top__model__container .box {
    position: relative;
    width: 400px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.11);
    padding: 40px;
    font-size: 2rem;
}
@media (max-width: 768px) {
    .top__model .top__model__container .box {
        width: 100%;
        font-size: 1.8rem;
        padding: 35px 30px;
    }
}
.top__model .top__model__container .box .popup {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 60px;
    background: #9A7618;
    color: #fff;
    font-size: 2.5rem;
    font-family: var(--font-mn);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .top__model .top__model__container .box .popup {
        font-size: 2rem;
        width: 120px;
        height: 50px;
    }
}
.top__model .top__model__container .box .sm {
    font-size: 1.8rem;
}
@media (max-width: 768px) {
    .top__model .top__model__container .box .sm {
        font-size: 1.6rem;
    }
}
.top__model .top__model__container .box p {
    height: 126px;
    padding: 25px 0;
    border-bottom: 1px solid #707070;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .top__model .top__model__container .box p {
        height: 100px;
    }
}
.top__model .font25__bottom {
    font-size: 2.5rem;
    font-weight: 400;
}
@media (max-width: 768px) {
    .top__model .font25__bottom {
        font-size: 2rem;
    }
}
.top__model .font25__bottom .underline {
    font-weight: 600;
    -webkit-text-decoration: underline 2px #C49722;
            text-decoration: underline 2px #C49722;
}

.top__strengths__wrapper {
    background: #1F2943;
    color: #fff;
}

.top__strengths__2 {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
}
.top__strengths__2.bg__right::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 60%;
    width: 52%;
    background: #3F4E77;
    z-index: -1;
}
@media (max-width: 768px) {
    .top__strengths__2.bg__right::before {
        bottom: 30%;
        height: 50%;
    }
}
.top__strengths__2.bg__left::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 60%;
    width: 52%;
    background: #3F4E77;
    z-index: -1;
}
@media (max-width: 768px) {
    .top__strengths__2.bg__left::before {
        bottom: 0;
        height: 60%;
    }
}

.top__strangths__container {
    display: flex;
    align-items: flex-start;
    gap: 75px;
    justify-content: space-between;
    padding-bottom: 75px;
    position: relative;
    z-index: 0;
}
@media (max-width: 1280px) {
    .top__strangths__container {
        gap: 40px;
        flex-direction: column;
        align-items: unset;
    }
}
@media (max-width: 768px) {
    .top__strangths__container {
        row-gap: 20px;
        padding-bottom: unset;
    }
}
.top__strangths__container.fdrr {
    flex-direction: row-reverse;
}
@media (max-width: 1280px) {
    .top__strangths__container.fdrr {
        flex-direction: column;
    }
}
.top__strangths__container .top__strangths__container__left h3 {
    font-size: 3.5rem;
    font-family: var(--font-mn);
}
@media (max-width: 768px) {
    .top__strangths__container .top__strangths__container__left h3 {
        font-size: 2.2rem;
    }
}
.top__strangths__container .top__strangths__container__left .h3__bottom {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.top__strangths__container .top__strangths__container__left .h3__bottom h4 {
    width: 500px;
    height: 70px;
    border-radius: 41px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    text-align: center;
}
@media (max-width: 1280px) {
    .top__strangths__container .top__strangths__container__left .h3__bottom h4 {
        font-size: 1.7rem;
        width: 460px;
    }
}
@media (max-width: 768px) {
    .top__strangths__container .top__strangths__container__left .h3__bottom h4 {
        height: unset;
        padding: 10px 0;
        font-size: 1.6rem;
        width: 100%;
    }
}
.top__strangths__container .top__strangths__container__left .h3__bottom h4.sm {
    width: 360px;
}
@media (max-width: 768px) {
    .top__strangths__container .top__strangths__container__left .h3__bottom h4.sm {
        width: 100%;
    }
}
.top__strangths__container .top__strangths__container__left .h3__bottom h4 .ye {
    color: #FFE940;
}
.top__strangths__container .top__strangths__container__right {
    flex: 1 1;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.top__strangths__container .top__strangths__container__right > div {
    width: calc((100% - 25px) / 2);
    background: #fff;
}
@media (max-width: 768px) {
    .top__strangths__container .top__strangths__container__right > div {
        width: 100%;
    }
}
.top__strangths__container .top__strangths__container__right > div .head {
    background: #9A7618;
    color: #fff;
    font-family: var(--font-mn);
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
}
@media (max-width: 1280px) {
    .top__strangths__container .top__strangths__container__right > div .head {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__strangths__container .top__strangths__container__right > div .head {
        font-size: 1.6rem;
    }
}
.top__strangths__container .top__strangths__container__right > div ul {
    color: #1F2943;
    padding: 20px;
    font-size: 1.8rem;
}
@media (max-width: 1280px) {
    .top__strangths__container .top__strangths__container__right > div ul {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .top__strangths__container .top__strangths__container__right > div ul {
        font-size: 1.4rem;
    }
}

.top__services {
    background: #1F2943;
    color: #fff;
}
.top__services .top__services__wrapper {
    border: 1px solid #fff;
    padding: 45px;
}
.top__services h3 {
    margin-top: 90px;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
@media (max-width: 1280px) {
    .top__services h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__services h3 {
        margin-top: 60px;
        font-size: 1.6rem;
        padding-bottom: 5px;
    }
}
.top__services h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 6px;
    background: #9A7618;
    border-radius: 3px;
}
@media (max-width: 768px) {
    .top__services h3::before {
        width: 18px;
        height: 3px;
    }
}
.top__services .top__services__container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 140px;
}
.top__services .top__services__container.gap70 {
    gap: 70px;
}
@media (max-width: 1280px) {
    .top__services .top__services__container.gap70 {
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .top__services .top__services__container.gap70 {
        gap: 10px;
    }
}
@media (max-width: 1280px) {
    .top__services .top__services__container {
        max-width: 600px;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .top__services .top__services__container {
        max-width: 260px;
        margin: 0 auto;
        gap: 10px;
        flex-direction: column;
        justify-content: flex-start;
    }
}
.top__services .top__services__container .top__services__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    font-size: 1.8rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .top__services .top__services__container .top__services__box {
        font-size: 1.6rem;
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .top__services .top__services__container .top__services__box {
        flex-direction: row;
        gap: 20px;
        font-size: 1.4rem;
    }
}
.top__services .top__services__container .top__services__box img {
    width: 160px;
}
.top__services .top__services__container .top__services__box img.w120 {
    width: 120px;
}
@media (max-width: 1280px) {
    .top__services .top__services__container .top__services__box img.w120 {
        width: 100px;
    }
}
@media (max-width: 768px) {
    .top__services .top__services__container .top__services__box img.w120 {
        width: unset;
    }
}
@media (max-width: 1280px) {
    .top__services .top__services__container .top__services__box img {
        width: 140px;
    }
}
@media (max-width: 768px) {
    .top__services .top__services__container .top__services__box img {
        width: 52px;
    }
}
.top__services .top__services__btn {
    margin: 120px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 455px;
    height: 95px;
    background: #fff;
    color: #1F2943;
    font-size: 2.5rem;
    font-weight: 600;
    border-radius: 47.5px;
    border: 1px solid #707070;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    position: relative;
}
@media (max-width: 1280px) {
    .top__services .top__services__btn {
        margin: 80px auto 0;
        width: 350px;
        height: 70px;
        border-radius: 35px;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__services .top__services__btn {
        margin: 30px auto 0;
        width: min(100%, 250px);
        height: 50px;
        border-radius: 25px;
        font-size: 1.5rem;
    }
}
.top__services .top__services__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    width: 16px;
    aspect-ratio: 16/17;
    background: #1F2943;
    -webkit-mask: url(../img/common/arrow.svg) center/contain no-repeat;
            mask: url(../img/common/arrow.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .top__services .top__services__btn::before {
        width: 12px;
        right: 30px;
    }
}
@media (max-width: 768px) {
    .top__services .top__services__btn::before {
        width: 10px;
        right: 25px;
    }
}

.top__compare {
    background: #EFF0F4;
}
.top__compare .top__compare__wrapper {
    overflow-x: auto;
}
.top__compare .top__compare__wrapper img {
    min-width: 827px;
}

.top__flow {
    background: #1F2943;
    position: relative;
    z-index: 0;
}
.top__flow::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 57%;
    max-width: 1095px;
    background: #2C3A5F;
}
@media (max-width: 768px) {
    .top__flow::before {
        display: none;
    }
}
.top__flow .top__flow__wrapper {
    background: #fff;
}
.top__flow .top__flow__btn {
    margin: 100px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 560px;
    height: 120px;
    border-radius: 60px;
    background: #9a7618;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-right: 20px;
}
@media (max-width: 1280px) {
    .top__flow .top__flow__btn {
        margin: 70px auto 0;
        font-size: 2rem;
        width: 420px;
        height: 90px;
        border-radius: 45px;
    }
}
@media (max-width: 768px) {
    .top__flow .top__flow__btn {
        margin: 40px auto 0;
        font-size: 1.5rem;
        width: min(100%, 320px);
        height: 60px;
        border-radius: 30px;
    }
}
.top__flow .top__flow__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    width: 16px;
    aspect-ratio: 16/17;
    background: url(../img/common/arrow.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .top__flow .top__flow__btn::before {
        width: 12px;
        right: 30px;
    }
}
@media (max-width: 768px) {
    .top__flow .top__flow__btn::before {
        width: 10px;
        right: 25px;
    }
}

.top__flow__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
@media (max-width: 1280px) {
    .top__flow__container {
        row-gap: 20px;
    }
}
@media (max-width: 768px) {
    .top__flow__container {
        row-gap: 15px;
    }
}
.top__flow__container .top__flow__box {
    border: 1px solid #1F2943;
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 1280px) {
    .top__flow__container .top__flow__box {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .top__flow__container .top__flow__box {
        padding: 20px 30px;
        flex-direction: column;
        gap: 25px;
    }
}
.top__flow__container .top__flow__box .top__flow__num__icon {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 1280px) {
    .top__flow__container .top__flow__box .top__flow__num__icon {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .top__flow__container .top__flow__box .top__flow__num__icon {
        gap: 30px;
    }
}
.top__flow__container .top__flow__box .top__flow__num__icon div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
    border-right: 1px solid #1F2943;
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 2.3rem;
    line-height: 1;
    width: 160px;
}
@media (max-width: 1280px) {
    .top__flow__container .top__flow__box .top__flow__num__icon div {
        width: 130px;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__flow__container .top__flow__box .top__flow__num__icon div {
        padding: 0 30px 0 14px;
        font-size: 1.6rem;
        width: 110px;
    }
}
.top__flow__container .top__flow__box .top__flow__num__icon div .num {
    font-size: 6.4rem;
}
@media (max-width: 1280px) {
    .top__flow__container .top__flow__box .top__flow__num__icon div .num {
        font-size: 5.5rem;
    }
}
@media (max-width: 768px) {
    .top__flow__container .top__flow__box .top__flow__num__icon div .num {
        font-size: 4.5rem;
    }
}
.top__flow__container .top__flow__box .top__flow__num__icon img {
    width: 132px;
}
@media (max-width: 1280px) {
    .top__flow__container .top__flow__box .top__flow__num__icon img {
        width: 100px;
    }
}
@media (max-width: 768px) {
    .top__flow__container .top__flow__box .top__flow__num__icon img {
        width: 59px;
    }
}
.top__flow__container .top__flow__box .top__flow__txt {
    font-size: 1.8rem;
    padding-right: 20px;
}
@media (max-width: 1280px) {
    .top__flow__container .top__flow__box .top__flow__txt {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .top__flow__container .top__flow__box .top__flow__txt {
        font-size: 1.4rem;
    }
}
.top__flow__container .top__flow__box .top__flow__txt .bg {
    font-family: var(--font-mn);
    font-size: 3rem;
}
@media (max-width: 1280px) {
    .top__flow__container .top__flow__box .top__flow__txt .bg {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .top__flow__container .top__flow__box .top__flow__txt .bg {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 10px;
    }
}
.top__flow__container .top__flow__box .top__flow__txt .underline {
    -webkit-text-decoration: underline 2px #C49722;
            text-decoration: underline 2px #C49722;
}
.top__flow__container .top__flow__triangle {
    width: 48px;
    aspect-ratio: 48/20;
    background: #1F2943;
    margin: 0 auto;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.top__plans {
    background: #1F2943;
    color: #fff;
}
.top__plans .top__plans__wrapper {
    max-width: 1095px;
    margin: 0 auto;
    background: #2C3A5F;
    padding: 0 20px;
}
.top__plans .top__plans__list {
    margin: 85px auto 0;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    width: -moz-fit-content;
    width: fit-content;
}
@media (max-width: 768px) {
    .top__plans .top__plans__list {
        row-gap: 10px;
    }
}
.top__plans .top__plans__list > img {
    max-width: 203px;
}
.top__plans .top__plans__list > div {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 1280px) {
    .top__plans .top__plans__list > div {
        gap: 20px;
    }
}
.top__plans .top__plans__list > div .head {
    background: #9A7618;
    color: #fff;
    width: 200px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
}
@media (max-width: 768px) {
    .top__plans .top__plans__list > div .head {
        font-size: 1.6rem;
        width: 110px;
        height: 35px;
    }
}
.top__plans .top__plans__list > div .txt {
    font-size: 3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    flex: 1 1;
}
@media (max-width: 1440px) {
    .top__plans .top__plans__list > div .txt {
        font-size: 2.4rem;
    }
}
@media (max-width: 1280px) {
    .top__plans .top__plans__list > div .txt {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__plans .top__plans__list > div .txt {
        font-size: 1.4rem;
        font-weight: 500;
    }
}
.top__plans .top__plans__list > div .txt img {
    max-width: 347px;
}
@media (max-width: 1440px) {
    .top__plans .top__plans__list > div .txt img {
        max-width: 280px;
    }
}
@media (max-width: 1280px) {
    .top__plans .top__plans__list > div .txt img {
        max-width: 200px;
    }
}
.top__plans .top__plans__btn {
    margin: 100px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 560px;
    height: 120px;
    border-radius: 60px;
    background: #fff;
    color: #1F2943;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}
@media (max-width: 1280px) {
    .top__plans .top__plans__btn {
        margin: 70px auto 0;
        font-size: 2rem;
        width: 420px;
        height: 90px;
        border-radius: 45px;
    }
}
@media (max-width: 768px) {
    .top__plans .top__plans__btn {
        margin: 40px auto 0;
        font-size: 1.5rem;
        width: min(100%, 320px);
        height: 60px;
        border-radius: 30px;
    }
}
.top__plans .top__plans__btn::before {
    content: "";
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    aspect-ratio: 16/17;
    background: #1F2943;
    -webkit-mask: url(../img/common/arrow.svg) center/contain no-repeat;
            mask: url(../img/common/arrow.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .top__plans .top__plans__btn::before {
        width: 12px;
        right: 30px;
    }
}
@media (max-width: 768px) {
    .top__plans .top__plans__btn::before {
        width: 10px;
        right: 25px;
    }
}

.top__faq {
    background: #EFF0F4;
}
.top__faq .faq__btn {
    margin: 100px auto 0;
    width: 560px;
    height: 120px;
    border-radius: 60px;
    background: #9a7618;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}
@media (max-width: 1280px) {
    .top__faq .faq__btn {
        margin: 70px auto 0;
        width: 340px;
        height: 90px;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__faq .faq__btn {
        margin: 40px auto 0;
        width: min(100%, 320px);
        height: 60px;
        font-size: 1.5rem;
        font-weight: 500;
    }
}
.top__faq .faq__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    width: 16px;
    aspect-ratio: 16/17;
    background: url(../img/common/arrow.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .top__faq .faq__btn::before {
        right: 30px;
        width: 12px;
    }
}
@media (max-width: 768px) {
    .top__faq .faq__btn::before {
        right: 25px;
        width: 10px;
    }
}
.top__faq .top__faq__wrapper {
    display: flex;
    gap: 35px;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 60px;
    border-bottom: 1px solid #ADADAD;
}
@media (max-width: 768px) {
    .top__faq .top__faq__wrapper {
        padding: 20px 0;
        gap: 15px;
        margin: 0 25px;
    }
}
.top__faq .top__faq__wrapper.bt {
    border-top: 1px solid #ADADAD;
}
.top__faq .top__faq__wrapper .faq__q {
    color: #9A7618;
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 400;
}
@media (max-width: 768px) {
    .top__faq .top__faq__wrapper .faq__q {
        font-size: 2rem;
    }
}
.top__faq .top__faq__wrapper .faq__a {
    font-size: 1.8rem;
}
@media (max-width: 768px) {
    .top__faq .top__faq__wrapper .faq__a {
        font-size: 1.4rem;
    }
}
.top__faq .top__faq__wrapper .faq__a .bg {
    font-family: var(--font-mn);
    font-size: 3rem;
}
@media (max-width: 768px) {
    .top__faq .top__faq__wrapper .faq__a .bg {
        font-size: 2rem;
    }
}

.top__column {
    background: #1F2943;
    color: #fff;
    position: relative;
    z-index: 0;
}
.top__column::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2C3A5F;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.top__column .column__list {
    display: flex;
    gap: 6%;
}
@media (max-width: 768px) {
    .top__column .column__list {
        flex-direction: column;
        row-gap: 50px;
    }
}
.top__column .column__list > a {
    width: 29.3333333333%;
}
@media (max-width: 768px) {
    .top__column .column__list > a {
        width: 100%;
    }
}
.top__column .column__list > a .thumbnail img {
    aspect-ratio: 411/279;
    -o-object-fit: cover;
       object-fit: cover;
}
.top__column .column__list > a .date__categories {
    font-weight: 400;
    display: flex;
    gap: 10px;
}
@media (max-width: 768px) {
    .top__column .column__list > a .date__categories {
        font-size: 1.4rem;
    }
}
.top__column .column__list > a .ttl {
    font-size: 1.8rem;
}
@media (max-width: 768px) {
    .top__column .column__list > a .ttl {
        font-size: 1.6rem;
    }
}
.top__column .top__column__link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px auto 0;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1F2943;
    width: 560px;
    height: 120px;
    border-radius: 60px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    position: relative;
}
@media (max-width: 1280px) {
    .top__column .top__column__link {
        margin: 80px auto 0;
        font-size: 2rem;
        width: 340px;
        height: 90px;
        border-radius: 45px;
    }
}
@media (max-width: 768px) {
    .top__column .top__column__link {
        margin: 50px auto 0;
        font-size: 1.5rem;
        width: min(100%, 320px);
        height: 60px;
        border-radius: 30px;
    }
}
.top__column .top__column__link::before {
    content: "";
    position: absolute;
    width: 16px;
    aspect-ratio: 16/17;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    background: #1F2943;
    -webkit-mask: url(../img/common/arrow.svg) center/contain no-repeat;
            mask: url(../img/common/arrow.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .top__column .top__column__link::before {
        width: 12px;
        right: 30px;
    }
}
@media (max-width: 768px) {
    .top__column .top__column__link::before {
        width: 10px;
        right: 25px;
    }
}

/* ------------------------------------- /
/  お知らせ一覧ページ
/* ------------------------------------- */
/* ------------------------------------- /
/  お知らせ単体ページ
/* ------------------------------------- */
/* ------------------------------------- /
/  提供サービスページ
/* ------------------------------------- */
.services__h2 {
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    padding-bottom: 25px;
    position: relative;
}
@media (max-width: 1280px) {
    .services__h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .services__h2 {
        padding-bottom: 15px;
        font-size: 2rem;
    }
}
.services__h2::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 6px;
    border-radius: 3px;
    background: #9A7618;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .services__h2::before {
        width: 18px;
        height: 3px;
        border-radius: 1.5px;
    }
}

.services__main {
    background: #EFF0F4;
}

.services__option__wrapper {
    background: #EFF0F4;
}
@media (max-width: 768px) {
    .services__option__wrapper {
        padding: 0 20px 35px;
    }
}

.services__option {
    background: #3F4E77;
    padding-bottom: 120px;
}
@media (max-width: 1280px) {
    .services__option {
        padding-bottom: 80px;
    }
}
@media (max-width: 768px) {
    .services__option {
        padding-bottom: 40px;
        border-radius: 10px;
    }
}
.services__option .services__h2 {
    color: #fff;
}

.services__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 560px;
    height: 120px;
    margin: 0 auto;
    border-radius: 60px;
    font-size: 2.5rem;
    font-weight: 600;
    background: #1F2943;
    border: 1px solid #1F2943;
    color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    position: relative;
}
@media (max-width: 1280px) {
    .services__btn {
        font-size: 2rem;
        width: 400px;
        height: 90px;
        border-radius: 45px;
    }
}
@media (max-width: 768px) {
    .services__btn {
        font-size: 1.5rem;
        width: 250px;
        height: 50px;
        border-radius: 25px;
    }
}
.services__btn::before {
    content: "";
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    aspect-ratio: 16/17;
    background: #fff;
    -webkit-mask: url(../img/common/arrow.svg) center/contain no-repeat;
            mask: url(../img/common/arrow.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .services__btn::before {
        width: 14px;
        right: 30px;
    }
}
@media (max-width: 768px) {
    .services__btn::before {
        width: 10px;
        right: 20px;
    }
}
.services__btn:hover {
    opacity: unset;
    color: #1F2943;
    background: #fff;
}
.services__btn:hover::before {
    background: #1F2943;
}
.services__btn.wh {
    background: #fff;
    border-color: #fff;
    color: #1F2943;
}
.services__btn.wh::before {
    background: #1F2943;
}
.services__btn.wh:hover {
    background: #1F2943;
    color: #fff;
}
.services__btn.wh:hover::before {
    background: #fff;
}

.services__main__container {
    display: flex;
    justify-content: center;
    gap: 60px;
}
@media (max-width: 1280px) {
    .services__main__container {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .services__main__container {
        flex-direction: column;
        row-gap: 45px;
    }
}
.services__main__container > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 54px;
}
@media (max-width: 768px) {
    .services__main__container > div {
        row-gap: 35px;
    }
}
.services__main__container > div img {
    width: 160px;
}
@media (max-width: 1280px) {
    .services__main__container > div img {
        width: 140px;
    }
}
@media (max-width: 768px) {
    .services__main__container > div img {
        width: 114px;
    }
}
.services__main__container > div .detail {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 386px;
    position: relative;
}
@media (max-width: 768px) {
    .services__main__container > div .detail {
        padding: 22px;
    }
}
.services__main__container > div .detail .popup {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 77px;
    height: 32px;
    border-radius: 16px;
    background: #9A7618;
    color: #fff;
    line-height: 1;
}
@media (max-width: 1280px) {
    .services__main__container > div .detail .popup {
        font-size: 1.5rem;
        width: 66px;
        height: 26px;
    }
}
@media (max-width: 768px) {
    .services__main__container > div .detail .popup {
        font-size: 1.2rem;
        width: 55px;
        height: 20px;
        border-radius: 18px;
    }
}
.services__main__container > div .detail h3 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-mn);
    text-align: center;
}
@media (max-width: 1280px) {
    .services__main__container > div .detail h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .services__main__container > div .detail h3 {
        font-size: 1.6rem;
    }
}
.services__main__container > div .detail .txt {
    font-size: 1.8rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .services__main__container > div .detail .txt {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .services__main__container > div .detail .txt {
        font-size: 1.4rem;
    }
}

.services__option__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #fff;
    gap: 90px;
}
@media (max-width: 768px) {
    .services__option__container {
        gap: 60px;
    }
}
.services__option__container > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    max-width: 400px;
}
@media (max-width: 768px) {
    .services__option__container > div {
        row-gap: 15px;
    }
}
.services__option__container > div img {
    width: 160px;
}
@media (max-width: 1280px) {
    .services__option__container > div img {
        width: 140px;
    }
}
@media (max-width: 768px) {
    .services__option__container > div img {
        width: 114px;
    }
}
.services__option__container > div h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-mn);
}
@media (max-width: 1280px) {
    .services__option__container > div h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .services__option__container > div h3 {
        font-size: 1.6rem;
    }
}
.services__option__container > div .txt {
    font-size: 1.8rem;
    font-weight: 400;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}
@media (max-width: 1280px) {
    .services__option__container > div .txt {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .services__option__container > div .txt {
        font-size: 1.4rem;
    }
}
.services__option__container > div .services__option__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px 15px;
    font-size: 1.8rem;
    width: 100%;
}
@media (max-width: 1280px) {
    .services__option__container > div .services__option__bottom {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .services__option__container > div .services__option__bottom {
        font-size: 1.4rem;
        gap: 5px 10px;
    }
}
.services__option__container > div .services__option__bottom div {
    color: #1F2943;
    background: #fff;
    padding: 0 15px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    .services__option__container > div .services__option__bottom div {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .services__option__container > div .services__option__bottom div {
        padding: 0 5px;
        height: 21px;
        font-size: 1.2rem;
    }
}

/* ------------------------------------- /
/  主なサービスページ
/* ------------------------------------- */
.main__services__contents {
    background: #1F2943;
}
@media (max-width: 768px) {
    .main__services__contents.sp__bg {
        background: #080E1F;
    }
}
.main__services__contents.sp__bg .main__services__container {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .main__services__contents.sp__bg .main__services__container {
        flex-direction: column;
    }
}
.main__services__contents.sp__bg .main__services__container .img {
    padding: 0 0 0 5%;
}
@media (max-width: 768px) {
    .main__services__contents.sp__bg .main__services__container .img {
        padding: unset;
    }
}

.main__services__container {
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .main__services__container {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .main__services__container {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: center;
    }
}
.main__services__container .img {
    width: 50%;
    padding-right: 5%;
}
@media (max-width: 768px) {
    .main__services__container .img {
        padding: unset;
        width: 100%;
    }
}
.main__services__container .txt {
    width: 50%;
}
@media (max-width: 768px) {
    .main__services__container .txt {
        width: 100%;
    }
}
.main__services__container .txt h3 {
    font-family: var(--font-mn);
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 2;
}
@media (max-width: 1280px) {
    .main__services__container .txt h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .main__services__container .txt h3 {
        font-size: 1.6rem;
    }
}
.main__services__container .txt h3 span {
    background: #6373A2;
}
.main__services__container .monthly {
    font-weight: 500;
    padding: 0 20px;
    background: #9A7618;
    height: 32px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
}
@media (max-width: 768px) {
    .main__services__container .monthly {
        font-size: 1.2rem;
        height: 20px;
        padding: 0 10px;
        margin: 0 auto 5px;
    }
}
.main__services__container h2 {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-mn);
}
@media (max-width: 1280px) {
    .main__services__container h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .main__services__container h2 {
        font-weight: 600;
        font-size: 2rem;
        margin-bottom: 25px;
    }
}

.main__services__btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 560px;
    height: 120px;
    border-radius: 60px;
    background: #fff;
    border: 1px solid #fff;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1F2943;
    position: relative;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
@media (max-width: 1280px) {
    .main__services__btn {
        font-size: 2rem;
        width: 400px;
        height: 90px;
        border-radius: 45px;
    }
}
@media (max-width: 768px) {
    .main__services__btn {
        font-size: 1.5rem;
        width: 250px;
        height: 50px;
        border-radius: 25px;
    }
}
.main__services__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    left: 40px;
    width: 16px;
    aspect-ratio: 16/17;
    background: #1F2943;
    -webkit-mask: url(../img/common/arrow.svg) center/contain no-repeat;
            mask: url(../img/common/arrow.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .main__services__btn::before {
        width: 10px;
        left: 20px;
    }
}
.main__services__btn:hover {
    opacity: unset;
    background: #1F2943;
    color: #fff;
}
.main__services__btn:hover::before {
    background: #fff;
}

/* ------------------------------------- /
/  オプションサービスページ
/* ------------------------------------- */
.option__services__contents {
    background: #1F2943;
    color: #fff;
}
@media (max-width: 768px) {
    .option__services__contents.sp__bg {
        background: #080E1F;
    }
}

.option__services__container {
    display: flex;
    gap: 60px;
    font-size: 1.8rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .option__services__container {
        font-size: 1.6rem;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .option__services__container {
        flex-direction: column;
        align-items: center;
        font-size: 1.4rem;
        gap: 20px;
    }
}
.option__services__container .img {
    max-width: 390px;
}
@media (max-width: 1280px) {
    .option__services__container .img {
        max-width: 240px;
    }
}
@media (max-width: 768px) {
    .option__services__container .img {
        max-width: 400px;
    }
}
.option__services__container .txt {
    flex: 1 1;
}
.option__services__container .txt h3 {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: var(--font-mn);
    line-height: 2;
}
@media (max-width: 1280px) {
    .option__services__container .txt h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .option__services__container .txt h3 {
        font-size: 1.6rem;
    }
}
.option__services__container .txt h3 span {
    background: #6373A2;
}
.option__services__container .txt .box {
    border: 1px solid #fff;
    padding: 20px;
}
@media (max-width: 768px) {
    .option__services__container .txt .box {
        padding: 14px;
    }
}
.option__services__container .txt .box > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 15px;
}
@media (max-width: 768px) {
    .option__services__container .txt .box > div {
        gap: 5px 10px;
    }
}
.option__services__container .txt .box > div > div {
    padding: 0 15px;
    height: 32px;
    border-radius: 16px;
    background: #9A7618;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .option__services__container .txt .box > div > div {
        font-size: 1.5rem;
        height: 26px;
    }
}
@media (max-width: 768px) {
    .option__services__container .txt .box > div > div {
        padding: 0 10px;
        height: 21px;
        font-size: 1.2rem;
        border-radius: 11px;
    }
}
.option__services__container h2 {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-mn);
}
@media (max-width: 1280px) {
    .option__services__container h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .option__services__container h2 {
        font-size: 2rem;
    }
}

/* ------------------------------------- /
/  オプションサービスページ
/* ------------------------------------- */
.page-template-page-faq {
    background: #EFF0F4;
}

.faq__link__area {
    background: #1F2943;
}
.faq__link__area .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 100px;
}
@media (max-width: 1280px) {
    .faq__link__area .inner {
        gap: 20px 60px;
    }
}
@media (max-width: 768px) {
    .faq__link__area .inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
.faq__link__area .inner a {
    width: 330px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 330px;
    height: 65px;
    background: #3F4E77;
    color: #fff;
    font-family: var(--font-mn);
    font-size: 2.5rem;
    font-weight: 600;
    border-bottom: 2px solid #C49722;
    position: relative;
    padding-right: 14px;
}
@media (max-width: 768px) {
    .faq__link__area .inner a {
        width: min(100%, 300px);
        height: 60px;
        font-size: 1.8rem;
    }
}
.faq__link__area .inner a::before {
    content: "";
    position: absolute;
    width: 12px;
    aspect-ratio: 12/6;
    background: url(../img/faq/angle.svg) center/contain no-repeat;
    right: 25px;
    top: 50%;
    transform: translateY(calc(-50% + 2px));
}
@media (max-width: 768px) {
    .faq__link__area .inner a::before {
        width: 8px;
        right: 20px;
    }
}

.faq__h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faq__h2 .h2__en {
    font-family: var(--font-en);
    font-size: 6rem;
    font-weight: 400;
    line-height: 1;
}
@media (max-width: 1280px) {
    .faq__h2 .h2__en {
        font-size: 4.4rem;
    }
}
@media (max-width: 768px) {
    .faq__h2 .h2__en {
        font-size: 2.8rem;
    }
}
.faq__h2 h2 {
    font-family: var(--font-mn);
    font-size: 2rem;
    font-weight: 600;
}
@media (max-width: 1280px) {
    .faq__h2 h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .faq__h2 h2 {
        font-size: 1.6rem;
    }
}

.faq__box__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq__box {
    max-width: 1000px;
    width: 100%;
    border-top: 1px solid #ADADAD;
    padding: 40px 50px;
}
@media (max-width: 1280px) {
    .faq__box {
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .faq__box {
        padding: 20px 0;
    }
}
.faq__box:last-child {
    border-bottom: 1px solid #ADADAD;
}
.faq__box .faq__question {
    display: flex;
    align-items: baseline;
    font-size: 3rem;
}
@media (max-width: 1280px) {
    .faq__box .faq__question {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .faq__box .faq__question {
        font-size: 2rem;
    }
}
.faq__box .faq__question .faq__question__q {
    font-family: var(--font-en);
    font-weight: 400;
    color: #9A7618;
    width: 60px;
}
@media (max-width: 1280px) {
    .faq__box .faq__question .faq__question__q {
        width: 50px;
    }
}
@media (max-width: 768px) {
    .faq__box .faq__question .faq__question__q {
        width: 32px;
    }
}
.faq__box .faq__question .faq__question__detail {
    font-family: var(--font-mn);
    line-height: 1.47;
}
.faq__box .faq__answer {
    margin-top: 15px;
    padding-left: 60px;
    line-height: 1.78;
    font-size: 1.8rem;
}
@media (max-width: 1280px) {
    .faq__box .faq__answer {
        padding-left: 50px;
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .faq__box .faq__answer {
        margin-top: 5px;
        padding-left: 32px;
        font-size: 1.4rem;
    }
}

/* ------------------------------------- /
/  料金プランページ
/* ------------------------------------- */
.page-template-page-plans main {
    background: #1F2943;
    color: #fff;
}

.plans__h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
@media (max-width: 768px) {
    .plans__h2 {
        gap: 0;
    }
}
.plans__h2 .h2__en {
    font-size: 6rem;
    font-family: var(--font-en);
    font-weight: 400;
    line-height: 1;
}
@media (max-width: 1280px) {
    .plans__h2 .h2__en {
        font-size: 4.4rem;
    }
}
@media (max-width: 768px) {
    .plans__h2 .h2__en {
        font-size: 2.8rem;
    }
}
.plans__h2 h2 {
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-mn);
}
@media (max-width: 1280px) {
    .plans__h2 h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .plans__h2 h2 {
        font-size: 1.6rem;
    }
}

.plans__contents {
    width: min(100%, 900px);
    margin: 0 auto;
}
.plans__contents p {
    width: min(100%, 800px);
    margin: 0 auto;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 2.05;
}
@media (max-width: 1280px) {
    .plans__contents p {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .plans__contents p {
        font-weight: 500;
        font-size: 1.4rem;
        line-height: 1.79;
    }
}

.plans__h3__wrapper {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: var(--font-mn);
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 0;
}
@media (max-width: 1280px) {
    .plans__h3__wrapper {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .plans__h3__wrapper {
        font-size: 1.6rem;
    }
}
.plans__h3__wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #9A7619;
    z-index: -1;
}
.plans__h3__wrapper h3 {
    padding: 12px 45px;
    background: #9A7618;
    width: -moz-fit-content;
    width: fit-content;
}
@media (max-width: 768px) {
    .plans__h3__wrapper h3 {
        padding: 5px 15px;
    }
}

/* ------------------------------------- /
/  FC加盟ページ
/* ------------------------------------- */
.fc__mv__bottom {
    background: #1F2943;
}
.fc__mv__bottom h2 {
    font-family: var(--font-mn);
    font-size: 5rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    padding-right: 30px;
}
@media (max-width: 1280px) {
    .fc__mv__bottom h2 {
        font-size: 3.5rem;
    }
}
@media (max-width: 768px) {
    .fc__mv__bottom h2 {
        font-size: 2rem;
    }
}
.fc__mv__bottom h2 .bg {
    color: #C49722;
    font-size: 6rem;
    font-weight: 600;
}
@media (max-width: 1280px) {
    .fc__mv__bottom h2 .bg {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .fc__mv__bottom h2 .bg {
        font-size: 3rem;
    }
}
.fc__mv__bottom .fc__mv__bottom__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .fc__mv__bottom .fc__mv__bottom__container {
        flex-direction: column;
        row-gap: 25px;
    }
}
.fc__mv__bottom .fc__mv__bottom__container .box {
    width: 50%;
    background: #fff;
    padding: 50px;
    position: relative;
    z-index: 0;
}
@media (max-width: 1280px) {
    .fc__mv__bottom .fc__mv__bottom__container .box {
        padding: 35px;
    }
}
@media (max-width: 768px) {
    .fc__mv__bottom .fc__mv__bottom__container .box {
        width: 100%;
        padding: 25px;
    }
}
.fc__mv__bottom .fc__mv__bottom__container .box::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 56px;
    aspect-ratio: 56/58;
    background: #fff;
    top: 50%;
    left: 0;
    transform: translate(-70%, -50%);
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
}
@media (max-width: 1280px) {
    .fc__mv__bottom .fc__mv__bottom__container .box::before {
        width: 40px;
    }
}
@media (max-width: 768px) {
    .fc__mv__bottom .fc__mv__bottom__container .box::before {
        display: none;
    }
}
.fc__mv__bottom .fc__mv__bottom__container .box ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 2.2rem;
}
@media (max-width: 1280px) {
    .fc__mv__bottom .fc__mv__bottom__container .box ul {
        gap: 20px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .fc__mv__bottom .fc__mv__bottom__container .box ul {
        gap: 10px;
        font-size: 1.4rem;
    }
}
.fc__mv__bottom .fc__mv__bottom__container .box ul li {
    position: relative;
    padding-left: 31px;
}
@media (max-width: 768px) {
    .fc__mv__bottom .fc__mv__bottom__container .box ul li {
        padding-left: 28px;
    }
}
.fc__mv__bottom .fc__mv__bottom__container .box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    aspect-ratio: 1;
    background: url(../img/fc/check.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .fc__mv__bottom .fc__mv__bottom__container .box ul li::before {
        width: 17px;
    }
}

.fc__flow {
    background: #EFF0F4;
}

.fc__form {
    background: #1F2943;
    color: #fff;
}
.fc__form .fc__form__suggestion {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    font-family: var(--font-mn);
    font-size: 4rem;
    font-weight: 600;
    position: relative;
    line-height: 1;
}
@media (max-width: 1280px) {
    .fc__form .fc__form__suggestion {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .fc__form .fc__form__suggestion {
        font-size: 2rem;
    }
}
.fc__form .fc__form__suggestion::before, .fc__form .fc__form__suggestion::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 36px;
    width: 1px;
    background: #fff;
}
@media (max-width: 1280px) {
    .fc__form .fc__form__suggestion::before, .fc__form .fc__form__suggestion::after {
        height: 30px;
    }
}
@media (max-width: 768px) {
    .fc__form .fc__form__suggestion::before, .fc__form .fc__form__suggestion::after {
        height: 24px;
    }
}
.fc__form .fc__form__suggestion::before {
    left: 0;
    transform-origin: left bottom;
    transform: rotate(-40deg);
}
.fc__form .fc__form__suggestion::after {
    right: 0;
    transform-origin: right bottom;
    transform: rotate(40deg);
}
.fc__form .fc__form__container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
@media (max-width: 1280px) {
    .fc__form .fc__form__container {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .fc__form .fc__form__container {
        flex-direction: column;
        gap: 25px;
    }
}
.fc__form .fc__form__container > div {
    width: calc((100% - 120px) / 4);
    position: relative;
    padding: 28px 0 0 28px;
}
@media (max-width: 1280px) {
    .fc__form .fc__form__container > div {
        width: calc((100% - 30px) / 2);
    }
}
@media (max-width: 768px) {
    .fc__form .fc__form__container > div {
        width: 100%;
        padding: 15px 0 0 15px;
    }
}
.fc__form .fc__form__container > div .num {
    position: absolute;
    top: 0;
    left: 0;
    width: 65px;
    aspect-ratio: 1;
    border: 1px solid #fff;
    background: #1F2943;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-mn);
    font-size: 3rem;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .fc__form .fc__form__container > div .num {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .fc__form .fc__form__container > div .num {
        width: 33px;
        font-size: 1.8rem;
    }
}
.fc__form .fc__form__container > div .box {
    border: 1px solid #fff;
    padding: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-align: center;
    height: 100%;
}
@media (max-width: 1280px) {
    .fc__form .fc__form__container > div .box {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .fc__form .fc__form__container > div .box {
        padding: 15px 10px;
        font-size: 1.6rem;
    }
}
.fc__form .fc__form__container > div .box .gd {
    color: #C49722;
}
.fc__form .fc__form__wrapper {
    background: #EFF0F4;
    border-radius: 10px;
    color: #1F2943;
    padding: 0 35px;
}
.fc__form .fc__form__wrapper .fc__form__h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fc__form .fc__form__wrapper .fc__form__h2 .h2__en {
    font-size: 6rem;
    font-weight: 400;
    font-family: var(--font-en);
    line-height: 1;
}
@media (max-width: 1280px) {
    .fc__form .fc__form__wrapper .fc__form__h2 .h2__en {
        font-size: 4.6rem;
    }
}
@media (max-width: 768px) {
    .fc__form .fc__form__wrapper .fc__form__h2 .h2__en {
        font-size: 3.5rem;
    }
}
.fc__form .fc__form__wrapper .fc__form__h2 h2 {
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-mn);
}
@media (max-width: 768px) {
    .fc__form .fc__form__wrapper .fc__form__h2 h2 {
        font-size: 1.8rem;
    }
}

.form__section {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.8rem;
}
@media (max-width: 768px) {
    .form__section {
        font-size: 1.2rem;
    }
}
.form__section .form__wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
}
@media (max-width: 768px) {
    .form__section .form__wrapper {
        row-gap: 40px;
    }
}
.form__section .form__wrapper dl dt {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .form__section .form__wrapper dl dt {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
}
.form__section .form__wrapper dl dt .required, .form__section .form__wrapper dl dt .optional {
    background: #9A7618;
    border-radius: 3px;
    color: #fff;
    padding: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.6rem;
    font-weight: 600;
}
@media (max-width: 768px) {
    .form__section .form__wrapper dl dt .required, .form__section .form__wrapper dl dt .optional {
        font-size: 1.2rem;
        font-weight: 500;
        padding: 2px 5px;
    }
}
.form__section .form__wrapper dl dt .optional {
    background: #6373A2;
}
.form__section .form__wrapper dl dd textarea,
.form__section .form__wrapper dl dd input[type=text],
.form__section .form__wrapper dl dd input[type=email],
.form__section .form__wrapper dl dd input[type=tel] {
    border: 2px solid #C4C9D8;
    border-radius: 5px;
    font: inherit;
    width: 100%;
    padding: 10px;
}
.form__section .form__wrapper dl dd textarea.tel,
.form__section .form__wrapper dl dd input[type=text].tel,
.form__section .form__wrapper dl dd input[type=email].tel,
.form__section .form__wrapper dl dd input[type=tel].tel {
    width: 50%;
}
@media (max-width: 768px) {
    .form__section .form__wrapper dl dd textarea.tel,
    .form__section .form__wrapper dl dd input[type=text].tel,
    .form__section .form__wrapper dl dd input[type=email].tel,
    .form__section .form__wrapper dl dd input[type=tel].tel {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .form__section .form__wrapper dl dd textarea,
    .form__section .form__wrapper dl dd input[type=text],
    .form__section .form__wrapper dl dd input[type=email],
    .form__section .form__wrapper dl dd input[type=tel] {
        padding: 5px;
        border-width: 1px;
    }
}
.form__section .form__wrapper dl dd .datetime__wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 768px) {
    .form__section .form__wrapper dl dd .datetime__wrapper {
        gap: 15px;
    }
}
.form__section .form__wrapper dl dd .datetime__wrapper p {
    white-space: nowrap;
}
.form__section .form__wrapper dl dd .radio__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 100px;
}
@media (max-width: 768px) {
    .form__section .form__wrapper dl dd .radio__wrapper {
        gap: 10px 50px;
    }
}
.form__section .form__wrapper dl dd .radio__wrapper input[type=radio] {
    display: none;
}
.form__section .form__wrapper dl dd .radio__wrapper input[type=radio]:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 17px;
    transform: translate(-50%, -50%);
    width: 22px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #1F2943;
}
@media (max-width: 768px) {
    .form__section .form__wrapper dl dd .radio__wrapper input[type=radio]:checked + label::after {
        width: 13px;
        left: 10.5px;
    }
}
.form__section .form__wrapper dl dd .radio__wrapper label {
    padding-left: 50px;
    position: relative;
}
@media (max-width: 768px) {
    .form__section .form__wrapper dl dd .radio__wrapper label {
        padding-left: 31px;
    }
}
.form__section .form__wrapper dl dd .radio__wrapper label::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 34px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid #C4C9D8;
    background: #fff;
}
@media (max-width: 768px) {
    .form__section .form__wrapper dl dd .radio__wrapper label::before {
        width: 21px;
    }
}
.form__section .form__wrapper dl dd .error {
    color: red;
}
.form__section .form__wrapper dl dd .error.false {
    display: none;
}
.form__section .submit__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.form__section .submit__wrapper .submit__btn {
    width: 560px;
    height: 120px;
    border-radius: 60px;
    background: #1F2943;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    font-family: var(--font-jp);
    position: relative;
    cursor: pointer;
}
@media (max-width: 1280px) {
    .form__section .submit__wrapper .submit__btn {
        width: min(100%, 400px);
        height: 90px;
        border-radius: 45px;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .form__section .submit__wrapper .submit__btn {
        width: min(100%, 250px);
        height: 50px;
        border-radius: 25px;
        font-size: 1.5rem;
        font-weight: 500;
    }
}
.form__section .submit__wrapper .submit__btn::before {
    content: "";
    position: absolute;
    width: 16px;
    aspect-ratio: 16/17;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    background: #fff;
    -webkit-mask: url(../img/common/arrow.svg) center/contain no-repeat;
            mask: url(../img/common/arrow.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .form__section .submit__wrapper .submit__btn::before {
        width: 10px;
        right: 20px;
    }
}
.form__section .submit__wrapper .submit__btn.return {
    border: 1px solid #1F2943;
    background: #fff;
    color: #1F2943;
}
.form__section .submit__wrapper .submit__btn.return::before {
    background: #1F2943;
    transform: translateY(-50%) rotate(180deg);
}

/* ------------------------------------- /
/  お問い合わせページ
/* ------------------------------------- */
.contact__contents {
    background: #EFF0F4;
}

/* ------------------------------------- /
/  会社概要ページ
/* ------------------------------------- */
.company__contents {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 1280px) {
    .company__contents {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .company__contents {
        font-size: 1.4rem;
        gap: 10px;
    }
}
.company__contents dl {
    display: flex;
    background: #EFF0F4;
    padding: 15px 0;
}
.company__contents dl dt {
    width: 270px;
    text-align: center;
    border-right: 0.5px solid #1F2943;
    padding: 12px 0;
}
@media (max-width: 768px) {
    .company__contents dl dt {
        width: 100px;
        padding: 5px 0;
    }
}
.company__contents dl dd {
    padding: 12px 55px;
    flex: 1 1;
    display: flex;
    align-items: center;
}
@media (max-width: 1280px) {
    .company__contents dl dd {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .company__contents dl dd {
        font-size: 1.2rem;
        font-weight: 400;
        padding: 5px 15px;
    }
}

/* ------------------------------------- /
/  プライバシーポリシーページ
/* ------------------------------------- */
.page-template-page-privacy main {
    background: #1F2943;
    color: #fff;
}

.privacy__contents {
    font-size: 1.8rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .privacy__contents {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .privacy__contents {
        font-size: 1.4rem;
    }
}
.privacy__contents .inner {
    max-width: 1100px;
}
.privacy__contents h2 {
    font-family: var(--font-mn);
    font-size: 3rem;
    font-weight: 700;
    color: #C49722;
    padding-bottom: 15px;
    border-bottom: 2px solid #C49722;
    margin-bottom: 30px;
    margin-top: 60px;
}
@media (max-width: 1280px) {
    .privacy__contents h2 {
        font-size: 2.4rem;
        margin-top: 45px;
    }
}
@media (max-width: 768px) {
    .privacy__contents h2 {
        font-size: 1.8rem;
        font-weight: 600;
        border-bottom-width: 1px;
        padding-bottom: 5px;
        margin-bottom: 15px;
        margin-top: 30px;
    }
}

/* ------------------------------------- /
/  コラム一覧ページ
/* ------------------------------------- */
.archive__contents {
    background: #1F2943;
    color: #fff;
}
.archive__contents .inner {
    display: flex;
    gap: 95px;
    justify-content: space-between;
}
@media (max-width: 1280px) {
    .archive__contents .inner {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .archive__contents .inner {
        flex-direction: column;
        gap: 70px;
    }
}
.archive__contents .inner.narrow {
    gap: 70px;
}
@media (max-width: 1280px) {
    .archive__contents .inner.narrow {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .archive__contents .inner.narrow {
        gap: 70px;
    }
}

.archive__column__main {
    flex: 1 1;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 80px;
}
@media (max-width: 1280px) {
    .archive__column__main {
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .archive__column__main {
        gap: 50px;
    }
}
.archive__column__main > a {
    width: calc((100% - 80px) / 2);
}
@media (max-width: 1280px) {
    .archive__column__main > a {
        width: calc((100% - 25px) / 2);
    }
}
@media (max-width: 768px) {
    .archive__column__main > a {
        width: 100%;
    }
}
.archive__column__main > a .thumbnail img {
    aspect-ratio: 411/279;
    -o-object-fit: cover;
       object-fit: cover;
}
.archive__column__main > a .cat__date {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    font-weight: 400;
}
@media (max-width: 768px) {
    .archive__column__main > a .cat__date {
        margin-top: 20px;
        font-size: 1.4rem;
    }
}
.archive__column__main > a .cat__date .categories {
    display: flex;
    flex-wrap: wrap;
}
.archive__column__main > a .ttl {
    margin-top: 30px;
    font-size: 1.8rem;
}
@media (max-width: 768px) {
    .archive__column__main > a .ttl {
        margin-top: 20px;
        font-size: 1.6rem;
    }
}

.archive__column__side {
    width: 400px;
}
@media (max-width: 1280px) {
    .archive__column__side {
        width: 180px;
    }
}
@media (max-width: 768px) {
    .archive__column__side {
        width: 100%;
    }
}
.archive__column__side.narrow {
    width: 320px;
}
@media (max-width: 1280px) {
    .archive__column__side.narrow {
        width: 180px;
    }
}
@media (max-width: 768px) {
    .archive__column__side.narrow {
        width: 100%;
    }
}
.archive__column__side h2 {
    font-family: var(--font-mn);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}
@media (max-width: 1280px) {
    .archive__column__side h2 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .archive__column__side h2 {
        font-size: 2rem;
    }
}
.archive__column__side .archive__column__side__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.archive__column__side .archive__column__side__container > a {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.5333333333);
}
@media (max-width: 1280px) {
    .archive__column__side .archive__column__side__container > a {
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .archive__column__side .archive__column__side__container > a {
        flex-direction: row;
    }
}
.archive__column__side .archive__column__side__container > a .thumbnail {
    width: 140px;
}
@media (max-width: 1280px) {
    .archive__column__side .archive__column__side__container > a .thumbnail {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .archive__column__side .archive__column__side__container > a .thumbnail {
        width: 110px;
    }
}
.archive__column__side .archive__column__side__container > a .thumbnail.narrow {
    width: 120px;
}
@media (max-width: 1280px) {
    .archive__column__side .archive__column__side__container > a .thumbnail.narrow {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .archive__column__side .archive__column__side__container > a .thumbnail.narrow {
        width: 110px;
    }
}
.archive__column__side .archive__column__side__container > a .thumbnail img {
    aspect-ratio: 140/90;
    -o-object-fit: cover;
       object-fit: cover;
}
.archive__column__side .archive__column__side__container > a .detail {
    flex: 1 1;
}
.archive__column__side .archive__column__side__container > a .detail .date__categories {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.archive__column__side .archive__column__side__container > a .detail .date__categories .categories {
    display: flex;
    flex-wrap: wrap;
}
.archive__column__side .archive__column__side__container > a .detail .ttl {
    font-size: 1.4rem;
}

.pagination__list {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-family: var(--font-mn);
    font-size: 2.3rem;
}
@media (max-width: 768px) {
    .pagination__list {
        font-size: 1.4rem;
        gap: 15px;
    }
}
.pagination__list .num {
    padding: 0 5px;
}
.pagination__list .current span {
    border-bottom: 2px solid #C49722;
}
.pagination__list .previous span {
    display: block;
    width: 11px;
    aspect-ratio: 11/9;
    background: url(../img/common/previous.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .pagination__list .previous span {
        width: 7px;
    }
}
.pagination__list .next span {
    display: block;
    width: 11px;
    aspect-ratio: 11/9;
    background: url(../img/common/next.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .pagination__list .next span {
        width: 7px;
    }
}

/* ------------------------------------- /
/  コラム単体ページ
/* ------------------------------------- */
.single__column__main {
    flex: 1 1;
}
.single__column__main .single__post__wrapper {
    background: #EFF0F4;
    color: #1F2943;
    border-radius: 10px;
    padding: 60px;
}
@media (max-width: 1280px) {
    .single__column__main .single__post__wrapper {
        padding: 40px;
    }
}
@media (max-width: 768px) {
    .single__column__main .single__post__wrapper {
        padding: 40px 30px;
    }
}

.single__pagination .wrapper {
    display: flex;
    justify-content: space-between;
    font-size: 1.8rem;
    font-weight: 400;
}
@media (max-width: 1280px) {
    .single__pagination .wrapper {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .single__pagination .wrapper {
        font-size: 1.4rem;
    }
}
.single__pagination .btn__return {
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 560px;
    height: 120px;
    border-radius: 60px;
    background: #fff;
    color: #1F2943;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}
@media (max-width: 1280px) {
    .single__pagination .btn__return {
        width: min(100%, 400px);
        height: 90px;
        border-radius: 45px;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .single__pagination .btn__return {
        margin: 50px auto 0;
        width: min(100%, 250px);
        height: 50px;
        border-radius: 25px;
        font-size: 1.5rem;
    }
}
.single__pagination .btn__return::before {
    content: "";
    position: absolute;
    width: 16px;
    aspect-ratio: 16/17;
    background: #1F2943;
    -webkit-mask: url(../img/common/arrow.svg) center/contain no-repeat;
            mask: url(../img/common/arrow.svg) center/contain no-repeat;
    left: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 768px) {
    .single__pagination .btn__return::before {
        left: 20px;
        width: 10px;
    }
}

.post__header .date__cat {
    display: flex;
    flex-wrap: wrap;
    font-weight: 400;
}
@media (max-width: 768px) {
    .post__header .date__cat {
        font-size: 1.4rem;
    }
}
.post__header .date__cat .category {
    display: flex;
    flex-wrap: wrap;
}
.post__header h1 {
    margin-top: 30px;
    font-family: var(--font-mn);
    font-size: 2.5rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .post__header h1 {
        font-size: 2.2rem;
        margin-top: 25px;
    }
}
@media (max-width: 768px) {
    .post__header h1 {
        margin-top: 20px;
        font-size: 1.6rem;
    }
}

.single__post__thumbnail {
    margin-top: 40px;
    padding: 0 40px;
}
@media (max-width: 1280px) {
    .single__post__thumbnail {
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .single__post__thumbnail {
        margin-top: 30px;
        padding: unset;
    }
}

.single__post__content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    font-family: var(--font-mn);
    margin-bottom: 30px;
    padding-left: 27px;
    position: relative;
}
@media (max-width: 1280px) {
    .single__post__content h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
}
@media (max-width: 768px) {
    .single__post__content h2 {
        margin-bottom: 20px;
        font-size: 1.5rem;
        padding-left: 13px;
    }
}
.single__post__content h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    bottom: 0;
    background: #9A7618;
}
@media (max-width: 768px) {
    .single__post__content h2::before {
        width: 4px;
    }
}
.single__post__content p {
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 55px;
}
@media (max-width: 1280px) {
    .single__post__content p {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .single__post__content p {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
}
.single__post__content h3 {
    color: #9A7618;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
}
@media (max-width: 1280px) {
    .single__post__content h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}
@media (max-width: 768px) {
    .single__post__content h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}/*# sourceMappingURL=style.css.map */