@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Noto Serif JP", serif;
    --font-en: "Libre Baskerville", serif;
    --color-black: #000000;
    --header-height: 137px;
    --inner-width: 1480px;
    --inner-outer-width: calc(min(50vw, 1920px / 2) - min(var(--inner-width) / 0.88, min(100vw, 1920px)) * 0.44);
}
@media (max-width: 1600px) {
    :root {
        --header-height: 100px;
    }
}
@media (max-width: 1280px) {
    :root {
        --header-height: 80px;
    }
}
@media (max-width: 1000px) {
    :root {
        --header-height: 70px;
    }
}
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --inner-outer-width: calc(50vw - min(var(--inner-width) / 0.88, 100vw) * 0.46);
    }
}

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

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

html {
    font-size: 62.5%;
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-black);
    background-color: #ffffff;
    font-weight: 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%, 1681.8181818182px);
    margin: 0 auto;
    padding: 0 min(6%, 100.9090909091px);
}
@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: 30px;
    --trigger-gap: 8px;
    display: none;
    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: absolute;
    right: 30px;
    top: calc((var(--header-height) - var(--trigger-wrapper-height)) / 2);
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
}
@media (max-width: 1000px) {
    .menu-trigger {
        display: block;
    }
}
@media (max-width: 768px) {
    .menu-trigger {
        right: 10px;
    }
}
.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 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
@media (max-width: 1600px) {
    header {
        padding: 0 30px;
    }
}
@media (max-width: 768px) {
    header {
        padding: 0 10px;
    }
}
header .header__logo {
    max-width: 287px;
}
@media (max-width: 1600px) {
    header .header__logo {
        max-width: 230px;
    }
}
@media (max-width: 1280px) {
    header .header__logo {
        max-width: 184px;
    }
}
@media (max-width: 1000px) {
    header .header__logo {
        max-width: 150px;
    }
}
@media (max-width: 768px) {
    header .header__logo {
        max-width: 120px;
    }
}
header .header__menu {
    display: flex;
    align-items: center;
    gap: 50px;
    font-size: 2rem;
}
@media (max-width: 1600px) {
    header .header__menu {
        gap: 30px;
        font-size: 1.8rem;
    }
}
@media (max-width: 1280px) {
    header .header__menu {
        gap: 15px;
        font-size: 1.6rem;
    }
}
@media (max-width: 1000px) {
    header .header__menu {
        display: none;
    }
}
header .header__menu .header__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    width: 200px;
    height: 54px;
    border: 1px solid #2F2D2C;
    background: #2F2D2C;
    color: #fff;
    transition: color 0.2s ease-in, background 0.2s ease-in;
}
@media (max-width: 1600px) {
    header .header__menu .header__contact {
        width: 170px;
        height: 44px;
    }
}
@media (max-width: 1280px) {
    header .header__menu .header__contact {
        width: 150px;
        height: 36px;
    }
}
header .header__menu .header__contact::before {
    content: "";
    display: block;
    width: 19px;
    aspect-ratio: 19/15;
    background: #fff;
    -webkit-mask: url(../img/common/mail_wh.svg) center/contain no-repeat;
            mask: url(../img/common/mail_wh.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1600px) {
    header .header__menu .header__contact::before {
        width: 15px;
    }
}
@media (max-width: 1280px) {
    header .header__menu .header__contact::before {
        width: 12px;
    }
}
header .header__menu .header__contact:hover {
    opacity: unset;
    color: #2F2D2C;
    background: #fff;
}
header .header__menu .header__contact:hover::before {
    background: #2F2D2C;
}
header .header__menu .header__ig {
    display: block;
    display: none;
    width: 39px;
    aspect-ratio: 1;
    background: url(../img/common/ig_bk.svg) center/contain no-repeat;
}
@media (max-width: 1600px) {
    header .header__menu .header__ig {
        width: 31px;
    }
}
@media (max-width: 1280px) {
    header .header__menu .header__ig {
        width: 25px;
    }
}

.nav {
    display: none;
}
@media (max-width: 1000px) {
    .nav {
        display: flex;
        justify-content: center;
        width: min(100%, 400px);
        height: 100vh;
        background: #FFF;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateX(100%);
        z-index: 999;
        padding: 80px 45px 0;
    }
    .nav.active {
        transform: translateX(0);
        transition-delay: 0s;
    }
    .nav.active .wrapper {
        transition-delay: 0.8s;
        opacity: 1;
    }
    .nav .wrapper {
        opacity: 0;
        transition-duration: 0.4s;
    }
    .nav .wrapper .nav__menu {
        padding-top: 30px;
        display: flex;
        flex-wrap: wrap;
    }
    .nav .wrapper .nav__menu li {
        text-align: center;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #000;
    }
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    color: #fff;
    background: #2F2D2C;
}
footer .inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
@media (max-width: 768px) {
    footer .inner {
        gap: 15px;
        flex-direction: column;
    }
}
footer .inner .footer__left {
    line-height: 2.19;
    font-weight: 400;
}
footer .inner .footer__left .footer__logo {
    display: block;
    max-width: 293px;
}
@media (max-width: 1600px) {
    footer .inner .footer__left .footer__logo {
        max-width: 234px;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__left .footer__logo {
        max-width: 180px;
    }
}
footer .inner .footer__left .font22 {
    font-size: 2.2rem;
}
@media (max-width: 1600px) {
    footer .inner .footer__left .font22 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__left .font22 {
        font-size: 1.8rem;
    }
}
footer .inner .footer__right {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 120px;
}
@media (max-width: 768px) {
    footer .inner .footer__right {
        padding-top: 0;
        align-items: flex-start;
    }
}
footer .inner .footer__right .footer__right__upper {
    display: flex;
    flex-direction: column;
    align-items: inherit;
}
footer .inner .footer__right .footer__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 44px;
    font-size: 2rem;
}
@media (max-width: 1600px) {
    footer .inner .footer__right .footer__menu {
        font-size: 1.8rem;
        gap: 10px 20px;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__right .footer__menu {
        font-size: 1.6rem;
        justify-content: flex-start;
    }
}
footer .inner .footer__right .footer__contact {
    font-size: 2rem;
    width: 200px;
    height: 54px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
}
@media (max-width: 1600px) {
    footer .inner .footer__right .footer__contact {
        gap: 7px;
        font-size: 1.8rem;
        width: 170px;
        height: 44px;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__right .footer__contact {
        font-size: 1.6rem;
    }
}
footer .inner .footer__right .footer__contact::before {
    content: "";
    display: block;
    width: 19px;
    aspect-ratio: 19/15;
    background: url(../img/common/mail_wh.svg) center/contain no-repeat;
}
@media (max-width: 1600px) {
    footer .inner .footer__right .footer__contact::before {
        width: 15px;
    }
}
footer .inner .footer__right .footer__ig {
    display: block;
    width: 39px;
    aspect-ratio: 1;
    background: url(../img/common/ig_wh.svg) center/contain no-repeat;
}
@media (max-width: 1600px) {
    footer .inner .footer__right .footer__ig {
        width: 32px;
    }
}
footer .inner .footer__right .footer__copyright {
    font-family: var(--font-en);
    font-weight: 400;
}
@media (max-width: 768px) {
    footer .inner .footer__right .footer__copyright {
        margin-top: 15px;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__right .footer__copyright {
        font-size: 1.4rem;
    }
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.top__h2__container {
    position: relative;
    left: -6vw;
}
@media (max-width: 768px) {
    .top__h2__container {
        left: -4vw;
    }
}
.top__h2__container .en {
    font-family: var(--font-en);
    color: #ECF2F7;
    font-size: 18rem;
    font-weight: 400;
    line-height: 1.24;
}
@media (max-width: 1600px) {
    .top__h2__container .en {
        font-size: 14rem;
    }
}
@media (max-width: 1280px) {
    .top__h2__container .en {
        font-size: 10rem;
    }
}
@media (max-width: 768px) {
    .top__h2__container .en {
        font-size: 8rem;
    }
}
.top__h2__container .en.gy {
    color: #DADDDE;
}
.top__h2__container h2 {
    position: absolute;
    left: 6vw;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.43;
}
@media (max-width: 1600px) {
    .top__h2__container h2 {
        font-size: 3.4rem;
    }
}
@media (max-width: 1280px) {
    .top__h2__container h2 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .top__h2__container h2 {
        left: 4vw;
        font-size: 2.4rem;
        line-height: 1.2;
    }
}

.lower__header h1 {
    font-size: 6rem;
    font-weight: 400;
    padding-bottom: 60px;
    border-bottom: 1px solid #707070;
}
@media (max-width: 1280px) {
    .lower__header h1 {
        font-size: 4.8rem;
        padding-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .lower__header h1 {
        font-size: 2.8rem;
        padding-bottom: 20px;
    }
}

.lower__h2__container {
    text-align: center;
}
.lower__h2__container h2 {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.43;
}
@media (max-width: 1280px) {
    .lower__h2__container h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .lower__h2__container h2 {
        font-size: 2.4rem;
    }
}
.lower__h2__container .en {
    font-family: var(--font-en);
    font-weight: 400;
    line-height: 1.25;
}

.top__bottom {
    margin: 0 auto;
    display: flex;
    min-height: 500px;
    color: #fff;
}
@media (max-width: 768px) {
    .top__bottom {
        flex-direction: column;
        min-height: unset;
    }
}
.top__bottom .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .top__bottom .wrapper {
        width: 100%;
        min-height: 300px;
    }
}
.top__bottom .wrapper.sns {
    display: none;
    background: url(../img/top/ig_bg.webp) center/cover no-repeat;
}
.top__bottom .wrapper.contact {
    background: url(../img/top/contact_bg.webp) center/cover no-repeat;
}
.top__bottom .wrapper .sm {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
}
@media (max-width: 1280px) {
    .top__bottom .wrapper .sm {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__bottom .wrapper .sm {
        font-size: 1.6rem;
    }
}
.top__bottom .wrapper .bg {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.43;
}
@media (max-width: 1280px) {
    .top__bottom .wrapper .bg {
        font-size: 3.2rem;
    }
}
@media (max-width: 768px) {
    .top__bottom .wrapper .bg {
        font-size: 2.4rem;
    }
}
.top__bottom .wrapper .intagram__link__wh {
    font-family: var(--font-en);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 440px;
    height: 70px;
    border: 1.5px solid #fff;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.07em;
    padding: 0 30px;
    transition: color 0.2s ease-in, background 0.2s ease-in;
}
@media (max-width: 1280px) {
    .top__bottom .wrapper .intagram__link__wh {
        font-size: 1.6rem;
        width: 320px;
        padding: 0 20px;
        height: 60px;
    }
}
@media (max-width: 768px) {
    .top__bottom .wrapper .intagram__link__wh {
        border-width: 1px;
        font-size: 1.5rem;
        width: 250px;
        padding: 0 15px;
        height: 50px;
    }
}
.top__bottom .wrapper .intagram__link__wh::after {
    content: "";
    display: block;
    width: 14px;
    aspect-ratio: 1;
    background: #fff;
    -webkit-mask: url(../img/common/link.svg) center/contain no-repeat;
            mask: url(../img/common/link.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 768px) {
    .top__bottom .wrapper .intagram__link__wh::after {
        width: 10px;
    }
}
.top__bottom .wrapper .intagram__link__wh span {
    transition: inherit;
    display: flex;
    align-items: center;
}
.top__bottom .wrapper .intagram__link__wh .logo {
    display: inline-block;
    width: 17px;
    aspect-ratio: 1;
    background: #fff;
    -webkit-mask: url(../img/common/ig_bk.svg) center/contain no-repeat;
            mask: url(../img/common/ig_bk.svg) center/contain no-repeat;
    margin-right: 10px;
}
@media (max-width: 768px) {
    .top__bottom .wrapper .intagram__link__wh .logo {
        width: 12px;
        margin-right: 8px;
    }
}
.top__bottom .wrapper .intagram__link__wh:hover {
    opacity: unset;
    background: #fff;
    color: #000;
}
.top__bottom .wrapper .intagram__link__wh:hover::after {
    background: #000;
}
.top__bottom .wrapper .intagram__link__wh:hover .logo {
    background: #000;
}
.top__bottom .wrapper .top__bottom__contact__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.top__bottom .wrapper .top__bottom__contact__container a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    border: 1.5px solid #fff;
    width: 440px;
    height: 70px;
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.07em;
    transition: color 0.2s ease-in, background 0.2s ease-in;
}
@media (max-width: 1280px) {
    .top__bottom .wrapper .top__bottom__contact__container a {
        width: 320px;
        height: 60px;
        font-size: 1.6rem;
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .top__bottom .wrapper .top__bottom__contact__container a {
        width: 250px;
        height: 50px;
        font-size: 1.5rem;
        padding: 0 15px;
    }
}
@media (max-width: 768px) {
    .top__bottom .wrapper .top__bottom__contact__container a {
        border-width: 1px;
    }
}
.top__bottom .wrapper .top__bottom__contact__container a::after {
    content: "";
    display: block;
    width: 14px;
    aspect-ratio: 1;
    background: #fff;
    -webkit-mask: url(../img/common/arrow_bk.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_bk.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1000px) {
    .top__bottom .wrapper .top__bottom__contact__container a::after {
        width: 10px;
    }
}
.top__bottom .wrapper .top__bottom__contact__container a span {
    transition: inherit;
}
.top__bottom .wrapper .top__bottom__contact__container a .tel {
    display: inline-block;
    width: 11px;
    aspect-ratio: 11/17;
    background: #fff;
    -webkit-mask: url(../img/top/tel.svg) center/contain no-repeat;
            mask: url(../img/top/tel.svg) center/contain no-repeat;
    margin-right: 10px;
}
@media (max-width: 1000px) {
    .top__bottom .wrapper .top__bottom__contact__container a .tel {
        width: 9px;
        margin-right: 8px;
    }
}
.top__bottom .wrapper .top__bottom__contact__container a .mail {
    display: inline-block;
    width: 19px;
    aspect-ratio: 19/15;
    background: #fff;
    -webkit-mask: url(../img/top/mail.svg) center/contain no-repeat;
            mask: url(../img/top/mail.svg) center/contain no-repeat;
    margin-right: 10px;
}
@media (max-width: 1000px) {
    .top__bottom .wrapper .top__bottom__contact__container a .mail {
        width: 15px;
        margin-right: 8px;
    }
}
.top__bottom .wrapper .top__bottom__contact__container a:hover {
    opacity: unset;
    color: #000;
    background: #fff;
}
.top__bottom .wrapper .top__bottom__contact__container a:hover::after {
    background: #000;
}
.top__bottom .wrapper .top__bottom__contact__container a:hover .tel, .top__bottom .wrapper .top__bottom__contact__container a:hover .mail {
    background: #000;
}

.contact {
    background: #ECF2F8;
}
.contact .top__h2__container {
    text-align: center;
    left: unset;
}
.contact .top__h2__container .en {
    color: #FCFEFF;
}
.contact .top__h2__container h2 {
    left: 50%;
    transform: translate(-50%, -50%);
}
.contact .form__wrapper {
    background: #fff;
    border-radius: 10px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .contact .form__wrapper {
        border-radius: 5px;
        padding: 0 15px;
    }
}
.contact input[type=text],
.contact input[type=tel],
.contact input[type=email],
.contact textarea {
    background: #ECF2F7;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    min-height: 50px;
    padding: 14px 20px;
    line-height: 2.19;
}
@media (max-width: 1000px) {
    .contact input[type=text],
    .contact input[type=tel],
    .contact input[type=email],
    .contact textarea {
        min-height: 40px;
        padding: 10px 15px;
        line-height: 2;
    }
}
.contact .form__btn__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px 30px;
}
.contact .form__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1.5px solid #000;
    color: var(--color-black);
    font-family: inherit;
    width: 440px;
    height: 70px;
    padding: 0 30px;
    background: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease-in, background 0.2s ease-in;
}
@media (max-width: 1600px) {
    .contact .form__btn {
        width: 360px;
        height: 60px;
        font-size: 1.6rem;
        padding: 0 20px;
    }
}
@media (max-width: 1000px) {
    .contact .form__btn {
        width: 280px;
        height: 50px;
        font-size: 1.5rem;
        padding: 0 15px;
    }
}
@media (max-width: 768px) {
    .contact .form__btn {
        border-width: 1px;
    }
}
.contact .form__btn::after {
    content: "";
    display: block;
    width: 14px;
    aspect-ratio: 1;
    background: #000;
    -webkit-mask: url(../img/common/arrow_bk.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_bk.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1000px) {
    .contact .form__btn::after {
        width: 10px;
    }
}
.contact .form__btn:hover {
    background: #000;
    color: #fff;
}
.contact .form__btn:hover::after {
    background: #fff;
}
.contact .form__btn.return {
    color: #fff;
    background: #000;
}
.contact .form__btn.return::after {
    background: #fff;
    transform: rotate(180deg);
}
.contact .form__btn.return:hover {
    color: #000;
    background: #fff;
}
.contact .form__btn.return:hover::after {
    background: #000;
}
.contact .form__container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}
.contact .form__container dt {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
@media (max-width: 1280px) {
    .contact .form__container dt {
        font-size: 1.6rem;
    }
}
.contact .form__container dt .required {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 5px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 2px 8px;
}
@media (max-width: 1280px) {
    .contact .form__container dt .required {
        font-size: 1.4rem;
        padding: 0 4px;
    }
}
.contact .error {
    color: red;
}
.contact .error.false {
    display: none;
}
.contact .form__agree {
    display: flex;
    justify-content: center;
}
.contact .form__agree .checkbox__label {
    position: relative;
    padding-left: 20px;
}
.contact .form__agree .checkbox__label::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.contact .form__agree input[type=checkbox]:checked + .checkbox__label::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 5px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    top: 9px;
    transform: rotate(315deg);
    left: 3px;
}
.contact .policy__area {
    width: 100%;
    border: 1px solid #000;
    padding: 10px;
}
.contact .policy__area .box {
    height: 270px;
    padding: 35px;
    overflow-y: scroll;
}
@media (max-width: 1000px) {
    .contact .policy__area .box {
        padding: 10px;
    }
}
.contact .policy__area .box::-webkit-scrollbar {
    width: 10px;
}
.contact .policy__area .box::-webkit-scrollbar-track {
    background-color: #E8E8E8;
    border-radius: 10px;
}
.contact .policy__area .box::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 10px;
}
.contact .policy__area .box h2 {
    font-weight: 700;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}
@media (max-width: 1000px) {
    .contact .policy__area .box h2 {
        font-size: 1.8rem;
    }
}
.contact .policy__area .box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
@media (max-width: 1000px) {
    .contact .policy__area .box h3 {
        font-size: 1.6rem;
    }
}
.contact .policy__area .box p {
    margin-bottom: 20px;
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.page-template-front-page .mv {
    position: relative;
}
@media (max-width: 768px) {
    .page-template-front-page .mv {
        height: calc(100vh - var(--header-height));
        max-height: 1000px;
    }
    .page-template-front-page .mv .mv__img {
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }
}
.page-template-front-page .mv .mv__abs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
}
.page-template-front-page .mv .mv__abs .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-template-front-page .mv .mv__abs .inner .mv__txt__bg {
    font-size: 5.5rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 2;
    border-bottom: 2px solid #fff;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 30px;
}
@media (max-width: 1600px) {
    .page-template-front-page .mv .mv__abs .inner .mv__txt__bg {
        font-size: 4.4rem;
        margin-bottom: 20px;
        line-height: 1.8;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .mv .mv__abs .inner .mv__txt__bg {
        font-size: 4rem;
        margin-bottom: 15px;
        line-height: 1.7;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .mv .mv__abs .inner .mv__txt__bg {
        font-size: 3.2rem;
        margin-bottom: 10px;
        line-height: 1.6;
        border-bottom-width: 1px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .mv__abs .inner .mv__txt__bg {
        font-size: 2.4rem;
    }
}
.page-template-front-page .mv .mv__abs .inner .mv__txt__sm {
    font-size: 2.5rem;
    letter-spacing: 0.09em;
    line-height: 2.4;
}
@media (max-width: 1600px) {
    .page-template-front-page .mv .mv__abs .inner .mv__txt__sm {
        font-size: 2rem;
        line-height: 2;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .mv .mv__abs .inner .mv__txt__sm {
        font-size: 1.8rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .mv .mv__abs .inner .mv__txt__sm {
        line-height: 1.8;
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .mv__abs .inner .mv__txt__sm {
        font-size: 1.5rem;
    }
}
.page-template-front-page .mv .mv__abs .scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.8rem;
    font-family: var(--font-en);
    font-weight: 400;
    letter-spacing: 0.08em;
}
@media (max-width: 1600px) {
    .page-template-front-page .mv .mv__abs .scroll {
        font-size: 1.6rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .mv .mv__abs .scroll {
        font-size: 1.4rem;
    }
}
.page-template-front-page .mv .mv__abs .scroll .border__back {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 82px;
    background: color-mix(in srgb, #fff 40%, transparent);
}
@media (max-width: 1600px) {
    .page-template-front-page .mv .mv__abs .scroll .border__back {
        height: 60px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .mv .mv__abs .scroll .border__back {
        height: 30px;
    }
}
.page-template-front-page .mv .mv__abs .scroll .border__front {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -20px);
    width: 2px;
    height: 27px;
    background: #fff;
}
@media (max-width: 1600px) {
    .page-template-front-page .mv .mv__abs .scroll .border__front {
        transform: translate(-50%, -15px);
        height: 18px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .mv .mv__abs .scroll .border__front {
        transform: translate(-50%, -5px);
        height: 10px;
    }
}
.page-template-front-page .top__about {
    max-width: 1920px;
    margin: 0 auto;
}
.page-template-front-page .top__about .top__about__container {
    display: flex;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__about .top__about__container {
        flex-direction: column;
        row-gap: 40px;
    }
}
.page-template-front-page .top__about .top__about__container .img {
    width: 50%;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__about .top__about__container .img {
        width: 100%;
    }
}
.page-template-front-page .top__about .top__about__container .img img {
    border-radius: 10px;
}
@media (max-width: 1920px) {
    .page-template-front-page .top__about .top__about__container .img img {
        border-radius: 0 10px 10px 0;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__about .top__about__container .img img {
        border-radius: 0;
    }
}
.page-template-front-page .top__about .top__about__container .top__about__right {
    width: 50%;
    padding-left: 9%;
    padding-right: var(--inner-outer-width);
}
@media (max-width: 1600px) {
    .page-template-front-page .top__about .top__about__container .top__about__right {
        padding-left: 5%;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__about .top__about__container .top__about__right {
        width: 100%;
        padding: 0 var(--inner-outer-width);
    }
}
.page-template-front-page .top__about .top__about__container .top__about__right h3 {
    font-size: 3rem;
    letter-spacing: 0.09em;
    line-height: 1.83;
    margin-bottom: 50px;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__about .top__about__container .top__about__right h3 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__about .top__about__container .top__about__right h3 {
        font-size: 2rem;
    }
}
.page-template-front-page .top__about .top__about__container .top__about__right p {
    letter-spacing: 0.03em;
    line-height: 2.19;
    margin-bottom: 30px;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__about .top__about__container .top__about__right p {
        margin-bottom: 20px;
    }
}
.page-template-front-page .top__about .top__about__container .top__about__right .btn {
    width: 440px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    border: 1.5px solid #000;
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.07em;
    transition: color 0.2s ease-in, background 0.2s ease-in;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__about .top__about__container .top__about__right .btn {
        font-size: 1.6rem;
        width: 320px;
        padding: 0 20px;
        height: 60px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__about .top__about__container .top__about__right .btn {
        border-width: 1px;
        font-size: 1.5rem;
        width: 220px;
        padding: 0 15px;
        height: 50px;
    }
}
.page-template-front-page .top__about .top__about__container .top__about__right .btn::after {
    content: "";
    display: block;
    width: 14px;
    aspect-ratio: 1;
    background: #000;
    -webkit-mask: url(../img/common/arrow_bk.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_bk.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 768px) {
    .page-template-front-page .top__about .top__about__container .top__about__right .btn::after {
        width: 10px;
    }
}
.page-template-front-page .top__about .top__about__container .top__about__right .btn:hover {
    opacity: unset;
    background: #000;
    color: #fff;
}
.page-template-front-page .top__about .top__about__container .top__about__right .btn:hover::after {
    background: #fff;
}
.page-template-front-page .top__service .top__service__1 {
    position: relative;
}
.page-template-front-page .top__service .top__service__1::before {
    content: "";
    position: absolute;
    right: 0;
    width: 75%;
    top: 70px;
    bottom: 0;
    background: #ECF2F8;
    z-index: -1;
}
.page-template-front-page .top__service .top__service__1.rev::before {
    right: unset;
    left: 0;
}
.page-template-front-page .top__service .top__service__1.rev .inner {
    flex-direction: row-reverse;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__service .top__service__1.rev .inner {
        flex-direction: column;
    }
}
.page-template-front-page .top__service .top__service__1.rev .inner .txt {
    padding: 0 0 0 9%;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__service .top__service__1.rev .inner .txt {
        padding: 0 0 0 5%;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__service .top__service__1.rev .inner .txt {
        padding: unset;
    }
}
.page-template-front-page .top__service .top__service__1 .inner {
    display: flex;
    padding-bottom: 50px;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__service .top__service__1 .inner {
        padding-bottom: 30px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__service .top__service__1 .inner {
        flex-direction: column;
        row-gap: 40px;
        padding-bottom: unset;
    }
    .page-template-front-page .top__service .top__service__1 .inner.gap0 {
        row-gap: 0;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__service .top__service__1 .inner {
        row-gap: 20px;
    }
}
.page-template-front-page .top__service .top__service__1 .inner .txt, .page-template-front-page .top__service .top__service__1 .inner .img {
    width: 50%;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__service .top__service__1 .inner .txt, .page-template-front-page .top__service .top__service__1 .inner .img {
        width: 100%;
    }
}
.page-template-front-page .top__service .top__service__1 .inner .txt {
    padding: 0 9% 0 0;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__service .top__service__1 .inner .txt {
        padding: 0 5% 0 0;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__service .top__service__1 .inner .txt {
        padding: unset;
    }
}
.page-template-front-page .top__service .top__service__1 .inner .txt .wrapper {
    padding-left: 15%;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__service .top__service__1 .inner .txt .wrapper {
        padding-left: 13%;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__service .top__service__1 .inner .txt .wrapper {
        padding-left: unset;
    }
}
.page-template-front-page .top__service .top__service__1 .inner .img.pt {
    padding-top: 70px;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__service .top__service__1 .inner .img.pt {
        padding-top: unset;
    }
}
.page-template-front-page .top__service .top__service__1 .inner .img img {
    border-radius: 10px;
}
@media (max-width: 768px) {
    .page-template-front-page .top__service .top__service__1 .inner .img img {
        border-radius: 5px;
    }
}
.page-template-front-page .top__service .top__service__1 .inner h3 {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 28px;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__service .top__service__1 .inner h3 {
        font-size: 2.4rem;
        gap: 15px;
        margin-bottom: 30px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__service .top__service__1 .inner h3 {
        font-size: 2rem;
    }
}
.page-template-front-page .top__service .top__service__1 .inner h3 .num {
    font-family: var(--font-en);
    font-weight: 400;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75px;
    aspect-ratio: 75/65;
    background: url(../img/top/popup_bg.svg) center/contain no-repeat;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__service .top__service__1 .inner h3 .num {
        width: 60px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__service .top__service__1 .inner h3 .num {
        width: 45px;
    }
}
.page-template-front-page .top__service .top__service__1 .inner h4 {
    margin-top: 40px;
    font-size: 1.8rem;
    font-weight: 700;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    max-width: 540px;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__service .top__service__1 .inner h4 {
        margin-top: 30px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__service .top__service__1 .inner h4 {
        font-size: 1.7rem;
    }
}
.page-template-front-page .top__service .top__service__1 .inner ul {
    margin-top: 15px;
    list-style-type: disc;
    list-style-position: inside;
    max-width: 540px;
}
.page-template-front-page .top__service .top__service__1 .inner p {
    margin-top: 15px;
    max-width: 540px;
}
.page-template-front-page .top__flow {
    background: url(../img/top/flow_bg.webp) center/cover no-repeat;
}
.page-template-front-page .top__flow .top__flow__container {
    display: flex;
    gap: 70px;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__flow .top__flow__container {
        gap: 30px;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .top__flow .top__flow__container {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 50px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__container {
        gap: 40px 15px;
    }
}
.page-template-front-page .top__flow .top__flow__container .box {
    width: calc((100% - 280px) / 5);
    border: 1px solid #2F2D2C;
    border-radius: 10px;
    position: relative;
    padding: 80px 20px 25px;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__flow .top__flow__container .box {
        width: calc((100% - 120px) / 5);
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .top__flow .top__flow__container .box {
        padding: 50px 15px 20px;
        width: 250px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__container .box {
        width: 220px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__flow .top__flow__container .box {
        max-width: calc((100% - 15px) / 2);
    }
}
.page-template-front-page .top__flow .top__flow__container .box .num {
    position: absolute;
    width: 68px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #2F2D2C;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 400;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__container .box .num {
        width: 45px;
        font-size: 1.5rem;
    }
}
.page-template-front-page .top__flow .top__flow__container .box img {
    margin: 0 auto;
}
.page-template-front-page .top__flow .top__flow__container .box img.w100 {
    max-width: 100px;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__container .box img.w100 {
        width: 75px;
    }
}
.page-template-front-page .top__flow .top__flow__container .box img.w68 {
    max-width: 68px;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__container .box img.w68 {
        width: 51px;
    }
}
.page-template-front-page .top__flow .top__flow__container .box img.w61 {
    max-width: 61px;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__container .box img.w61 {
        width: 46px;
    }
}
.page-template-front-page .top__flow .top__flow__container .box img.w74 {
    max-width: 74px;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__container .box img.w74 {
        width: 56px;
    }
}
.page-template-front-page .top__flow .top__flow__container .box img.w77 {
    max-width: 77px;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__container .box img.w77 {
        width: 58px;
    }
}
.page-template-front-page .top__flow .top__flow__container .box .ttl {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 25px;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__container .box .ttl {
        font-size: 1.8rem;
    }
}
.page-template-front-page .top__flow .top__flow__container .box .txt {
    margin-top: 20px;
    font-weight: 400;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__container .box .txt {
        margin-top: 10px;
    }
}
.page-template-front-page .top__flow .top__flow__btn__container {
    display: flex;
    justify-content: center;
    gap: 60px;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__flow .top__flow__btn__container {
        gap: 40px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__btn__container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
.page-template-front-page .top__flow .top__flow__btn__container a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    border: 1.5px solid #000000;
    width: 440px;
    height: 70px;
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.07em;
    transition: color 0.2s ease-in, background 0.2s ease-in;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__flow .top__flow__btn__container a {
        width: 360px;
        height: 60px;
        font-size: 1.6rem;
        padding: 0 20px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__btn__container a {
        width: 280px;
        height: 50px;
        font-size: 1.5rem;
        padding: 0 15px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__flow .top__flow__btn__container a {
        border-width: 1px;
    }
}
.page-template-front-page .top__flow .top__flow__btn__container a::after {
    content: "";
    display: block;
    width: 14px;
    aspect-ratio: 1;
    background: #000;
    -webkit-mask: url(../img/common/arrow_bk.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_bk.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__btn__container a::after {
        width: 10px;
    }
}
.page-template-front-page .top__flow .top__flow__btn__container a span {
    transition: inherit;
}
.page-template-front-page .top__flow .top__flow__btn__container a .tel {
    display: inline-block;
    width: 11px;
    aspect-ratio: 11/17;
    background: #000;
    -webkit-mask: url(../img/top/tel.svg) center/contain no-repeat;
            mask: url(../img/top/tel.svg) center/contain no-repeat;
    margin-right: 10px;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__btn__container a .tel {
        width: 9px;
        margin-right: 8px;
    }
}
.page-template-front-page .top__flow .top__flow__btn__container a .mail {
    display: inline-block;
    width: 19px;
    aspect-ratio: 19/15;
    background: #000;
    -webkit-mask: url(../img/top/mail.svg) center/contain no-repeat;
            mask: url(../img/top/mail.svg) center/contain no-repeat;
    margin-right: 10px;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__flow .top__flow__btn__container a .mail {
        width: 15px;
        margin-right: 8px;
    }
}
.page-template-front-page .top__flow .top__flow__btn__container a:hover {
    opacity: unset;
    color: #fff;
    background: #2F2D2C;
}
.page-template-front-page .top__flow .top__flow__btn__container a:hover::after {
    background: #fff;
}
.page-template-front-page .top__flow .top__flow__btn__container a:hover .tel, .page-template-front-page .top__flow .top__flow__btn__container a:hover .mail {
    background: #fff;
}
.page-template-front-page .top__price .top__price__container {
    display: flex;
    gap: 65px;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__price .top__price__container {
        gap: 40px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__price .top__price__container {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__price .top__price__container {
        flex-direction: column;
        row-gap: 40px;
    }
}
.page-template-front-page .top__price .top__price__container .box {
    width: calc((100% - 130px) / 3);
    border-radius: 10px;
    background: #ECF2F8;
    position: relative;
    font-size: 5rem;
    font-weight: 400;
    text-align: center;
    padding: 70px 0 20px;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__price .top__price__container .box {
        width: calc((100% - 80px) / 3);
        font-size: 4rem;
        padding: 50px 0 15px;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .top__price .top__price__container .box {
        font-size: 3rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__price .top__price__container .box {
        font-size: 2.4rem;
        width: calc((100% - 40px) / 3);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__price .top__price__container .box {
        padding: 40px 0 10px;
        font-size: 2rem;
        width: 100%;
    }
}
.page-template-front-page .top__price .top__price__container .box .bg {
    font-size: 8rem;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__price .top__price__container .box .bg {
        font-size: 6rem;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .top__price .top__price__container .box .bg {
        font-size: 4rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__price .top__price__container .box .bg {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__price .top__price__container .box .bg {
        font-size: 2.4rem;
    }
}
.page-template-front-page .top__price .top__price__container .box .bk {
    position: absolute;
    height: 110px;
    border-radius: 10px;
    top: -55px;
    left: 25px;
    right: 25px;
    background: #2F2D2C;
    color: #fff;
    font-size: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__price .top__price__container .box .bk {
        font-size: 2rem;
        height: 90px;
        left: 15px;
        right: 15px;
        top: -45px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__price .top__price__container .box .bk {
        font-size: 1.8rem;
        height: 70px;
        top: -35px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__price .top__price__container .box .bk {
        font-size: 1.6rem;
        height: 50px;
        top: -20px;
    }
}
.page-template-front-page .top__price .top__price__container .box .bk::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 35px;
    aspect-ratio: 35/30;
    background: url(../img/top/popup.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__price .top__price__container .box .bk::before {
        width: 28px;
    }
}
.page-template-front-page .top__price .price__txt {
    font-size: 2.2rem;
    text-align: center;
}
@media (max-width: 1600px) {
    .page-template-front-page .top__price .price__txt {
        font-size: 2rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__price .price__txt {
        font-size: 1.8rem;
    }
}
.page-template-front-page .top__intagram {
    display: none;
}
.page-template-front-page .intagram__link {
    font-family: var(--font-en);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 440px;
    height: 70px;
    border: 1.5px solid #000;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.07em;
    padding: 0 30px;
    transition: color 0.2s ease-in, background 0.2s ease-in;
}
@media (max-width: 1280px) {
    .page-template-front-page .intagram__link {
        font-size: 1.6rem;
        width: 320px;
        padding: 0 20px;
        height: 60px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .intagram__link {
        border-width: 1px;
        font-size: 1.5rem;
        width: 220px;
        padding: 0 15px;
        height: 50px;
    }
}
.page-template-front-page .intagram__link::after {
    content: "";
    display: block;
    width: 14px;
    aspect-ratio: 1;
    background: #000;
    -webkit-mask: url(../img/common/link.svg) center/contain no-repeat;
            mask: url(../img/common/link.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 768px) {
    .page-template-front-page .intagram__link::after {
        width: 10px;
    }
}
.page-template-front-page .intagram__link span {
    transition: inherit;
    display: flex;
    align-items: center;
}
.page-template-front-page .intagram__link .logo {
    display: inline-block;
    width: 17px;
    aspect-ratio: 1;
    background: #000;
    -webkit-mask: url(../img/common/ig_bk.svg) center/contain no-repeat;
            mask: url(../img/common/ig_bk.svg) center/contain no-repeat;
    margin-right: 10px;
}
@media (max-width: 768px) {
    .page-template-front-page .intagram__link .logo {
        width: 12px;
        margin-right: 8px;
    }
}
.page-template-front-page .intagram__link:hover {
    opacity: unset;
    background: #000;
    color: #fff;
}
.page-template-front-page .intagram__link:hover::after {
    background: #fff;
}
.page-template-front-page .intagram__link:hover .logo {
    background: #fff;
}

/* ------------------------------------- /
/  会社案内ページ
/* ------------------------------------- */
.page-template-page-about .lower__message {
    position: relative;
}
.page-template-page-about .lower__message::before {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 0;
    right: 0;
    background: #ECF2F8;
    z-index: -1;
    clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
}
.page-template-page-about .lower__message h3 {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-align: center;
    margin-bottom: 60px;
}
@media (max-width: 1280px) {
    .page-template-page-about .lower__message h3 {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-page-about .lower__message h3 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}
.page-template-page-about .lower__message .txt {
    text-align: center;
    letter-spacing: 0.03em;
    margin-top: 30px;
    line-height: 2.19;
}
@media (max-width: 1280px) {
    .page-template-page-about .lower__message .txt {
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-about .lower__message .txt {
        text-align: left;
    }
}
.page-template-page-about .lower__profile .bg {
    background: #ECF2F8;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .page-template-page-about .lower__profile .bg {
        padding: 0 15px;
    }
}
.page-template-page-about .lower__profile table {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.page-template-page-about .lower__profile table tr {
    border-bottom: 1px solid #707070;
}
.page-template-page-about .lower__profile table tr th, .page-template-page-about .lower__profile table tr td {
    padding: 45px 0 25px;
    font-weight: 500;
    font-size: 1.8rem;
    width: 50%;
}
@media (max-width: 1280px) {
    .page-template-page-about .lower__profile table tr th, .page-template-page-about .lower__profile table tr td {
        padding: 25px 0 15px;
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-about .lower__profile table tr th, .page-template-page-about .lower__profile table tr td {
        padding: 15px 0 10px;
    }
}
@media (max-width: 768px) {
    .page-template-page-about .lower__profile table tr th {
        width: 90px;
    }
}
.page-template-page-about .lower__profile table tr td {
    width: unset;
}
.page-template-page-about .lower__access iframe {
    width: 100%;
    aspect-ratio: 1480/650;
}
.page-template-page-about .lower__access__link {
    font-family: var(--font-en);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 440px;
    height: 70px;
    border: 1.5px solid #000;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.07em;
    padding: 0 30px;
    transition: color 0.2s ease-in, background 0.2s ease-in;
}
@media (max-width: 1280px) {
    .page-template-page-about .lower__access__link {
        font-size: 1.6rem;
        width: 320px;
        padding: 0 20px;
        height: 60px;
    }
}
@media (max-width: 768px) {
    .page-template-page-about .lower__access__link {
        border-width: 1px;
        font-size: 1.5rem;
        width: 220px;
        padding: 0 15px;
        height: 50px;
    }
}
.page-template-page-about .lower__access__link::after {
    content: "";
    display: block;
    width: 14px;
    aspect-ratio: 1;
    background: #000;
    -webkit-mask: url(../img/common/link.svg) center/contain no-repeat;
            mask: url(../img/common/link.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 768px) {
    .page-template-page-about .lower__access__link::after {
        width: 10px;
    }
}
.page-template-page-about .lower__access__link span {
    transition: inherit;
    display: flex;
    align-items: center;
}
.page-template-page-about .lower__access__link:hover {
    opacity: unset;
    background: #000;
    color: #fff;
}
.page-template-page-about .lower__access__link:hover::after {
    background: #fff;
}/*# sourceMappingURL=style.css.map */