@charset "UTF-8";
/* ----------Font Family Noto Sans Jp------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800&display=swap');
/*#region var*/
:root {
    --pxunit: .83rem;
    --fontB: 'Noto Sans JP', sans-serif; /* Base font */
    --fontP: 'Poppins', serif; /* Title font */
    --fontR: 'Raleway';
    --headerH: 11rem;
    --bg-font-color: #333333;
    --bg-black-color: #000000;
    --bg-blue-color: #4682B4;
    --bg-grey-color: #EFEFEF;
    --bg-blue-color: #0279C5;
}
*{
    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*/
html, body {overflow-x: hidden;}
h1,h2,h3,h4,h5,h6{margin:0px; padding:0px; font-weight:normal;}
p{margin:0px; padding:0px;}
a{text-decoration:none; -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s linear; -o-transition: all 0.3s linear; -ms-transition: all 0.3s linear; transition: all 0.3s linear;} 
a:hover, a:focus, a:active{ outline:none; text-decoration:none; }
input{-webkit-transition: all 0.3s linear; -moz-transition: all 0.3s linear; -o-transition: all 0.3s linear; -ms-transition: all 0.3s linear; transition: all 0.3s linear;} 
input:hover, input:focus, input:active{outline:none;}
input::-webkit-input-placeholder{color:#333333;}
input::-moz-placeholder{color:#333333;}
input:-ms-input-placeholder{color:#333333;}
input:-moz-placeholder{color:#333333;}
textarea::-webkit-input-placeholder{color:#333333;}
textarea::-moz-placeholder{color:#333333;}
textarea:-ms-input-placeholder{color:#333333;}
textarea:-moz-placeholder{color:#333333;}
button:focus {outline:0;}
ul{margin:0px; padding:0px;}
ul li{list-style-type:none;}
img{border:0px;}
.clearfix{clear:both; overflow:hidden;}
/*#endregion RESET*/

/*#region pspander*/
.pspander_header {
    cursor: pointer;
}
.pspander_opened {
    display: block;
}
.pspander_closed {
    display: none;
}
.pspander.pst_show .pspander_opened {
    display: none;
}
.pspander.pst_show .pspander_closed {
    display: block;
}
.pspander_collapse {
    display: none;
}
/*#endregion pspander*/
/*#region ANIMATION*/
/*#region opacity animation*/
.js_opac {opacity: 0;transition: all 1s;transition-delay: 1s;}
.js_opac.on {opacity: 1;}
/*#endregion opacity animation*/
/*#region spin animation*/
/* spin1 */
@keyframes spin1 {
	0% {transform: rotate(0deg)translate3d(7px, 0, 0);}
	100% {transform: rotate(360deg)translate3d(7px, 0, 0);}
}

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

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

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

/* spin5 */
@keyframes spin5 {
	0% {transform: rotate(0deg)translate3d(2px, 0, 0);}
	100% {transform: rotate(-360deg)translate3d(2px, 0, 0);}
}
.circleWrap {position: relative;width: 100%;height: 100%;}
.circle {position: absolute;border-radius: 50%;width: 100%;height: 100%;}
.c_pos01 {top: 0;border-style: solid;border-width: 1px;border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin1 5s linear infinite;
    -moz-animation: spin1 5s linear infinite;
    -ms-animation: spin1 5s linear infinite;
    -o-animation: spin1 5s linear infinite;
    animation: spin1 5s linear infinite;
    /*  	animation: bo-co1 10s infinite;
        -webkit-animation: bo-co1 10s infinite; */
}
.c_pos02 {top: 0;border-style: solid;border-width: 1px;border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin2 4s linear infinite;
    -moz-animation: spi2 4s linear infinite;
    -ms-animation: spin2 4s linear infinite;
    -o-animation: spin2 4s linear infinite;
    animation: spin2 4s linear infinite;
    /* 	animation: bo-co2 9s infinite;
        -webkit-animation: bo-co2 9s infinite; */
}
.c_pos03 {top: 0;border-style: solid;border-width: 1px;border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin3 7s linear infinite;
    -moz-animation: spi3 7s linear infinite;
    -ms-animation: spin3 7s linear infinite;
    -o-animation: spin3 7s linear infinite;
    animation: spin3 7s linear infinite;
    /* 	animation: bo-co3 11s infinite;
        -webkit-animation: bo-co3 11s infinite; */
}
.c_pos04 {top: 0;border-style: solid;border-width: 1px;border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin4 7s linear infinite;
    -moz-animation: spi4 7s linear infinite;
    -ms-animation: spin4 7s linear infinite;
    -o-animation: spin4 7s linear infinite;
    animation: spin4 7s linear infinite;
    /* 	animation: bo-co1 12s infinite;
        -webkit-animation: bo-co1 12s infinite; */
}
.c_pos05 {top: 0;border-style: solid;border-width: 1px;border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin5 8s linear infinite;
    -moz-animation: spi5 8s linear infinite;
    -ms-animation: spin5 8s linear infinite;
    -o-animation: spin5 8s linear infinite;
    animation: spin5 8s linear infinite;
    /* 	animation: bo-co2 10s infinite;
        -webkit-animation: bo-co2 10s infinite; */
}
/*#endregion spn animation*/
/*#region rotate animation*/
.rot360 {
    transform: rotate(0deg);
    animation: anim_rotate360 10s linear infinite;
}
@keyframes anim_rotate360 {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
/*#endregion rotate animation*/
/*#region clip-left-right animation*/
.panir3 {
    display: inline-block;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
    vertical-align: middle;
}
.panir3.on {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}
.panil3 {
    display: inline-block;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
    vertical-align: middle;
}
.panil3.on {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}
/*#endregion clip-left-right animation*/
/*#region pani text rising animation*/
.pani4 {display: flex;overflow: hidden;}
.pani4 span {display: block;transform: translateY(100%);transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);color: transparent;}
.pani4.on span {color: #222;transform: translateY(0);}
.pani4 span:nth-child(0) {transition-delay: 0ms;}
.pani4 span:nth-child(1) {transition-delay: 80ms;}
.pani4 span:nth-child(2) {transition-delay: 160ms;}
.pani4 span:nth-child(3) {transition-delay: 240ms;}
.pani4 span:nth-child(4) {transition-delay: 320ms;}
.pani4 span:nth-child(5) {transition-delay: 400ms;}
.pani4 span:nth-child(6) {transition-delay: 480ms;}
.pani4 span:nth-child(7) {transition-delay: 560ms;}
.pani4 span:nth-child(8) {transition-delay: 640ms;}
.pani4 span:nth-child(9) {transition-delay: 720ms;}
.pani4 span:nth-child(10) {transition-delay: 800ms;}
.pani4 span:nth-child(11) {transition-delay: 880ms;}
.pani4 span:nth-child(12) {transition-delay: 960ms;}
.pani4 span:nth-child(13) {transition-delay: 1040ms;}
.pani4 span:nth-child(14) {transition-delay: 1120ms;}
.pani4 span:nth-child(15) {transition-delay: 1200ms;}
.pani4 span:nth-child(16) {transition-delay: 1280ms;}
.pani4 span:nth-child(17) {transition-delay: 1360ms;}
.pani4 span:nth-child(18) {transition-delay: 1440ms;}
.pani4 span:nth-child(19) {transition-delay: 1520ms;}
.pani4 span:nth-child(19) {transition-delay: 1600ms;}
/*endregion pani text rising animation*/
/*#region evelit animaiton*/
.initani { overflow: hidden; position: relative; } 
.initani::before, 
.initani::after { content: ""; display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 1; } 
.initani.initani_wb::before { background-color: #fff; } 
.initani.initani_wb::after { background-color: var(--bg-blue-color); } 
.initani.initani_wbk::before { background-color: var(--bg-grey-color); } 
.initani.initani_wbk::after { background-color: var(--bg-grey-color); }
.initani.initani_wy::before { background-color: #fff; } 
.initani.initani_wy::after { background-color: var(--bg-blue-color); }
.initani.initani_ww::before { background-color: #fff; } 
.initani.initani_ww::after { background-color: #FFF; } 

.initani::before { -webkit-transform-origin: left; -ms-transform-origin: left; transform-origin: left; 
    -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); 
    -webkit-transition: -webkit-transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    transition: -webkit-transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    transition: transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    transition: transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
} 
.initani::after { -webkit-transform-origin: left; -ms-transform-origin: left; transform-origin: left; 
    -webkit-transform: scaleX(0) translateX(0); -ms-transform: scaleX(0) translateX(0); transform: scaleX(0) translateX(0); 
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    transition: -webkit-transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    transition: transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
    transition: transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53); 
} 
.anistart::before { -webkit-transform: translateX(101%); -ms-transform: translateX(101%); transform: translateX(101%); } 
.anistart::after { -webkit-transform: scaleX(1) translateX(101%); -ms-transform: scaleX(1) translateX(101%); transform: scaleX(1) translateX(101%); }
/*#endregion evelit animaiton*/
/*region coiran animation*/
@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
        -ms-transform: scale(1);
    }
    5% {
        opacity: 1
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
        transform: scale(1.1);
        -ms-transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
        -ms-transformm: scale(1);
    }
}

@-o-keyframes slideShow {
    0% {
        opacity: 0;
        -o-transform: scale(1);
    }
    5% {
        opacity: 1
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
        -o-transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -o-transformm: scale(1);
    }
}

@-moz-keyframes slideShow {
    0% {
        opacity: 0;
        -moz-transform: scale(1);
    }
    5% {
        opacity: 1
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
        -moz-transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -moz-transformm: scale(1);
    }
}

@-webkit-keyframes slideShow {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
    }
    5% {
        opacity: 1
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
        -webkit-transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transformm: scale(1);
    }
}
/*endregion coiran animation*/
/*#region io animation*/
.pioup {
    -webkit-transition: color 0.4s ease 0s, background-color 0.4s ease 0s, opacity 1.0s ease 0s, -webkit-transform 1.0s ease 0s;
	transition: color 0.4s ease 0s, background-color 0.4s ease 0s, opacity 1.0s ease 0s, transform 1.0s ease 0s;
    -webkit-backface-visibility: hidden;
	backface-visibility: hidden;
    will-change: opacity, transform;
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0);
}
.pioup.on {
    opacity: 1 !important;
	-webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
	transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
}
/*#endregion io animation*/
/*#endregion ANIMATION*/

/*#region COMMON*/
.pmh_anchor {transform: translateY(-100px);content: "";width: 100%;height: 0;}
.jp_wbr {word-break: keep-all;}
.disb_sp {
    display: none !important;
}
.disb_pc {
    display: block !important;
}
/*#endregion COMMON*/

/*#region HEADER*/

header{margin: 0; padding: 0 3.5rem; width: 100%; position:fixed; top: 0; height: var(--headerH);z-index:111; transition: all 0.3s linear; -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s linear; -o-transition: all 0.3s linear; -ms-transition: all 0.3s linear;background-color: 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: 8rem;}
.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.8rem;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 .headmenu_shape .headmenu_cap {font-size: 1.7rem;font-weight: 700;line-height: 1.6;}
.headmenu_a:last-child {padding-right: 0;}
.headmenu_a:last-child .headmenu_shape .headmenu_cap {padding: .9rem 3.3rem;border-radius: 999px;background-color: transparent;border: 1px solid var(--bg-font-color);}
.headmenu_a:last-child:hover .headmenu_shape .headmenu_cap {background-color: var(--bg-blue-color);color: #FFF;transition: all .5s;border-color: var(--bg-blue-color);}
.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 4rem;
}
.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 1.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-inner {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.pg_ttl {
    display: flex;
    flex-direction: column;
    padding: 0 12rem;
    gap: 6.2rem;
}
.pg_ttl h1 {
    font-size: 5.3rem;
    font-weight: 700;
    width: fit-content;
}
.pg_ttl .bread_list ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.bread_list li a, .bread_list li span {
    font-size: 1.5rem;
}
.pg_img {
    width: 100%;
    border-radius: 1.7rem;
    line-height: 0;
    overflow: hidden;
}
.pg_img img {
    width: 100%;
}
@media (max-width: 768px) {
    .pg_header-inner {
        gap: 2rem;
    }
    .pg_ttl {
        padding: 0 1rem;
        gap: 2.5rem;
    }
    .pg_ttl h1 {
        font-size: 2.5rem;
    }
    .pg_img {
        border-radius: .7rem;
    }
    .pg_ttl .bread_list ul {
        gap: .6rem;
    }
    .bread_list li a, .bread_list li span {
        font-size: .7rem;
    }
}
@media (max-width: 450px) {
    .pg_header-inner {
        gap: 15px;
    }
    .pg_ttl {
        padding: 0;
        gap: 30px;
    }
    .pg_ttl h1 {
        font-size: 36px;
    }
    .pg_img {
        border-radius: 8px;
    }
    .pg_ttl .bread_list ul {
        gap: 8px;
    }
    .bread_list li a, .bread_list li span {
        font-size: 12px;
    }
}
.pg_navi-list {
    background-color: #FFF;
    border-radius: 9999px;
    padding: 2rem 3.5rem;
}
.pg_navi-list ul {
    display: flex;
    align-items: center;
}
.pg_navi-list ul li {
    flex: 1;
}
.pg_navi-list ul li a {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    border-right: 1px solid #CCCCCC;
}
.pg_navi-list ul li:last-child a {
    border: none;
}
.pg_navi-list ul a span {
    font-size: 1.7rem;
}
.pg_navi-list ul a div {
    position: relative;
    width: 1.2rem;
    height: 2rem;
    overflow: hidden;
}
.pg_navi-list ul a svg {
    width: 1rem;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .6s cubic-bezier(.165,.84,.44,1);
    transition-timing-function: cubic-bezier(.165,.84,.44,1);
}
.pg_navi-list .first_svg {
    top: 50%;
}
.pg_navi-list .last_svg {
    top: -50%;
}
.pg_navi-list ul a:hover .first_svg {
    top: 200%;
}
.pg_navi-list ul a:hover .last_svg {
    top: 50%;
}
@media (max-width: 768px) {
    .pg_navi-list {
        padding: 1rem 1rem;
    }
    .pg_navi-list ul a span {
        font-size: .8rem;
    }
    .pg_navi-list ul li a {
        gap: .6rem;
    }
    .pg_navi-list ul a div {
        width: .7rem;
        height: 1.1rem;
    }
    .pg_navi-list ul a svg {
        width: .5rem;
    }
}
@media (max-width: 450px) {
    .pg_navi-list {
        padding: 0;
        background-color: transparent;
    }
    .pg_navi-list ul {
        flex-direction: column;
        gap: 10px;
    }
    .pg_navi-list ul a span {
        font-size: 15px;
    }
    .pg_navi-list ul li {
        width: 100%;
    }
    .pg_navi-list ul li a {
        padding: 10px 0;
        gap: 10px;
        background-color: #FFFF;
        border: none;
        border-radius: 9999px;
    }
    .pg_navi-list ul a div {
        width: 10px;
        height: 15px;
    }
    .pg_navi-list ul a svg {
        width: 8px;
    }
}
.block_ttl {
    display: flex;
    align-items: flex-end;
    gap: 2.5rem;
    width: fit-content;
}
.block_ttl h2 {
    font-size: 4rem;
    line-height: 1;
}
.block_ttl h5 {
    font-size: 1.8rem;
    font-family: var(--fontR);
    font-weight: 600;
    color: var(--bg-blue-color);
    line-height: 1;
}
@media (max-width: 768px) {
    .block_ttl {
        gap: 1.3rem;
    }
    .block_ttl h2 {
        font-size: 2rem;
    }
    .block_ttl h5 {
        font-size: .9rem;
    }
}
@media (max-width: 450px) {
    .block_ttl {
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 0 auto;
    }
    .block_ttl h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    .block_ttl h5 {
        font-size: 14px;
    }
}
.animated_img {
    position: relative;
    overflow: hidden;
}
.animated_img:hover::before, .animated_img:hover::after{
    translate: 0% 0%;
}
.animated_img::before {
    background: rgba(255, 255, 255, .3); 
    content: "";
    height: 100%;
    right: 0;
    position: absolute;
    top: 0;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
    width: 101%;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
    top: 0;
    translate: 100% -100%;
    z-index: 99;
}
.animated_img::after {
    background: rgba(255, 255, 255, .3); 
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
    width: 101%;
    bottom: 0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    right: 0;
    translate: -100% 100%;
    z-index: 99;
}
.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: var(--bg-blue-color); 
    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 {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 2.5rem;
}
.banner_txt {
    text-align: center;
}
.banner_txt h1 {
    font-size: 13rem;
    font-family: var(--fontR);
    font-weight: 500;
    line-height: 1.2;
}
.banner_txt h3 {
    font-size: 3rem;
    font-weight: bold;
}
.banner_img, .banner_img img {
    width: 100%;
    line-height: 0;
}
@media (max-width: 768px) {
    .banner {
        padding-top: 20px;
        gap: 1.5rem;
    }
    .banner_txt h1 {
        font-size: 3.5rem;
    }
    .banner_txt h3 {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .banner {
        gap: 15px;
    }
    .banner_txt h1 {
        font-size: 48px;
    }
    .banner_txt h3 {
        font-size: 18px;
    }
}

.sec_ttl h1 {
    width: fit-content;
    font-size: 8rem;
    font-family: var(--fontR);
    line-height: 1.5;
    width: fit-content;
}
.sec_ttl h5 {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--bg-blue-color);
}
.sec_ttl h5:before {
    content: "";
    width: .8rem;
    height: .8rem;
    background-color: var(--bg-blue-color);
}
@media (max-width: 768px) {
    .sec_ttl h1 {
        font-size: 3.3rem;
        line-height: 1.3;
    }
    .sec_ttl h5 {
        font-size: 1rem;
        gap: .6rem;
    }
    .sec_ttl h5:before {
        width: 8px;
        height: 8px;
    }
}
@media (max-width: 450px) {
    .sec_ttl h1 {
        font-size: 38px;
    }
    .sec_ttl h5 {
        font-size: 14px;
        gap: 8px;
    }
    .sec_ttl h5:before {
        width: 6px;
        height: 6px;
    }
}
.more_btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 26rem;
    height: 6.2rem;
    border-radius: 9999px;
    border: 1px solid var(--bg-blue-color);
    background-color: var(--bg-blue-color);
    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: 3.3rem;
    font-size: 1.7rem;
    font-weight: bold;
    color: #FFF;
}
.more_btn svg {
    position: absolute;
    right: 3.3rem;
    width: 1.5rem;
}
.more_btn:hover {
    background-color: #FFF;
}
.more_btn:hover span {
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-blue-color);
}
.more_btn:hover svg {
    scale: 0;
}
@media (max-width: 768px) {
    .more_btn {
        width: 12rem;
        height: 3.1rem;
    }
    .more_btn span {
        font-size: 1rem;
        left: 1.5rem;
    }
    .more_btn svg {
        right: 1.5rem;
        width: 1rem;
    }
}
@media (max-width: 450px) {
    .more_btn {
        width: 170px;
        height: 45px;
    }
    .more_btn span {
        font-size: 14px;
        left: 20px;
    }
    .more_btn svg {
        right: 20px;
        width: 15px;
    }
}
.sec_service {
    position: relative;
    margin-top: -11rem;
    z-index: 10;
}
.service_inner {
    padding: 7rem 12rem;
    background-color: #FFF;
    border-radius: 1.7rem;
}
.service_content {
    display: flex;
    flex-direction: column;
    gap: 6.2rem;
}
.service_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service_img {
    width: 62rem;
    height: 50rem;
    line-height: 0;
    border-radius: 1rem;
    overflow: hidden;
}
.service_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.service_left {
    width: 38%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5rem;
}
.service_ttl {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
}
.service_ttl h1 {
    font-size: 5.3rem;
    font-family: var(--fontR);
    line-height: 1.2;
    color: var(--bg-black-color);
}
.service_ttl h4 {
    font-size: 2.7rem;
    color: var(--bg-black-color);
}
.service_left p {
    font-size: 1.7rem;
    color: var(--bg-black-color);
}
@media (max-width: 768px) {
    .sec_service {
        margin-top: -2rem;
    }
    .service_inner {
        padding: 4rem 3rem;
        border-radius: .7rem;
    }
    .service_content {
        width: 90%;
        margin: 0 auto;
        gap: 3rem;
    }
    .service_item {
        flex-direction: column-reverse;
        gap: .6rem;
    }
    .service_img {
        width: 100%;
        height: auto;
        border-radius: .6rem;
    }
    .service_left {
        width: 100%;
        gap: 1.5rem;
    }
    .service_ttl {
        gap: .5rem;
    }
    .service_ttl h1 {
        font-size: 3rem;
        line-height: 1;
    }
    .service_ttl h4 {
        font-size: 1.3rem;
    }
    .service_left p {
        font-size: .8rem;
    }
    
}
@media (max-width: 450px) {
    .sec_service {
        margin-top: 0;
    }
    .service_inner {
        padding: 40px 15px;
        border-radius: 10px;
    }
    .service_content {
        width: 100%;
        gap: 40px;
    }
    .service_item {
        gap: 15px;
    }
    .service_img {
        border-radius: 8px;
    }
    .service_left {
        width: 100%;
        gap: 15px;
    }
    .service_ttl {
        gap: 5px;
    }
    .service_ttl h1 {
        font-size: 34px;
    }
    .service_ttl h4 {
        font-size: 18px;
    }
    .service_left p {
        font-size: 14px;
    }
    
}


.department_content {
    display: grid;
    grid-template-columns: calc(50% - 1.7rem) calc(50% - 1.7rem);
    gap: 3.4rem;
}
.department_item {
    display: flex;
    flex-direction: column;
    gap: 12.5rem;
    padding: 3.4rem 2rem;
    border-radius: 1rem;
    background-color: #FFF;
}
.department_item:hover .animated_img::before, .department_item:hover .animated_img::after{
    translate: 0% 0%;
}
.department_top {
    padding: 0 1.7rem;
    display: flex;
    justify-content: space-between;
}
.department_order {
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 1.3rem;
    font-family: var(--fontR);
    line-height: 1;
    color: var(--bg-blue-color);
}
.department_order span {
    font-size: 5.3rem;
    font-family: var(--fontR);
    line-height: 1;
    color: var(--bg-blue-color);
}
.department_img {
    width: 25rem;
    height: 14rem;
    border-radius: 1rem;
    overflow: hidden;
    line-height: 0;
}
.department_img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.department_btm {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.department_ttl h3 {
    font-size: 3.3rem;
    font-family: var(--fontR);
    line-height: 1.5;
}
.department_ttl h5 {
    font-size: 2rem;
}
.department_link {
    position: relative;
    display: flex;
    align-items: center;
    width: 19rem;
    height: 4.5rem;
    border-radius: 9999px;
    border: 1px solid var(--bg-blue-color);
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
}
.department_link span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
    left: 2.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-blue-color);
}
.department_link svg {
    position: absolute;
    right: 2.5rem;
    width: 1.4rem;
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
}
.department_item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15) !important;
    z-index: 3;
}
.department_item:hover .department_link {
    background-color: var(--bg-blue-color);
}
.department_item:hover .department_link span {
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
}
.department_item:hover .department_link svg {
    scale: 0;
}
@media (max-width: 768px) {
    .department_content {
        grid-template-columns: calc(50% - .5rem) calc(50% - .5rem);
        gap: 1rem;
    }
    .department_item {
        gap: 0;
        padding: 0;
        border-radius: .6rem;
        overflow: hidden;
    }
    .department_top {
        flex-direction: column-reverse;
        align-items: flex-start;
        padding: 0;
        gap: 1rem;
    }
    .department_img {
        width: 100%;
        height: 10rem;
        border-radius: 0;
    }
    .department_order {
        font-size: .7rem;
        padding-left: 1rem;
    }
    .department_order span {
        font-size: 3rem;
    }
    .department_btm {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        padding-top: .5rem;
        gap: 1rem;
    }
    .department_ttl h3 {
        font-size: 1.3rem;
    }
    .department_ttl h5 {
        font-size: 1rem;
    }
    .department_link {
        width: 10rem;
        height: 2.5rem;
    }
    .department_link span {
        font-size: .8rem;
        left: 1.2rem;
    }
    .department_link svg {
        width: .8rem;
        right: 1.2rem;
    }
}
@media (max-width: 450px) {
    .department_content {
        grid-template-columns: 100%;
        gap: 20px;
    }
    .department_item {
        border-radius: 8px;
    }
    .department_top {
        gap: 10px;
    }
    .department_img {
        height: 20rem;
    }
    .department_order {
        font-size: 11px;
        padding-left: 15px;
    }
    .department_order span {
        font-size: 42px;
    }
    .department_btm {
        padding: 15px;
        padding-top: 5px;
        gap: 15px;
    }
    .department_ttl h3 {
        font-size: 24px;
    }
    .department_ttl h5 {
        font-size: 16px;
    }
    .department_link {
        width: 160px;
        height: 40px;
        margin-left: auto;
    }
    .department_link span {
        font-size: 13px;
        left: 20px;
    }
    .department_link svg {
        width: 14px;
        right: 20px;
    }
}


.company_content {
    flex-direction: row-reverse;
}
.recruit_content, .company_content {
    display: flex;
    align-items: center;
}
.recruit_img, .company_img {
    width: calc(50% - 3.5rem);
    overflow: hidden;
    border-radius: 1.7rem;
    line-height: 0;
}
.recruit_img img, .company_img img {
    width: 100%;
}
.recruit_txt, .company_txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5rem;
    padding: 0 10rem;
}
.recruit_txt p, .company_txt p {
    font-size: 1.7rem;
    color: var(--bg-black-color);
}
@media (max-width: 768px) {
    .recruit_content, .company_content {
        width: 85%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 0 auto;
    }
    .recruit_img, .company_img {
        width: 100%;
        border-radius: .6rem;
    }
    .recruit_txt, .company_txt {
        gap: 1.5rem;
        padding: 0;
    }
    .recruit_txt p, .company_txt p {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .recruit_content, .company_content {
        width: 100%;
        gap: 10px;
    }
    .recruit_img, .recruit_txt {
        width: 100%;
    }
    .recruit_img, .company_img {
        border-radius: 10px;
    }
    .recruit_txt, .company_txt {
        gap: 25px;
    }
    .recruit_txt p, .company_txt p {
        font-size: 14px;
    }
}

.contact_link {
    display: flex;
}
.contact_content {
    padding: 13rem 10rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-blue-color);
    border-radius: 1.7rem;
}
.contact_left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact_left h1 {
    font-size: 8rem;
    font-family: var(--fontR);
    color: #FFF;
    line-height: 1
}
.contact_left h5 {
    font-size: 2rem;
    color: #FFF;
}
.contact_right {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 5rem;
}
.contact_right p {
    width: fit-content;
    font-size: 1.7rem;
    color: #FFF;
}
.contact_circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 50%;
    border: 1px solid #FFF;
    background-color: #FFF;
    overflow: hidden;
}
.contact_circle svg {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2.5rem;
    transition: all .6s cubic-bezier(.165,.84,.44,1);
    transition-timing-function: cubic-bezier(.165,.84,.44,1);
}
.contact_circle .first_svg {
    left: 50%;
}
.contact_circle .last_svg {
    left: -50%;
}
.contact_link:hover .contact_circle .first_svg {
    left: 200%;
}
.contact_link:hover .contact_circle .last_svg {
    left: 50%;
}
@media (max-width: 768px) {
    .contact_content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
        padding: 3rem 2rem;
    }
    .contact_left {
        gap: 5px;
    }
    .contact_left h1 {
        font-size: 4rem;
    }
    .contact_left h5 {
        font-size: 1.1rem;
    }
    .contact_right {
        width: fit-content;
		margin-left: auto;
    }
    .contact_right p {
        font-size: .9rem;
    }
    .contact_circle {
        width: 4rem;
        height: 4rem;
    }
    .contact_circle svg {
        width: 1.3rem;
    }
}
@media (max-width: 450px) {
    .contact_content {
        gap: 30px;
        padding: 30px 20px;
        padding-bottom: 20px;
    }
    .contact_left {
        gap: 8px;
    }
    .contact_left h1 {
        font-size: 42px;
    }
    .contact_left h5 {
        font-size: 15px;
    }
    .contact_right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .contact_right p {
        font-size: 14px;
    }
    .contact_circle {
        width: 60px;
        height: 60px;
		margin-left: auto;
    } 
    .contact_circle svg {
        width: 22px;
    }
}





/* -------------page service style------------- */
.detail_item {
    display: flex;
    justify-content: space-between;
    gap: 3.5rem;
}
.detail_img, .detail_left {
    width: calc(50% - 1.75rem);
    display: flex;
    border-radius: 1rem;
    overflow: hidden;
}
.detail_img img {
    width: 100%;
}
.detail_left {
    flex-direction: column;
    justify-content: center;
    gap: 5rem;
    background-color: #FFF;
    padding: 3.3rem;
}
.detail_txt {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
}
.detail_txt h3 {
    font-size: 3.3rem;
    color: var(--bg-black-color);
    line-height: 1.3;
}
.detail_txt p {
    font-size: 1.7rem;
    color: var(--bg-black-color);
}
@media (max-width: 768px) {
    .detail_item {
        flex-direction: column-reverse;
        align-items: center;
        gap: 0;
    }
    .detail_img, .detail_left {
        width: 90%;
    }
    .detail_img {
        border-radius: .6rem .6rem 0  0;
    }
    .detail_left {
        border-radius: 0 0 .6rem .6rem;
    }
    .detail_left {
        gap: 2rem;
        padding: 1.2rem;
    }
    .detail_txt {
        gap: 1.2rem;
    }
    .detail_txt h3 {
        font-size: 1.4rem;
    }
    .detail_txt p {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .detail_img, .detail_left {
        width: 100%;
    }
    .detail_img {
        border-radius: 10px 10px 0  0;
    }
    .detail_left {
        border-radius: 0 0 10px 10px;
    }
    .detail_left {
        gap: 30px;
        padding: 15px;
    }
    .detail_txt {
        gap: 15px;
    }
    .detail_txt h3 {
        font-size: 20px;
    }
    .detail_txt p {
        font-size: 14px;
    }
}
.service_flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15rem;
}
.flow_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7rem;
    padding: 6rem;
    border-radius: 1.7rem;
    background-color: #FFFFFF40;
}
.flow_item {
    display: flex;
    align-items: center;
    gap: 6rem;
}
.flow_step {
    position: relative;
}
.flow_circle {
    width: 13rem;
    height: 13rem;
    border-radius: 50%;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flow_circle svg {
    width: 5rem;
    height: 5rem;
}
.flow_order {
    position: absolute;
    left: -1rem;
    top: -1rem;
    text-align: center;
    font-size: 1.5rem;
    font-family: var(--fontR);
    font-weight: 500;
    color: var(--bg-blue-color);
    line-height: .8;
}
.flow_order span {
    font-size: 4rem;
    font-family: var(--fontR);
    font-weight: 500;
    color: var(--bg-blue-color);
    line-height: .8;
}
.flow_txt {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.flow_txt h5 {
    font-size: 2rem;
    font-weight: bold;
}
.flow_txt p {
    font-size: 1.7rem;
}
@media (max-width: 768px) {
    .service_flow {
        flex-direction: column;
        gap: 3rem;
    }
    .flow_content {
        padding: 2rem;
        gap: 2rem;
        border-radius: 1rem;
    }
    .flow_item {
        gap: 2rem;
    }
    .flow_circle {
        width: 6.5rem;
        height: 6.5rem;
    }
    .flow_circle svg {
        width: 3rem;
        height: 3rem;
    }
    .flow_order {
        top: -.5rem;
        left: -.5rem;
        font-size: .8rem;
    }
    .flow_order span {
        font-size: 2rem;
    }
    .flow_txt {
        gap: 1.2rem;
    }
    .flow_txt h5 {
        font-size: 1.2rem;
    }
    .flow_txt p {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .service_flow {
        gap: 40px;
    }
    .flow_content {
        padding: 40px 20px;
        gap: 30px;
        background-color: #FFFFFF60;
    }
    .flow_item {
        gap: 15px;
    }
    .flow_circle {
        width: 70px;
        height: 70px;
    }
    .flow_circle svg {
        width: 28px;
        height: 28px;
    }
    .flow_order {
        top: -5px;
        left: -5px;
        font-size: 12px;
    }
    .flow_order span {
        font-size: 24px;
    }
    .flow_txt {
        gap: 10px;
    }
    .flow_txt h5 {
        font-size: 16px;
    }
    .flow_txt p {
        font-size: 13px;
    }
}


/* -------------page business style------------- */
.intro_item {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding-bottom: 13rem;
    border-bottom: 1px solid #CCCCCC;
}
.intro_top, .intro_btm {
    display: flex;
    justify-content: space-between;
}
.intro_top h3 {
    font-size: 3.3rem;
    color: var(--bg-black-color);
    width: calc(50% - 1.7rem);
}
.intro_top p {
    width: calc(50% - 1.7rem);
    font-size: 1.7rem;
    color: var(--bg-black-color);
}
.intro_btm {
    gap: 3.4rem;
}
.intro_left, .intro_right {
    width: calc(50% - 1.7rem);
    border-radius: 1.7rem;
    overflow: hidden;
    line-height: 0;
}
.intro_right img {
    width: 100%;
}
.intro_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3.33rem;
    padding: 3.3rem;
    background-color: #FFF;
}
.intro_left h3 {
    font-size: 3.3rem;
    color: var(--bg-black-color);
}
.intro_left p {
    font-size: 1.7rem;
    color: var(--bg-black-color);
}
@media (max-width: 768px) {
    .intro_item {
        gap: 20px;
        padding-bottom: 5rem;
    }
    .intro_top, .intro_btm {
        align-items: flex-start;
        gap: 1rem;
    }
    .intro_top h3 {
        width: calc(50% - .5rem);
        font-size: 1.2rem;
    }
    .intro_top p {
        width: calc(50% - .5rem);
        font-size: .8rem;
    }
    .intro_left, .intro_right {
        width: calc(50% - .5rem);
        border-radius: .6rem;
    }
    .intro_left {
        padding: 1.1rem;
        gap: 1.1rem;
    }
    .intro_left h3 {
        font-size: 1.2rem;
    }
    .intro_left p {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .intro_item {
        gap: 2rem;
        padding-bottom: 50px;
    }
    .intro_top {
        margin-top: 20px;
    }
    .intro_top, .intro_btm {
        flex-direction: column;
        gap: 10px;
    }
    .intro_top h3 {
        width: 100%;
        font-size: 19px;
    }
    .intro_top p {
        width: 100%;
        font-size: 14px;
    }
    .intro_btm {
        gap: 0;
        flex-direction: column-reverse;
        border-radius: 10px;
        overflow: hidden;
    }
    .intro_left, .intro_right {
        width: 100%;
        border-radius: 0;
    }
    .intro_left {
        padding: 15px;
        gap: 20px;
    }
    .intro_left h3 {
        font-size: 19px;
    }
    .intro_left p {
        font-size: 14px;
    }
}

/* -------------page company style------------- */
.company_mission {
    display: flex;
    justify-content: space-between;
    gap: 3.4rem;
}
.mission_img, .mission_txt {
    width: calc(50% - 1.7rem);
    border-radius: 1.7rem;
    overflow: hidden;
}
.mission_img {
    text-align: center;
    padding: 1.5rem 0;
    background-color: #FFFFFF80;
}
.mission_img img {
    width: 55.5rem;
    margin: 0 auto;
}
.mission_txt {
    display: flex;
    align-items: center;
    padding: 3.33rem;
    background-color: #FFF;
}
.mission_txt p {
    font-size: 2rem;
    color: var(--bg-black-color);
}
@media (max-width: 768px) {
    .company_mission {
        gap: 1rem;
    }
    .mission_img, .mission_txt {
        width: calc(50% - .5rem);
        border-radius: .6rem;
    }
    .mission_img {
        display: flex;
        align-items: center;
    }
    .mission_img img {
        width: 90%;
    }
    .mission_txt {
        padding: 1.2rem;
    }
    .mission_txt p {
        font-size: .9rem;
    }
}
@media (max-width: 450px) {
    .company_mission {
        flex-direction: column;
        gap: 0;
        border-radius: 10px;
        overflow: hidden;
    }
    .mission_img, .mission_txt {
        width: 100%;
        border-radius: 0;
    }
    .mission_img {
        display: flex;
        align-items: center;
    }
    .mission_img img {
        width: 70%;
    }
    .mission_txt {
        padding: 20px 15px;
    }
    .mission_txt p {
        font-size: 14px;
    }
}


.company_profile {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.profile_table {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.profile_table img {
    width: 100%;
}
.table_row {
    display: flex;
    align-items: center;
    gap: 3.33rem;
    margin: 0;
    padding: 3.33rem 0;
    border-bottom: 1px solid #CCCCCC;
}
.table_row:first-child {
    border-top: 1px solid #CCCCCC;
}
.table_row dt, .table_row dd {
    font-size: 2rem;
    color: var(--bg-black-color);
    padding: 0;
    margin: 0;
}
.table_row dt {
    width: 50rem;
}
.table_row dd {
    flex: 1;
}
@media (max-width: 768px) {
    .company_profile {
        gap: 3rem;
    }
    .table_row {
        padding: 1.3rem 0;
        gap: 1rem;
    }
    .table_row dt, .table_row dd {
        font-size: .9rem;
    }
    .table_row dt {
        width: 10rem;
    }
}
@media (max-width: 450px) {
    .company_profile {
        gap: 30px;
    }
    .profile_table .table_row {
        display: flex;
    }
    .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------------- */
.recruit_portrait {
    display: flex;
    justify-content: space-between;
    gap: 3.4rem;
}
.portrait_img, .portrait_txt {
    width: calc(50% - 1.7rem);
    border-radius: 1.7rem;
    overflow: hidden;
}
.portrait_img {
    line-height: 0;
}
.portrait_img img {
    width: 100%;
}
.portrait_txt {
    display: flex;
    align-items: center;
    padding: 3.33rem;
    background-color: #FFF;
}
.portrait_txt p {
    font-size: 2.7rem;
    color: var(--bg-black-color);
}
@media (max-width: 768px) {
    .recruit_portrait {
        align-items: center;
        gap: 1rem;
    }
    .portrait_img, .portrait_txt {
        width: calc(50% - .5rem);
        border-radius: .6rem;
    }
    .portrait_txt {
        padding: 1.2rem;
    }
    .portrait_txt p {
        font-size: 1rem;
    }
}
@media (max-width: 450px) {
    .recruit_portrait {
        align-items: center;
        flex-direction: column;
        gap: 0;
        border-radius: 10px;
        overflow: hidden;
    }
    .portrait_img, .portrait_txt {
        width: 100%;
        border-radius: 0;
    }
    .portrait_txt {
        padding: 20px 15px;
    }
    .portrait_txt p {
        font-size: 16px;
    }
}

.recruit_aplication {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}
.recruit_aplication .table_row {
    align-items: flex-start;
}


/* -------------page contact style------------- */
.contact_inner {
    background-color: #FFF;
    border-radius: 1.7rem;
    padding: 0 12rem;
}
.contact_form {
    margin-top: 6rem;
}
.form_field {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    margin-bottom: 3.5rem;
}
.field_cap {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    font-size: 1.8rem;
    color: var(--bg-black-color);
}
.field_cap span {
    display: inline-block;
    font-size: 1.4rem;
    padding: 0 1rem;
    color: #EF4444;
    border: 1px solid #EF4444;
    border-radius: 999px;
}
.field_control {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.field_control > span {
    font-size: 1.8rem;
    color: var(--bg-black-color);
    opacity: .5;
}
.field_control label {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
}
.field_control label a {
    text-decoration: underline;
}
input[type=text] , input[type=email] , textarea, select {
    width: 100%;
    font-size: 1.7rem;
    padding: 1.5rem;
    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: 2rem;
    height: 2rem;
}
.field_contactbtn {
    text-align: center;
}
.field_contactbtn button {
    position: relative;
    display: flex;
    align-items: center;
    width: 36rem;
    height: 6.5rem;
    background-color: var(--bg-blue-color);
    border: 1px solid var(--bg-blue-color);
    border-radius: 999px;
    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: 3.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFF;
    transition: all .4s cubic-bezier(0.25,0.1,0.25,1);
}
.field_contactbtn button svg {
    position: absolute;
    right: 3.5rem;
    width: 2rem;
    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-blue-color);
}
.field_contactbtn button:hover svg {
    scale: 0;
}
@media (max-width: 768px) {
    .contact_inner {
        padding: 0 2rem;
        border-radius: 10px;
    }
    .contact_form {
        margin-top: 3rem;
    }
    .form_field {
        gap: 10px;
        margin-bottom: 25px;
    }
    .field_cap {
        font-size: 18px;
        gap: 12px;
    }
    .field_cap span {
        font-size: 14px;
        padding: 0 10px;
    }
    .field_control {
        gap: 6px;
    }
    .field_control > span {
        font-size: 17px;
    }
    input[type=text], input[type=email], textarea {
        font-size: 17px;
        padding: 12px;
        border-radius: 5px;
    }
    .contact_form .form_field .field_control textarea {
        height: 190px;
    }
    .field_control label {
        font-size: 17px;
        gap: 10px;
    }
    input[type=checkbox] {
        width: 16px;
        height: 16px;
    }
    .field_contactbtn button {
        width: 300px;
        height: 65px;
    }
    .field_contactbtn button span {
        font-size: 18px;
        left: 30px;
    }
    .field_contactbtn button svg {
        width: 18px;
        right: 30px;
    }
}
@media (max-width: 450px) {
    .pg_contact .hx16 {
        height: 60px;
    }
    .contact_inner {
        padding: 0 15px;
        border-radius: 10px;
    }
    .contact_form {
        margin-top: 40px;
    }
    .form_field {
        gap: 8px;
        margin-bottom: 20px;
    }
    .field_cap {
        font-size: 16px;
        gap: 10px;
    }
    .field_cap span {
        font-size: 12px;
        line-height: 1.5;
    }
    .field_control {
        gap: 0;
    }
    .field_control > span {
        font-size: 15px;
    }
    input[type=text], input[type=email], textarea {
        font-size: 15px;
        padding: 10px;
        border-radius: 4px;
    }
    .contact_form .form_field .field_control textarea {
        height: 180px;
    }
    .field_control label {
        align-items: flex-start;
        font-size: 15px;
        gap: 10px;
    }
    input[type=checkbox] {
        width: 15px;
        height: 15px;
        margin-top: 5px;
    }
    .field_contactbtn button {
        width: 280px;
        height: 58px;
    }
    .field_contactbtn button span {
        font-size: 17px;
    }
    .field_contactbtn button svg {
        width: 16px;
    }
}



/* ---------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: 1.8rem 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----------- */
#loading {
    width: 100vw;
    height: 100vh;
    background-color: #111;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    opacity: 1;
    transition: all .6s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none;
}
#loading.is-loaded {
    opacity: 0;
}
#loading .loader:before,
#loading .loader:after {
  opacity: 0;
  box-sizing: border-box;
  content: "\0020";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: 5px solid #fff;
  box-shadow: 0 0 50px #fff, inset 0 0 50px #fff;
}
#loading .loader {
    width: 150px;
    height: 150px;
    line-height: 150px;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    z-index: 0;
    text-transform: uppercase;
    color: #FFF;
    font-size: 20px;
    font-family: var(--fontM);
    font-weight: 600;
  }
#loading .loader:after {
    z-index: 1;
    -webkit-animation: gogoloader 2s infinite 1s;
}
  
#loading .loader:before {
    z-index: 2;
    -webkit-animation: gogoloader 2s infinite;
}

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


/* ---------------footer style------------- */
footer {
    background-color: #333333;
}
.footer_inner {
    padding: 0 7rem;
}
.footer_main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 10rem 0;
}
.footer_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer_logo {
    display: flex;
    width: 8rem;
}
.footer_info p {
    font-size: 1.6rem;
    color: #FFF;
}
.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;
    color: #FFF;
    transition: all .3s;
}
.footer_link::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 1px;
    width: 0%;
    background-color: #FFF;
    transition: all .3s;
}
.footer_menu .footer_link:hover::before {
    width: 100%;
}
.footer_menu li:last-child a {
    padding: .9rem 3rem;
    border-radius: 9999px;
    border: 1px solid #FFF;
}
.footer_menu li:last-child a:hover {
    background-color: var(--bg-blue-color);
    border-color: var(--bg-blue-color);
}
.footer_btm {
    text-align: center;
    padding: 4rem 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 {
        padding: 4rem 0;
        gap: 1.5rem;
    }
    .footer_top {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .footer_info p {
        font-size: .8rem;
    }
    .footer_logo {
        width: 6rem;
    }
    .footer_menu {
        width: 100%;
    }
    .footer_menu ul {
        width: 100%;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer_menu li a {
        font-size: .9rem;
    }
    .footer_menu li:last-child a {
        padding: .5rem 2rem;
    }
    .footer_btm {
        padding: 2rem 0;
    }
    .footer_btm p {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .footer_inner {
        padding: 0 15PX;
    }
    .footer_main {
        gap: 20px;
        padding: 60px 0;
        padding-bottom: 30px;
    }
    .footer_top {
        gap: 30px;
        flex-direction: row;
        align-items: flex-start;
    }
    .footer_info p {
        font-size: 14px;
    }
    .footer_logo {
        width: 70px;
    }
    .footer_menu {
        width: fit-content;
    }
    .footer_menu ul {
        flex-direction: column;
        gap: 25px;
    }
    .footer_menu li a {
        font-size: 15px;
    }
    .footer_menu li:last-child a {
        padding: 6px 25px;
    }
    .footer_btm {
        padding: 25px 0;
    }
    .footer_btm p {
        font-size: 12px;
    }
}
