@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=Marcellus:wght@100;200;300;400;500;600;700;800&display=swap');
/*#region var*/
:root {
    --pxunit: .83rem;
    --fontB: 'Noto Sans JP', sans-serif; /* Base font */
    --fontM: 'Marcellus', serif; /* Title font */
    --headerH: 11rem;
    --bg-black-color: #333333;
    --bg-font-color: #000000;
    --bg-blue-color: #4682B4;
    --bg-grey-color: #EFEFEF;
    --bg-green-color: #118856;
    --bg-white-color: #FFFFFF;
    --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;
    background-color: var(--bg-grey-color);
}
.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*/

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-green-color); }
.initani.initani_ww::before { background-color: #FFF; } 
.initani.initani_ww::after { background-color: #FFF; }
.initani.initani_wg::after { background-color: var(--bg-green-color); } 
.initani.initani_wg::before { background-color: var(--bg-green-color); }
[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 3.5s,-webkit-mask-position 3.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 3.5s,mask-position 3.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 3.5s,mask-position 3.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;
}
.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: var(--bg-grey-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: 6rem;}
.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 {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-font-color);width: 0;transition: all .3s;}
.headmenu_a:hover .headmenu_uline {width: 100%;}
.headmenu_a .headmenu_shape .headmenu_cap {font-size: 1.7rem;font-weight: 500;line-height: 1.6;}
.headmenu_a:last-child {padding-right: 0;}
.headmenu_a:last-child .headmenu_shape .headmenu_cap {padding: .9rem 1.8rem;border-radius: .4rem;background-color: var(--bg-font-color);border: 1px solid var(--bg-font-color);color: var(--bg-white-color);}
.headmenu_a:last-child:hover .headmenu_shape .headmenu_cap {background-color: transparent;color: var(--bg-font-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;}

/*#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------- */
.wrapper {
    padding-top: var(--headerH);
}
.container {
    width: 100%;
    padding: 0 15rem;
}
.l-inner, .m-inner, .s-inner {
    display: flex;
    flex-direction: column;
}
.l-inner {
    gap: 6.5rem;
}
.m-inner {
    gap: 5rem;
}
.s-inner {
    gap: 4rem;
}
@media (max-width: 768px){
    .container {
        padding: 0 2.5rem;
    }
    .l-inner {
        gap: 3rem;
    }
    .m-inner {
        gap: 2.3rem;
    }
    .s-inner {
        gap: 1.5rem;
    }
}
@media (max-width: 576px){
    .container {
        padding: 0 15px;
    }
    .l-inner {
        gap: 45px;
    }
    .m-inner {
        gap: 35px;
    }
    .s-inner {
        gap: 25px;
    }
}
.pg_header {
    border-bottom: 1px solid var(--bg-border-color);
}
.pg_ttl {
    width: fit-content;
}
.pg_ttl h1 {
    font-size: 8rem;
    font-family: var(--fontM);
    font-weight: 700;
    line-height: 1.5;
    width: fit-content;
} 
.pg_ttl p {
    font-size: 1.7rem;
}
.bread_list ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.bread_list li a, .bread_list li span {
    font-size: 1.4rem;
}
.bread_list li:first-child a {
    color: var(--bg-green-color);
}
@media (max-width: 768px) {
    .pg_ttl h1 {
        font-size: 3.3rem;
    }
    .pg_ttl p {
        font-size: .8rem;
    }
    .bread_list ul {
        gap: .6rem;
    }
    .bread_list li a, .bread_list li span {
        font-size: .7rem;
    }
}
@media (max-width: 450px) {
    .pg_ttl h1 {
        font-size: 42px;
    }
    .pg_ttl p {
        font-size: 14px;
    }
    .pg_ttl .bread_list ul {
        gap: 8px;
    }
    .bread_list li a, .bread_list li span {
        font-size: 11px;
    }
}
.block_ttl {
    width: fit-content;
}
.block_ttl h2 {
    font-size: 4rem;
    line-height: 1.5;
}
.block_ttl p {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-family: var(--fontM);
    line-height: 1.5;
}
.block_ttl p span {
    content: "";
    width: .5rem;
    height: .5rem;
    background-color: var(--bg-green-color);
}
@media (max-width: 768px) {
    .block_ttl h2 {
        font-size: 1.8rem;
    }
    .block_ttl p {
        font-size: .8rem;
        gap: .6rem;
    }
    .block_ttl p span {
        width: 5px;
        height: 5px;
    }
}
@media (max-width: 450px) {
    .block_ttl h2 {
        font-size: 28px;
    }
    .block_ttl p {
        font-size: 14px;
        gap: 8px;
    }
}
.more_btn {
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    width: 28rem;
    height: 6rem;
    border-radius: .4rem;
    border: 1px solid var(--bg-font-color);
    background-color: transparent;
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
}
.more_btn span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
    left: 2rem;
    font-size: 1.5rem;
    white-space: nowrap;
}
.more_btn svg {
    position: absolute;
    right: 2rem;
    width: 1.3rem;
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
}
.more_btn:hover {
    background-color: var(--bg-font-color);
}
.more_btn:hover span {
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-white-color);
}
.more_btn:hover svg {
    scale: 0;
}
@media (max-width: 768px) {
    .more_btn {
        width: 15rem;
        height: 3.1rem;
    }
    .more_btn span {
        font-size: .8rem;
        left: 1rem;
    }
    .more_btn svg {
        right: 1rem;
        width: 1rem;
    }
}
@media (max-width: 450px) {
    .more_btn {
        width: 250px;
        height: 45px;
    }
    .more_btn span {
        font-size: 14px;
        left: 20px;
    }
    .more_btn svg {
        right: 20px;
        width: 15px;
    }
}
.animation_txt span {
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    font-weight: inherit;
}
.animation_txt > span {
    display: block;
}
.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;
}
.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));
    line-height: 0;
}
.banner_slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner_slider .swiper-wrapper, .banner_slider .swiper-slide, .banner_slider, .banner_slider .banner_slider-parallax   {
    width: 100%;
    height: 100%;
}
.banner_slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.banner_slider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000033;
    z-index: 20;
}
.banner_txt {
    position: absolute;
    left: 6.66rem;
    bottom: 3.33rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 12;
}
.banner_txt h2 {
    font-size: 4rem;
    line-height: 1.5;
    color: var(--bg-white-color);
}
.banner_txt p {
    font-size: 1.7rem;
    color: var(--bg-white-color);
}
@media (max-width: 768px) {
    .banner_txt {
        left: 1.5rem;
        bottom: 1.5rem;
        gap: 1rem;
    }
    .banner_txt h2 {
        font-size: 1.8rem;
    }
    .banner_txt p {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .banner_txt {
        left: 10px;
        bottom: 20px;
        gap: 1rem;
    }
    .banner_txt h2 {
        font-size: 23px;
    }
    .banner_txt p {
        font-size: 14px;
    }
}



.sec_vision {
    position: relative;
}
.vision_inner {
    position: relative;
    border-radius: 1.7rem;
    overflow: hidden;
}
.vision_img {
    width: 100%;
}
.vision_img {
    width: 100%;
    border-radius: 1.7rem;
    overflow: hidden;
}
.vision_img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
}
.vision_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.vision_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 10;
}
.vision_txt p span {
    display: block;
    text-align: center;
    font-size: 2.7rem;
    color: var(--bg-white-color);
}
@media (max-width: 768px) {
    .vision_img {
        border-radius: .8rem;
        
    }
    .vision_txt p span {
        font-size: 1rem;
    }
}
@media (max-width: 450px) {
    .vision_img {
        border-radius: 8px;
        height: 65vh;
    }
    .vision_txt p span {
        font-size: 15px;
    }
}
.search_inner {
    position: relative;
    background-color: var(--bg-white-color);
    height: calc(100vh - var(--headerH));
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border-radius: 1.7rem;
}
.search_slider, .reverse_slider {
    height: 100%;
    width: 42rem;
}
.search_slider .swiper-slide, .reverse_slider .swiper-slide {
    width: 100%;
}
.search_slider img, .reverse_slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.search_content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}
.search_content .block_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.search_content .more_btn {
    width: 25rem;
    background-color: var(--bg-font-color);
}
.search_content .more_btn span {
    color: var(--bg-white-color);
}
.search_content .more_btn:hover {
    background-color: var(--bg-white-color);
}
.search_content .more_btn:hover span {
    color: var(--bg-font-color);
}
@media (max-width: 768px) {
    .search_inner {
        border-radius: .8rem;
    }
    .search_content {
        gap: 2.3rem;
    }
    .search_content .more_btn {
        width: 12rem;
    }
    .search_slider, .reverse_slider {
        width: calc(50% - 6.5rem);
    }
}
@media (max-width: 450px) {
    .search_inner {
        border-radius: 10px;
    }
    .search_content {
        position: relative;
        gap: 2.3rem;
        z-index: 10;
        margin: 0 auto;
    }
    .search_content .more_btn {
        width: 190px;
        align-items: center;
    }
    .search_slider, .reverse_slider {
        position: absolute !important;
        height: 100%;
        width: calc(50% - 5px);
    }
    .search_slider {
        left: 0;
    }
    .reverse_slider {
        right: 0;
    }
}

.sec_company, .sec_search, .sec_vision {
    padding: 0 3.3rem;
}
.company_inner {
    display: flex;
    justify-content: space-between;
}
.company_right {
    width: 40%;
    aspect-ratio: 743/600;
    border-radius: .8rem;
    overflow: hidden;
}
.company_right img {
    width: 100%;
    height: 100%;
}
.company_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
}
.company_navi {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.company_navi li, .company_navi a {
    display: flex;
    width: 100%;
}
.company_navi li {
    position: relative;
}
.company_navi li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #707070;
    scale: 0 1;
    transform-origin: 0% 50%;
    transition: scale 1s linear;
}
.company_navi li.on::before {
    scale: 1 1;
}
.company_navi li:last-child::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #707070;
    scale: 0 1;
    transform-origin: 0% 50%;
    transition: scale 1s linear;
}
.company_navi li.on:last-child::after {
    scale: 1 1;
}
.company_navi a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.33rem 0;
}
.company_navi a div {
    display: flex;
    align-items: center;
    gap: 3.33rem;
}
.company_navi a .company_link-img {
    width: 10rem;
    height: 10rem;
    overflow: hidden;
}
.company_navi a .company_link-img img {
    width: 100%;
    height: 100%;
    transition: all .4s ease-out;
}
.company_navi a:hover .company_link-img img {
    scale: 1.1;
}
.company_navi a span {
    position: relative;
    font-size: 2rem;
}
.company_navi a span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    height: 1px;
    width: 100%;
    background: 0 0;
    transition: all .4s ease-out;
    transition: var(--transit-default);
}
@keyframes btn-line {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform-origin: right top;
        transform: scale(0, 1);
    }
    51% {
        transform-origin: left top;
    }
    100% {
        transform: scale(1, 1);
        transform-origin: left top;
    }
}
.company_navi a:hover span::before {
    background: currentColor;
    animation: btn-line 1s ease-out 0s 1 normal forwards;
}
.company_navi a svg {
    width: 2.5rem;
}
@media (max-width: 768px) {
    .sec_company, .sec_search, .sec_vision {
        padding: 0 1.5rem;
    }
    .company_inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    .company_left {
        width: 100%;
        gap: 2.3rem;
    }
    .company_navi a {
        padding: 1.3rem 0;
    }
    .company_navi a div {
        gap: 1.5rem;
    }
    .company_navi a .company_link-img {
        width: 5rem;
        height: 5rem;
    }
    .company_navi a span {
        font-size: 1rem;
    }
    .company_navi a svg {
        width: 1.3rem;
    }
    .company_right {
        width: 100%;
        aspect-ratio: 4/2;
        border-radius: .5rem;
    }
}
@media (max-width: 450px) {
    .sec_company, .sec_search, .sec_vision {
        padding: 0 15px;
    }
    .company_inner {
        gap: 15px;
    }
    .company_left {
        width: 100%;
        gap: 30px;
    }
    .company_navi a {
        padding: 13px 0;
    }
    .company_navi a div {
        gap: 15px;
    }
    .company_navi a .company_link-img {
        width: 60px;
        height: 60px;
    }
    .company_navi a span {
        font-size: 15px;
    }
    .company_navi a svg {
        width: 13px;
    }
    .company_right {
        aspect-ratio: 4/3;
        border-radius: 5px;
    }
}


.staff_content {
    display: flex;
    justify-content: space-between;
    gap: 10rem;
}
.staff_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
}
.staff_item span {
    text-align: center;
    font-size: 2rem;
    font-family: var(--fontM);
}
.staff_img {
    width: 100%;
    aspect-ratio: 430/590;
    border-radius: .8rem;
    line-height: 0;
    overflow: hidden;
}
.staff_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.staff_item p {
    font-size: 1.7rem;
}
.staff_item h3 {
    font-size: 2.7rem;
}
.staff_item a {
    margin-left: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 10rem;
    border-bottom: 1px solid var(--bg-font-color);
    padding-bottom: 1.3rem;
}
.staff_item a span {
    position: absolute;
    left: 0;
    white-space: nowrap;
    font-size: 1.5rem;
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
}
.staff_item a svg {
    position: absolute;
    width: 1.3rem;
    right: 0;
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
}
.staff_item a:after {
    content: "";
    position: absolute;
    width: 0;
    bottom: -1px;
    height: 1px;
    background-color: #00aeff;
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
}
.staff_item a:hover span {
    left: 50%;
    color: var(--bg-blue-color);
    transform: translateX(-50%);
}
.staff_item a:hover svg {
    scale: 0;
}
.staff_item a:hover::after {
    width: 100%;
}
@media (max-width: 768px) {
    .staff_content {
        gap: 1rem;
    }
    .staff_item {
        gap: .6rem;
    }
    .staff_item span {
        font-size: 1.3rem;
    }
    .staff_img {
        border: .4rem;
    }
    .staff_item h3 {
        font-size: 1.3rem;
    }
    .staff_item p {
        font-size: .8rem;
    }
    .staff_item a {
        width: 5rem;
        margin-top: 1rem;
        padding-bottom: .8rem;
    }
    .staff_item a span {
        font-size: .7rem;
    }
    .staff_item a svg {
        width: .8rem;
    }
}
@media (max-width: 450px) {
    .staff_content {
        flex-direction: column;
        gap: 10px;
    }
    .staff_item {
        gap: 10px;
    }
    .staff_item span {
        font-size: 18px;
    }
    .staff_img {
        border-radius: 10px;
        aspect-ratio: 4 / 4;
    }
    .staff_item h3 {
        font-size: 26px;
    }
    .staff_item p {
        font-size: 14px;
    }
    .staff_item a {
        width: 100px;
        margin-top: 10px;
        padding-bottom: 10px;
    }
    .staff_item a span {
        font-size: 13px;
    }
    .staff_item a svg {
        width: 14px;
    }
}

.sec_recruit .block_ttl {
    text-align: center;
    margin: 0 auto;
}
.block_ttl h1 {
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    font-size: 8rem;
    font-family: var(--fontM);
    color: var(--bg-white-color);
    line-height: 1.5;
}
.block_ttl h5 {
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    font-size: 2rem;
    color: var(--bg-white-color);
}
.recruit_inner {
    background-color: var(--bg-green-color);
    border-radius: 1.7rem;
    padding: 4rem 3.3rem;
}
.recruit_inner > h4 {
    font-size: 2.7rem;
    text-align: center;
    color: var(--bg-white-color);
}
.recruit_inner > p {
    text-align: center;
    font-size: 1.5rem;
    color: var(--bg-white-color);
}
.recruit_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 3.33rem;
}
.recruit_item {
    display: flex;
    flex-direction: column;
    width: 30%;
    gap: 4rem;
    padding: 3.33rem;
    border: 1px solid var(--bg-white-color);
    border-radius: .8rem;
}
.recruit_item:first-child {
    width: 63%;
}
.recruit_item h3 {
    text-align: center;
    font-size: 3.3rem;
    color: var(--bg-white-color);
}
.recruit_item h3 span {
    font-size: 2rem;
    color: var(--bg-white-color);
}
.recruit_item h4 {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    font-size: 2.7rem;
    color: var(--bg-white-color);
}
.recruit_shape {
    display: inline-block;
    margin: 0 auto;
    width: 10rem;
}
.recruit_shape svg {
    width: 100%;
}
.recruit_item div {
    display: flex;
    justify-content: space-between;
}
.recruit_item p {
    font-size: 1.7rem;
    color: var(--bg-white-color);
}
.sec_recruit .more_btn {
    width: 20rem;
    height: 5rem;
    border-color: var(--bg-white-color);
}
.sec_recruit .more_btn span {
    color: var(--bg-white-color);
}
.sec_recruit .more_btn:hover {
    background-color: var(--bg-white-color);
}
.sec_recruit .more_btn:hover span {
    color: var(--bg-font-color);
}
@media (max-width: 768px) {
    .recruit_inner {
        padding: 3rem 1.5rem;
        border-radius: .8rem;
    }
    .block_ttl h1 {
        font-size: 3rem;
    }
    .block_ttl h5 {
        font-size: 1rem;
    }
    .recruit_inner > h4 {
        font-size: 1.3rem;
    }
    .recruit_inner > p {
        font-size: .8rem;
    }
    .recruit_content {
        row-gap: 1.5rem;
    }
    .recruit_item {
        width: 48%;
        padding: 1.5rem;
        gap: 1.3rem;
    }
    .recruit_item:first-child {
        width: 100%;
    }
    .recruit_item h4 {
        font-size: 1.3rem;
    }
    .recruit_shape {
        width: 4rem;
    }
    .recruit_item p {
        font-size: .8rem;
    }
    .recruit_item h3 {
        font-size: 1.5rem;
    }
    .recruit_item h3 span {
        font-size: .9rem;
    }
    .sec_recruit .more_btn {
        width: 15rem;
        height: 3.5rem;
    }
}
@media (max-width: 450px) {
    .recruit_inner {
        padding: 25px 15px;
    }
    .block_ttl h1 {
        font-size: 42px;
    }
    .block_ttl h5 {
        font-size: 16px;
    }
    .recruit_inner > h4 {
        font-size: 17px;
    }
    .recruit_inner > p {
        font-size: 14px;
    }
    .recruit_content {
        align-items: center;
        row-gap: 15px;
    }
    .recruit_item {
        width: 80%;
        padding: 20px 10px;
        gap: 15px;
        margin: 0 auto;
    }
    .recruit_item:first-child {
        width: 100%;
    }
    .recruit_item h4 {
        font-size: 18px;
    }
    .recruit_item div {
        flex-direction: column;
    }
    .recruit_item:last-child div {
        flex-direction: row;
    }
    .recruit_shape {
        width: 60px;
    }
    .recruit_item p {
        font-size: 13px;
    }
    .recruit_item h3 {
        font-size: 20px;
    }
    .recruit_item h3 span {
        font-size: 15px;
    }
    .sec_recruit .more_btn {
        width: 200px;
        height: 50px;
        margin: 15px auto;
    }
    .more_btn span {
        font-size: 14px;
    }
}






/* -----------page about style-- -------- */
.profile_img {
    display: flex;
    width: 100%;
    border-radius: 1.7rem;
    overflow: hidden;
}
.profile_img img, .profile_img picture {
    width: 100%;
    display: flex;
}
@media (max-width: 768px) {
    .profile_img {
        border-radius: .8rem;
    }
}
@media (max-width: 450px) {
    .profile_img {
        border-radius: 10px;
    }
}
.message_img {
    display: flex;
    width: 100%;
    border-radius: 1.7rem;
    overflow: hidden;
}
.message_img img, .message_img picture {
    width: 100%;
    display: flex;
}
.message_content {
    display: flex;
    justify-content: space-between;
}
.message_txt {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.message_txt h4 {
    font-size: 3rem;
}
.message_txt p {
    font-size: 1.9rem;
}
.message_name {
    width: fit-content;
    margin-left: auto;
}
.message_name span {
    font-size: 4rem;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .message_img {
        border-radius: .8rem;
    }
    .message_content {
        flex-direction: column;
        gap: 2rem;
    }
    .message_txt {
        width: 100%;
        gap: 2rem;
    }
    .message_txt h4 {
        font-size: 1.5rem;
    }
    .message_txt p {
        font-size: .9rem;
    }
    .message_name span {
        font-size: 2rem;
    }
}
@media (max-width: 450px) {
    .message_img {
        border-radius: 10px;
    }
    .message_content {
        gap: 20px;
    }
    .message_txt {
        gap: 20px;
    }
    .message_txt h4 {
        font-size: 20px;
    }
    .message_txt p {
        font-size: 14px;
    }
    .message_name span {
        font-size: 24px;
    }
}

/* -----------page staff style-- -------- */
.staff_intro {
    display: grid;
    grid-template-columns: calc(50% - 1.7rem) calc(50% - 1.7rem);
    justify-content: space-between;
    gap: 5rem 3.4rem;
}
.intro_item {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.intro_img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 743/496;
    display: flex;
}
.intro_img .animated_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.animated_img {
    width: 100%;
    height: 100%;
}
.intro_img .check_mark {
    position: absolute;
    right: 2rem;
    bottom: -3.5rem;
    width: 6.5rem;
    z-index: 10;
}
.staff_name {
    font-size: 2rem;
    text-transform: uppercase;
}
.staff_name .jp_name {
    font-size: 4rem;
}
.staff_des {
    font-size: 1.7rem;
}
@media (max-width: 768px) {
    .staff_intro {
        grid-template-columns: calc(50% - .4rem) calc(50% - .4rem);
        gap: 2rem .8rem;
    }
    .intro_item {
        gap: 1rem;
    }
    .staff_name {
        font-size: .9rem;
        line-height: 1.3;
    }
    .staff_name .jp_name {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    .intro_img .check_mark {
        right: 1rem;
        bottom: -1.8rem;
        width: 3rem;
    }
    .staff_des {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .staff_intro {
        grid-template-columns: 100%;
        gap: 30px;
    }
    .intro_item {
        gap: 10px;
    }
    .staff_name {
        font-size: 16px;
    }
    .staff_name .jp_name {
        font-size: 26px;
    }
    .intro_img .check_mark {
        right: 15px;
        bottom: -25px;
        width: 45px;
    }
    .staff_des {
        font-size: 14px;
    }
}


/* -----------page access style-- -------- */
.access_txt {
    font-size: 2rem;
}
.access_map {
    width: 100%;
    height: 58rem;
    display: flex;
    border-radius: 1.7rem;
    overflow: hidden;
}
.access_map iframe {
    width: 100%;
    height: 100%;
}
.table_row {
    display: flex;
    align-items: center;
    padding: 3.33rem 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 {
    font-size: 2rem;
    padding: 0;
    margin: 0;
}
.table_row dt {
    width: 49rem;
}
.table_row dd {
    flex: 1;
}
@media (max-width: 768px) {
    .access_txt {
        font-size: .9rem;
    }
    .access_map {
        height: 20rem;
        border-radius: .8rem;
    }
    .table_row {
        padding: 1.3rem 0;
        gap: 1rem;
    }
    .table_row dt, .table_row dd {
        font-size: .9rem;
    }
    .table_row dt {
        width: 12rem;
    }
}
@media (max-width: 450px) {
    .access_txt {
        font-size: 15px;
    }
    .access_map {
        height: 250px;
        border-radius: 8px;
    }
    .table_row {
        padding: 13px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .table_row dt, .table_row dd {
        font-size: 14px;
    }
    .table_row dt {
        font-size: 15px;
        font-weight: bold;
        width: 100%;
    }
}



/* ----------page recruit style--------- */
.recruitment_inner {
    display: flex;
    flex-direction: column;
    gap: 12rem;
}
.recruitment_item {
    display: flex;
    gap: 3.4rem;
    padding: 4rem 3.33rem;
    background-color: var(--bg-white-color);
    border-radius: 1.6rem;
}
.recruitment_left, .recruitment_job {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: calc(50% - 1.7rem);
}
.recruitment_img {
    width: 100%;
    line-height: 0;
    border-radius: 1.5rem;
    overflow: hidden;
}
.recruitment_img img {
    width: 100%;
}
.recruitment_detail {
    display: flex;
    flex-direction: column;
    gap: 2.7rem;
}
.recruitment_detail h2 {
    font-size: 4rem;
    line-height: 1.5;
}
.recruitment_skill {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 3rem;
    border-left: 1px solid var(--bg-font-color);
}
.recruitment_skill h5 {
    font-size: 2rem;
}
.recruitment_skill p {
    font-size: 1.5rem;
}
.recruitment_salary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.salary_item {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.salary_item span {
    font-size: 1.7rem;
}
.salary_item span:first-child {
    width: 10rem;
    display: inline-block;
    text-align: center;
    border: 1px solid #707070;
}
.job_detail {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.job_detail h4 {
    font-size: 2.7rem;
}
.job_detail p {
    font-size: 1.7rem;
}
@media (max-width: 768px) {
    .recruitment_inner {
        gap: 5rem;
    }
    .recruitment_item {
        gap: 1.2rem;
        padding: 1.5rem 1.2rem;
        border-radius: .5rem;
    }
    .recruitment_left, .recruitment_job {
        width: calc(50% - .6rem);
        gap: 1.5rem;
    }
    .recruitment_img {
        border-radius: .6rem;
    }
    .recruitment_detail {
        gap: 1.3rem;
    }
    .recruitment_detail h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    .recruitment_skill {
        padding-left: 1.2rem;
        gap: .5rem;
    }
    .recruitment_skill h5 {
        font-size: 1rem;
    }
    .recruitment_skill p {
        font-size: .8rem;
    }
    .recruitment_salary {
        gap: .8rem;
    }
    .salary_item {
        gap: .5rem;
    }
    .salary_item span:first-child {
        width: 4rem;
    }
    .salary_item span {
        font-size: .75rem;
    }
    .job_detail {
        gap: .4rem;
    }
    .job_detail h4 {
        font-size: 1.2rem;
    }
    .job_detail p {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .recruitment_inner {
        gap: 50px;
    }
    .recruitment_item {
        flex-direction: column;
        gap: 20px;
        padding: 0;
        border-radius: 10px;
        overflow: hidden;
    }
    .recruitment_left, .recruitment_job {
        width: 100%;
        gap: 20px;
    }
    .recruitment_img {
        border-radius: 0;
    }
    .recruitment_detail {
        gap: 15px;
        padding: 0 15px;
    }
    .recruitment_detail h2 {
        font-size: 26px;
    }
    .recruitment_skill {
        padding-left: 15px;
        gap: 8px;
    }
    .recruitment_skill h5 {
        font-size: 17px;
    }
    .recruitment_skill p {
        font-size: 14px;
    }
    .recruitment_salary {
        gap: 8px;
    }
    .salary_item {
        gap: 8px;
    }
    .salary_item span:first-child {
        width: 70px;
    }
    .salary_item span {
        font-size: 14px;
    }
    .recruitment_job {
        padding: 0 15px 20px 15px;
    }
    .job_detail {
        gap: 5px;
    }
    .job_detail h4 {
        font-size: 20px;
    }
    .job_detail p {
        font-size: 14px;
    }
}


/* ----------page search style--------- */
.pg_search {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pg_search h2 {
    margin-top: -30px;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    color: var(--bg-blue-color);
}
@media (max-width: 768px) {
    .pg_search h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 450px) {
    .pg_search h2 {
        font-size: 24px;
    }
}


/* ----------page contact style--------- */
.contact_info, .contact_form {
    background-color: var(--bg-white-color);
    border-radius: 1.7rem;
}
.info_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.info_phonenumber {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.info_phonenumber h2 {
    font-size: 4rem;
    font-family: var(--fontM);
    line-height: 1.5;
}
.info_phonenumber span {
    width: 5rem;
}
.info_phonenumber svg {
    width: 100%;
}
.info_txt {
    font-size: 1.5rem;
    text-align: center;
}
@media (max-width: 768px) {
    .contact_info, .contact_form {
        border-radius: .8rem;
    }
    .info_inner {
        gap: 1.3rem;
    }
    .info_phonenumber {
        gap: 1.2rem;
    }
    .info_phonenumber span {
        width: 2rem;
    }
    .info_phonenumber h2 {
        font-size: 2rem;
    }
    .info_txt {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .contact_info, .contact_form {
        border-radius: 10px;
    }
    .info_inner {
        gap: 15px;
    }
    .info_phonenumber {
        gap: 10px;
    }
    .info_phonenumber span {
        width: 25px;
    }
    .info_phonenumber h2 {
        font-size: 30px;
    }
    .info_txt {
        font-size: 14px;
    }
}
.contact_form {
    padding: 0 6.2rem;
}
.form_field {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    margin-bottom: 3.5rem;
}
.field_cap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.7rem;
    color: var(--bg-black-color);
}
.field_cap span {
    display: inline-block;
    font-size: 1.3rem;
    padding: 0 .9rem;
    color: #EF4444;
    border: 1px solid #EF4444;
    border-radius: 999px;
}
.field_control {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}
.field_control > span {
    font-size: 1.7rem;
    color: var(--bg-black-color);
    opacity: .5;
}
.field_control label {
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    cursor: pointer;
}
.field_control label span {
    color: var(--bg-black-color);
}
.checkbox_list {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 3.33rem;
}
.checkbox_btn {
    gap: 1rem;
}
.agree_btn {
    gap: 1.5rem;
}
.field_control label a {
    color: var(--bg-black-color);
    text-decoration: underline;
}
input[type=text] , input[type=email] , textarea, select {
    width: 100%;
    font-size: 1.7rem;
    padding: 1.4rem;
    border: 1px solid #CCCCCC;
    border-radius: .5rem;
    background-color: #FFFFFF;
    outline: none;
}
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: 20rem;
    outline: none;
}
input[type=checkbox] {
    margin: 0;
    width: 1.8rem;
    height: 1.8rem;
}
.field_contactbtn {
    text-align: center;
}
.field_contactbtn button {
    position: relative;
    display: flex;
    align-items: center;
    width: 25rem;
    height: 6rem;
    background-color: var(--bg-font-color);
    border: 1px solid var(--bg-font-color);
    border-radius: .4rem;
    cursor: pointer;
    outline: none;
    margin: 0 auto;
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
}
.field_contactbtn button span {
    position: absolute;
    left: 2.5rem;
    font-size: 1.7rem;
    color: var(--bg-white-color);
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
}
.field_contactbtn button svg {
    position: absolute;
    right: 2.5rem;
    width: 1.5rem;
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
}
.field_contactbtn button:hover {
    background-color: transparent;
}
.field_contactbtn button:hover span {
    left: 50%;
    transform: translateX(-50%);
    color: var(--bg-font-color);
}
.field_contactbtn button:hover svg {
    scale: 0;
}
@media (max-width: 768px) {
    .contact_form {
        padding: 0 2rem;
    }
    .form_field {
        gap: .6rem;
        margin-bottom: 1.5rem;
    }
    .field_cap {
        font-size: .95rem;
        gap: .6rem;
    }
    .field_cap span {
        font-size: .65rem;
        padding: 0 .6rem;
    }
    .field_control {
        gap: .3rem;
    }
    .checkbox_list {
        gap: 1.3rem;
    }
    .field_control > span {
        font-size: .8rem;
    }
    input[type=text], input[type=email], textarea {
        font-size: .8rem;
        padding: .8rem;
        border-radius: .3rem;
    }
    .contact_form .form_field .field_control textarea {
        height: 10rem;
    }
    .field_control label {
        font-size: .8rem;
    }
    .agree_btn {
        gap: .6rem;
    }
    .checkbox_btn {
        gap: .3rem;
    }
    input[type=checkbox] {
        width: .9rem;
        height: .9rem;
    }
    .field_contactbtn button {
        width: 13rem;
        height: 3.3rem;
    }
    .field_contactbtn button span {
        font-size: .9rem;
        left: 1.3rem;
    }
    .field_contactbtn button svg {
        width: .9rem;
        right: 1.3rem;
    }
}
@media (max-width: 450px) {
    .contact_form {
        padding: 20px 15px;
    }
    .form_field {
        gap: 8px;
        margin-bottom: 20px;
    }
    .field_cap {
        font-size: 15px;
        gap: 8px;
    }
    .field_cap span {
        font-size: 10px;
    }
    .field_control {
        gap: 3px;
    }
    .checkbox_list {
        justify-content: space-between;
    }
    .field_control > span {
        font-size: 14px;
    }
    input[type=text], input[type=email], textarea {
        font-size: 15px;
        padding: 10px;
        border-radius: 4px;
    }
    .contact_form .form_field .field_control textarea {
        height: 160px;
    }
    .field_control label {
        align-items: flex-start;
        font-size: 14px;
    }
    .checkbox_btn {
        gap: 5px;
    }
    input[type=checkbox] {
        width: 15px;
        height: 15px;
        margin-top: 3px;
    }
    .field_contactbtn button {
        width: 250px;
        height: 55px;
    }
    .field_contactbtn button span {
        font-size: 16px;
        left: 25px;
    }
    .field_contactbtn button svg {
        width: 16px;
        right: 25px;
    }
}
/* ----------single staff style--------- */
.staff_view {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.view_img, .view_person, .view_txt {
    display: flex;
    flex-direction: column;
}
.view_img {
    border-radius: 1.7rem;
    overflow: hidden;
}
.view_img, .view_img img {
    width: 100%;
}
.view_person {
    gap: 1rem;
}
.view_person h2 {
    font-size: 4rem;
}
.view_person div {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-left: 1px solid var(--bg-font-color);
}
.view_person p {
    font-size: 1.8rem;
}
.view_txt {
    gap: 2rem;
}
.view_txt p {
    display: flex;
    align-items: flex-start;
    gap: 1.7rem;
    font-size: 1.7rem;
}
.view_txt p span:first-child {
    width: 10rem;
    text-align: center;
    border: 1px solid var(--bg-font-color);
    display: inline-block;
}
.view_txt p span:last-child {
    flex: 1;
}
.view_txt .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 1.7rem;
}
.view_txt .row p {
    width: 49%;
}
@media (max-width: 768px) {
    .staff_view {
        gap: 2.5rem;
    }
    .view_img {
        border-radius: .8rem;
    }
    .view_person {
        gap: .6rem;
    }
    .view_person h2 {
        font-size: 1.8rem;
    }
    .view_person div {
        gap: .8rem;
        padding-left: 1rem;
    }
    .view_person p {
        font-size: 1rem;
    }
    .view_txt {
        gap: .8rem;
    }
    .view_txt p {
        font-size: .8rem;
        gap: .8rem;
    }
    .view_txt p span:first-child {
        width: 5rem;
    }
    .view_txt .row {
        row-gap: 1rem;
    }
}
@media (max-width: 450px) {
    .staff_view {
        gap: 25px;
    }
    .view_img {
        border-radius: 8px;
    }
    .view_person {
        gap: 8px;
    }
    .view_person h2 {
        font-size: 26px;
    }
    .view_person div {
        gap: 12px;
        padding-left: 15px;
    }
    .view_person p {
        font-size: 14px;
    }
    .view_txt {
        gap: 15px;
    }
    .view_txt p {
        flex-direction: column;
        font-size: 14px;
        gap: 5px;
    }
    .view_txt p span:first-child {
        width: 75px;
    }
    .view_txt .row {
        row-gap: 15px;
    }
    .view_txt .row p {
        width: 47%;
    }
}

/* ---------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: var(--bg-black-color);
}
.footer_inner {
    padding: 0 7rem;
}
.footer_main {
	display: flex;
	flex-direction: column;
	gap: 3em;
	padding: 13rem 0
}
.footer_info p {
	font-size: 1.5rem;
	color: #FFF;
}
.footer_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer_logo {
    display: flex;
    width: 7rem;
}
.footer_logo img {
    width: 100%;
}
.footer_menu ul {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}
.footer_menu li a {
    position: relative;
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 500;
    color: #FFF;
    transition: all .3s;
}
.footer_link::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 1px;
    width: 0%;
    background-color: var(--bg-white-color);
    transition: all .3s;
}
.footer_menu .footer_link:hover::before {
    width: 100%;
}
.footer_menu li:last-child a {
    padding: .9rem 1.8rem;
    border-radius: .4rem;
    color: var(--bg-font-color);
    border: 1px solid var(--bg-white-color);
    background-color: var(--bg-white-color);
}
.footer_menu li:last-child a:hover {
    background-color: transparent;
    border-color: var(--bg-white-color);
    color: var(--bg-white-color);
}
.footer_btm {
    text-align: center;
    padding: 5rem 0;
    border-top: 1px solid #565656;
}
.footer_btm p {
    font-size: 1.5rem;
    font-family: var(--fontR);
    line-height: 1.5;
    color: #FFF;
}
@media (max-width: 768px) {
    .footer_inner {
        padding: 0 2rem;
    }
	.footer_main {
		gap: 1.5rem;
		padding: 4rem 0;
	}
	.footer_info p {
		font-size: .8rem;
	}
    .footer_logo {
        width: 4rem;
    }
    .footer_menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer_menu li a {
        font-size: .9rem;
    }
    .footer_menu li:last-child a {
        padding: .6rem 1.3rem;
        border-radius: .3rem;
    }
    .footer_btm {
        padding: 2rem 0;
    }
    .footer_btm p {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .footer_inner {
        padding: 0 15PX;
    }
	.footer_main {
		padding: 60px 0;
        padding-bottom: 40px;
		gap: 20px;
	}
    .footer_top {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
	.footer_info p {
		font-size: 13px;
	}
    .footer_logo {
        width: 75px;
    }
    .footer_menu {
        width: fit-content;
    }
    .footer_menu ul {
        flex-direction: column;
        gap: 20px;
    }
    .footer_menu li a {
        font-size: 14px;
    }
    .footer_menu li:last-child a {
        padding: 8px 22px;
    }
    .footer_btm {
        padding: 25px 0;
    }
    .footer_btm p {
        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: 70px;
    margin-top: -41px;
    margin-left: -35px;
    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: 60;
        margin-left: -30px;
        margin-top: -35px;
    }
}