/*#region var*/
:root {
    --pxunit: 1.1rem;
    --fontB: 'Noto Sans JP';
    /* Base font */
    --fontTNM: 'Times New Roman';
    --fontY: 'Yu Mincho';
    --fontZ: 'Zen Old Mincho';
    --fontI: 'Inter';
    --fontLC: 'Libre Caslon Text';
    --headerH: 10rem;
    --fixedFooterH: 8.8rem;
    --bg-black-color: #000000;
    --bg-white-color: #FFFFFF;
    --bg-pink-color: #D3728E;
    --bg-blue-color: #265081;
    --bg-gold-color: #8C7E50;
    --bg-darkblue-color: #102A38;
    --font-size14: 1.4rem;
    --font-size16: 1.6rem;
    --font-size18: 1.8rem;
    --font-size20: 2rem;
    --font-size22: 2.2rem;
    --font-size24: 2.4rem;
    --font-size26: 2.6rem;
    --font-size28: 2.8rem;
    --font-size30: 3rem;
    --font-size32: 3.2rem;
    --font-size34: 3.4rem;
    --font-size36: 3.6rem;
    --font-size38: 3.8rem;
    --font-size40: 4rem;
    --gap-unit: 1rem;
    --margin-md: 17rem;
    --margin: 23rem;
    --border-radius: 1rem;
}

* {
    box-sizing: border-box;

}

html {
    font-size: .625vw;
}

@media (max-width: 768px) {
    html {
        font-size: 2.5vw;
    }
}

body {
    margin: 0;
    padding: 0;
    font-size: var(--font-size16);
    font-family: var(--fontB);
    font-weight: 400;
    color: var(--bg-font-color);
    line-height: 1.6;
}

.hx1 {
    content: "";
    height: var(--pxunit);
}

.hx2 {
    content: "";
    height: calc(var(--pxunit)*2);
}

.hx3 {
    content: "";
    height: calc(var(--pxunit)*3);
}

.hx4 {
    content: "";
    height: calc(var(--pxunit)*4);
}

.hx5 {
    content: "";
    height: calc(var(--pxunit)*5);
}

.hx6 {
    content: "";
    height: calc(var(--pxunit)*6);
}

.hx7 {
    content: "";
    height: calc(var(--pxunit)*7);
}

.hx8 {
    content: "";
    height: calc(var(--pxunit)*8);
}

.hx9 {
    content: "";
    height: calc(var(--pxunit)*9);
}

.hx10 {
    content: "";
    height: calc(var(--pxunit)*10);
}

.hx11 {
    content: "";
    height: calc(var(--pxunit)*11);
}

.hx12 {
    content: "";
    height: calc(var(--pxunit)*12);
}

.hx13 {
    content: "";
    height: calc(var(--pxunit)*13);
}

.hx14 {
    content: "";
    height: calc(var(--pxunit)*14);
}

.hx15 {
    content: "";
    height: calc(var(--pxunit)*15);
}

.hx16 {
    content: "";
    height: calc(var(--pxunit)*16);
}

.hx17 {
    content: "";
    height: calc(var(--pxunit)*17);
}

.hx18 {
    content: "";
    height: calc(var(--pxunit)*18);
}

.hx19 {
    content: "";
    height: calc(var(--pxunit)*19);
}

.hx20 {
    content: "";
    height: calc(var(--pxunit)*20);
}

/*#endregion var*/

/*#region RESET*/
html,
body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    font-weight: normal;
}

p {
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

input {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

input:hover,
input:focus,
input:active {
    outline: none;
}

input::-webkit-input-placeholder {
    color: #333333;
}

input::-moz-placeholder {
    color: #333333;
}

input:-ms-input-placeholder {
    color: #333333;
}

input:-moz-placeholder {
    color: #333333;
}

textarea::-webkit-input-placeholder {
    color: #333333;
}

textarea::-moz-placeholder {
    color: #333333;
}

textarea:-ms-input-placeholder {
    color: #333333;
}

textarea:-moz-placeholder {
    color: #333333;
}

button:focus {
    outline: 0;
}

ul {
    margin: 0px;
    padding: 0px;
}

strong {
    font-weight: bold;
}

ul li {
    list-style-type: none;
}

picture {
    display: flex;
    width: 100%;
}

img {
    border: 0px;
    pointer-events: auto;
    user-drag: none;
    -webkit-user-drag: none;
}

.clearfix {
    clear: both;
    overflow: hidden;
}

/*#endregion RESET*/

/*#region pspander*/
.pspander_header {
    cursor: pointer;
}

.pspander_opened {
    display: block;
}

.pspander_closed {
    display: none;
}

.pspander.pst_show .pspander_opened {
    display: none;
}

.pspander.pst_show .pspander_closed {
    display: block;
}

.pspander_collapse {
    display: none;
}

/*#endregion pspander*/
/*#region ANIMATION*/
/*#region opacity animation*/
.js_opac {
    opacity: 0;
    transition: all .6s;
    transition-delay: .3s;
}

.js_opac.on {
    opacity: 1;
}

/*#endregion opacity animation*/
/*#region spin animation*/
/* spin1 */
@keyframes spin1 {
    0% {
        transform: rotate(0deg)translate3d(7px, 0, 0);
    }

    100% {
        transform: rotate(360deg)translate3d(7px, 0, 0);
    }
}

/* spin2 */
@keyframes spin2 {
    0% {
        transform: rotate(0deg)translate3d(5px, 0, 0);
    }

    100% {
        transform: rotate(360deg)translate3d(5px, 0, 0);
    }
}

/* spin3 */
@keyframes spin3 {
    0% {
        transform: rotate(0deg)translate3d(6px, 0, 0);
    }

    100% {
        transform: rotate(360deg)translate3d(6px, 0, 0);
    }
}

/* spin4 */
@keyframes spin4 {
    0% {
        transform: rotate(0deg)translate3d(3px, 0, 0);
    }

    100% {
        transform: rotate(-360deg)translate3d(3px, 0, 0);
    }
}

/* spin5 */
@keyframes spin5 {
    0% {
        transform: rotate(0deg)translate3d(2px, 0, 0);
    }

    100% {
        transform: rotate(-360deg)translate3d(2px, 0, 0);
    }
}

.circleWrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.c_pos01 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin1 5s linear infinite;
    -moz-animation: spin1 5s linear infinite;
    -ms-animation: spin1 5s linear infinite;
    -o-animation: spin1 5s linear infinite;
    animation: spin1 5s linear infinite;
    /*  	animation: bo-co1 10s infinite;
        -webkit-animation: bo-co1 10s infinite; */
}

.c_pos02 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin2 4s linear infinite;
    -moz-animation: spi2 4s linear infinite;
    -ms-animation: spin2 4s linear infinite;
    -o-animation: spin2 4s linear infinite;
    animation: spin2 4s linear infinite;
    /* 	animation: bo-co2 9s infinite;
        -webkit-animation: bo-co2 9s infinite; */
}

.c_pos03 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin3 7s linear infinite;
    -moz-animation: spi3 7s linear infinite;
    -ms-animation: spin3 7s linear infinite;
    -o-animation: spin3 7s linear infinite;
    animation: spin3 7s linear infinite;
    /* 	animation: bo-co3 11s infinite;
        -webkit-animation: bo-co3 11s infinite; */
}

.c_pos04 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin4 7s linear infinite;
    -moz-animation: spi4 7s linear infinite;
    -ms-animation: spin4 7s linear infinite;
    -o-animation: spin4 7s linear infinite;
    animation: spin4 7s linear infinite;
    /* 	animation: bo-co1 12s infinite;
        -webkit-animation: bo-co1 12s infinite; */
}

.c_pos05 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin5 8s linear infinite;
    -moz-animation: spi5 8s linear infinite;
    -ms-animation: spin5 8s linear infinite;
    -o-animation: spin5 8s linear infinite;
    animation: spin5 8s linear infinite;
    /* 	animation: bo-co2 10s infinite;
        -webkit-animation: bo-co2 10s infinite; */
}

/*#endregion spn animation*/
/*#region rotate animation*/
.rot360 {
    transform: rotate(0deg);
    animation: anim_rotate360 10s linear infinite;
}

@keyframes anim_rotate360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*#endregion rotate animation*/
/*#region clip-left-right animation*/
.panir3 {
    display: inline-block;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
    vertical-align: middle;
}

.panir3.on {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

.panil3 {
    display: inline-block;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
    vertical-align: middle;
}

.panil3.on {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

/*#endregion clip-left-right animation*/
/*#region pani text rising animation*/
.pani4 {
    display: flex;
    overflow: hidden;
}

.pani4 span {
    display: block;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: transparent;
}

.pani4.on span {
    color: #222;
    transform: translateY(0);
}

.pani4 span:nth-child(0) {
    transition-delay: 0ms;
}

.pani4 span:nth-child(1) {
    transition-delay: 80ms;
}

.pani4 span:nth-child(2) {
    transition-delay: 160ms;
}

.pani4 span:nth-child(3) {
    transition-delay: 240ms;
}

.pani4 span:nth-child(4) {
    transition-delay: 320ms;
}

.pani4 span:nth-child(5) {
    transition-delay: 400ms;
}

.pani4 span:nth-child(6) {
    transition-delay: 480ms;
}

.pani4 span:nth-child(7) {
    transition-delay: 560ms;
}

.pani4 span:nth-child(8) {
    transition-delay: 640ms;
}

.pani4 span:nth-child(9) {
    transition-delay: 720ms;
}

.pani4 span:nth-child(10) {
    transition-delay: 800ms;
}

.pani4 span:nth-child(11) {
    transition-delay: 880ms;
}

.pani4 span:nth-child(12) {
    transition-delay: 960ms;
}

.pani4 span:nth-child(13) {
    transition-delay: 1040ms;
}

.pani4 span:nth-child(14) {
    transition-delay: 1120ms;
}

.pani4 span:nth-child(15) {
    transition-delay: 1200ms;
}

.pani4 span:nth-child(16) {
    transition-delay: 1280ms;
}

.pani4 span:nth-child(17) {
    transition-delay: 1360ms;
}

.pani4 span:nth-child(18) {
    transition-delay: 1440ms;
}

.pani4 span:nth-child(19) {
    transition-delay: 1520ms;
}

.pani4 span:nth-child(19) {
    transition-delay: 1600ms;
}

/*endregion pani text rising animation*/
/*#region evelit animaiton*/
.initani {
    overflow: hidden;
    position: relative;
}

.initani::before,
.initani::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.initani_bw::before {
    background-color: #2b3f6c;
}

.initani_bw::after {
    background-color: #fff;
}

.initani.initani_ww::before {
    background-color: #fff;
}

.initani.initani_ww::after {
    background-color: #fff;
}

.initani.initani_wb::before {
    background-color: #fff;
}

.initani.initani_wb::after {
    background-color: #2b3f6c;
}

.initani.initani_wbk::before {
    background-color: #fff;
}

.initani.initani_wbk::after {
    background-color: #1A1A1A;
}

.initani.initani_bkw::before {
    background-color: #1A1A1A;
}

.initani.initani_bkw::after {
    background-color: #fff;
}

.initani.initani_bg::before {
    background-color: #2b3f6c;
}

.initani.initani_bg::after {
    background-color: #DEE9EC;
}

.initani.initani_bc::before {
    background-color: #2b3f6c;
}

.initani.initani_bc::after {
    background-color: #E9F9FA;
}

.initani.initani_wg::before {
    background-color: #fff;
}

.initani.initani_wg::after {
    background-color: #A9CD36;
}

.initani.initani_wy::before {
    background-color: #fff;
}

.initani.initani_wy::after {
    background-color: #A9CD36;
}

.initani.initani_wc::before {
    background-color: #fff;
}

.initani.initani_wc::after {
    background-color: #E9F9FA;
}

.initani.initani_tw::before {
    background-color: transparent;
}

.initani.initani_tw::after {
    background-color: #fff;
}

.initani.initani_tb::before {
    background-color: transparent;
}

.initani.initani_tb::after {
    background-color: #2b3f6c;
}

.initani::before {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.initani::after {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateX(0);
    -ms-transform: scaleX(0) translateX(0);
    transform: scaleX(0) translateX(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.anistart::before {
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.anistart::after {
    -webkit-transform: scaleX(1) translateX(101%);
    -ms-transform: scaleX(1) translateX(101%);
    transform: scaleX(1) translateX(101%);
}

/*#endregion evelit animaiton*/
/*region coiran animation*/
@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
        -ms-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        transform: scale(1.1);
        -ms-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
        -ms-transformm: scale(1);
    }
}

@-o-keyframes slideShow {
    0% {
        opacity: 0;
        -o-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -o-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -o-transformm: scale(1);
    }
}

@-moz-keyframes slideShow {
    0% {
        opacity: 0;
        -moz-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -moz-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -moz-transformm: scale(1);
    }
}

@-webkit-keyframes slideShow {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -webkit-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transformm: scale(1);
    }
}

/*endregion coiran animation*/
/*#region io animation*/
.pioup {
    -webkit-transition: color 0.4s ease 0s, background-color 0.4s ease 0s, opacity 1.0s ease 0s, -webkit-transform 1.0s ease 0s;
    transition: color 0.4s ease 0s, background-color 0.4s ease 0s, opacity 1.0s ease 0s, transform 1.0s ease 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity, transform;
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

.pioup.on {
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
}

/*#endregion io animation*/
/*#endregion ANIMATION*/

/*#region COMMON*/
.pmh_anchor {
    transform: translateY(-100px);
    content: "";
    width: 100%;
    height: 0;
}

#trouble,
#implant,
#reason,
#treatment,
#price,
#payment,
#warranty,
#case,
#flow,
#faq,
#association {
    scroll-margin-top: var(--headerH);
}

.jp_wbr {
    word-break: keep-all;
}

.disb_sp {
    display: none !important;
}

.disb_pc {
    display: block !important;
}

/*#endregion COMMON*/

/*#region HEADER*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--headerH);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--margin);
    z-index: 999;
    background-color: var(--bg-white-color);
    transition: transform 0.35s ease;
}

body.is-scroll-hidden .header {
    transform: translateY(-100%);
}

.header__title {
    display: flex;
    width: 18rem;
}

.header__logo {
    display: flex;
    width: 100%;
}

.header__logo img {
    width: 100%;
}

.header__contact {
    display: flex;
    gap: calc(var(--gap-unit)*2);
}

.header__contact-phone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--bg-darkblue-color);
}

.header__contact-phone__label {
    font-size: var(--font-size14);
    font-family: var(--fontY);
    font-weight: 600;
}

.header__contact-phone__number {
    display: flex;
    align-items: center;
    gap: calc(var(--gap-unit)*.5);
}

.header__contact-phone__number-icon {
    display: flex;
    width: 2.5rem;
    margin-bottom: calc(var(--gap-unit)*.3);
}

.header__contact-phone__number-icon svg {
    width: 100%;
    animation-name: trin;
    animation-duration: 1.5s;
    animation-play-state: paused;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.header__contact-phone:hover .header__contact-phone__number-icon svg {
    animation-play-state: unset;
}

@keyframes trin {
    from {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    20%,
    32%,
    44%,
    56%,
    68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    23%,
    35%,
    47%,
    59%,
    71% {
        transform: rotate3d(0, 0, 1, 15deg);
    }

    26%,
    38%,
    50%,
    62%,
    74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    29%,
    41%,
    53%,
    65%,
    77% {
        transform: rotate3d(0, 0, 1, -15deg);
    }
    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.header__contact-phone__number-txt {
    font-size: 4rem;
    font-family: var(--fontTNM);
    line-height: 1;
}

.header__contact-web {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--gap-unit));
    font-size: 2rem;
    font-family: var(--fontY);
    font-weight: 900;
    line-height: 1;
    color: var(--bg-white-color);
    padding: calc(var(--gap-unit)*2.2) calc(var(--gap-unit)*1.5);
    padding-right: calc(var(--gap-unit)*2);
    border-radius: calc(var(--border-radius)*1.3);
    background: linear-gradient(181.08deg, #C49F3A -12.36%, #EAD586 14.89%, #FFF3B0 24.88%, #E2C976 41.37%, #C6A13E 80.43%);
    transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.header__contact-web__txt {
    position: relative;
    z-index: 1;
}

.header__contact-web__arrow {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background-color: var(--bg-white-color);
    transition: transform 0.3s ease;
}

.header__contact-web__arrow svg {
    position: absolute;
    left: 56%;
    transform: translateX(-50%);
    width: 1rem;
    transition: transform 0.3s ease;
}

.header__contact-web::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: calc(var(--border-radius)*1.3);
    border: 1px solid var(--bg-white-color);
    transition: border-color 0.3s ease;
}

.header__contact-web::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: #FFFFFFAB;
    filter: blur(29.268863677978516px);
    transition: opacity 0.3s ease;
}

.header__contact-web:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(196, 161, 62, 0.45);
}

.header__contact-web:hover::after {
    opacity: 0.85;
}

.header__contact-web:hover .header__contact-web__arrow {
    transform: translateX(3px);
}

.header__nav {
    display: none;
}

.header__hamburger {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(var(--gap-unit)*1.5);
    width: 10rem;
    height: 10rem;
    background-color: #222222;
    border: none;
    outline: none;
    z-index: 100;
    cursor: pointer;
}

.header__hamburger-line-wrap {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*1);
    position: relative;
}

.header__hamburger-line {
    position: relative;
    display: flex;
    width: 5rem;
    height: 1px;
    background-color: var(--bg-white-color);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.header__hamburger-line::before,
.header__hamburger-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white-color);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: rotate(0deg);
    opacity: 0;
}

.header__nav.is-open .header__hamburger-line:nth-child(2)::before,
.header__nav.is-open .header__hamburger-line:nth-child(2)::after {
    opacity: 1;
}

.header__hamburger-txt {
    font-family: var(--fontTNM);
    color: var(--bg-white-color);
    line-height: .8;
    letter-spacing: .2em;
}

.header__nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 20;
    background-color: var(--bg-white-color);
    padding: 15rem 0 calc(var(--gap-unit)*10);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-blue-color) var(--bg-white-color);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.header__nav-menu::-webkit-scrollbar {
    width: 8px;
}

.header__nav-menu::-webkit-scrollbar-track {
    background: var(--bg-white-color);
}

.header__nav-menu::-webkit-scrollbar-thumb {
    background: var(--bg-blue-color);
    border-radius: 4px;
}

.header__nav-menu::-webkit-scrollbar-thumb:hover {
    background: var(--bg-gold-color);
}

.header__nav-list {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.header__nav-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size20);
    font-family: var(--fontY);
    font-weight: 600;
    color: var(--bg-black-color);
    width: 100%;
    padding: calc(var(--gap-unit)*1.5) calc(var(--gap-unit)*4);
}

.header__nav-menu-link::after {
    content: "";
    display: flex;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: .7rem solid transparent;
    border-left: .7rem solid transparent;
    border-top: 1rem solid var(--bg-blue-color);
    border-bottom: 0;
}

.header__nav-menu-li:nth-child(odd) .header__nav-menu-link {
    background-color: #EAEAEA;
}

.header__nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.header__nav.is-open .header__nav-menu {
    transform: translateX(0);
}

.header__nav.is-open .header__nav-overlay {
    opacity: 1;
    visibility: visible;
}

.header__nav.is-open .header__hamburger-line:nth-child(1),
.header__nav.is-open .header__hamburger-line:nth-child(3) {
    opacity: 0;
}

.header__nav.is-open .header__hamburger-line:nth-child(2) {
    background: none;
}

.header__nav.is-open .header__hamburger-line:nth-child(2)::before {
    transform: rotate(45deg);
}

.header__nav.is-open .header__hamburger-line:nth-child(2)::after {
    transform: rotate(-45deg);
}

.hide-scroll {
    overflow: hidden !important;
}

/*#endregion HEADER*/


/*#region pg specials*/
.display-flex {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.justify-content-between {
    display: flex;
    justify-content: space-between;
}

.justify-content-end {
    display: flex;
    justify-content: flex-end;
}

.justify-content-center {
    display: flex;
    justify-content: center;
}

.justify-content-start {
    display: flex;
    justify-content: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-center {
    align-items: center;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.justify-flex-end {
    display: flex;
    justify-content: flex-end;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.row_reverse {
    flex-direction: row-reverse;
}

/* -----theme block start------- */
.w_50 {
    width: 50%;
}

.w_45 {
    width: 45%;
}

.w_48 {
    width: 48%;
}

.w_60 {
    width: 60%;
}

.w_35 {
    width: 35%;
}

.w_25 {
    width: 25%;
}

.w_100 {
    width: 100%;
}

.w_70 {
    width: 70%;
}

img {
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.blue-color {
    color: var(--bg-blue-color);
    font-weight: 700;
}

.sp_break {
    display: none;
}

.is__TBshow {
    display: none;
}

@media (max-width: 768px) {
    .is__TBshow {
        display: block;
    }
}

.bolder {
    font-weight: 900;
}

@media (max-width: 450px) {
    .sp_hide {
        display: none;
    }

    .sp_break {
        display: block;
    }
}

/* ------block title------- */




/* -----------page content style---------- */
#wpadminbar {
    display: none;
}

.wrapper {
    position: relative;
    padding-top: var(--headerH);
}

.container {
    width: 100%;
    padding: 0 var(--margin);
}

@media (max-width: 768px) {
    .wrapper {
        padding-top: 0;
    }
}





/* ---------section banner---------- */
.banner {
    position: relative;
    overflow: hidden;
}

.banner__inner {
    position: relative;
    display: flex;
    width: 100%;
    height: 72rem;
}

.banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
}

.banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner__img {
    position: absolute;
    bottom: -2rem;
    right: 7rem;
    display: flex;
    width: 86rem;
}

.banner__img img {
    width: 100%;
}

.banner__main {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 2;
    margin-top: 5rem;
    padding: 0 28rem;
}

.banner__catch {
    display: flex;
    width: 50rem;
}

.banner__catch img {
    width: 100%;
}

.banner__title {
    display: flex;
    width: 58rem;
    margin-top: -6rem;
}

.banner__title img {
    width: 100%;
}

.banner__bottom {
    position: absolute;
    bottom: -5rem;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--margin);
    width: 100%;
    z-index: 3;
}

.banner__feature {
    display: flex;
    width: 65rem;
}

.banner__price {
    display: flex;
    width: 42rem;
}

.banner__feature img,
.banner__price img {
    width: 100%;
}

@media (max-width: 1300px) {
    .banner__inner {
        height: 75rem;
    }
}

@media (max-width: 768px) {
    .banner__inner {
        height: auto;
        flex-direction: column;
    }

    .banner__main {
        padding: 0;
        margin-top: 2rem;
        margin-left: 3rem;
    }

    .banner__img {
        right: -12rem;
        width: 40rem;
    }

    .banner__bottom {
        position: static;
        flex-direction: column;
        padding: 0;
        margin-top: -3rem;
    }

    .banner__catch {
        width: 22rem;
    }

    .banner__title {
        width: 22rem;
        margin-top: -2rem;
    }

    .banner__feature {
        width: 27rem;
    }

    .banner__price {
        width: 25rem;
        margin-top: -2rem;
    }
}

@media (max-width: 450px) {
    .banner__inner {
        padding: 0 var(--margin);
    }

    .banner__main {
        padding: 0;
        margin-top: 9rem;
        margin-left: 0;
    }

    .banner__img {
        right: -21rem;
        width: 55rem;
        z-index: 2;
        bottom: 0;
    }

    .banner__bottom {
        padding: 0;
        margin-top: -3rem;
    }

    .banner__catch {
        width: 26rem;
    }

    .banner__title {
        width: 24rem;
        margin-top: -2rem;
    }

    .banner__feature {
        width: 36rem;
    }

    .banner__price {
        width: 33rem;
        margin-top: -3rem;
    }
}





/* ---------section cta---------- */
.cta {
    position: relative;
    background: linear-gradient(102.93deg, #B7DFEA 18.26%, #6CC6EC 59.34%);
}

.cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap-unit)*3);
}

.cta__title {
    font-size: var(--font-size36);
    font-family: var(--fontY);
    font-weight: 600;
    color: var(--bg-white-color);
    line-height: 1.5;
    text-shadow: 2.05px 2.05px 1.03px #00000024;
    text-align: center;
}

.cta__content {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*2);
}

.cta__link-web {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--gap-unit)*2);
    font-size: 4.5rem;
    font-family: var(--fontY);
    font-weight: 600;
    color: var(--bg-white-color);
    line-height: 1.3;
    letter-spacing: -.05em;
    padding: calc(var(--gap-unit)*3.5) calc(var(--gap-unit)*3.5);
    background: linear-gradient(179.16deg, #C49F3A -11.08%, #EAD586 16.98%, #FFF3B0 23.72%, #E2C976 44.35%, #C6A13E 68.59%);
    border-radius: calc(var(--border-radius)*2);
    transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta__link-web__txt {
    position: relative;
    z-index: 1;
}

.cta__link-web::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: calc(var(--border-radius)*2);
    border: 2px solid var(--bg-white-color);
    transition: border-color 0.3s ease;
}

.cta__link-web::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-color: #FFFFFFAB;
    filter: blur(72.16410827636719px);
    -webkit-filter: blur(72.16410827636719px);
    transition: opacity 0.3s ease;
}

.cta__link-web__arrow {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background-color: var(--bg-white-color);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cta__link-web__arrow svg {
    position: absolute;
    left: 55%;
    transform: translateX(-50%);
    width: 1.7rem;
}

.cta__link-web:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 161, 62, 0.45);
}

.cta__link-web:hover::after {
    opacity: 0.85;
}

.cta__link-web:hover .cta__link-web__arrow {
    transform: translateX(4px);
}

.cta__btn-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--gap-unit)*2.5);
}

.cta__btn-label {
    font-size: var(--font-size22);
    font-family: var(--fontY);
    font-weight: 600;
    color: var(--bg-white-color);
    line-height: 1.4;
}

.cta__btn-label span {
    font-size: var(--font-size30);
}

.cta__link-phone {
    display: flex;
    align-items: center;
    gap: calc(var(--gap-unit)*.5);
    font-size: 6rem;
    font-family: var(--fontTNM);
    color: var(--bg-white-color);
    line-height: 1;
}

.cta__link-phone__icon {
    display: flex;
    width: 4.5rem;
    animation: trin 2s infinite;
    animation-play-state: paused;
}

.cta__link-phone:hover .cta__link-phone__icon {
    animation-play-state: unset;
}


.cta__link-phone__icon img {
    width: 100%;
}

@media (max-width: 768px) {
    .cta__inner {
        padding: calc(var(--gap-unit)*5) 0;
        gap: calc(var(--gap-unit)*3);
    }

    .cta__content {
        gap: calc(var(--gap-unit)*3);
    }

    .cta__link-web {
        font-size: 1.8rem;
    }

    .cta__link-web__arrow {
        width: 3rem;
        height: 3rem;
    }

    .cta__link-web__arrow svg {
        width: 1rem;
    }

    .cta__link-phone {
        font-size: 2.5rem;
    }

    .cta__link-phone__icon {
        width: 2rem;
    }

    .cta__btn-label {
        font-size: var(--font-size20);
    }

    .cta__btn-label span {
        font-size: var(--font-size28);
    }

    .cta__title {
        font-size: var(--font-size32);
    }
}

@media (max-width: 450px) {
    .cta__inner {
        padding: calc(var(--gap-unit)*6) 0;
        gap: calc(var(--gap-unit)*3);
    }

    .cta__link-web {
        font-size: 2.2rem;
        padding: calc(var(--gap-unit)*3.5) calc(var(--gap-unit)*2);
    }

    .cta__link-web__arrow {
        width: 4rem;
        height: 4rem;
    }

    .cta__link-web__arrow svg {
        width: 1.2rem;
    }

    .cta__link-phone {
        font-size: 3.2rem;
    }

    .cta__link-phone__icon {
        width: 2.5rem;
    }

    .cta__btn-label {
        font-size: 1rem;
    }

    .cta__btn-label span {
        font-size: var(--font-size14);
    }

    .cta__title {
        font-size: var(--font-size20);
    }
}






/* -----------section treatment---------- */
.treatment {
    position: relative;
    background-image: url(../img/treatment_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.treatment__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 12rem;
    padding-left: 40%;
}

.treatment__heading {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*3.5);
}

.treatment__title {
    font-size: 5rem;
    font-family: var(--fontZ);
    color: #115061;
    line-height: 1.3;
    padding: calc(var(--gap-unit)*2) calc(var(--gap-unit)*3);
    background: linear-gradient(273.7deg, #6CC6EC 13.01%, #B7DFEA 102.91%);
}

.treatment__lead {
    font-size: var(--font-size32);
    font-family: var(--fontZ);
    font-weight: 400;
    color: #115061;
    line-height: 1.4;
    padding-left: calc(var(--gap-unit)*3);
}

.treatment__lead span {
    font-size: var(--font-size36);
    font-weight: bold;
}

.treatment__award {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: calc(var(--gap-unit)*2);
    width: 90%;
    margin-top: calc(var(--gap-unit)*1);
    margin-left: auto;
    margin-bottom: calc(var(--gap-unit)*2);
}

.treatment__award-item {
    display: flex;
    width: 22rem;
}

.treatment__award-item img {
    width: 100%;
}

.treatment__doctor {
    position: absolute;
    top: 16.5rem;
    left: 12rem;
    display: flex;
    align-items: flex-end;
}

.treatment__doctor-img {
    display: flex;
    width: 56rem;
}

.treatment__doctor-img img {
    width: 100%;
}

.treatment__doctor-name {
    font-size: var(--font-size20);
    font-family: var(--fontZ);
    font-weight: 500;
    color: #115061;
    line-height: 1.4;
    margin-left: calc(var(--gap-unit)*4);
    margin-bottom: calc(var(--gap-unit)*4);
}

.treatment__doctor-name span {
    font-size: var(--font-size28);
}

.treatment__content {
    position: relative;
    padding-right: 32rem;
    padding-bottom: 4rem;
    z-index: 2;
}

.treatment__txt {
    display: flex;
    font-size: var(--font-size20);
    font-family: var(--fontZ);
    padding: 5rem 0 5rem var(--margin);
    background-color: var(--bg-white-color);
    box-shadow: 5.89px 5.89px 11.77px 0px #00000040;
    color: #115061;
}

@media (max-width: 768px) {
    .treatment__inner {
        padding-left: 20%;
        padding-top: 4rem;
    }

    .treatment__title {
        font-size: var(--font-size28);
        padding: calc(var(--gap-unit)*1.5) calc(var(--gap-unit)*4);
    }

    .treatment__award {
        gap: calc(var(--gap-unit)*4);
        margin-left: auto;
        padding-right: var(--margin);
        margin-bottom: 9.5rem;
    }

    .treatment__award-item {
        width: 9rem;
        margin: 0;
    }

    .treatment__doctor {
        top: 17rem;
    }

    .treatment__lead {
        font-size: var(--font-size24);
    }

    .treatment__lead span {
        font-size: var(--font-size28);
    }

    .treatment__content {
        padding-right: var(--margin);
        padding-bottom: 2.5rem;
    }

    .treatment__doctor {
        left: 0;
    }

    .treatment__doctor-img {
        width: 18rem;
    }

    .treatment__doctor-name {
        font-size: var(--font-size18);
    }

    .treatment__doctor-name span {
        font-size: var(--font-size24);
    }

    .treatment__txt {
        font-size: var(--font-size16);
        padding: 2.5rem 1.5rem 2.5rem var(--margin);
    }
}

@media (max-width: 450px) {
    .treatment__inner {
        padding: 0 0;
        padding-top: 7rem;
    }

    .treatment__heading {
        gap: calc(var(--gap-unit)*2);
    }

    .treatment__title {
        font-size: var(--font-size20);
    }

    .treatment__award {
        width: 100%;
        margin: 0;
        padding: 0;
        margin-top: 2rem;
        margin-bottom: 0;
        gap: calc(var(--gap-unit)*1.5);
    }

    .treatment__award-item {
        width: 35%;
        margin: 0;
    }

    .treatment__doctor {
        position: relative;
        top: unset;
        left: unset;
    }

    .treatment__lead {
        font-size: var(--font-size22);
        text-align: center;
        padding-left: 0;
    }

    .treatment__content {
        padding-right: var(--margin);
        padding-bottom: 5rem;
    }

    .treatment__doctor-img {
        width: 32rem;
    }

    .treatment__doctor-name {
        position: absolute;
        right: var(--margin);
        left: unset;
        top: 25%;
        margin-bottom: 0;
        margin-left: 0;
    }

    .treatment__doctor-name {
        font-size: var(--font-size16);
    }

    .treatment__doctor-name span {
        font-size: var(--font-size20);
    }

    .treatment__txt {
        font-size: var(--font-size16);
        padding: 2.5rem calc(var(--gap-unit)*2);
    }
}

.treatment__bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*5);
    padding-bottom: 8rem; 
}

.treatment__bar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: calc(var(--gap-unit)*1.5) 0;
}

.treatment__bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 10%;
    height: 100%;
    background: linear-gradient(273.7deg, #6CC6EC 13.01%, #B7DFEA 102.91%);
}

.treatment__bar-txt {
    position: relative;
    font-size: var(--font-size30);
    font-family: var(--fontZ);
    font-weight: 500;
    color: #115061;
    line-height: 1.6;
    z-index: 1;
}

.treatment__points {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*2.5);
    width: 100%;
    padding: 0 calc(var(--margin)*1.2);
}

.treatment__point {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*2);
    padding: calc(var(--gap-unit)*3) calc(var(--gap-unit)*4);
    border-radius: calc(var(--border-radius)*.7);
    border: 2px solid #FEFDFD;
    background-color: #EFF4F7;
}

.treatment__point-title {
    font-size: var(--font-size28);
    font-family: var(--fontZ);
    font-weight: bold;
    color: #115061;
    text-decoration: underline;
    text-decoration-color: #115061;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    line-height: 1.4;
}

.treatment__point-desc {
    font-size: var(--font-size20);
    font-family: var(--fontZ);
    font-weight: 500;
    color: #115061;
    line-height: 1.7;
}

.treatment__callout {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 calc(var(--margin)*1.2);
    padding-top: calc(var(--gap-unit)*3);
}

.treatment__callout-label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    font-size: var(--font-size22);
    font-family: var(--fontZ);
    font-weight: 500;
    color: var(--bg-white-color);
    line-height: 1.3;
    padding: calc(var(--gap-unit)*1) calc(var(--gap-unit)*3);
    background-color: #115061;
    border-radius: 999px;
}

.treatment__callout-inner {
    position: relative;
    display: flex;
    align-items: center;
    padding: calc(var(--gap-unit)*3) calc(var(--gap-unit)*4) calc(var(--gap-unit)*2);
    background-color: #F5FAFC;
    border: 1px solid #6CC6EC;
    border-radius: calc(var(--border-radius)*1.5);
}

.treatment__callout-desc {
    flex: 1;
    font-size: var(--font-size20);
    font-family: var(--fontZ);
    font-weight: 500;
    color: #115061;
}

.treatment__callout-img {
    position: absolute;
    right: calc(var(--gap-unit)*3);
    bottom: 0;
    display: flex;
    width: 15rem;
}

.treatment__callout-img img {
    width: 100%;
}

.treatment__callout-note {
    font-size: var(--font-size14);
    font-family: var(--fontZ);
    font-weight: 500;
    color: #115061;
    line-height: 1.5;
    margin-top: calc(var(--gap-unit));
}

.treatment__highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--gap-unit)*2);
    width: 100%;
    padding-top: calc(var(--gap-unit)*3);
}

.treatment__highlight-icon {
    display: flex;
    width: 6rem;
}

.treatment__highlight-icon img {
    width: 100%;
}

.treatment__highlight-txt {
    font-size: var(--font-size32);
    font-family: var(--fontZ);
    font-weight: 500;
    color: #115061;
    line-height: 1.6;
    text-align: center;
    margin: 0 calc(var(--gap-unit)*-3);
}

.treatment__highlight-txt span {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(150.44deg, #C49F3A 26.36%, #E2C976 45.28%, #C6A13E 56.31%);
}

.treatment__cta {
    width: 100%;
    padding: 0 calc(var(--margin)*1.4);
}

.treatment__cta .cta__link-web {
    width: 100%;
}

@media (max-width: 768px) {
    .treatment__bottom {
        gap: calc(var(--gap-unit)*4);
        padding: 0 0 5rem;
        margin-top: 0;
    }

    .treatment__bar {
        padding: calc(var(--gap-unit)*2) calc(var(--gap-unit)*2);
    }

    .treatment__bar-txt {
        font-size: var(--font-size18);
    }

    .treatment__point {
        padding: calc(var(--gap-unit)*2) calc(var(--gap-unit)*2.5);
    }

    .treatment__point-title {
        font-size: var(--font-size18);
    }

    .treatment__point-desc {
        font-size: var(--font-size16);
    }

    .treatment__callout-label {
        left: calc(var(--gap-unit)*2);
        font-size: var(--font-size16);
        padding: calc(var(--gap-unit)*1) calc(var(--gap-unit)*2);
    }

    .treatment__callout-inner {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        padding: calc(var(--gap-unit)*4.5) calc(var(--gap-unit)*2.5) 0;
    }

    .treatment__callout-desc {
        font-size: var(--font-size18);
        max-width: 100%;
    }

    .treatment__callout-img {
        position: relative;
        align-self: flex-end;
        width: 12rem;
        margin-top: calc(var(--gap-unit)*-16);
        z-index: 2;
    }

    .treatment__callout-note {
        font-size: var(--font-size14);
    }

    .treatment__highlight {
        gap: calc(var(--gap-unit)*1.5);
        padding: calc(var(--gap-unit)*1) 0;
    }

    .treatment__highlight-icon {
        width: 2rem;
    }

    .treatment__highlight-icon--right {
        display: none;
    }

    .treatment__highlight-txt {
        font-size: var(--font-size20);
    }

    .treatment__highlight-gold {
        font-size: var(--font-size24);
    }
}

@media (max-width: 450px) {
    .treatment__bottom {
        padding: 0 0 6rem;
    }

    .treatment__bar::before {
        right: 0;
    }

    .treatment__point-title {
        font-size: var(--font-size16);
    }

    .treatment__point-desc {
        font-size: var(--font-size14);
    }

    .treatment__callout-label {
        position: relative;
        top: unset;
        left: unset;
        width: fit-content;
        margin-bottom: calc(var(--gap-unit)*-2);
        font-size: var(--font-size14);
    }

    .treatment__callout {
        padding-top: 0;
    }

    .treatment__callout-inner {
        padding: calc(var(--gap-unit)*2.5) calc(var(--gap-unit)*2) 0;
    }

    .treatment__callout-img {
        width: 14rem;
        margin-top: -5rem;
    }

    .treatment__callout-desc {
        font-size: var(--font-size16);
    }

    .treatment__callout-note {
        font-size: 1.2rem;
    }

    .treatment__highlight-txt {
        font-size: var(--font-size18);
    }

    .treatment__highlight-icon {
        width: 3rem;
    }

    .treatment__highlight-gold {
        font-size: var(--font-size20);
    }

    .treatment__cta {
        padding: 0 var(--margin);
    }
}




/* ------------section solution---------- */
.solution {
    position: relative;
    background-image: url(../img/solution_bg.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.solution__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*3);
    padding-top: 15rem;
}

.solution__title {
    font-size: 4.8rem;
    font-family: var(--fontZ);
    font-weight: 500;
    color: var(--bg-white-color);
    text-align: center;
}

.solution__content {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5rem 0 var(--margin);
}

.solution__main {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*3);
}

.solution__item {
    display: flex;
    align-items: center;
    gap: calc(var(--gap-unit)*.8);
    padding: var(--gap-unit);
    background-color: var(--bg-white-color);
    width: fit-content;
}

.solution__check {
    display: flex;
    width: 2.1rem;
}

.solution__check img {
    width: 100%;
}

.solution__txt {
    font-size: var(--font-size22);
    font-family: var(--fontZ);
    font-weight: 600;
    line-height: 1.3;
}

.solution__img {
    display: flex;
    width: 68%;
    margin-left: -10%;
}

.solution__img img {
    width: 100%;
}

@media (max-width: 768px) {
    .solution__inner {
        padding-top: 5rem;
    }

    .solution__title {
        font-size: 2rem;
    }

    .solution__content {
        padding: 0 1rem 0 var(--margin);
    }

    .solution__check {
        width: .8rem;
    }

    .solution__item {
        gap: var(--gap-unit);
    }

    .solution__main {
        gap: calc(var(--gap-unit)*2);
    }

    .solution__txt {
        font-size: var(--font-size16);
    }
}

@media (max-width: 450px) {
    .solution {
        background-image: url(../img/solution_bg_sp.jpg);
    }

    .solution::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #00000060;
    }

    .solution__inner {
        position: relative;
        padding-top: 8rem;
        z-index: 2;
        gap: calc(var(--gap-unit)*5);
    }

    .solution__title {
        font-size: 2.3rem;
    }

    .solution__content {
        padding: 0;
        flex-direction: column;
    }

    .solution__check {
        width: 1.5rem;
    }

    .solution__item {
        padding: calc(var(--gap-unit)*1.5);
        width: 100%;
    }

    .solution__main {
        padding: 0 var(--margin);
    }

    .solution__txt {
        flex: 1;
        font-size: var(--font-size18);
    }

    .solution__img {
        width: 100%;
        margin: 0;
    }
}







/* ------------section feature---------- */
.feature {
    position: relative;
    background-image: url(../img/feature_bg.jpg);
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
    overflow: hidden;
}

.feature__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap-unit)*10);
    padding: 10rem 0 12rem;
}

.feature__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--fontZ);
    color: #43B9EB;
    line-height: 1;
}

.feature__title-line {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature__title-line01 {
    align-items: flex-end;
    font-size: var(--font-size36);
}

.feature__title-line01 span {
    font-size: 6.4rem;
}

.feature__title-line02 {
    font-size: 7.4rem;
    font-weight: 600;
}

.feature__title-point {
    font-size: 9.6rem;
    font-weight: bold;
}

.feature__title-number {
    font-size: 13rem;
    font-weight: bold;
}

/* .feature__subtitle ruby {
    ruby-position: under;
    -webkit-ruby-position: after;
} */

.feature__item {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.feature__item>img {
    width: 100%;
}

.feature__main {
    display: flex;
    flex-direction: column;
}

.feature__meta {
    display: flex;
    flex-direction: column;
}

.feature__order {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 9.5rem;
    font-family: var(--fontZ);
    line-height: 1;
    padding-left: 6rem;
    color: #115061;
}

.feature__order span {
    position: absolute;
    left: 0;
    font-size: var(--font-size30);
    line-height: 1;
}

.feature__subtitle {
    font-size: 4.8rem;
    font-family: var(--fontZ);
    line-height: 1.3;
    color: #115061;
}

.feature__subtitle span {
    font-size: 6.4rem;
    line-height: 1;
}

.feature__txt {
    font-size: var(--font-size24);
    font-family: var(--fontY);
    color: #115061;
}

.feature__img {
    display: flex;
}

.feature__img img {
    width: 100%;
}

.feature__item02 {
    margin-top: -5rem;
}

.feature__item03 {
    margin-top: -18rem;
}

.feature__item04 {
    margin-top: -15rem;
}

.feature__sp {
    display: none;
}

@media (max-width: 768px) {
    .feature__item02 {
        margin-top: -1rem;
    }

    .feature__item03 {
        margin-top: -4rem;
    }

    .feature__item04 {
        margin-top: -4rem;
    }
}

@media (max-width: 450px) {
    .feature::before {
        content: '';
        position: absolute;
        top: 16rem;
        left: 0;
        width: 100%;
        height: 20rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 42.35%);
    }

    .feature__sp {
        display: block;
    }

    .feature__pc {
        display: none;
    }

    .feature__title-line01 {
        font-size: 2.1rem;
    }

    .feature__item {
        position: relative;
        flex-direction: column;
        margin: 0 !important;
        gap: calc(var(--gap-unit)*2);
    }

    .feature__item02 {
        margin-top: -6rem !important;
    }

    .feature__title-line01 span {
        font-size: 3.2rem;
    }

    .feature__title-line02 {
        font-size: 3rem;
    }

    .feature__title-point {
        font-size: 4rem;
    }

    .feature__title-number {
        font-size: 6rem;
    }

    .feature__content {
        display: flex;
        flex-direction: column;
        padding: 0 var(--margin);
        gap: 4rem;
    }

    .feature__order {
        font-size: 5rem;
    }

    .feature__order span {
        font-size: var(--font-size18);
    }

    .feature__main {
        gap: 1rem;
    }

    .feature__subtitle {
        font-size: 2rem;
        line-height: 1.6;
    }

    .feature__subtitle rt {
        font-size: 1.4rem;
    }

    .feature__subtitle span {
        font-size: 3rem;
    }

    .feature__txt {
        font-size: var(--font-size16);
    }

    .feature__img {
        width: 100%;
    }
}













/* -----------section case---------- */
.case {
    position: relative;
}

.case__top {
    position: relative;
    display: flex;
    z-index: 2;
}

.case__top-inner {
    position: absolute;
    top: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap-unit)*5);
    width: 100%;
}

.case__top-bg {
    display: flex;
    width: 100%;
}

.case__top-bg img {
    width: 100%;
}

.case__shape {
    display: flex;
    width: 35rem;
}

.case__shape img {
    width: 100%;
}

.case__des {
    font-size: var(--font-size32);
    font-family: var(--fontZ);
    font-weight: 600;
    color: #115061;
    text-align: center;
}

.case__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*10);
    padding-top: 30rem;
    padding-bottom: 27rem;
    margin-top: -15rem;
    background-image: url(../img/case_bg.png);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}

.case__content::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    height: 55rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 42.35%);
}

.case__heading {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.case__title {
    font-size: 4.8rem;
    font-family: var(--fontZ);
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    color: #115061;
}

.case__title-first {
    font-size: 7.2rem;
}

.case__title-second {
    font-size: 6.4rem;
}

.case__title-highlight {
    font-weight: 900;
    color: #E75074;
    text-shadow: 5.92px 5.92px 5.92px #0348542E;
    padding: 0 .5rem;
}

.case__title-highlight span {
    font-size: 10rem;
}

.case__paint {
    position: absolute;
    top: 16rem;
    right: 23rem;
    display: flex;
    width: 45rem;
    opacity: 0.82;
    rotate: -6deg;
}

.case__paint img {
    width: 100%;
}

.case__main {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18rem;
    padding: 0 calc(var(--margin) + 3rem);
}

.case__item {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*4);
}

.csae__order {
    font-size: 6.4rem;
    font-family: var(--fontZ);
    font-weight: 600;
    color: #115061;
    line-height: 1;
}

.case_compare {
    display: flex;
    gap: calc(var(--gap-unit)*2.5);
}

.case__separator {
    display: flex;
    width: 5rem;
    margin: auto 0;
}

.case__separator svg {
    width: 100%;
}

.case__after,
.case__before {
    display: flex;
    flex-direction: column;
    background-color: #D9D9D9;
}

.case__img {
    display: flex;
    width: 100%;
    aspect-ratio: 6/5;
    overflow: hidden;
}

.case__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.case__label {
    font-size: var(--font-size22);
    font-weight: bold;
    color: #115061;
    padding: 3px calc(var(--gap-unit)*2.5);
    text-align: right;
    background-color: #D9D9D9;
}

@media (max-width: 768px) {
    .case__top-bg {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        width: 100%;
        height: 100%;
    }

    .case__top-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .case__top-inner {
        position: relative;
        z-index: 2;
        top: unset;
        padding: 4rem 0 6rem 0;
    }

    .case__shape {
        width: 13rem;
    }

    .case__des {
        font-size: var(--font-size26);
    }

    .case__content {
        padding-top: 8rem;
        padding-bottom: 9rem;
        margin-top: -5rem;
    }

    .case__title {
        font-size: 1.8rem;
    }

    .case__title-first {
        font-size: 2.5rem;
    }

    .case__title-highlight span {
        font-size: 3.3rem;
    }

    .case__title-second {
        font-size: 2.2rem;
    }

    .case__paint {
        top: 3rem;
        right: 1rem;
        width: 15rem;
    }

    .case__item {
        gap: calc(var(--gap-unit)*3);
    }

    .case__main {
        padding: 0 var(--margin);
        gap: 5rem;
    }

    .csae__order {
        font-size: 2.5rem;
    }

    .case__separator {
        width: 2rem;
    }
}

@media (max-width: 450px) {
    .case__top-inner {
        gap: calc(var(--gap-unit)*3);
        padding: 6rem 0 8rem 0;
    }

    .case__shape {
        width: 25rem;
    }

    .case__des {
        font-size: var(--font-size20);
    }

    .case__content {
        padding-top: 10rem;
        padding-bottom: 13rem;
    }

    .case__title {
        font-size: 2.1rem;
    }

    .case__title-first {
        font-size: 3.3rem;
    }

    .case__title-highlight span {
        font-size: 4.5rem;
    }

    .case__title-second {
        font-size: 2.6rem;
    }

    .case__paint {
        top: 6rem;
        right: -1rem;
        width: 15rem;
    }

    .case__content::before {
        top: 16%;
        height: 22rem;
    }

    .case__item {
        gap: calc(var(--gap-unit)*3);
    }

    .case_compare {
        gap: var(--gap-unit);
    }

    .csae__order {
        font-size: 3rem;
    }

    .case__separator {
        width: 4rem;
    }

    .case__label {
        font-size: var(--font-size16);
        padding: 0 calc(var(--gap-unit)*1.5);
    }
}





/* -------------sectin reason---------- */
.reason {
    position: relative;
    background-image: url(../img/reason_bg.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.reason__inner {
    display: flex;
    flex-direction: column;
    padding-top: 17rem;
}

.reason__heading {
    display: flex;
    padding: calc(var(--gap-unit)*5.5) var(--margin) calc(var(--gap-unit)*5) 11rem;
    margin-left: auto;
    background: linear-gradient(273.7deg, #6CC6EC 13.01%, #B7DFEA 102.91%);
    border-radius: 999px 0 0 999px;
}

.reason__title {
    font-size: 6.4rem;
    font-family: var(--fontZ);
    font-weight: bold;
    line-height: 1;
    color: var(--bg-white-color);
}

.reason__content {
    display: flex;
    flex-direction: column;
    gap: 7rem;
    padding: 0 var(--margin);
    padding-top: 14rem;
    padding-bottom: 6rem;
}

.reason__item {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*3);
}

.reason__meta {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--gap-unit)*2);
}

.reason__order {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size16);
    font-family: var(--fontZ);
    line-height: 1.3;
    color: #1585B0;
    text-align: center;
    width: 10rem;
    height: 10rem;
    border: 2px solid #1585B0;
    border-radius: 50%;
}

.reason__order span {
    font-size: 5.4rem;
    line-height: .8;
}

.reason__subtitle {
    flex: 1;
    font-size: var(--font-size24);
    font-family: var(--fontY);
    font-weight: 600;
    color: #115061;
    line-height: 1.4;
}

.reason__subtitle-highlight {
    font-size: 5.6rem;
    color: #06AAC6;
    text-shadow: 3.54px 3.54px 1.77px #0000001A;
    line-height: 1.1;
}

.reason__subtitle-highlight span {
    font-size: 4rem;
}

.reason__main {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--gap-unit)*4);
    padding-left: 12rem;
}

.reason__img {
    display: flex;
    width: 50%;
}

.reason__img img {
    width: 100%;
}

.reason__txt {
    flex: 1;
    font-size: 1.9rem;
    line-height: 1.8;
    color: #115061;
}

.reason__item:nth-child(even) .reason__main {
    flex-direction: row-reverse;
}

.reason__item:nth-child(even) .reason__txt {
    padding-left: 0;
}

.reason__gallery {
    position: relative;
    display: flex;
    width: 100%;
}

.reason__gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF85;
}

.reason__gallery img {
    width: 100%;
}

@media (max-width: 768px) {
    .reason__inner {
        padding-top: 8rem;
    }

    .reason__heading {
        padding: calc(var(--gap-unit)*4) var(--margin) calc(var(--gap-unit)*4) 4rem;
    }

    .reason__title {
        font-size: 2.5rem;
    }

    .reason__content {
        padding-top: 6rem;
        gap: 3rem;
    }

    .reason__order {
        width: 5rem;
        height: 5rem;
    }

    .reason__order span {
        font-size: 2rem;
    }

    .reason__subtitle {
        line-height: 1.5;
    }

    .reason__subtitle-highlight {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .reason__subtitle-highlight span {
        font-size: 1.3rem;
    }

    .reason__meta {
        align-items: center;
    }

    .reason__main {
        padding-left: 6rem;
        gap: calc(var(--gap-unit)*3);
    }

    .reason__txt {
        font-size: var(--font-size18);
    }
}

@media (max-width: 450px) {
    .reason__inner {
        padding-top: 12rem;
    }

    .reason__heading {
        padding: calc(var(--gap-unit)*2.5) calc(var(--margin)*2);
        margin: 0 var(--margin);
        border-radius: 0;
    }

    .reason__title {
        font-size: 3rem;
        text-align: center;
        line-height: 1.5;
    }

    .reason__content {
        padding-top: 5rem;
        padding-bottom: 8rem;
        gap: 4rem;
    }

    .reason__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .reason__order {
        font-size: var(--font-size14);
        width: 8rem;
        height: 8rem;
    }

    .reason__order span {
        font-size: 3.5rem;
    }

    .reason__subtitle {
        font-size: var(--font-size20);
    }

    .reason__subtitle-highlight {
        font-size: 2.8rem;
        line-height: 1.5;
    }

    .reason__subtitle-highlight span {
        font-size: 1.3rem;
    }

    .reason__item {
        gap: 0;
    }

    .reason__main,
    .reason__item:nth-child(even) .reason__main {
        padding-left: 0;
        flex-direction: column;
        gap: calc(var(--gap-unit)*2);
    }

    .reason__txt {
        font-size: var(--font-size16);
    }

    .reason__img {
        width: 100%;
    }
}














/* ----------section benefit---------- */
.benefit {
    position: relative;
    background-image: url(../img/benefit_bg.png);
    background-size: cover;
    background-position: top riht;
    background-repeat: no-repeat;
}

.benefit__inner {
    position: relative;
    display: flex;
    padding: 24rem var(--margin) 13rem;
}

.benefit__content {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white-color);
    border: 1px solid #6CC6EC;
    box-shadow: 2.09px 4.18px 6.28px 0px #00000026;
    width: 100%;
}

.benefit__heading {
    position: relative;
    display: flex;
    justify-content: center;
    padding: calc(var(--gap-unit)*6) calc(var(--gap-unit)*2) calc(var(--gap-unit)*3.5);
    background: linear-gradient(273.7deg, #6CC6EC 13.01%, #B7DFEA 102.91%);
}

.benefit__title {
    font-size: 6.4rem;
    font-family: var(--fontZ);
    font-weight: bold;
    text-align: center;
    color: var(--bg-white-color);
    line-height: 1.2;
}

.benefit__paint {
    position: absolute;
    top: -12rem;
    left: -19rem;
    display: flex;
    width: 68rem;
}

.benefit__paint img {
    width: 100%;
}

.benefit__img {
    position: absolute;
    left: 3rem;
    top: -9rem;
    display: flex;
    width: 50rem;
}

.benefit__img img {
    width: 100%;
}

.benefit__main {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*6);
    padding: calc(var(--gap-unit)*5) calc(var(--gap-unit)*6) calc(var(--gap-unit)*8);
}

.benefit__catch {
    font-size: 6.4rem;
    font-family: var(--fontZ);
    font-weight: 600;
    color: var(--bg-darkblue-color);
    line-height: 1;
    margin-left: 47%;
}

.benefit__detail {
    display: flex;
    width: 52rem;
    margin-left: 47%;
}

.benefit__detail img {
    width: 100%;
}

.benefit__btn {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: calc(var(--gap-unit)*2);
}

.benefit__link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--gap-unit)*3);
    font-size: 6.3rem;
    font-family: var(--fontY);
    font-weight: 600;
    color: var(--bg-white-color);
    line-height: 1.3;
    letter-spacing: -.05em;
    padding: calc(var(--gap-unit)*3.5) calc(var(--gap-unit)*3.5);
    background: linear-gradient(179.16deg, #C49F3A -11.08%, #EAD586 16.98%, #FFF3B0 23.72%, #E2C976 44.35%, #C6A13E 68.59%);
    border-radius: calc(var(--border-radius)*2);
    width: 100%;
    transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit__link-txt {
    position: relative;
    z-index: 1;
}

.benefit__link::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: calc(var(--border-radius)*2);
    border: 2px solid var(--bg-white-color);
    transition: border-color 0.3s ease;
}

.benefit__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-color: #FFFFFFAB;
    filter: blur(72.16410827636719px);
    -webkit-filter: blur(72.16410827636719px);
    transition: opacity 0.3s ease;
}

.benefit__link-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    background-color: var(--bg-white-color);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.benefit__link:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 161, 62, 0.45);
}

.benefit__link:hover::after {
    opacity: 0.85;
}

.benefit__link:hover .benefit__link-arrow {
    transform: translateX(4px);
}

.benefit__link-arrow svg {
    position: absolute;
    left: 55%;
    transform: translateX(-50%);
    width: 3rem;
}

@media (max-width: 768px) {
    .benefit__inner {
        padding: 9rem var(--margin) 6rem;
    }

    .benefit__title {
        font-size: 2.5rem;
    }

    .benefit__main {
        gap: calc(var(--gap-unit)*4);
    }

    .benefit__link {
        font-size: 1.8rem;
    }

    .benefit__detail {
        margin: 0;
        width: 100%;
    }

    .benefit__heading {
        padding: calc(var(--gap-unit)*5) calc(var(--gap-unit)*2) calc(var(--gap-unit)*3);
    }

    .benefit__paint {
        width: 23rem;
        top: -5rem;
        left: -4rem;
    }

    .benefit__catch {
        margin: 0;
        font-size: 3.5rem;
    }

    .benefit__link-arrow {
        width: 3rem;
        height: 3rem;
    }

    .benefit__link-arrow svg {
        width: 1rem;
    }

    .benefit__img {
        display: none;
    }
}

@media (max-width: 768px) {
    .benefit__inner {
        padding: 10rem var(--margin) 6rem;
    }

    .benefit__title {
        font-size: 3rem;
    }

    .benefit__main {
        gap: calc(var(--gap-unit)*4);
        padding: calc(var(--gap-unit)*4) calc(var(--gap-unit)*2.5);
    }

    .benefit__heading {
        padding: calc(var(--gap-unit)*4) calc(var(--gap-unit)*2) calc(var(--gap-unit)*3);
    }

    .benefit__paint {
        width: 28rem;
        top: -6rem;
        left: -6rem;
    }

    .benefit__catch {
        margin: 0;
        font-size: 3.9rem;
    }

    .benefit__link-arrow {
        width: 3rem;
        height: 3rem;
    }

    .benefit__link-arrow svg {
        width: 1rem;
    }

    .benefit__img {
        display: none;
    }
}








/* ------------price style----------- */
.price {
    position: relative;
}

.price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/price_bg.jpg);
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    opacity: .6;
}

.price__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    padding: 8rem 0;
    z-index: 1;
}

.price__title {
    font-size: var(--font-size36);
    font-family: var(--fontZ);
    font-weight: bold;
    text-align: center;
    line-height: 1;
}

.price__content {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*5);
}

.price__main {
    display: flex;
    gap: calc(var(--gap-unit)*6);
}

.price__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: calc(var(--gap-unit)*2.5);
    padding: calc(var(--gap-unit)*5);
    border-radius: var(--border-radius);
    background-color: #FAFAFA;
    box-shadow: 0px 4px 12px 5px #00000012;
    border: 1px solid #EEEEEE;
}

.price__label {
    font-size: var(--font-size18);
    font-family: var(--fontZ);
    font-weight: 600;
    line-height: 1;
}

.price__value {
    font-size: var(--font-size36);
    font-family: var(--fontZ);
    font-weight: bold;
    line-height: 1;
}

.price__value span {
    font-size: var(--font-size24);
}

.price__note {
    font-size: var(--font-size16);
    font-family: var(--fontZ);
    font-weight: 600;
}

.price__plan {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*2);
    padding: calc(var(--gap-unit)*2) calc(var(--gap-unit)*4);
    background-color: #FAFAFA;
    border-radius: var(--border-radius);
    border: 1px solid #DDE3EA;
    box-shadow: 0px 4px 16px 8px #00000012;
    text-align: center;
}

.price__plan-title {
    font-size: var(--font-size24);
    font-family: var(--fontZ);
    font-weight: 600;
}

.price__plan-title span {
    font-size: var(--font-size16);
}

.price__plan-vale {
    font-size: 4.5rem;
    font-family: var(--fontZ);
    font-weight: 600;
    line-height: 1;
}

.price__plan-vale span {
    font-size: var(--font-size28);
}

.price__plan-month {
    font-size: var(--font-size18);
    font-family: var(--fontZ);
    font-weight: 600;
    line-height: 1;
}

.price__plan-note {
    font-size: var(--font-size16);
    font-family: var(--fontZ);
    font-weight: 600;
    line-height: 1;
}

.price__table {
    margin-top: 2rem;
    display: block;
    width: 100%;
    max-width: 100%;
}

.price__table table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #5784AA;
    border-bottom: 2px solid #5784AA;
}

.price__table tr {
    border-bottom: .5px solid #5784AA;
}

.price__table tbody tr:last-child {
    border: none;
}

.price__table th,
.price__table td {
    text-align: left;
    font-size: var(--font-size16);
    font-family: var(--fontZ);
    font-weight: 600;
    padding: calc(var(--gap-unit)*2) calc(var(--gap-unit)*.5);
    vertical-align: top;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

.price__table td span {
    font-size: var(--font-size12);
}

.price__table th {
    color: #5784AA;
}

.price__table tr :nth-child(1) {
    width: 24%;
}

.price__table tr :nth-child(2) {
    width: 26%;
}

.price__payment {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*4.5);
}

.payment__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap-unit)*6);
}

.payment__title {
    font-size: var(--font-size36);
    font-family: var(--fontZ);
    font-weight: bold;
    line-height: 1;
    text-align: center;
}

.payment__lead {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap-unit)*2.5);
    font-size: var(--font-size22);
    font-family: var(--fontZ);
}

.payment__lead span {
    font-size: var(--font-size16);
    text-align: center;
}

.payment__content {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*5.5);
    width: 75%;
    margin: 0 auto;
}

.payment__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: calc(var(--gap-unit)*5);
}

.payment__label {
    font-size: var(--font-size22);
    font-family: var(--fontZ);
    padding: 0 calc(var(--gap-unit)*1.5);
    border: 1px solid var(--bg-black-color);
}

.payment__main {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*2);
    width: 70%;
}

.payment__value {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--gap-unit)*1.5) calc(var(--gap-unit)*4.5);
    font-size: var(--font-size18);
    font-family: var(--fontZ);
    width: 78%;
}

.payment__txt {
    font-size: var(--font-size18);
    font-family: var(--fontZ);
    line-height: 1.8;
}

.payment__icon {
    display: flex;
    width: 75%;
}

.payment__icon img {
    width: 100%;
}

.payment__note {
    font-size: var(--font-size22);
    font-family: var(--fontZ);
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .price__inner {
        gap: 3rem;
        padding: 4rem 0;
    }

    .price__main {
        gap: calc(var(--gap-unit)*3);
    }

    .price__item {
        padding: calc(var(--gap-unit)*5) calc(var(--gap-unit)*2);
    }

    .price__plan-vale {
        font-size: 2rem;
    }

    .price__table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .price__table table {
        width: max-content;
        min-width: 100%;
        max-width: none;
    }

    .price__table tr :nth-child(1),
    .price__table tr :nth-child(2) {
        width: auto;
    }

    .price__table th,
    .price__table td {
        min-width: 22rem;
    }

    .price__table th:last-child,
    .price__table td:last-child {
        min-width: 36rem;
    }

    .payment__lead {
        font-size: var(--font-size18);
    }

    .payment__content {
        width: 100%;
    }

    .payment__item {
        gap: calc(var(--gap-unit)*3);
    }

    .payment__label {
        font-size: var(--font-size18);
    }

    .payment__note {
        font-size: var(--font-size20);
    }
}

@media (max-width: 450px) {
    .price__inner {
        gap: 5rem;
        padding: 8rem 0;
    }

    .price__main {
        flex-direction: column;
        gap: calc(var(--gap-unit)*1.5);
    }

    .price__item {
        padding: calc(var(--gap-unit)*5) calc(var(--gap-unit)*2);
    }

    .price__plan-vale {
        font-size: 5rem;
    }

    .price__plan {
        padding: calc(var(--gap-unit)*4);
    }

    .payment__lead {
        font-size: var(--font-size16);
    }

    .payment__content {
        width: 100%;
    }

    .payment__item {
        gap: calc(var(--gap-unit)*1.5);
        flex-direction: column;
    }

    .payment__main {
        width: 100%;
    }

    .payment__note {
        font-size: var(--font-size18);
    }

    .payment__value {
        width: 100%;
        font-size: var(--font-size16);
    }

    .payment__txt {
        font-size: var(--font-size16);
    }

    .payment__icon {
        width: 100%;
    }

    .payment__content {
        gap: calc(var(--gap-unit)*4);
    }

    .price__payment {
        gap: calc(var(--gap-unit)*5);
    }

    .payment__heading {
        gap: calc(var(--gap-unit)*4);
    }

    .payment__title {
        font-size: var(--font-size30);
    }
}






/* -----------section flow----------- */
.flow {
    position: relative;
    background-image: url(../img/flow_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.flow__inner {
    display: flex;
    flex-direction: column;
    gap: 13rem;
    padding: 15rem 3rem 14rem;
}

.flow__heading {
    display: flex;
    justify-content: center;
}

.flow__title {
    font-size: 6rem;
    font-family: var(--fontY);
    font-weight: 600;
    color: #2DA8D8;
    border-top: 2px solid #2DA8D8;
    border-bottom: 2px solid #2DA8D8;
}

.flow__content {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*8);
    background-color: var(--bg-white-color);
    padding: calc(var(--gap-unit)*8) calc(var(--gap-unit)*5);
}

.flow__item {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*4);
}

.flow__meta {
    display: flex;
    align-items: center;
    gap: calc(var(--gap-unit)*2);
    border-bottom: 2px solid #F1F1F1;
}

.flow__order {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 10rem;
    font-family: var(--fontI);
    line-height: .8;
    color: #D1D1D1;
}

.flow__order span {
    position: absolute;
    left: 0;
    font-size: var(--font-size20);
    font-family: var(--fontI);
    line-height: 1;
    color: #115061;
}

.flow__subtitle {
    font-size: 5rem;
    font-family: var(--fontY);
    font-weight: 600;
    color: #2DA8D8;
    line-height: 1;
}

.flow__main {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--gap-unit)*4.5);
}

.flow__img {
    display: flex;
    width: 35%;
}

.flow__img img {
    width: 100%;
}

.flow__txt {
    flex: 1;
    font-size: var(--font-size22);
    font-family: var(--fontZ);
    color: #115061;
}

@media (max-width: 768px) {
    .flow__inner {
        gap: 5rem;
        padding: 7rem 0;
    }

    .flow__title {
        font-size: 2.5rem;
    }

    .flow__item {
        gap: calc(var(--gap-unit)*3);
    }

    .flow__main {
        gap: calc(var(--gap-unit)*3);
    }

    .flow__img {
        width: 40%;
    }

    .flow__txt {
        font-size: var(--font-size18);
    }

    .flow__order {
        font-size: 4rem;
    }

    .flow__subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 450px) {
    .flow__inner {
        gap: 6rem;
        padding: 10rem 0 8rem;
    }

    .flow__content {
        gap: calc(var(--gap-unit)*6);
        padding: calc(var(--gap-unit)*7) calc(var(--gap-unit)*3);
    }

    .flow__title {
        font-size: 3rem;
    }

    .flow__item {
        gap: calc(var(--gap-unit)*2);
    }

    .flow__main {
        flex-direction: column;
        gap: calc(var(--gap-unit)*2);
    }

    .flow__img {
        width: 100%;
    }

    .flow__txt {
        font-size: var(--font-size18);
    }

    .flow__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .flow__order span {
        font-size: var(--font-size16);
    }

    .flow__order {
        font-size: 6rem;
    }

    .flow__subtitle {
        font-size: 2.7rem;
        line-height: 1.6;
    }
}






/* -----------section faq---------- */
.faq {
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/price_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .6;
}

.faq__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*6.5);
    padding: 12rem 6rem 16rem;
    z-index: 2;
}

.faq__heading {
    display: flex;
    justify-content: center;
}

.faq__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap-unit)*2);
}

.faq__title-en {
    font-size: 11rem;
    font-family: var(--fontLC);
    line-height: 1;
    color: #6CC6EC;
}

.faq__title-en span {
    font-size: 7.3rem;
    padding: 0 calc(var(--gap-unit)*1);
}

.faq__title-jp {
    font-size: 7.3rem;
    font-family: var(--fontY);
    font-weight: 600;
    color: #115061;
    line-height: 1.5;
    padding: 0 calc(var(--gap-unit)*5);
    border-top: 2px solid #909090;
    border-bottom: 2px solid #909090;
}

.faq__content {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*6.5);
}

.faq__item {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*3.5);
    padding: calc(var(--gap-unit)*5) calc(var(--gap-unit)*5);
    background-color: #D5E8EF;
    box-shadow: 9.95px 9.95px 14.93px 0px #00000040;
    border-radius: calc(var(--gap-unit)*1.5);
}

.faq__question {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--gap-unit)*3);
}

.faq__question-mark {
    font-size: 5.4rem;
    font-family: var(--fontLC);
    line-height: .8;
    color: var(--bg-white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 8rem;
    background-color: #115061;
    border-radius: 50%;
}

.faq__question-txt {
    flex: 1;
    font-size: 4rem;
    font-family: var(--fontY);
    font-weight: 600;
    color: #115061;
}

.faq__answer {
    display: flex;
    align-items: flex-start;
    gap: calc(var(--gap-unit)*3);
    padding-top: calc(var(--gap-unit)*3);
    border-top: 2px solid #115061;
}

.faq__answer-mark {
    font-size: 5.4rem;
    font-family: var(--fontLC);
    line-height: .8;
    color: var(--bg-white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8rem;
    height: 8rem;
    background-color: #FF5072;
    border-radius: 50%;
}

.faq__answer-txt {
    flex: 1;
    font-size: var(--font-size20);
    font-weight: 500;
    color: #115061;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq__inner {
        padding: 6rem 0;
    }

    .faq__title-en {
        font-size: 4rem;
    }

    .faq__title-en span {
        font-size: 2.4rem;
    }

    .faq__title-jp {
        font-size: 2.5rem;
    }

    .faq__item {
        padding: calc(var(--gap-unit)*4);
        gap: calc(var(--gap-unit)*2.5);
    }

    .faq__answer {
        padding-top: calc(var(--gap-unit)*2.5);
    }

    .faq__question-mark,
    .faq__answer-mark {
        font-size: 1.8rem;
        width: 3rem;
        height: 3rem;
    }

    .faq__question-txt {
        font-size: var(--font-size24);
    }

    .faq__answer-txt {
        font-size: var(--font-size16);
    }
}

@media (max-width: 450px) {
    .faq__inner {
        gap: calc(var(--gap-unit)*8);
        padding: 10rem 0;
    }

    .faq__content {
        gap: calc(var(--gap-unit)*5);
    }

    .faq__title-en {
        font-size: 6rem;
    }

    .faq__title-en span {
        font-size: 3.5rem;
    }

    .faq__title-jp {
        font-size: 3.5rem;
        line-height: 1.8;
    }

    .faq__item {
        padding: calc(var(--gap-unit)*3) calc(var(--gap-unit)*2.5);
        gap: calc(var(--gap-unit)*1.5);
    }

    .faq__answer {
        align-items: flex-start;
        padding-top: calc(var(--gap-unit)*1.5);
        gap: calc(var(--gap-unit)*1.5);
    }

    .faq__question {
        align-items: flex-start;
        gap: calc(var(--gap-unit)*1.5);
    }

    .faq__question-mark,
    .faq__answer-mark {
        font-size: 2rem;
        width: 4rem;
        height: 4rem;
    }

    .faq__question-txt {
        font-size: var(--font-size18);
        line-height: 1.6;
        margin-top: .8rem;
    }

    .faq__answer-txt {
        font-size: var(--font-size14);
    }
}



/* -----------section contact---------- */
.contact {
    position: relative;
    background-color: var(--bg-white-color);
}

.contact__inner {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*5);
    padding: 12rem 13rem 12rem;
}

.contact__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap-unit)*5);
    text-align: center;
}

.contact__progress {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--gap-unit)*10);
}

.contact__progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background-color: #DDDDDD;
}

.contact__progress-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(var(--gap-unit)*.5);
    color: #777777;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: var(--bg-white-color);
    border: calc(var(--gap-unit)*.8) solid #DDDDDD;
}

.contact__progress-item.active {
    background-color: #46B4E3;
    color: var(--bg-white-color);
    border-color: #46B4E3;
}

.contact__progress-order {
    font-size: var(--font-size16);
}

.contact__progress-txt {
    font-size: var(--font-size18);
    font-weight: 500;
    line-height: 1;
}

.contact__note {
    font-size: var(--font-size18);
    text-align: center;
}

.contact__errors {
    margin-bottom: calc(var(--gap-unit)*3);
    padding: calc(var(--gap-unit)*2) calc(var(--gap-unit)*3);
    background-color: #FFF5F7;
    border: 1px solid #E75074;
    border-radius: var(--border-radius);
}

.contact__errors p {
    font-size: var(--font-size16);
    color: #E75074;
    line-height: 1.6;
}

.contact__errors p + p {
    margin-top: var(--gap-unit);
}

.contact__schedule-note {
    font-size: var(--font-size16);
    color: #666666;
    line-height: 1.5;
}

.contact__form-inner {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*4);
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: var(--gap-unit);
}

.contact__cap {
    font-size: var(--font-size18);
    color: #333333;
    line-height: 1.5;
}

.contact__control {
    display: flex;
    width: 100%;
    gap: calc(var(--gap-unit)*5);
}

.contact__control input[type="text"],
.contact__control input[type="email"],
.contact__control input[type="tel"],
.contact__control input[type="date"],
.contact__control input[type="time"],
.contact__control textarea {
    flex: 1;
    padding: calc(var(--gap-unit)*2);
    font-size: var(--font-size16);
    font-family: var(--fontB);
    line-height: 1.2;
    font-weight: 500;
    color: #333333;
    border: 1.5px solid transparent;
    border-radius: var(--border-radius);
    background-color: #F3F3F3;
    transition: border-color 0.25s ease;
    outline: none;
}

.contact__control input[type="text"]:focus,
.contact__control input[type="email"]:focus,
.contact__control input[type="tel"]:focus,
.contact__control input[type="date"]:focus,
.contact__control input[type="time"]:focus,
.contact__control textarea:focus {
    border-color: #115061;
}

.contact__control--error input[type="text"],
.contact__control--error input[type="email"],
.contact__control--error input[type="tel"],
.contact__control--error input[type="date"],
.contact__control--error input[type="time"],
.contact__control--error textarea {
    border-color: #E75074;
    background-color: #FFF5F7;
}

.contact__privacy-label.contact__control--error .txt {
    color: #E75074;
}

.contact__control input::placeholder,
.contact__control textarea::placeholder {
    font-weight: 500;
    color: #999999;
}

.contact__control textarea {
    height: 20rem;
    resize: none;
}

.contact__shedule {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*2);
}

.contact__group {
    display: flex;
    align-items: center;
    gap: calc(var(--gap-unit)*2);
}

.contact__row {
    flex: 1;
    display: flex;
    align-items: center;
    gap: calc(var(--gap-unit)*1);
}

.contact__label {
    font-size: var(--font-size16);
    color: #333333;
    white-space: nowrap;
}

.contact__row .contact__control {
    flex: 1;
}

.contact__privacy-label {
    display: flex;
    align-items: center;
    gap: calc(var(--gap-unit)*1);
    cursor: pointer;
    font-size: var(--font-size18);
    line-height: 1;
    color: #333333;
}

.contact__privacy-label input[type="checkbox"] {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    accent-color: #115061;
    cursor: pointer;
}

.privacy__field a {
    font-weight: 500;
    color: #0066A0;
}

.contact__privacy-label .txt a:hover {
    color: #43B9EB;
}

.contact__submit {
    display: flex;
    justify-content: center;
    padding-top: calc(var(--gap-unit)*4);
}

.contact__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size18);
    font-family: var(--fontB);
    font-weight: 500;
    color: #46B4E2;
    padding: calc(var(--gap-unit)*2.5) calc(var(--gap-unit)*6);
    border: 2px solid #46B4E2;
    border-radius: 999px;
    line-height: 1;
    background-color: var(--bg-white-color);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 25rem;
}

.contact__btn:hover {
    background-color: #46B4E2;
    color: var(--bg-white-color);
}

.contact__required {
    color: #E75074;
}

.contact__value {
    display: flex;
    align-items: center;
    padding: calc(var(--gap-unit)*2);
    font-size: var(--font-size16);
    font-family: var(--fontB);
    font-weight: 500;
    line-height: 1.6;
    color: #333333;
    border-radius: var(--border-radius);
    background-color: #F3F3F3;
}

.contact__value--textarea {
    align-items: flex-start;
    min-height: 20rem;
    white-space: pre-wrap;
}

.contact__value.multi__control {
    gap: calc(var(--gap-unit)*5);
}

.contact__value.multi__control .contact__value-item {
    flex: 1;
}

.contact__row .contact__value {
    flex: 1;
}

.contact__confirm-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(var(--gap-unit)*3);
    padding-top: calc(var(--gap-unit)*4);
}

.contact__btn--back {
    color: #777777;
    border-color: #DDDDDD;
}

.contact__btn--back:hover {
    background-color: #DDDDDD;
    color: #333333;
}

.contact__thanks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap-unit)*4);
    padding: calc(var(--gap-unit)*5) 0 calc(var(--gap-unit)*2);
    text-align: center;
}

.contact__thanks-title {
    margin: 0;
    font-size: var(--font-size32);
    font-family: var(--fontZ);
    font-weight: 600;
    color: #115061;
    line-height: 1.5;
}

.contact__thanks-txt {
    margin: 0;
    font-size: var(--font-size18);
    line-height: 1.8;
    color: #333333;
}

.contact__thanks .contact__btn {
    min-width: 28rem;
    text-decoration: none;
}

@media (max-width: 768px) {
    .contact__inner {
        padding: 6rem 0 3rem;
    }

    .contact__cap {
        font-size: var(--font-size16);
    }

    .contact__privacy-label input[type="checkbox"] {
        width: 1rem;
        height: 1rem;
    }

    .contact__progress {
        gap: calc(var(--gap-unit)*4);
    }

    .contact__progress-item {
        width: 6rem;
        height: 6rem;
    }

    .thanks,
    .confirm {
        padding-top: calc(var(--gap-unit)*8);
    }
}

@media (max-width: 450px) {
    .contact__inner {
        padding: 10rem 0 5rem;
        gap: calc(var(--gap-unit)*8);
    }

    .contact__privacy-label input[type="checkbox"] {
        width: 2rem;
        height: 2rem;
    }

    .contact__control {
        gap: calc(var(--gap-unit)*2);
    }

    .contact__control.multi__control input {
        width: calc(50% - var(--gap-unit));
    }

    .contact__privacy-label {
        gap: calc(var(--gap-unit)*.5);
        font-size: var(--font-size16);
    }

    .contact__shedule {
        gap: calc(var(--gap-unit)*3);
    }

    .contact__group {
        flex-direction: column;
        gap: calc(var(--gap-unit)*1.5);
    }

    .contact__label {
        font-size: var(--font-size14);
    }

    .contact__row {
        flex: none;
        width: 100%;
    }

    .contact__privacy-label .txt {
        margin-bottom: .2rem;
    }

    .contact__progress {
        gap: calc(var(--gap-unit)*4);
        width: 100%;
    }

    .contact__progress-item {
        flex: 1;
        width: auto;
        height: auto;
        aspect-ratio: 1/1;
    }

    .contact__progress-order {
        font-size: var(--font-size14);
    }

    .contact__progress-txt {
        font-size: var(--font-size14);
    }

    .contact__note {
        font-size: var(--font-size16);
    }

    .contact__value.multi__control {
        flex-direction: column;
        gap: calc(var(--gap-unit)*2);
    }

    .contact__confirm-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact__confirm-actions .contact__btn {
        width: 100%;
        max-width: 32rem;
    }

    .contact__thanks-title {
        font-size: var(--font-size20);
    }

    .contact__thanks-txt {
        font-size: var(--font-size14);
    }

    .contact__thanks .contact__btn {
        font-size: var(--font-size16);
        min-width: auto;
        width: 65%;
        max-width: 65%;
    }
}




/* -----------section access---------- */
.access {
    position: relative;
    background-color: var(--bg-white-color);
}

.access__inner {
    display: flex;
    flex-direction: column;
    padding: 6rem 18rem 0;
}

.access__content {
    display: flex;
    justify-content: space-between;
    gap: calc(var(--gap-unit)*2);
}

.access__main {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*4);
}

.access__info {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*1);
}

.access__company {
    font-size: var(--font-size32);
    font-family: var(--fontZ);
}

.access__address {
    font-size: var(--font-size20);
    font-family: var(--fontZ);
    line-height: 1.8;
}

.access__img {
    width: 53%;
}

.access__img img {
    width: 100%;
}

.access__table {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*1);
}

.access__table table {
    width: 100%;
    border-collapse: collapse;
}

.access__table thead {
    border-bottom: 1px solid #D9D9D9;
}

.access__table th,
.access__table td {
    font-family: var(--fontZ);
    padding: calc(var(--gap-unit)*.8) calc(var(--gap-unit)*2);
}

.access__table th:first-child {
    text-align: left;
}

.access__table .stop {
    font-weight: bold;
    color: #E75074;
}

.access__note {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.access__note-item {
    display: flex;
    align-items: center;
    gap: calc(var(--gap-unit)*1);
    font-size: var(--font-size16);
    font-family: var(--fontZ);
}

.access__map {
    display: flex;
    aspect-ratio: 2/1;
    overflow: hidden;
}

.access__map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .access__inner {
        gap: calc(var(--gap-unit)*3);
        padding: 4rem var(--margin) 0;
    }

    .access__content {
        flex-direction: column-reverse;
    }

    .access__img {
        width: 100%;
    }

    .access__note {
        flex-direction: row-reverse;
        justify-content: center;
        gap: calc(var(--gap-unit)*3);
    }

    .access__company {
        font-size: var(--font-size28);
    }
}

@media (max-width: 450px) {
    .access__inner {
        gap: calc(var(--gap-unit)*3);
        padding: 6rem 0 0;
    }

    .access__content {
        gap: calc(var(--gap-unit)*2);
        padding: 0 var(--margin);
    }

    .access__main {
        gap: calc(var(--gap-unit)*2);
    }

    .access__note {
        flex-direction: row-reverse;
        justify-content: center;
        gap: calc(var(--gap-unit)*3);
    }

    .access__company {
        font-size: var(--font-size22);
        line-height: 1;
    }

    .access__address {
        font-size: var(--font-size16);
    }

    .access__table th,
    .access__table td {
        font-size: var(--font-size14);
        padding: calc(var(--gap-unit)*.5) calc(var(--gap-unit)*1);
    }

    .access__note {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--gap-unit)*1) calc(var(--gap-unit)*3);
        width: fit-content;
        margin: 0 auto;
    }

    .access__note-item {
        font-size: var(--font-size14);
    }

    .access__map {
        aspect-ratio: 3/2;
    }
}









/* -----------section end---------- */
.end {
    position: relative;
}

.end__inner {
    position: relative;
}

.end__bg {
    display: flex;
    width: 100%;
}

.end__bg img {
    width: 100%;
}

.end__badge {
    position: absolute;
    top: 17rem;
    right: 8rem;
    display: flex;
    width: 66rem;
}

.end__badge img {
    width: 100%;
}

.end__main {
    position: absolute;
    bottom: 15rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--gap-unit)*5);
}

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






/* ------------footer style----------- */
.footer {
    position: relative;
    background-color: #1585B0;
    z-index: 1001;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap-unit)*1.5);
    padding: calc(var(--gap-unit)*3);
}

.footer__menu {
    display: flex;
    justify-content: center;
    gap: calc(var(--gap-unit)*3);
}

.footer__link {
    font-size: var(--font-size20);
    font-family: var(--fontY);
    font-weight: 500;
    color: var(--bg-white-color);
}

.footer__copy {
    font-size: var(--font-size16);
    font-family: var(--fontY);
    color: var(--bg-white-color);
    text-align: center;
}

@media (max-width: 768px) {
    .footer__inner {
        padding-top: calc(var(--gap-unit)*4);
        padding-bottom: calc(var(--gap-unit)*2);
    }

    .footer__link {
        font-size: var(--font-size16);
    }

    .footer__copy {
        font-size: var(--font-size14);
    }
}



/* ------------fixed footer style----------- */
.fixed-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

body:has(.banner) .fixed-footer {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body:has(.banner) .fixed-footer.is-shown {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fixed-footer:not(.is-ready) {
    transition: none;
}

.fixed-footer.is-hidden {
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.fixed-footer__bar {
    padding: calc(var(--gap-unit)*2.5) 0 calc(var(--gap-unit)*2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 18%, #FFFFFF 100%),
        linear-gradient(102.93deg, rgba(183, 223, 234, 0.35) 18.26%, rgba(108, 198, 236, 0.25) 59.34%);
}

.fixed-footer__inner {
    display: flex;
    justify-content: center;
    gap: calc(var(--gap-unit)*5);
}

.fixed-footer__btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(var(--gap-unit)*1.5);
    width: 100%;
    max-width: 38rem;
    min-height: 6.4rem;
    padding: calc(var(--gap-unit)*1.8) calc(var(--gap-unit)*3);
    font-family: var(--fontY);
    font-weight: 700;
    color: var(--bg-white-color);
    line-height: 1.25;
    text-align: center;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(16, 42, 56, 0.16);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
	isolation: isolate;
    background-clip: padding-box;
}

.fixed-footer__btn::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    pointer-events: none;
}
/*.fixed-footer__btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}*/
.fixed-footer__btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.28) 0%,
        rgba(255, 255, 255, 0.12) 38%,
        rgba(255, 255, 255, 0) 62%
    );
    pointer-events: none;
    z-index: 0;
}

.fixed-footer__btn > * {
    position: relative;
    z-index: 1;
}
.fixed-footer__btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 12px 28px rgba(16, 42, 56, 0.2);
}

.fixed-footer__btn--contact {
    background: linear-gradient(179.16deg, #C49F3A -11.08%, #EAD586 16.98%, #FFF3B0 23.72%, #E2C976 44.35%, #C6A13E 68.59%);
}

.fixed-footer__btn--phone {
    background: linear-gradient(135deg, #102A38 0%, #1585B0 45%, #46B4E2 100%);
}

.fixed-footer__btn-icon {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 2.8rem;
}

.fixed-footer__btn-icon svg {
    width: 100%;
}

.fixed-footer__btn--phone .fixed-footer__btn-icon {
    animation: trin 2.4s ease-in-out infinite;
}

.fixed-footer__btn--contact .fixed-footer__btn-icon {
    margin-bottom: 3px;
}

.fixed-footer__btn-label {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: var(--font-size20);
    letter-spacing: 0.02em;
}

.fixed-footer__btn-sub {
    font-size: var(--font-size14);
    font-weight: 600;
    opacity: 0.92;
}

.fixed-footer__btn-number {
    font-size: var(--font-size22);
    font-family: var(--fontTNM);
    font-weight: 700;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .fixed-footer__bar {
        padding: calc(var(--gap-unit)*2) 0 calc(var(--gap-unit)*1.5);
    }

    .fixed-footer__inner {
        gap: calc(var(--gap-unit)*1.5);
    }
    
    .fixed-footer__btn {
        flex: 1;
        min-height: 4rem;
        max-width: none;
        gap: var(--gap-unit);
        padding: calc(var(--gap-unit)*1.2) calc(var(--gap-unit)*1.5);
    }

    .fixed-footer__btn-icon {
        width: 1.5rem;
    }

    .fixed-footer__btn-label {
        font-size: var(--font-size13);
    }

    .fixed-footer__btn-sub {
        font-size: var(--font-size11);
    }

    .fixed-footer__btn-number {
        font-size: var(--font-size16);
    }
}

@media (max-width: 450px) {
    .fixed-footer__bar {
        padding: calc(var(--gap-unit)*2.5) 0 calc(var(--gap-unit)*2);
    }
    
    .fixed-footer__inner {
        padding: 0 1rem;
    }

    .fixed-footer__btn-sub {
        font-size: 1rem;
    }

    .fixed-footer__btn-label {
        font-size: 1.3rem;
    }
}
@media (min-width: 768px) {
	.fixed-footer{display:none;}}