@charset "UTF-8";
/* ----------Font Family Noto Sans Jp------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap');

/*#region var*/
:root {
    --pxunit: .83rem;
    --fontB: 'Noto Sans JP', sans-serif;
    /* Base font */
    --fontP: 'Poppins', serif;
    /* Title font */
    --fontM: 'Montserrat';
    --headerH: 10rem;
    --bg-white-color: #FFFFFF;
    --bg-black-color: #333333;
    --bg-font-color: #000000;
    --bg-lightblue-color: #ECF5FD;
    --bg-grey-color: #EFEFEF;
    --bg-blue-color: #4596E6;
    --bg-red-color: #EF4444;
    --bg-border-color: #CCCCCC;
}

* {
    box-sizing: border-box;
    color: var(--bg-font-color);
    font-family: var(--fontB);
    font-weight: 400;
    line-height: 1.6;
}

html {
    font-size: .625vw;
}

body {
    margin: 0;
    padding: 0;
    overflow-y: auto;
}

.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);
}

.hx30 {
    content: "";
    height: calc(var(--pxunit)*30);
}

/*#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;
}

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

img {
    border: 0px;
}

.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 1s;
    transition-delay: 1s;
}

.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.initani_wb::before {
    background-color: #fff;
}

.initani.initani_wb::after {
    background-color: var(--bg-blue-color);
}

.initani.initani_wbk::before {
    background-color: var(--bg-grey-color);
}

.initani.initani_wbk::after {
    background-color: var(--bg-grey-color);
}

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

.initani.initani_wy::after {
    background-color: var(--bg-blue-color);
}

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

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

.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.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.8s 0.5s 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.8s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.8s 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;
}

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

.disb_sp {
    display: none !important;
}

.disb_pc {
    display: block !important;
}

/*#endregion COMMON*/

/*#region HEADER*/

header {
    margin: 0;
    padding: 0 3.5rem;
    width: 100%;
    position: fixed;
    top: 0;
    height: var(--headerH);
    z-index: 111;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    background-color: transparent;
    border-bottom: 1px solid var(--bg-border-color);
}

.header_set {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_logo {
    display: flex;
    width: 14rem;
}

.header_logo img {
    width: 100%;
}

.header_menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

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

.headmenu_a {
    position: relative;
    padding: 0 1.7rem;
    height: var(--headerH);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .1s;
    cursor: pointer;
}

.headmenu_shape {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.headmenu_uline {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: "";
    height: 1px;
    background-color: var(--bg-black-color);
    width: 0;
    transition: all .3s;
}

.headmenu_a:hover .headmenu_uline {
    width: 100%;
}

.headmenu_a .headmenu_shape .headmenu_cap {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3B4147;
}

.headmenu_a:last-child {
    padding-right: 0;
}

.headmenu_a:last-child .headmenu_shape .headmenu_cap {
    background-color: var(--bg-blue-color);
    padding: .9rem 2rem;
    border-radius: .4rem;
    border: 1px solid var(--bg-blue-color);
    color: var(--bg-white-color);
}

.headmenu_a:last-child:hover .headmenu_shape .headmenu_cap {
    background-color: transparent;
    color: var(--bg-blue-color);
    transition: all .5s;
}

.hamburger_set {
    display: none;
    min-height: 36px;
    line-height: 34px;
    text-align: center;
    font-size: 10px;
    position: relative;
    z-index: 130;
}

.hamburger_btn {
    margin: 0;
    vertical-align: middle;
    display: inline-block;
    padding: 0px;
    width: 32px;
    height: 15px;
    cursor: pointer;
    -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;
}

.hamburger_btn span {
    background: var(--bg-black-color);
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 0px;
    margin: 0px 1px 4px 1px;
    -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;
}

.hamburger_btn span:last-child {
    margin-bottom: 0px;
}

.hamburger_btn span:nth-child(2) {
    width: 23px;
}

.hamburger_btn span:nth-child(3) {
    width: 15px;
}

.hamburger_btn.pst_open span:nth-child(1),
.hamburger_btn.pst_open span:nth-child(3) {
    transform: translate(0px, 7px) rotate(-45deg) scalex(1);
    margin-bottom: 0px;
}

.hamburger_btn.pst_open span:nth-child(2) {
    height: 0;
    margin-bottom: 0px;
    width: 0px;
}

.hamburger_btn.pst_open span:nth-child(3) {
    transform: translate(0px, 5px) rotate(45deg) scalex(1);
    width: 30px;
}

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

.pst_blackheader {
    background-color: #ffffff5d;
    -webkit-backdrop-filter: blur(.3125rem);
    backdrop-filter: blur(.3125rem);
}

.headmenu_a .dropdown_menu {
    position: absolute;
    top: calc(var(--headerH));
    min-width: 25rem;
    box-shadow: 0px 2px 10px 0px #00000033;
    border-radius: 0 0 10px 10px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: all .3s;
    left: 0;
}

.headmenu_a:hover .dropdown_menu {
    opacity: 1;
    pointer-events: auto;
}

.headmenu_a .dropdown_menu a {
    display: block;
    padding: 15px 20px;
    font-size: 1.5rem;
    font-weight: 700;
    background-color: #ffffff5d;
    gap: 25px;
}

.headmenu_a .dropdown_menu a:hover {
    background-color: #00000033;
}

.headmenu_a.show_item {
    display: none;
}

/*#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;
}

.sp_break {
    display: none !important;
}

.tb_break {
    display: none !important;
}

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

    .tb_break {
        display: block !important;
    }
}

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

    .sp_break {
        display: block !important;
    }
}

/* -----theme block start------- */
.contain {
    padding-top: var(--headerH);
}

.container {
    width: auto;
    padding: 0 16rem;
}

.l-inner,
.m-inner,
.s-inner {
    display: flex;
    flex-direction: column;
}

.l-inner {
    gap: 6.6rem;
}

.m-inner {
    gap: 5rem;
}

.s-inner {
    gap: 4rem;
}

@media (max-width: 991px) {
    .container {
        padding: 0 10rem;
    }
}

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

    .l-inner {
        gap: 3.3rem;
    }

    .m-inner {
        gap: 2.3rem;
    }

    .s-inner {
        gap: 2rem;
    }
}

@media (max-width: 450px) {
    .container {
        padding: 0 15px;
    }

    .l-inner {
        gap: 45px;
    }

    .m-inner {
        gap: 35px;
    }

    .s-inner {
        gap: 25px;
    }
}

.pg_header-inner {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.pg_ttl {
    width: fit-content;
    display: flex;
    flex-direction: column;
    padding: 2rem 7rem;
    gap: 1rem;
}

.pg_ttl h5 {
    font-size: 1.7rem;
    font-weight: 700;
    width: fit-content;
    color: #3B4147;
}

.pg_ttl h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #3B4147;
    line-height: 1.5;
    width: fit-content;
}

.pg_img {
    width: 100%;
    line-height: 0;
}

.pg_img img {
    width: 100%;
}

.bread_list {
    padding: 2rem 0;
}

.bread_list ul {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bread_link {
    font-size: 1.5rem;
    color: #3B4147;
}

.bread_list li {
    line-height: 1;
}

.bread_list li:first-child .bread_link {
    color: #113966;
}

.bread_list span {
    display: inline-block;
    width: 1.5rem;
    line-height: 0;
}

.bread_list svg {
    width: 100%;
}

@media (max-width: 991px) {

    .pg_ttl,
    .bread_list {
        padding-block: 20px;
    }
}

@media (max-width: 768px) {
    .pg_ttl {
        padding-inline: 2.5rem;
        gap: .5rem;
    }

    .pg_ttl h5 {
        font-size: .8rem;
    }

    .pg_ttl h2 {
        font-size: 1.6rem;
    }

    .bread_list ul {
        gap: .5rem;
    }

    .bread_link {
        font-size: .7rem;
    }

    .bread_list span {
        width: .8rem;
    }
}

@media (max-width: 450px) {
    .pg_ttl {
        padding-inline: 15px;
        gap: 5px;
    }

    .pg_ttl h5 {
        font-size: 13px;
    }

    .pg_ttl h2 {
        font-size: 24px;
    }

    .bread_list {
        padding-block: 15px;
    }

    .bread_list ul {
        gap: 5px;
    }

    .bread_link {
        font-size: 11px;
    }

    .bread_list span {
        width: 12px;
    }
}

.block_ttl {
    text-align: center;
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
}

.block_ttl h2 {
    font-size: 4rem;
    line-height: 1.5;
}

.block_ttl h5 {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .block_ttl h2 {
        font-size: 1.8rem;
    }

    .block_ttl h5 {
        font-size: .9rem;
    }
}

@media (max-width: 450px) {
    .block_ttl h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .block_ttl h5 {
        font-size: 14px;
    }
}

.animated_img {
    position: relative;
    overflow: hidden;
}

.animated_img:hover::before,
.animated_img:hover::after {
    translate: 0% 0%;
}

.animated_img::before {
    background: rgba(255, 255, 255, .3);
    content: "";
    height: 100%;
    right: 0;
    position: absolute;
    top: 0;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
    width: 101%;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
    top: 0;
    translate: 100% -100%;
    z-index: 99;
}

.animated_img::after {
    background: rgba(255, 255, 255, .3);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
    width: 101%;
    bottom: 0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    right: 0;
    translate: -100% 100%;
    z-index: 99;
}

.rich-fade {
    -webkit-mask: url(../img/mask.webp);
    mask: url(../img/mask.webp);
    -webkit-mask-size: 500% 100%;
    mask-size: 500% 100%;
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
}

.rich-fade.on {
    animation: richFade 7s cubic-bezier(0.1, 1, 0.25, 1) .6s forwards;
}

@keyframes richFade {
    0% {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }

    100% {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }
}

.fade_y.on {
    opacity: 1;
    transform: translateY(0);
}

.fade_y {
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s;
}

[data-inview] {
    mask-image: linear-gradient(270deg, transparent 35%, #000 60%, #000);
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
    -webkit-mask-size: 250% 100%;
    mask-size: 250% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0
}

[data-inview].inview,
[data-inview] * {
    transition: opacity 2.5s, -webkit-mask-position 2.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 2.5s, mask-position 2.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 2.5s, mask-position 2.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-mask-position 2.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    opacity: 1;
}

.special_col {
    position: relative;
    z-index: 10;
}

.special_img_wrap {
    transition: transform .4s ease-in;
    transition-delay: .3s;
    transform: translateX(100%);
    position: relative;
}

.special_col.js_tgt.on .special_img_wrap {
    transform: translateX(0);
}

.special_img_div {
    position: relative;
    overflow: hidden;
}

.special_img_div img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
}

.special_img_cover {
    width: 150%;
    height: 100%;
    background: #4596E6;
    position: absolute;
    top: 0;
    left: -25%;
    z-index: 2;
    transition: transform .8s ease-out;
    transition-delay: .7s;
    transform: translateX(0) skewX(-35deg);
    z-index: 20;
}

.special_col.js_tgt.on .special_img_cover {
    transform: translateX(100%) skewX(-35deg);
}

.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;
}

/* -----theme block end------- */

/* -------------page home style------------- */
.top_contain {
    padding: 0;
}

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
}

.banner_img {
    width: 100%;
    height: 100%;
    line-height: 0;
}

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.banner_txt {
    position: absolute;
    top: calc(var(--headerH) + 12rem);
    right: 25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.3rem;
    background-color: var(--bg-white-color);
    animation: btnanimation 2s linear 3s infinite alternate;
}

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

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.banner_txt h2 {
    text-align: center;
    font-size: 6rem;
    font-weight: bold;
    color: var(--bg-blue-color);
    line-height: 1;
}

.banner_txt h2 span {
    font-size: 2rem;
    font-weight: bold;
    color: var(--bg-blue-color);
    line-height: 1;
}

.banner_txt>div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.banner_mark {
    margin: 0 auto;
    width: 33.33rem;
    display: flex;
}

.banner_mark img {
    width: 100%;
}

.banner_txt h4 {
    font-size: 2.7rem;
    font-weight: bold;
    padding: 1rem 4rem;
    background-color: var(--bg-blue-color);
    color: var(--bg-white-color);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .banner_txt {
        top: unset;
        bottom: 1rem;
        right: 1rem;
        gap: 1.5rem;
    }

    .banner_txt h2 {
        font-size: 2.8rem;
    }

    .banner_txt h2 span {
        font-size: .9rem;
    }

    .banner_txt>div {
        gap: 1rem;
    }

    .banner_mark {
        width: 12rem;
    }

    .banner_txt h4 {
        font-size: 1.1rem;
        padding: .6rem 1.8rem;
    }
}

@media (max-width: 450px) {
    .banner_txt {
        bottom: 20px;
        top: unset;
        right: 15px;
        gap: 25px;
    }

    .banner_txt h2 {
        font-size: 3rem;
    }

    .banner_txt h2 span {
        font-size: 1.1rem;
    }

    .banner_txt>div {
        gap: 15px;
    }

    .banner_mark {
        width: 16rem;
    }

    .banner_txt h4 {
        font-size: 1.4rem;
        padding: .6rem 1.8rem;
    }
}

.sec_ttl,
.sec_ttl h2,
.sec_ttl h5 {
    width: fit-content;
    margin: 0 auto;
}

.sec_ttl h5 {
    font-size: 2rem;
    font-weight: bold;
    color: #3B4147;
}

.sec_ttl h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #3B4147;
    line-height: 1.5;
}

.sec_ttl h2 span {
    font-weight: bold;
    color: var(--bg-blue-color);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .sec_ttl h5 {
        font-size: .9rem;
    }

    .sec_ttl h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 450px) {
    .sec_ttl h5 {
        font-size: 14px;
    }

    .sec_ttl h2 {
        font-size: 24px;
    }
}

.representor_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.representor_top .representor_mark {
    display: flex;
    width: 27rem;
}

.representor_mark img {
    width: 100%;
}

.representor_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5rem 2%;
}

.representor_item {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    width: 32%;
    padding: 1.7rem;
    border: 2px solid var(--bg-blue-color);
    border-radius: 1rem;
    overflow: hidden;
}

.representor_img {
    display: flex;
    width: 100%;
    border-radius: .4rem;
    overflow: hidden;
}

.representor_img img {
    width: 100%;
}

.representor_item h5 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--bg-blue-color);
}

.representor_item p {
    font-size: 1.5rem;
    color: #3B4147;
}

@media (max-width: 768px) {
    .representor_top h2 {
        font-size: 1.6rem;
    }

    .representor_top .representor_mark {
        width: 9rem;
    }

    .representor_content {
        gap: 2rem 2%;
    }

    .representor_item {
        gap: .6rem;
        padding: .6rem;
    }

    .representor_item h5 {
        font-size: 1rem;
    }

    .representor_item p {
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    .representor_top {
        flex-wrap: wrap;
        gap: 10px;
    }

    .representor_top .sec_ttl {
        width: 100%;
        order: 0;
    }

    .representor_top h2 {
        font-size: 24px;
    }

    .representor_top .representor_mark {
        width: 40%;
        order: 1;
    }

    .representor_content {
        gap: 20px;
    }

    .representor_item {
        width: 100%;
        gap: 10px;
        padding: 10px;
    }

    .representor_item h5 {
        font-size: 16px;
    }

    .representor_item p {
        font-size: 13px;
    }
}


.gallery_txt {
    text-align: center;
    font-size: 1.6rem;
    color: #3B4147;
}

.gallery_slider {
    width: 100%;
}

.gallery_slider .swiper-wrapper {
    transition-timing-function: linear;
}

.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
}

@media (max-width: 768px) {
    .gallery_txt {
        font-size: .8rem;
    }

    .gallery_item img {
        border-radius: 8px;
    }
}

@media (max-width: 450px) {
    .gallery_txt {
        font-size: 15px;
    }
}

.concept_inner {
    position: relative;
    padding: 22rem 0;
    align-items: center;
    justify-content: center;
}

.concept_content {
    position: relative;
    z-index: 10;
}

.concept_txt {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2;
    color: #3B4147;
}

.concept_map {
    position: absolute;
    width: 57rem;
    height: 43rem;
    display: flex;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.concept_map img {
    width: 100%;
    height: 100%;
}

.concept_img {
    position: absolute;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    z-index: -1;
}

.concept_img img {
    width: 100%;
    height: 100%;
}

.concept_img01 {
    width: 40rem;
    height: 40rem;
    top: 7rem;
    left: 0;
}

.concept_img02 {
    width: 19rem;
    height: 19rem;
    top: 37rem;
    left: 3.5rem;
}

.concept_img03 {
    width: 24rem;
    height: 24rem;
    bottom: 7.5rem;
    left: 25rem;
}

.concept_img04 {
    width: 19rem;
    height: 19rem;
    top: 11.5rem;
    right: 16rem;
}

.concept_img05 {
    width: 36rem;
    height: 36rem;
    bottom: 1rem;
    right: 1rem;
}

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

    .concept_txt {
        font-size: .8rem;
    }

    .concept_map {
        width: 30rem;
        height: 20rem;
    }

    .concept_img01 {
        top: 0;
        width: 13rem;
        height: 13rem;
    }

    .concept_img02 {
        top: 10rem;
        left: 1.5rem;
        width: 6rem;
        height: 6rem;
    }

    .concept_img04 {
        top: 4rem;
        right: 5rem;
        width: 6rem;
        height: 6rem;
    }

    .concept_img03 {
        width: 8rem;
        height: 8rem;
        bottom: 2.5rem;
        left: 3rem;
    }

    .concept_img05 {
        right: .5rem;
        bottom: 0;
        width: 12rem;
        height: 12rem;
    }
}

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

    .concept_txt {
        font-size: 14px;
        mix-blend-mode: difference;
    }

    .concept_map {
        top: 50%;
        width: 90%;
        height: 33rem;
        transform: translate(-50%, -50%);
    }

    .concept_img01 {
        top: 0;
        width: 15rem;
        height: 15rem;
    }

    .concept_img02 {
        top: 10rem;
        left: 2rem;
        width: 8rem;
        height: 8rem;
    }

    .concept_img04 {
        top: 4rem;
        right: 1rem;
        width: 10rem;
        height: 10rem;
    }

    .concept_img03 {
        width: 10rem;
        height: 10rem;
        bottom: 5rem;
        left: 2rem;
    }

    .concept_img05 {
        right: .5rem;
        bottom: 0;
        width: 15rem;
        height: 15rem;
    }
}

.review_hd {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

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

.review_hd h5 {
    font-size: 2rem;
    color: #3B4147;
    padding: 0 1.7rem;
    border-radius: 999px;
    border: 2px solid var(--bg-blue-color);
}

.review_hd .shape_ttl>span {
    text-align: center;
    display: inline-block;
    height: 1.5rem;
    width: 2px;
    background-color: var(--bg-blue-color);
}

.review_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5rem 3.4rem;
}

.review_item {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    width: calc(50% - 1.7rem);
    border: 1px solid var(--bg-border-color);
    border-radius: 1rem;
    overflow: hidden;
}

.review_img {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 1px;
}

.review_item img {
    width: calc(50% - .5px);
}

.review_txt {
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review_cat {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.review_cat span {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--bg-white-color);
    padding: .3rem .5rem;
    background-color: var(--bg-blue-color);
}

.review_txt h5 {
    font-size: 2rem;
    color: #3B4147;
}

.review_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review_name {
    font-size: 1.8rem;
    color: #3B4147;
}

.review_info div {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.review_date {
    font-size: 1.3rem;
    color: #3B4147;
}

.review_level {
    font-size: 2rem;
    color: #F59E0B;
}

.review_txt>p {
    font-size: 1.3rem;
    color: #3B4147;
}

@media (max-width: 768px) {
    .review_hd h5 {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .review_hd .shape_ttl>span {
        height: 1rem;
    }

    .review_content {
        gap: 2rem 1rem;
    }

    .review_item {
        gap: .8rem;
        width: calc(50% - .5rem);
        border-radius: .4rem;
    }

    .review_txt {
        padding: .6rem;
        gap: .5rem;
    }

    .review_txt h5 {
        font-size: 1rem;
    }

    .review_name {
        font-size: .9rem;
    }

    .review_info div {
        gap: .8rem;
    }

    .review_date {
        font-size: .6rem;
    }

    .review_level {
        font-size: 1rem;
    }

    .review_cat {
        gap: .3rem .6rem;
    }

    .review_cat span {
        font-size: .6rem;
        padding: .1rem .2rem;
    }

    .review_txt>p {
        font-size: .7rem;
    }
}

@media (max-width: 450px) {
    .review_hd h5 {
        font-size: 13px;
        padding: 0 8px;
    }

    .review_hd .shape_ttl>span {
        height: 15px;
    }

    .review_content {
        gap: 20px;
        flex-direction: column;
    }

    .review_item {
        gap: 10px;
        width: 100%;
        border-radius: 8px;
    }

    .review_txt {
        padding: 20px 10px;
        padding-top: 10px;
        gap: 5px;
    }

    .review_txt h5 {
        font-size: 18px;
    }

    .review_name {
        font-size: 16px;
    }

    .review_info div {
        gap: 10px;
    }

    .review_date {
        font-size: 12px;
    }

    .review_level {
        font-size: 20px;
    }

    .review_cat {
        gap: 5px;
    }

    .review_cat span {
        font-size: 11px;
        padding: 1px 5px;
    }

    .review_txt>p {
        font-size: 13px;
    }
}


.evercare_des {
    text-align: center;
    font-size: 1.5rem;
    color: #3B4147;
}

.evercare_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3.33rem;
}

.evercare_item {
    width: calc(calc(100% - 10rem)/4);
    display: flex;
    gap: 1.4rem;
    border-radius: .4rem;
    border: 2px solid var(--bg-blue-color);
}

.evercare_img {
    display: flex;
    width: 10rem;
    height: 100%;
}

.evercare_img img {
    width: 100%;
    height: 100%;
}

.evercare_txt {
    flex: 1;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding-right: .3rem;
}

.evercare_txt h5 {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--bg-blue-color);
}

.evercare_txt p {
    font-size: 1.3rem;
    color: #3B4147;
}

@media (max-width: 768px) {
    .evercare_content {
        gap: 1rem;
    }

    .evercare_des {
        font-size: .8rem;
    }

    .evercare_item {
        width: calc(calc(100% - 2rem)/2);
        gap: .5rem;
    }

    .evercare_img {
        width: 5rem;
    }

    .evercare_txt {
        gap: .5rem;
        padding: .5rem 0;
    }

    .evercare_txt h5 {
        font-size: .9rem;
    }

    .evercare_txt p {
        font-size: .7rem;
    }
}

@media (max-width: 450px) {
    .evercare_content {
        gap: 10px;
    }

    .evercare_des {
        font-size: 15px;
    }

    .evercare_item {
        width: 100%;
        gap: 5px;
    }

    .evercare_img {
        width: 30%;
    }

    .evercare_txt {
        gap: 5px;
        padding: 10px;
    }

    .evercare_txt h5 {
        font-size: 15px;
    }

    .evercare_txt p {
        font-size: 13px;
    }
}

.sec_contact {
    position: relative;
}

.sec_contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/contact_bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact_inner {
    position: relative;
    margin-left: auto;
    width: 43%;
    padding: 6.6rem 0;
    z-index: 10;
}

.contact_form {
    padding: 3.33rem;
    background-color: var(--bg-white-color);
    border-radius: 1rem;
}

.contact_form form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.form_field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.two_field {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.field_cap {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: #3B4147;
}

.field_control {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

input[type=text],
input[type=email],
textarea,
select {
    width: 100%;
    font-size: 1.5rem;
    color: #565656;
    padding: .7rem 1.2rem;
    border: 1px solid #F7F7F7;
    border-radius: .3rem;
    background-color: #F7F7F7;
    outline: none;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus,
select:focus {
    border-color: var(--bg-blue-color);
}

input::placeholder,
select::placeholder,
textarea::placeholder {
    color: #D6D6D6;
}

.field_control textarea {
    height: 7.5rem;
    outline: none;
}

.field_contactbtn {
    text-align: center;
}

.field_contactbtn input {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 2rem 0;
    width: 100%;
    background-color: var(--bg-blue-color);
    border: 1px solid var(--bg-blue-color);
    color: var(--bg-white-color);
    border-radius: .4rem;
    cursor: pointer;
    transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.field_contactbtn input:hover {
    color: var(--bg-blue-color);
    background-color: transparent;
}

@media (max-width: 768px) {
    .contact_inner {
        width: 100%;
        padding: 3rem 0;
    }

    .contact_form {
        border-radius: .6rem;
        padding: 2rem;
    }

    .contact_form form {
        gap: 1rem;
    }

    .form_field {
        gap: .3rem;
    }

    .field_cap {
        font-size: .8rem;
    }

    input[type=text],
    input[type=email],
    textarea,
    select {
        font-size: .8rem;
        padding: .4rem .7rem;
        border-radius: 3px;
    }

    .field_control textarea {
        height: 5rem;
    }

    .field_contactbtn input {
        font-size: .9rem;
        padding: 1rem 0;
    }
}

@media (max-width: 450px) {
    .contact_inner {
        width: 100%;
        padding: 50px 0;
        padding-bottom: 80px;
    }

    .contact_form {
        border-radius: .6rem;
        padding: 30px 15px;
    }

    .contact_form form {
        gap: 10px;
    }

    .form_field {
        gap: 4px;
    }

    .two_field {
        gap: 10px;
    }

    .field_cap {
        font-size: 13px;
    }

    input[type=text],
    input[type=email],
    textarea,
    select {
        font-size: 14px;
        padding: 8px 10px;
        border-radius: 3px;
    }

    .field_control textarea {
        height: 80px;
    }

    .field_contactbtn input {
        font-size: 15px;
        padding: 13px 0;
        margin-top: 10px;
    }
}



/* -------------page company style------------- */
.company_profile .block_ttl h2 {
    color: #3B4147;
}
.profile_table {
    display: flex;
    flex-direction: column;
}
.profile_table .row {
    display: flex;
    align-items: center;
    padding: 2.5rem 1rem;
    border-bottom: 1px solid var(--bg-border-color);
}
.profile_table .row:first-child {
    border-top: 1px solid var(--bg-border-color);
}
.profile_table span {
    font-size: 1.5rem;
    color: #3B4147;
}
.profile_table span:first-child {
    width: 27rem;
}
.profile_table span:last-child {
    flex: 1;
}
@media (max-width: 768px) {
    .profile_table .row {
        padding: 1.2rem .6rem;
    }
    .profile_table span {
        font-size: .8rem;
    }
    .profile_table span:first-child {
        width: 10rem;
    }
}
@media (max-width: 450px) {
    .profile_table .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 15px 5px;
    }
    .profile_table span {
        font-size: 14px;
    }
    .profile_table span:first-child {
        width: 100%;
        font-weight: bold;
    }
}





/* -------------page foolCare style------------- */
.checklist_inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checklist_content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
}

.checklist_txt {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.checklist_txt p {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    line-height: 1.2;
}

.checklist_txt svg {
    width: 1.5rem;
    line-height: 1;
}

.checklist_img {
    width: 29rem;
    line-height: 0;
}

.checklist_img img {
    width: 100%;
}

@media (max-width: 768px) {
    .checklist_inner {
        gap: 1.5rem;
    }

    .checklist_content {
        justify-content: space-between;
        gap: unset;
    }

    .checklist_img {
        width: 12rem;
    }

    .checklist_txt {
        width: fit-content;
        gap: 1.3rem;
        flex: 1;
    }

    .checklist_txt p {
        gap: .5rem;
        font-size: .8rem;
    }

    .checklist_txt svg {
        width: .8rem;
    }
}

@media (max-width: 450px) {
    .checklist_inner {
        gap: 30px;
    }

    .checklist_content {
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .checklist_img {
        width: 45%;
        margin: 0 auto;
    }

    .checklist_txt {
        width: 100%;
        gap: 15px;
        flex: 1;
    }

    .checklist_txt p {
        gap: 6px;
        font-size: 14px;
    }

    .checklist_txt svg {
        width: 14px;
    }
}


.solution_inner>p {
    text-align: center;
    font-size: 1.7rem;
    line-height: 1.2;
}

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

.solution_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    width: 17rem;
    padding: 2rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--bg-blue-color);
}

.solution_item span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 2rem;
    font-family: var(--fontP);
    font-weight: bold;
    color: var(--bg-white-color);
    line-height: 1;
    background-color: var(--bg-blue-color);
    border-radius: 50%;
}

.solution_item p {
    text-align: center;
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--bg-blue-color);
    line-height: 1.5;
}

.solution_content .arrow {
    width: 1.5rem;
    margin: auto 0;
}

.solution_content .arrow:last-child {
    display: none;
}

@media (max-width: 768px) {
    .solution_inner>p {
        font-size: .8rem;
        line-height: 1.6;
    }

    .solution_content {
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 1rem;
    }

    .solution_item {
        padding: 1.5rem .5rem;
        width: 10rem;
        gap: 1rem;
    }

    .solution_item span {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .solution_item p {
        font-size: .8rem;
    }

    .solution_content .arrow {
        width: .8rem;
    }

    .solution_content .arrow:last-child {
        display: block;
        opacity: 0;
    }
}

@media (max-width: 450px) {
    .solution_inner>p {
        font-size: 14px;
    }

    .solution_content {
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .solution_item {
        padding: 15px 10px;
        width: 43%;
        gap: 15px;
    }

    .solution_item span {
        width: 3.3rem;
        height: 3.3rem;
        font-size: 1.6rem;
    }

    .solution_item p {
        font-size: 1.3rem;
    }

    .solution_content .arrow {
        width: 1.2rem;
    }
}

.reason_content {
    display: flex;
    justify-content: space-between;
    gap: 3.3rem;
}

.reason_item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reason_order {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 10;
}

.reason_order span:first-child {
    position: relative;
    display: inline-block;
    font-size: 1.7rem;
    font-family: var(--fontM);
    padding: .3rem 1rem;
    color: var(--bg-blue-color);
    line-height: 1;
    background-color: #FDF2F8;
    text-transform: uppercase;
}

.reason_order span:last-child {
    font-size: 7rem;
    font-family: var(--fontM);
    color: var(--bg-blue-color);
    line-height: 1;
    margin-left: -2.5rem;
}

.reason_img {
    display: flex;
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.reason_img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
}

.reason_txt {
    padding: 0 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
}

.reason_txt h4 {
    text-align: center;
    font-size: 2.7rem;
    font-weight: bold;
    color: var(--bg-black-color);
}

.reason_txt p {
    text-align: center;
    font-size: 1.6rem;
}

.reason_btm {
    display: flex;
    justify-content: space-between;
    gap: 3.5rem;
}

.reason_btm-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    border: 2px solid var(--bg-blue-color);
    overflow: hidden;
}

.reason_btm-img,
.reason_btm-img img {
    display: flex;
    width: 100%;
}

.reason_btm-txt {
    padding: 2rem;
}

.reason_btm-txt h5 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--bg-blue-color);
}

.reason_btm-txt p {
    font-size: 1.5rem;
    color: #3B4147;
}

@media (max-width: 768px) {
    .reason_content {
        display: flex;
        gap: .8rem;
    }

    .reason_order {
        top: -1rem;
        left: -.5rem;
    }

    .reason_order span:first-child {
        font-size: .8rem;
        padding: 2px 8px;
    }

    .reason_order span:last-child {
        font-size: 2.5rem;
        margin-left: -1rem;
    }

    .reason_item {
        gap: .5rem;
    }

    .reason_txt {
        padding: 0;
        gap: .8rem;
    }

    .reason_txt h4 {
        font-size: .9rem;
    }

    .reason_txt p {
        font-size: .8rem;
    }

    .reason_btm {
        gap: 1rem;
    }

    .reason_btm-item {
        border-radius: .6rem;
    }

    .reason_btm-txt {
        padding: .6rem;
    }

    .reason_btm-txt h5 {
        font-size: 1rem;
    }

    .reason_btm-txt p {
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    .reason_content {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .reason_order {
        top: -10px;
        left: -10px;
    }

    .reason_order span:first-child {
        font-size: 13px;
        padding: 2px 7px;
    }

    .reason_order span:last-child {
        font-size: 42px;
        margin-left: -10px;
    }

    .reason_item {
        flex: none;
        width: calc(50% - 5px);
        gap: 8px;
    }

    .reason_txt {
        padding: 0;
        gap: .8rem;
    }

    .reason_txt h4 {
        font-size: 14px;
    }

    .reason_txt p {
        font-size: 13px;
    }

    .reason_btm {
        gap: 10px;
        flex-direction: column;
    }

    .reason_btm-item {
        border-radius: 10px;
    }

    .reason_btm-txt {
        padding: 15px 10px;
    }

    .reason_btm-txt h5 {
        font-size: 16px;
    }

    .reason_btm-txt p {
        font-size: 14px;
    }
}

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

.table_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.7rem 0;
    margin: 0;
    border-bottom: 1px solid var(--bg-border-color);
}

.table_row:first-child {
    border-top: 1px solid var(--bg-border-color);
}

.table_row dt,
.table_row dd {
    width: fit-content;
    font-size: 1.6rem;
    color: #3B4147;
    margin: 0;
}

.table_row dt span {
    font-size: 1.3rem;
    color: #3B4147;
}

.table_row dd span {
    color: var(--bg-blue-color);
}

.table_row dt.flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.table_row select,
.table_row option {
    width: 26rem;
    padding: 1rem;
    border: 1px solid var(--bg-border-color);
    color: #3B4147;
}

.table_row select:focus {
    outline-color: var(--bg-blue-color);
}

@media (max-width: 768px) {
    .table_row:first-child {
        padding: .8rem 0;
    }

    .table_row dt,
    .table_row dd {
        font-size: .8rem;
    }

    .table_row dt span {
        font-size: .7rem;
    }

    .table_row select {
        width: 12rem;
        padding: .6rem;
    }

    .table_row dt.flex {
        gap: .5rem;
    }
}

@media (max-width: 450px) {
    .table_row {
        padding: 12px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .table_row dt,
    .table_row dd {
        font-size: 14px;
        width: 100%;
    }

    .table_row dt {
        font-weight: bold;
    }

    .table_row dt span {
        font-size: 13px;
        font-weight: bold;
    }

    .table_row {
        width: 100%;
    }

    .table_row select {
        width: 70%;
        padding: 8px 10px;
    }

    .table_row dt.flex {
        gap: 5px;
    }
}


.inquiry_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.33rem;
    padding: 5rem 0;
    border-radius: 1rem;
    background-color: var(--bg-blue-color);
}

.inquiry_inner h4 {
    width: fit-content;
    font-size: 2.7rem;
    font-weight: bold;
    color: var(--bg-white-color);
    line-height: 1.5;
    margin: 0 auto;
}

.inquiry_inner p {
    font-size: 1.5rem;
    width: fit-content;
    margin: 0 auto;
    color: var(--bg-white-color);
}

.inquiry_btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
}

.inquiry_btns a {
    display: flex;
    align-items: center;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
}

.phone_btn {
    gap: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 999px;
}

.phone_btn svg {
    width: 2.7rem;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
}

.phone_btn span {
    white-space: nowrap;
    font-size: 3.5rem;
    font-family: var(--fontP);
    color: var(--bg-white-color);
    line-height: 1;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
}

.phone_btn:hover {
    background-color: var(--bg-white-color);
}

.phone_btn:hover span {
    color: var(--bg-blue-color);
}

.phone_btn:hover svg path {
    fill: var(--bg-blue-color);
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
}

.booking_btn {
    position: relative;
    width: 25rem;
    height: 5.5rem;
    background-color: var(--bg-white-color);
    border: 1px solid var(--bg-white-color);
    border-radius: 9999px;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
}

.booking_btn div {
    position: absolute;
    left: 2rem;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
}

.booking_btn span {
    font-size: 1.6rem;
    line-height: 1;
    white-space: nowrap;
    color: var(--bg-blue-color);
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
}

.booking_btn svg:first-child {
    width: 2rem;
    height: fit-content;
    line-height: 1;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
}

.booking_btn>svg {
    position: absolute;
    width: 1.5rem;
    right: 2rem;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
}

.booking_btn:hover {
    background-color: transparent;
}

.booking_btn:hover div {
    left: 50%;
    transform: translateX(-50%);
}

.booking_btn:hover span {
    color: var(--bg-white-color);
}

.booking_btn:hover svg path {
    fill: var(--bg-white-color);
}

.booking_btn:hover>svg {
    scale: 0;
}

@media (max-width: 768px) {
    .inquiry_inner {
        padding: 2.5rem 0;
        gap: 1.6rem;
    }

    .inquiry_inner h4 {
        font-size: 1.2rem;
    }

    .inquiry_inner p {
        font-size: .8rem;
    }

    .inquiry_btns {
        gap: 1rem;
    }

    .phone_btn {
        padding: .6rem 1.2rem;
        gap: .8rem;
    }

    .phone_btn span {
        font-size: 1.5rem;
    }

    .phone_btn svg {
        width: 1.3rem;
    }

    .booking_btn {
        height: 3rem;
        width: 13rem;
    }

    .booking_btn div {
        gap: .5rem;
        left: 1rem;
    }

    .booking_btn svg:first-child {
        width: 1rem;
    }

    .booking_btn span {
        font-size: .8rem;
    }

    .booking_btn>svg {
        width: .8rem;
        right: 1rem;
    }
}

@media (max-width: 450px) {
    .inquiry_inner {
        padding: 40px 0;
        gap: 20px;
        border-radius: 10px;
    }

    .inquiry_inner h4 {
        text-align: center;
        font-size: 20px;
    }

    .inquiry_inner p {
        font-size: 14px;
    }

    .inquiry_btns {
        width: fit-content;
        margin: 0 auto;
        flex-direction: column;
        gap: 20px;
    }

    .phone_btn {
        padding: 8px 12px;
        gap: 8px;
    }

    .phone_btn span {
        font-size: 24px;
    }

    .phone_btn svg {
        width: 20px;
    }

    .booking_btn {
        width: 100%;
        height: 43px;
    }

    .booking_btn div {
        gap: 8px;
        left: 20px;
    }

    .booking_btn svg:first-child {
        width: 15px;
    }

    .booking_btn span {
        font-size: 14px;
    }

    .booking_btn>svg {
        width: 14px;
        right: 20px;
    }
}

/* -------------page Tiolet&Bath style------------- */
.tiolet_content {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 2%;
}

.tiolet_item {
    width: 32%;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--bg-blue-color);
    border-radius: 1rem;
    overflow: hidden;
}

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

.tiolet_img img {
    width: 100%;
}

.tiolet_txt {
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tiolet_txt h5 {
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--bg-blue-color);
}

.tiolet_txt p {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .tiolet_content {
        gap: 2rem 2%;
    }

    .tiolet_txt {
        gap: .5rem;
        padding: .6rem;
    }

    .tiolet_txt h5 {
        font-size: .9rem;
    }

    .tiolet_txt p {
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    .tiolet_content {
        gap: 10px;
    }

    .tiolet_item {
        width: 100%;
    }

    .tiolet_txt {
        gap: 6px;
        padding: 15px 10px;
    }

    .tiolet_txt h5 {
        font-size: 16px;
    }

    .tiolet_txt p {
        font-size: 14px;
    }
}

/* -------------page cleaning style------------- */
.cleaning_solution .solution_content {
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem 1.333%;
}

.cleaning_solution .solution_item {
    width: 24%;
}

.cleaning_solution .solution_item h5 {
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--bg-blue-color);
}

.cleaning_solution .solution_item p {
    font-size: 1.5rem;
    font-weight: normal;
    color: #3B4147;
}

@media (max-width: 768px) {
    .cleaning_solution .solution_content {
        gap: 2rem 2%;
    }

    .cleaning_solution .solution_item {
        width: 32%;
    }

    .cleaning_solution .solution_item h5 {
        font-size: .9rem;
    }

    .cleaning_solution .solution_item p {
        font-size: .7rem;
    }
}

@media (max-width: 450px) {
    .cleaning_solution .solution_content {
        gap: 10px 2%;
    }

    .cleaning_solution .solution_item {
        width: 49%;
        gap: 10px;
    }

    .cleaning_solution .solution_item h5 {
        font-size: 16px;
    }

    .cleaning_solution .solution_item p {
        font-size: 13px;
    }
}

.cleaning_why h4 {
    font-size: 2.8rem;
    line-height: 1.5;
    text-align: center;
}

.why_content {
    display: flex;
    justify-content: space-between;
    gap: 3.5rem;
}

.why_item {
    flex: 1;
    display: flex;
    border: 2px solid var(--bg-blue-color);
    border-radius: 1rem;
    overflow: hidden;
}

.why_img,
.why_txt {
    width: 50%;
}

.why_img img {
    width: 100%;
    height: 100%;
}

.why_txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.why_txt p {
    font-size: 1.7rem;
    color: #3B4147;
}

@media (max-width: 768px) {
    .cleaning_why h4 {
        font-size: 1.2rem;
    }

    .why_content {
        gap: 1rem;
    }

    .why_item {
        flex-direction: column;
    }

    .why_img,
    .why_txt {
        width: 100%;
    }

    .why_img img {
        height: 12rem;
    }

    .why_txt {
        padding: 1rem .6rem;
    }

    .why_txt p {
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    .cleaning_why h4 {
        font-size: 18px;
    }

    .why_item {
        aspect-ratio: 3 / 2;
        flex-direction: row;
    }

    .why_content {
        gap: 1rem;
        flex-direction: column;
    }

    .why_img,
    .why_txt {
        width: 100%;
    }

    .why_img img {
        height: 100%;
    }

    .why_txt {
        padding: 15px 10px;
    }

    .why_txt p {
        font-size: 13px;
    }
}


/* --------page internal washing style------ */
.internal_inner {
    display: flex;
    justify-content: space-between;
}

.internal_left {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.internal_left .block_ttl {
    align-items: flex-start;
    margin: 0;
}

.internal_checklist {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.internal_checklist p {
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 0;
    font-size: 1.7rem;
}

.internal_checklist svg {
    width: 1.5rem;
    line-height: 0;
}

.internal_txt {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.internal_txt h5 {
    font-size: 2rem;
}

.internal_txt p {
    font-size: 1.5rem;
}

.internal_img {
    width: 45%;
    line-height: 0;
}

.internal_img img {
    width: 100%;
}

@media (max-width: 768px) {
    .internal_inner {
        flex-direction: column;
        gap: 1rem;
    }

    .internal_left {
        width: 100%;
        gap: 2rem;
    }

    .internal_checklist {
        gap: 1rem;
    }

    .internal_checklist p {
        font-size: .9rem;
        gap: .5rem;
    }

    .internal_checklist svg {
        width: .8rem;
    }

    .internal_txt {
        gap: 1rem;
    }

    .internal_txt h5 {
        font-size: 1.2rem;
    }

    .internal_txt p {
        font-size: .8rem;
    }

    .internal_img {
        width: 60%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .internal_inner {
        flex-direction: column;
        gap: 30px;
    }

    .internal_left {
        width: 100%;
        gap: 20px;
    }

    .internal_checklist {
        gap: 20px;
    }

    .internal_checklist p {
        font-size: 14px;
        gap: 5px;
    }

    .internal_checklist svg {
        width: 15px;
    }

    .internal_txt {
        gap: 5px;
    }

    .internal_txt h5 {
        font-size: 16px;
    }

    .internal_txt p {
        font-size: 14px;
    }

    .internal_img {
        width: 100%;
    }
}


.work_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5rem 2%;
}

.work_item {
    display: flex;
    flex-direction: column;
    width: 32%;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid var(--bg-blue-color);
}

.work_img {
    width: 100%;
    line-height: 0;
}

.work_img img {
    width: 100%;
}

.work_txt {
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.work_txt h5 {
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--bg-blue-color);
}

.work_txt p {
    font-size: 1.5rem;
    color: #3B4147;
}

@media (max-width: 768px) {
    .work_content {
        gap: 2rem 2%;
    }

    .work_item {
        border-radius: .6rem;
    }

    .work_txt {
        padding: .8rem;
        gap: .5rem;
    }

    .work_txt h5 {
        font-size: .8rem;
    }

    .work_txt p {
        font-size: .7rem;
    }
}

@media (max-width: 450px) {
    .work_content {
        flex-direction: column;
        gap: 10px;
    }

    .work_item {
        margin: 0 auto;
        width: 90%;
        border-radius: 10px;
    }

    .work_txt {
        padding: 15px 10px;
        gap: 5px;
    }

    .work_txt h5 {
        font-size: 16px;
    }

    .work_txt p {
        font-size: 13px;
    }
}


/* --------page external washing style------ */
.external_content {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
}

.external_img {
    flex: 1;
    display: flex;
}

.external_img img {
    width: 100%;
}

.external_txt {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
}

.external_txt h5 {
    font-size: 2rem;
}

.external_txt p {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .external_content {
        gap: 1rem;
    }

    .external_txt {
        gap: 1rem;
    }

    .external_txt h5 {
        font-size: 1.1rem;
    }

    .external_txt p {
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    .external_content {
        flex-direction: column;
        gap: 10px;
    }

    .external_txt {
        gap: 10px;
    }

    .external_txt h5 {
        font-size: 16px;
    }

    .external_txt p {
        font-size: 14px;
    }
}

.protect_content {
    display: flex;
    justify-content: space-between;
    gap: 3.5rem;
}

.protect_img {
    width: 44%;
    line-height: 0;
}

.protect_img img {
    width: 100%;
}

.protect_right .block_ttl {
    align-items: flex-start;
    margin: 0;
}

.block_ttl h4 {
    font-size: 2.8rem;
}

.protect_right,
.protect_txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.protect_txt div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.protect_txt h5 {
    font-size: 2rem;
}

.protect_txt p {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .protect_content {
        flex-direction: column;
        gap: 1rem;
    }

    .block_ttl h4 {
        font-size: 1.4rem;
    }

    .protect_right,
    .protect_txt {
        gap: 2rem;
    }

    .protect_txt div {
        gap: .5rem;
    }

    .protect_txt h5 {
        font-size: 1rem;
    }

    .protect_txt p {
        font-size: .8rem;
    }

    .protect_img {
        margin: 0 auto;
        width: 60%;
    }
}

@media (max-width: 450px) {
    .protect_content {
        gap: 20px;
    }

    .protect_right .block_ttl {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .block_ttl h4 {
        font-size: 21px;
    }

    .protect_right,
    .protect_txt {
        gap: 20px;
    }

    .protect_txt div {
        gap: 5px;
    }

    .protect_txt h5 {
        font-size: 17px;
    }

    .protect_txt p {
        font-size: 14px;
    }

    .protect_img {
        width: 100%;
    }
}

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

.price_header .pg_ttl {
    position: absolute;
    justify-content: center;
    height: 100%;
    z-index: 90;
    transition-delay: 1.5s;
}

.price_header .pg_ttl * {
    color: var(--bg-font-color);
}

.price_group .block_ttl h2 {
    color: #3B4147;
}

.price_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.two_table {
    display: flex;
    justify-content: space-around;
    gap: 3.33rem;
}

.price_item h4 {
    width: fit-content;
    font-size: 2.8rem;
    color: #3B4147;
}

.price_table table,
.price_table tr,
.price_table th,
.price_table td {
    border-collapse: collapse;
    border: 1px solid var(--bg-blue-color);
    color: #3B4147;
}

.price_table table {
    width: 100%;
}

.price_table th,
.price_table td {
    padding: 1rem;
}

.price_table th {
    font-size: 1.7rem;
}

.price_table td {
    font-size: 1.5rem;
}

.price_table td:nth-child(odd) {
    width: 15.3333%;
    background-color: var(--bg-lightblue-color);
    color: var(--bg-blue-color);
}

.price_table td:nth-child(even) {
    width: 18%;
}

@media (max-width: 768px) {
    .price_item {
        gap: 1rem;
    }

    .price_item h4 {
        font-size: 1.3rem;
    }

    .price_table th,
    .price_table td {
        padding: .8rem .4rem;
    }

    .price_table th {
        font-size: .9rem;
    }

    .price_table td {
        font-size: .8rem;
    }

    .price_table {
        overflow-x: auto;
    }
	
    .two_table {
        flex-direction: column;
        gap: 2.3rem;
    }
}

@media (max-width: 450px) {
    .price_item {
        gap: 10px;
    }

    .price_item h4 {
        font-size: 18px;
    }

    .price_table th,
    .price_table td {
		text-align: center;
        padding: 5px 1px;
    }

    .price_table th {
        font-size: 13px;
    }

    .price_table td {
        font-size: 12px;
    }

}

/* ---------page thanks style---------- */
.thanks {
    background-color: var(--bg-lightblue-color);
}

.page_thanks {
    background-color: var(--bg-lightblue-color);
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks_content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.thanks_content h3 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.thanks_content h2 {
    font-size: 3rem;
    font-weight: 700;

}

.thanks_content a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    padding: 2.3rem 10rem;
    background-color: var(--bg-blue-color);
    box-shadow: 0px 4px 0px 0px var(--bg-blue-color);
    font-size: 2rem;
    font-weight: 700;
    color: #FFF;
    border-radius: 99999px;
    margin-top: 5rem;
    border: 1px solid var(--bg-blue-color);
}

.thanks_content a:hover {
    background-color: #FFF;
    background-image: none;
    color: var(--bg-blue-color);
}

@media (max-width: 768px) {
    .thanks_content {
        gap: 20px;
        padding: 0 20px;
    }

    .thanks_content h2 {
        font-size: 1.5rem;
    }

    .thanks_content h3 {
        font-size: 1.5rem;
    }

    .thanks_content a {
        margin-top: 20px;
        padding: 15px 70px;
        font-size: 16px;
    }
}

@media (max-width: 450px) {
    .thanks_content h2 {
        font-size: 18px;
    }

    .thanks_content h3 {
        font-size: 20px;
    }

    .thanks_content a {
        font-size: 15px;
        padding: 15px 65px;
    }
}



/* ---------------footer style------------- */
footer {
    background-color: #1D3F61;
}

.footer_top,
.footer_btm {
    padding: 3.5rem 0;
}

.footer_top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-bottom: 1px solid #FFFFFF20;
}

.footer_main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer_logo {
    width: 13rem;
    display: flex;
}

.footer_logo img {
    width: 100%;
}

.footer_menu {
    display: flex;
    align-items: center;
    gap: 3.3rem;
}

.footer_menu > li {
    position: relative;
    display: flex;
    cursor: pointer;
}

.footer_menu .dropdown_menu {
    position: absolute;
    left: 0;
    top: 4rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #1D3F61;
}

.footer_menu > li:hover .dropdown_menu {
    display: flex;
}

.footer_menu > li.hide_item {
    display: none;
}

.footer_menu .dropdown_menu a {
    position: relative;
    display: flex;
    font-size: 1.4rem;
    font-weight: bold;
    white-space: nowrap;
    color: var(--bg-white-color);
    width: fit-content;
}

.footer_menu .dropdown_menu a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--bg-white-color);
    transition: all .4s;
}

.footer_menu .dropdown_menu a:hover::after {
    width: 100%;
}

.footer_link {
    position: relative;
    display: flex;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-white-color);
    padding: .9rem 0;
}

a.footer_link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    bottom: .5rem;
    height: 1px;
    background-color: var(--bg-white-color);
    transition: all .3s;
}

a.footer_link:hover::before {
    width: 100%;
}

.footer_menu li:last-child .footer_link {
    padding: .9rem 1.8rem;
    background-color: var(--bg-white-color);
    border: 1px solid var(--bg-white-color);
    color: var(--bg-font-color);
    border-radius: .4rem;
}

.footer_menu li:last-child .footer_link:hover {
    background-color: transparent;
    color: var(--bg-white-color);
}

.footer_menu li:last-child .footer_link::before {
    height: 0;
}

.footer_info p {
    font-size: 1.5rem;
    color: var(--bg-white-color);
}

.footer_btm p,
.footer_btm a {
    font-size: 1.5rem;
    color: var(--bg-white-color);
}

@media (max-width: 1600px) {

    .footer_top,
    .footer_btm {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .footer_top {
        gap: 1rem;
    }

    .footer_main {
        gap: 3rem;
    }

    .footer_logo {
        width: 7rem;
    }

    .footer_menu {
        flex-direction: column;
        gap: 1rem;
    }

    .footer_menu li.show_item {
        display: none;
    }

    .footer_menu > li.hide_item {
        display: flex;
    }

    a.footer_link::before {
        bottom: -2px;
    }

    .footer_link {
        font-size: .8rem;
        padding: 0;
    }

    .footer_menu li:last-child .footer_link {
        padding: .5rem 1rem;
    }

    .footer_info p {
        font-size: .8rem;
    }

    .footer_btm p,
    .footer_btm a {
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    .footer_top {
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer_main {
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

    .footer_logo {
        width: 130px;
    }

    .footer_menu {
        gap: 15px;
    }

    .footer_link {
        font-size: 14px;
    }

    .footer_menu li:last-child .footer_link {
        padding: 8px 18px;
    }

    .footer_info p {
        font-size: 13px;
    }

    .footer_btm {
        padding: 25px 0;
    }

    .footer_btm p,
    .footer_btm a {
        font-size: 12px;
    }
}

/* ---------loading animation-------- */
#js-loading__mask .js-loading__rollup {
    z-index: 10001;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: auto;
}

#js-loading__mask .js-loading__rollup .rollup-wrapper {
    display: flex;
    height: 100%;
}

#js-loading__mask .js-loading__rollup .rollup-item,
#js-loading__mask .js-loading__rollup .rollup-item02 {
    flex: 0 0 20%;
    max-width: 20%;
    background-color: #fff;
}

#js-loading__mask #js-loading__animation #logo-animation {
    z-index: 10003;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 150px;
    margin-top: -32px;
    margin-left: -75px;
    opacity: 0;
}

#js-loading__mask #js-loading__animation #logo-animation img {
    width: 100%;
}

@media (max-width: 768px) {
    #js-loading__mask #js-loading__animation #logo-animation {
        width: 130px;
        margin-left: -65px;
        margin-top: -27px;
    }
}