@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=Noto+Serif+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=Anton:wght@100;200;300;400;500;600;700;800&display=swap');
@font-face {
    font-family: 'DIN 2014';
    src: url('../font/DIN2014.ttf') format("truetype");
    font-weight: 700;
}
/*#region var*/
:root {
    --pxunit: .83rem;
    --fontB: 'Noto Sans JP', sans-serif; /* Base font */
    --fontP: 'Poppins', serif; /* Title font */
    --fontDIN: 'DIN 2014';
    --fontA: 'Anton';
    --headerH: 120px;
    --bg-black-color: #000000;
    --bg-blue-color: #4682B4;
    --bg-white-color: #FFF;
}
*{
    box-sizing: border-box;
    color: var(--bg-black-color);
    font-family: var(--fontB);
    font-weight: 400;
    line-height: 1;
}

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: #fff; } 
.initani.initani_wbk::after { background-color: var(--bg-black-color); } 
.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.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 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: #FFF;}
.header_set {display: flex;justify-content: space-between;align-items: center;}
.header_left {display: flex;justify-content: space-between;align-items: center;}
.header_logo img {width: 18.5rem;}
.header_menu {flex: 1;display: flex;justify-content: flex-end;align-items: center;}
.headmenu_ul {display: flex;justify-content: flex-end;}
.headmenu_a {padding: 0 1.7rem;height: var(--headerH);display: flex;justify-content: center;align-items: center;flex-direction: column;transition: all .1s;}
.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:last-child {padding-right: 0;}
.headmenu_a .headmenu_shape .headmenu_cap-en {line-height: 1.5;font-size: 2rem;font-weight: 400;font-family: var(--fontP);}
.headmenu_a .headmenu_shape .headmenu_cap-jp {line-height: 1.6;font-size: 1.2rem;font-weight: 700;}
.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;}

/*#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;
}
@media (max-width: 450px){
    .sp_hide{
        display: none !important;
    }
    .sp_break {
        display: block !important;
    }
}
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s;
}

/* -----theme block start------- */
.contain {
    padding-top: var(--headerH);
}
.l-container {
    width: auto;
    padding: 0 10rem;
}
.s-container {
    width: auto;
    padding: 0 20rem;
}
.padding-block {
    padding: 13rem 0;
}
@media (min-width: 1500px) {
    .l-container {
        width: 1260px;
        margin: 0 auto;
        padding: 0;
    }
    .s-container {
        width: 1100px;
        padding: 0;
        margin: 0 auto;
    }
}
@media (max-width: 991px){
    .l-container {
        padding: 0 6rem;
    }
    .s-container {
        padding: 0 10rem;
    }
}
@media (max-width: 768px){
    .s-container , .l-container {
        padding: 0 2.5rem;
    }
    .padding-block {
        padding: 4rem 0;
    }
} 
@media (max-width: 576px){
    .s-container , .l-container {
        padding: 0 15px;
    }
    .padding-block {
        padding: 40px 0;
    }
}
.pg-ttl h1 {
    font-weight: 700;
    font-size: 6.5rem;
    line-height: 1.2;
    font-family: var(--fontP);
}
.pg-ttl h4 {
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.5;
    color: var(--bg-blue-color);
}
@media (max-width: 991px) {
    .pg-ttl h1 {
        font-size: 7rem;
    }
    .pg-ttl h4 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .pg-ttl h1 {
        font-size: 48px;
    }
    .pg-ttl h4 {
        font-size: 18px;
    }
}
@media (max-width: 450px) {
    .pg-ttl h1 {
        font-size: 45px;
    }
    .pg-ttl h4 {
        font-size: 16px;
    }
}

.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, .2); 
    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, .2); 
    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;
}
.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: #017CC8; 
    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-------- */
.banner {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--headerH));
}
.banner_slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.banner_slider img {
    width: 100%;
    height: 100%;
}
.banner h1 {
    position: absolute;
    font-size: 11rem;
    font-family: var(--fontA);
    color: var(--bg-blue-color);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    bottom: 10vh;
    text-align: center;
    z-index: 10;
    width: 100%;
    letter-spacing: 3px;
    transform: scale(4);
    opacity: 0;
    pointer-events: none;
}
.banner h3 {
    position: absolute;
    font-size: 5rem;
    font-family: 'Noto Serif JP';
    color: var(--bg-blue-color);
    font-weight: 800;
    line-height: 1.5;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    pointer-events: none;
}
.autoplay-progress {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 999;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--bg-blue-color);
}
.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 3px;
    stroke: var(--bg-blue-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}
.autoplay-progress span {
    color: var(--bg-blue-color);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--fontP);
}
@media (min-width: 1500px) {
    .banner {
        width: 1440px;
        height: auto;
        margin: 0 auto;
    }
}
@media (max-width: 1300px) {
    .banner {
        height: auto;
    }
}
@media (max-width: 768px) {
    .banner_txt {
        gap: 20px;
    }
    .banner h1 {
        font-size: 4rem;
    }
    .banner h3 {
        font-size: 2rem;
    }
}
@media (max-width: 450px) {
    .banner h1 {
        font-size: 5rem;
        bottom: 20vh;
    }
    .banner h3 {
        font-size: 2.8rem;
    }
    .autoplay-progress {
        width: 40px;
        height: 40px;
        left: 15px;
        bottom: 10px;
    }
    .autoplay-progress span {
        font-size: 14px;
    }
}

/* --------section about--------- */
.sec_ttl h1 {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--fontP);
}
.sec_ttl h4 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--bg-blue-color);
} 
.about_sec {
    display: flex;
    justify-content: space-between;
}
.about_txt {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.about_txt h3 {
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
}
.about_txt h1 {
    font-size: 5.3rem;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bg-blue-color);
}
.about_txt p {
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .sec_ttl h1 {
        font-size: 3rem;
    }
    .sec_ttl h4 {
        font-size: 1rem;
    }
    .about_sec {
        flex-direction: column;
        gap: 2.5rem;
    }
    .about_txt {
        gap: 1rem;
    }
    .about_txt h3 {
        font-size: 1.2rem;
    }
    .about_txt h1 {
        font-size: 2.5rem;
    }
    .about_txt p {
        font-size: .9rem;
    }
}
@media (max-width: 450px) {
    .sec_ttl h1 {
        font-size: 38px;
    }
    .sec_ttl h4 {
        font-size: 15px;
    }
    .about_txt h3 {
        font-size: 15px;
    }
    .about_txt h1 {
        font-size: 30px;
    }
    .about_txt p {
        font-size: 11px;
    }
}

.service_sec {
    display: flex;
    gap: 7rem;
}
.service_left {
    width: 50%;
    line-height: 0;
    border-radius: 1rem;
    overflow: hidden;
    height: fit-content;
}
.service_left img {
    width: 100%;
}
.service_right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service_right p {
    font-size: 1.5rem;
    line-height: 1.6;
}
.service_right a {
    display: flex;
    border-radius: 9999px;
    border: 1px solid var(--bg-blue-color);
    width: fit-content;
    padding: 1.5rem 3.5em;
    gap: 2rem;
    transition: all .3s;
}
.service_right a span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--bg-blue-color);
    transition: all .3s;
}
.service_right a svg {
    width: 1rem;
}
.service_right a:hover {
    background-color: var(--bg-blue-color);
}
.service_right a:hover span {
    color: #FFF;
}
.service_right a:hover svg path {
    stroke: #FFF;
}
@media (max-width: 768px) {
    .service_sec {
        gap: 1rem;
        align-items: center;
    }
    .service_left {
        border-radius: .5rem;
    }
    .service_right {
        flex: 1;
        gap: .7rem;
    }
    .service_right p br {
        display: none;
    }
    .service_right p {
        font-size: .8rem;
    }
    .service_right a {
        padding: .7rem 1.5rem;
        gap: 1.5rem;
    }
    .service_right a span {
        font-size: .9rem;
    }
    .service_right a svg {
        width: .5rem;
    }
}
@media (max-width: 450px) {
    .service_sec {
        flex-direction: column;
        gap: 20px;
    }
    .service_left {
        width: 100%;
        border-radius: 8px;
    }
    .service_right {
        gap: 20px;
    }
    .service_right p{
        font-size: 14px;
    }
    .service_right a {
        margin-left: auto;
        padding: 11px 22px;
        gap: 25px;
    }
    .service_right a span {
        font-size: 16px;
    }
    .service_right a svg {
        width: 10px;
    }
}

/* --------page company style-------- */
.pg_header_inner {
    display: flex;
    justify-content: space-between;
}
.pg_header_img {
    width: 64%;
}
.pg_header_img img {
    width: 100%;
}
.pg_header_ttl {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bread_list ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.bread_list ul a {
    font-size: 1.3rem;
    line-height: 1.6;
}
.bread_list ul li:first-child a {
    color: var(--bg-blue-color);
}
.pg_header_inner > .bread_list {
    display: none;
}
@media (max-width: 768px) {
    .pg_header_inner {
        flex-direction: column;
        gap: 30px;
    }
    .pg_header_ttl {
        gap: 30px;
    }
    .bread_list ul {
        gap: 10px;
    }
    .bread_list ul a {
        font-size: 12px;
    }
    .bread_list ul svg {
        width: 6px;
    }
    .pg_header_img {
        width: 100%;
    }
    .pg_header_inner > .bread_list {
        display: block;
    }
    .pg_header_ttl .bread_list {
        display: none;
    }
}
@media (max-width: 450px) {
    .pg_header_inner {
        gap: 20px;
    } 
}
.company {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 20px;
    justify-content: space-between;
}
.company_item {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2rem 0;
    border-top: 1px solid #D1D5DB;
}
.company_item p {
    font-size: 2rem;
    line-height: 2;
    font-weight: 700;
}
.company_item h5 {
    font-size: 1.7rem;
    line-height: 1.6;
}
.company_item a {
    display: flex;
    gap: 8px;
    font-size: 2rem;
    color: var(--bg-blue-color);
    font-weight: 700;
    align-items: center;
}
@media (max-width: 768px) {
    .company {
        gap: 0;
    }
    .company_item {
        width: 100%;
        gap: 8px;
        padding: 20px 0;
    }
    .company_item p {
        font-size: 18px;
    }
    .company_item h5 {
        font-size: 16px;
    }
}
@media (max-width: 450px) {
    .company_item {
        gap: 5px;
        padding: 18px 0;
    }
    .company_item p {
        font-size: 16px;
    }
    .company_item h5 {
        font-size: 14px;
    }
}
.contact_sec {
    padding: 13rem 0;
}
.contact_block {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.5rem;
    background-color: var(--bg-blue-color);
}
.contact_block h1 {
    font-size: 8rem;
    color: var(--bg-white-color);
    font-family: var(--fontP);
    line-height: 1.5;
    font-weight: 700;
}
.contact_block h4 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--bg-white-color);
}
.contact_block .contact_left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    z-index: 10;
}
.contact_block p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #FFF;
}
.contact_block img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 70rem;
}
.contact_block .contact_right {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 10;
}
.contact_block .contact_right span {
    color: var(--bg-white-color);
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 700;
    font-family: var(--fontP);
    z-index: 10;
    will-change: background-size;
    background-image: none;
    background-repeat: no-repeat;
    -webkit-background-position: right bottom;
    background-position: right bottom;
    -webkit-background-size: 100%;
    background-size: 100%;
}
.contact_block .contact_right div {
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 50%;
    background-color: var(--bg-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 1rem;
    overflow: hidden;
    scale: .95;
}
.contact_block .contact_right svg {
    width: 3.5rem;
}
.contact_block:hover .contact_right div {
    scale: 1.1;
    transition: all .6s;
}
.contact_block:hover .contact_right span {
    -webkit-animation:hoverLineLink 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    animation: hoverLineLink 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    background-image: linear-gradient(transparent 96%, #FFF 96%);
}
@keyframes hoverLineLink {
    0% {
        background-position: 100% 100%;
        background-size: 100% 100%;
        background-image: linear-gradient(transparent 96%, #FFF 96%);
    }

    50% {
        background-position: 100% 100%;
        background-size: 0 100%
    }

    51% {
        background-position: 0 100%;
        background-size: 0 100%
    }

    100% {
        background-position: 0 100%;
        background-size: 100% 100%;
        background-image: linear-gradient(transparent 96%, #FFF 96%);
    }
}
@media (max-width: 768px) {
    .contact_sec {
        padding: 4rem 0;
    }
    .contact_block {
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        overflow: hidden;
    }
    .contact_block h1 {
        font-size: 3.5rem;
    }
    .contact_block h4 {
        font-size: 1.2rem;
    }
    .contact_block .contact_left {
        gap: 2rem;
    }
    .contact_block p {
        font-size: .8rem;
    }
    .contact_block img {
        width: 100%;
    }
    .contact_block .contact_right {
        gap: 20px;
        margin-left: auto;
    }
    .contact_block .contact_right span {
        font-size: 18px;
    }
    .contact_block .contact_right div {
        width: 60px;
        height: 60px;
        padding-bottom: 5px;
    }
    .contact_block .contact_right svg {
        width: 30px;
    }
}
@media (max-width: 450px) {
    .contact_sec {
        padding: 50px 0 80px 0;
    }
    .contact_block h1 {
        font-size: 42px;
    }
    .contact_block h4 {
        font-size: 16px;
    }
    .contact_block p {
        font-size: 12px;
    }
    .contact_block .contact_right div {
        width: 55px;
        height: 55px;
    }
    .contact_block .contact_right span {
        font-size: 16px;
    }
    .contact_block .contact_right svg {
        width: 25px;
    }
}

/* --------page service style-------- */
.service_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service_img {
    width: 47%;
    line-height: 0;
    overflow: hidden;
    border-radius: 10px;
}
.service_img img {
    width: 100%;
}
.service_txt {
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.service_txt span {
    font-size: 3rem;
    font-family: var(--fontDIN);
    line-height: 1.5;
    font-weight: 700;
    color: var(--bg-blue-color);
}
.service_txt h1 {
    font-size: 5.3rem;
    font-family: var(--fontP);
    font-weight: 700;
    line-height: 1.2;
    width: fit-content;
}
.service_txt h3 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.5;
    width: fit-content;
}
.service_txt .col:last-child {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.service_txt p {
    font-size: 1.9rem;
    line-height: 1.6;
}
.service_txt p:first-child {
    font-family: var(--fontP);
}
@media (max-width: 768px) {
    .service {
        gap: 3.5rem;
    }
    .service_img {
        width: calc(50% - .5rem);
    }
    .service_txt {
        width: calc(50% - .5rem);
        gap: 1rem;
    }
    .service_txt span {
        font-size: 1.4rem;
    }
    .service_txt h1 {
        font-size: 2rem;
    }
    .service_txt h3 {
        font-size: 1.1rem;
    }
    .service_txt p {
        font-size: .7rem;
    }
    .service_txt .col:last-child {
        gap: .5rem;
    }
}
@media (max-width: 450px) {
    .service {
        gap: 50px;
    }
    .service_item {
        flex-direction: column;
        gap: 10px;
    }
    .service_img {
        width: 100%;
        border-radius: 8px;
    }
    .service_txt {
        width: 100%;
        gap: 10px;
    }
    .service_txt span {
        font-size: 30px;
    }
    .service_txt h1 {
        font-size: 26px;
    }
    .service_txt h3 {
        font-size: 18px;
    }
    .service_txt p {
        font-size: 14px;
    }
    .service_txt .col:last-child {
        gap: 5px;
    }
}




/* --------page recruit style-------- */
.recruit_des {
    text-align: center;
    background-color: var(--bg-blue-color);
    padding: 13rem 0;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.recruit_des h2 * {
    font-size: 4rem;
    line-height: 1.5;
    font-weight: 700;
    color: #FFF;
}
.recruit_des h4 * {
    font-size: 2.8rem;
    line-height: 2;
    font-weight: 700;
    line-height: 2;
    color: #FFF;
}
.recruit_des h4 .sp_break {
    display: none;
}
.recruit_des h2 br {
    display: none;
}
.style_inner {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.recruit_style h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
}
.style_content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.style_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.style_item div {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    border-radius: 1rem;
}
.style_item h5 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
}
.style_item p {
    font-size: 1.5rem;
    line-height: 1.6;
}
.style_item img {
    width: 100%;
}
@media (max-width: 768px) {
    .recruit_des {
        padding: 4rem 0;
        gap: 2rem;
    }
    .recruit_des h2 br {
        display: block;
    }
    .recruit_des h2 * {
        font-size: 2rem;
    }
    .recruit_des h4 * {
        font-size: 1rem;
    }
    .style_inner {
        gap: 2.5rem;
    }
    .recruit_style h2 {
        font-size: 2rem;
    }
    .style_content {
        gap: .7rem;
    }
    .style_item div {
        border-radius: .5rem;
    }
    .style_item {
        gap: .5rem;
    }
    .style_item h5 {
        font-size: .8rem;
    }
    .style_item p {
        font-size: .6rem;
    }
}
@media (max-width: 450px) {
    .recruit_des {
        padding: 40px 15px;
        gap: 25px;
    }
    .recruit_des h2 br {
        display: block;
    }
    .recruit_des h2 * {
        font-size: 20px;
    }
    .recruit_des h4 {
        width: 75%;
        margin: 0 auto;
    }
    .recruit_des h4 * {
        font-size: 15px;
    }
    .style_inner {
        gap: 20px;
    }
    .recruit_style h2 {
        font-size: 24px;
    }
    .style_content {
        flex-direction: column;
        gap: 20px;
    }
    .style_item div {
        border-radius: 5px;
    }
    .style_item {
        gap: 7px;
    }
    .style_item h5 {
        font-size: 16px;
    }
    .style_item p {
        font-size: 13px;
    }
}

/* --------page contact style-------- */
.contact {
    display: flex;
    justify-content: space-between;
}
.contact_form {
    width: 55%;
}
.contact_form .form_field .field_cap {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
}
 .form_field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.field_control {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form_field p {
    font-size: 16px;
    text-align: right;
    line-height: 1.6;
    margin-top: 10px;
}
.form_field p span {
    color: #EF4444;
    padding-right: 5px;
}
.contact_form .form_field .field_cap span {
    color: #EF4444;
    font-weight: 700;
    font-size: 16px;
}
input[type=text] , input[type=email] , textarea, select {
    width: 100%;
    border: 1px solid #F3F4F6;
    padding: 15px;
    font-size: 16px;
    line-height: 1.6;
    line-height: 1;
    outline: none;
    background-color: #F9FAFB;
}
input[type=text]:focus , input[type=email]:focus , textarea:focus, select:focus {
    border-color: var(--bg-blue-color);
}
.contact_form .form_field .field_control textarea {
    height: 200px;
    outline: none;
}
input[type=checkbox] {
    margin: auto 0;
}
textarea::placeholder, input::placeholder {
    color: #9CA3AF;
}
.contact_form .field_contactbtn {
    text-align: center;
}
.contact_form .field_contactbtn input[type=submit] {
    position: relative;
    width: 100%;
    height: 70px;
    background-color: var(--bg-blue-color);
    border: 1px solid var(--bg-blue-color);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    color: #FFF;
    cursor: pointer;
}
.contact_form .field_contactbtn input[type=submit]:hover {
    background-color: #FFF;
    color: var(--bg-blue-color);
}
.agree {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.agree .col {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: fit-content;
}
.agree label {
    cursor: pointer;
    font-size: 16px;
    line-height: 1.6;
}
.agree label a {
    color: var(--bg-blue-color);
    text-decoration: underline;
}
.form_field .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.radio_btn {
    position: relative;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.radio_btn input[type=radio] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.radio_btn span {
    font-size: 15px;
    line-height: 1.6;
}
.checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #CCCCCC;
}
.radio_btn input:checked ~ .checkmark {
  background-color: transparent;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio_btn input:checked ~ .checkmark:after {
  display: block;
}

.radio_btn .checkmark:after {
 	top: 5px;
	left: 5px;
	width: 8px;
	height: 8px;
	background-color: var(--bg-black-color);
    border-radius: 50%;
}
@media (max-width: 1300px) {
    .field_control {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
}
@media (max-width: 991px) {
    .contact_form {
        width: 60%;
    }
}
@media (max-width: 768px) {
    .contact {
        flex-direction: column;
        gap: 50px;
    }
    .contact_form {
        width: 100%;
    }
    .contact_form .form_field .field_cap {
        font-size: 15px;
    }
    input[type=text], input[type=email], textarea, select {
        font-size: 15px;
        padding: 10px;
        line-height: 1.6;
    }
    .contact_form .form_field .field_control textarea {
        height: 160px;
    }
    .contact_form .field_contactbtn input[type=submit] {
        height: 60px;
    }
    .radio_btn span {
        font-size: 14px;
    }
    .form_field p {
        font-size: 15px;
    }
}
@media (max-width: 450px) {
    .agree label {
        font-size: 12px;
    }
    .agree {
        margin: 20px 0;
    }
}


/* ----------footer style--------- */
footer {
    background-color: #F3F4F6;
}
.footer_inner {
    padding: 5rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.footer_top {
    padding: 0 6rem;
    display: flex;
    justify-content: space-between;
}
.footer_logo {
    width: 25rem;
    display: inline-block;
    line-height: 0;
    height: fit-content;
}
.footer_logo img {
    width: 100%;
}
.footer_menu {
    display: flex;
    gap: 8.5rem;
}
.footer_menu .col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer_menu .col > li > a {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
}
.footer_menu .col > li ul {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.footer_menu .col > li ul a {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 500;
}
.footer_menu li a {
    position: relative;
}
.footer_menu li a:after {
    position: absolute;
    content: "";
    background-color: var(--bg-black-color);
    left: 0;
    bottom: -3px;
    width: 0;
    transition: all .4s;
    height: 1px;
}
.footer_menu li a:hover:after {
    width: 100%;
}
.footer_line {
    width: 100%;
    height: 1px;
    background-color: #000000;
    opacity: .1;
}
.footer_bottom p {
    font-size: 1.5rem;
    font-family: var(--fontP);
    line-height: 1.5;
}
@media (max-width: 1440px) {
    .footer_inner {
        padding: 40px;
    }
}
@media (max-width: 991px) {
    .footer_inner {
        padding: 40px 30px;
    }
    .footer_top {
        padding: 0 3.5rem;
    }
    .footer_logo {
        width: 180px;
    }
    .footer_menu .col > li > a {
        font-size: 1.8rem;
    }
    .footer_menu .col > li ul a {
        font-size: 1.5rem;
    }
}
@media (max-width: 767px) {
    .footer_inner {
        padding: 40px 20px;
        gap: 30px;
    }
    .footer_top {
        padding: 0;
    }
    .footer_logo {
        width: 180px;
    }
    .footer_menu  {
        gap: 30px;
    }
    .footer_menu .col {
        gap: 15px;
    }
    .footer_menu .col > li ul {
        gap: 5px;
    }
    .footer_menu .col > li > a {
        font-size: 15px;
    }
    .footer_menu .col > li ul a {
        font-size: 12px;
    }
    .footer_bottom p {
        font-size: 13px;
    }
}
@media (max-width: 676px) {
    .footer_top {
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }
    .footer_menu {
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 15px;
    }
    .footer_menu .col > li ul {
        gap: 8px;
    }
    .footer_bottom p {
        text-align: center;
    }
}
@media (max-width: 576px) {
    .footer_inner {
        padding: 30px 20px;
    }
}
@media (min-width: 1440px) {
    .footer_inner {
        width: 1280px;
        margin: 0 auto;
        padding: 80px 0;
    }
}


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




/* ---------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: 260px;
    margin-top: -51.5px;
    margin-left: -130px;
    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: 200px;
        margin-left: -100px;
        margin-top: -45px;
    }
}