@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Snas+JP:wght@200;300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:wght@200;300;400;500;600;700;900&display=swap');
/*#region var*/
:root {
    --pxunit: 10px;
    --fontB: 'Noto Sans JP', sans-serif; /* Base font */
    --fontT: 'Poppins', serif; /* Title font */
    --fontM: 'Montserrat';
    --headerH: 80px;
    --BlueColor: #004495;
    --canvasFont: 5rem;
    --bg-gray: #f5f5f5;
    --bg-beige-dark: #eee3da;
    --bg-beige-medium: #eae2d3;
    --bg-beige-light: #efebe4;
    --color-black: #030303;
    --color-gray: #8d8d8d;
    --border-color: #030303;
    --easing: cubic-bezier(0.2, 1, 0.2, 1);
    --transition: 0.8s var(--easing);
}
* {
    box-sizing: border-box;
    font-size: 1.333rem;
    font-family: var(--fontB);
    font-weight: normal;
    color: #030303; 
}
html {
    font-size: 0.625vw;
}
.hx1 {content: "";height: var(--pxunit);}
.hx2 {content: "";height: calc(var(--pxunit)*2);}
.hx3 {content: "";height: calc(var(--pxunit)*3);}
.hx4 {content: "";height: calc(var(--pxunit)*4);}
.hx5 {content: "";height: calc(var(--pxunit)*5);}
.hx6 {content: "";height: calc(var(--pxunit)*6);}
.hx7 {content: "";height: calc(var(--pxunit)*7);}
.hx8 {content: "";height: calc(var(--pxunit)*8);}
.hx9 {content: "";height: calc(var(--pxunit)*9);}
.hx10 {content: "";height: calc(var(--pxunit)*10);}
.hx11 {content: "";height: calc(var(--pxunit)*11);}
.hx12 {content: "";height: calc(var(--pxunit)*12);}
.hx13 {content: "";height: calc(var(--pxunit)*13);}
.hx14 {content: "";height: calc(var(--pxunit)*14);}
.hx15 {content: "";height: calc(var(--pxunit)*15);}
.hx16 {content: "";height: calc(var(--pxunit)*16);}
.hx17 {content: "";height: calc(var(--pxunit)*17);}
.hx18 {content: "";height: calc(var(--pxunit)*18);}
.hx19 {content: "";height: calc(var(--pxunit)*19);}
.hx20 {content: "";height: calc(var(--pxunit)*20);}
/*#endregion var*/

/*#region RESET*/
body{margin:0px; padding:0px; font-family: 'Noto Sans JP', sans-serif; font-weight:400; color: #1A1A1A;}
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;}
.wrapper{margin:0px;padding-top: var(--headerH);}
/*#endregion RESET*/

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

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

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

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

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

.initani.initani_tb::before { background-color: transparent; } 
.initani.initani_tb::after { background-color: #2b3f6c; } 
.company_greeting .initani.initani_wbk::before {background-color: #F2F2F2;}
.company_greeting .initani.initani_wbk::after {background-color: #F2F2F2;}



.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{padding:0 3.33rem; margin:0px; width:100%; position:fixed; top:0; width:100%; 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: #FFFFFF;border-bottom: 1px solid #CCCCCC;}
.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;align-items: center;justify-content: center;}
.header_logo img {width: 21.4rem;}
.header_menu {flex: 1;display: flex;justify-content: flex-end;align-items: center;}
.headmenu_ul {display: flex;justify-content: flex-end;}
.headmenu_a {position: relative;padding: 0 1.665rem;height: var(--headerH);display: flex;justify-content: center;align-items: center;flex-direction: column;transition: all .1s;letter-spacing: 1px;}
.headmenu_a:last-child {padding-right: 0;}
.headmenu_a .headmenu_cap {font-size: 1.33rem;font-weight: 600;line-height: 1;}
.headmenu_a .dropdown_menu {
    position: absolute;
    top: var(--headerH);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    display: none;
}
.headmenu_a:hover .dropdown_menu {
    display: block;
}
.headmenu_a .dropdown_menu a {
    display: block;
    background-color: #f1f1f1;
    padding: 12px 16px;
    font-size: 1.33rem;
}
.headmenu_a .dropdown_menu a:hover {
    background-color: #ddd;
}
.headmenu_a.hide_item {
    display: none;
}
.headmenu_shape {display: flex;justify-content: center;align-items: center;position: relative;}
.headmenu_uline {position: absolute;bottom: -8px;left: 0;content: "";height: 2px;background-color: #1A1A1A;width: 0;transition: all .3s;}
.headmenu_a:hover .headmenu_uline {width: 100%;}
.hamburger_set{ display: none; min-height:36px; line-height:36px; 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:#1A1A1A; 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;}
.menu-toggle-btn-text-hp{ font-size:10px; line-height:6px; color:#00B5C4; font-weight:600; letter-spacing:-0.39px; text-transform:uppercase; text-align:center; margin:0px; padding:9px 0px 0px; position:relative;}
.hide-scroll{ overflow:hidden !important;}
/*#endregion HEADER*/



/*# -------page common style-------- */
.container {
    padding: 40px;
}
.s-container {
    padding: 0 13rem;
}
@media (max-width: 676px) {
    .container {
        padding: 40px 30px;
    }
	.s-container {
        padding: 0 30px;
    }
}
@media (max-width: 450px) {
    .container {
        padding: 40px 20px;
    }
	.s-container {
        padding: 0 20px;
    }
}
.page_header h3 {
    width: fit-content;
    font-size: 36px;
    color: #004495;
    font-weight: 700;
}
@media (max-width: 991px) {
    .page_header h3 {
        font-size: 32px;
    }
}
@media (max-width: 475px) {
    .page_header h3 {
        font-size: 28px;
    }
}
.block_title h3 {
    font-size: 32px;
    font-weight: 700;
    width: fit-content;
}
.block_title h3 br {
    display: none;
}
@media (max-width: 1440px) {
    .block_title h3 {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .block_title h3 {
        font-size: 24px;
    }
}
@media (max-width: 576px) {
    .block_title h3 br {
        display: block;
    }
}
@media (max-width: 450px) {
    .block_title h3 {
        font-size: 21px;
    }
}
.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, .1); 
    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, .1); 
    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;
}
.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;
}
.full_padding{
    padding: 3vw;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}

.row_reverse{
    flex-direction: row-reverse;
}
.w_55{
    width: 55%;
}
.w_50{
    width: 50%;
}
.w_45{
    width: 45%;
}
.w_42{
    width: 42%;
}
.w_48{
    width: 48%;
}
.w_60{
    width: 60%;
}
.w_35{
    width: 35%;
}
.w_25{
    width: 25%;
}
.w_70{
    width: 70%;
}
.w_100{
    width: 100%;
}

.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;
    }
}
/*# -------page common style end-------- */


/* ------------page home style------------ */
.banner {
    position: relative;
    width: 100%;
    height: calc( 100vh - var(--headerH) );
	background-color: transparent !important;
}
.banner video {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
	background-color: #FFF !important;
    mix-blend-mode: lighten !important;
    opacity: 0.6;
	z-index: 8;
}
.banner_bg {
    position: fixed;
    background-color: #FFF !important;
    mix-blend-mode: lighten !important;
    opacity: .3;
    width: 100%;
    height: 100vh;
	z-index: 9;
}
.banner .banner_mark {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.banner .banner_mark img {
    width: 86rem;
}
.banner .scroll {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 30;
}
.banner .scroll__inner {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    position: relative;
}
.banner .scroll:before {
    content: "";
    display: block;
    width: 1.3953488372vw;
    height: 1.3953488372vw;
    background-color: #030303;
    border-radius: 50%;
    animation: b 2.6s ease-out infinite;
    position: absolute;
    left: -1.6279069767vw;
    top: -1.6279069767vw;
}
.banner .scroll__inner:after, .banner .scroll__inner:before {
    content: "";
    width: 1px;
    height: 16.7441860465vw;
    background-color: #030303;
    position: absolute;
    left: -.9302325581vw;
    top: -.9302325581vw;
    transition: background-color .3s;
}
.banner .scroll__inner:after {
    top: 13.9534883721vw;
    height: 1.8604651163vw;
    -ms-transform: skewX(-40deg);
    transform: skewX(-40deg);
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
}
.banner .scroll a {
    display: block;
    transition: opacity .2s;
    color: #030303;
    font-size: 3rem;
}
.banner .scroll a:hover {
    opacity: .2;
}
@keyframes b {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    75% {
        transform: translateY(5.4vw);
        opacity: 1;
    }
    100% {
        transform: translateY(5.4vw);
        opacity: 0;
    }
}
@media (min-width: 768px) {
    .banner .scroll {
        bottom: 2vw;
    }
    .banner .scroll:before {
        width: 5px;
        width: .390625vw;
        height: 5px;
        height: .390625vw;
        left: -.7vw;
        top: -.46875vw;
    }
    .banner .scroll__inner:after, .banner .scroll__inner:before {
        height: 55px;
        height: 5.4vw;
        left: -.6vw;
        top: -.3125vw;
    }
    
    .banner .scroll__inner:after {
        height: 7px;
        height: 1vw;
        top: 120%;
    }
    .banner .scroll a {
        font-size: 1.5rem;
    }
}
@media (max-width: 767px) {
    .banner .banner_mark img {
        width: 125rem;
    }
    .banner .scroll a {
        font-size: 11px;
    }
}
.mainHome {
    position: relative;
    z-index: 100;
}
.section_title h2 {
    font-family: var(--fontT);
    font-size: 48px;
    line-height: 1.6;
    text-align: center;
    font-weight: 600;
    color: var(--BlueColor);
    width: fit-content;
    margin: 0 auto;
}
@media (max-width: 1600px) {
    .section_title h2 {
        font-size: 45px;
    }
}
@media (max-width: 991px) {
    .section_title h2 {
        font-size: 42px;
    }
}
@media (max-width: 576px) {
    .section_title h2  {
        font-size: 36px;
    }
}
.vision .vision_content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}
.vision_content h2 {
    font-size: 3.33rem;
    line-height: 1.6;
    font-weight: 700;
}
.vision_content h3 {
    font-size: 2.7rem;
    line-height: 1.6;
    font-weight: 700;
}
.vision_content p {
    font-size: 1.67rem;
    line-height: 1.6;
    font-weight: 700
}
.vision_content p:last-child {
    font-weight: 400;
}
@media (max-width: 1600px) {
    .vision .vision_content {
        gap: 3.33rem;
    }
    .vision_content h2 {
        font-size: 3.5rem;
    }
    .vision_content h3 {
        font-size: 3rem;
    }
    .vision_content p {
        font-size: 1.8rem;
    }
}
@media (max-width: 1100px) {
    .vision_content h2 {
        font-size: 4rem;
    }
    .vision_content h3 {
        font-size: 3.5rem;
    }
    .vision_content p {
        font-size: 2.2rem;
    }
}
@media (max-width: 991px) {
    .vision_content h2 {
        font-size: 4.5rem;
    }
    .vision_content h3 {
        font-size: 4rem;
    }
    .vision_content p {
        font-size: 2.6rem;
    }
}
@media (max-width: 991px) {
    .vision_content h2 {
        font-size: 4.5rem;
    }
    .vision_content h3 {
        font-size: 4rem;
    }
    .vision_content p {
        font-size: 2.6rem;
    }
}
@media (max-width: 576px) {
    .vision_content h2 {
        font-size: 5.2rem;
    }
    .vision_content h3 {
        font-size: 4.8rem;
    }
    .vision_content p {
        font-size: 3.2rem;
    }
}
@media (max-width: 450px) {
    .vision .vision_content {
        gap: 20px;
    }
    .vision_content h2 {
        font-size: 15px;
    }
    .vision_content h3 {
        font-size: 14px;
    }
    .vision_content p {
        font-size: 12px;
    }
    .vision_content p:last-child {
        font-size: 12px;
        text-align: left;
    }
    .vision_content p .hide_br {
        display: none;
    }
}
.service_intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service_list {
    width: 65%;
    border: 1px solid #CCCCCC;
    padding: 20px 1.67rem;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.service_list .service_list_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service_list .service_list_header .service_mark {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    line-height: 1.6;
    color: #000;
    font-weight: 700;
}
.service_list .service_list_header .service_search {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 52%;
}
.service_list_header .service_search .search_box {
    display: flex;
    align-items: center;
    width: 91%;
    border-radius: 50px;
    border: 1px solid #CCCCCC;
}
.service_search .search_box div {
    font-size: 12px;
    padding: 8px 20px;
    flex: 1;
    opacity: .5;
}
.service_search .search_box span {
    padding: 8px 20px;
    border-left: 1px solid #CCCCCC;
    background-color: #FFF;
    border-radius: 0 50px 50px 0;
}
.service_list_header .service_search .search_mark {
    background-color: #F2F2F2;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service_list .service_list_header .service_info {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.service_list_header .service_info span:first-child {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    padding: 5px 10px;
    gap: 10px;
    background-color: #FFF;
    border-radius: 50px;
}
.service_list_header .service_info > div:last-child {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
	background-color: #FFF;
	overflow: hidden;
}
.service_list_header .service_info > div:last-child img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
	margin-bottom: 5px;
}
.service_list_content {
    display: flex;
    justify-content: space-between;
}
.service_list_content .service_left {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
} 
.service_list_content .service_left .service_banner {
    width: 100%;
    height: 36rem;
    border-radius: 10px;
    overflow: hidden;
}
.service_left .service_banner img {
    width: 100%;
    height: 100%;
}
.service_list_content .service_left .service_title {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 700;
}
.service_list_content .service_left .service_review {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.service_left .service_review .row {
    display: flex;
    align-items: center;
    width: fit-content;
}
.service_left .service_review .row:first-child {
    flex: 1;
    justify-content: space-between;
}
.service_left .service_review .row:first-child > div {
    display: flex;
    align-items: center;
    gap: 1.25rem;
} 
.service_left .service_review .row:first-child > div p {
    font-size: 1.33rem;
    line-height: 1.6;
    opacity: .8;
}
.service_left .service_review .row:first-child > div span {
    font-size: 1rem;
    line-height: 1.6;
    color: #595959;
}
.service_left .service_review .row:first-child > div > :first-child {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	background-color: #FFF;
}
.service_left .service_review .row:first-child > div > :first-child img {
    width: 100%;
    height: 100%;
	margin-bottom: 5px;
}
.service_left .service_review .row:first-child > span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background-color: #000;
    font-size: 1.1rem;
    line-height: 1.6;
    padding: .7rem 2rem;
    border-radius: 5rem;
}
.service_left .service_review .row:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.service_left .service_review .row:last-child > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    background-color: #FFF;
    padding: .4rem 1.25rem;
    border-radius: 4rem;
}
.service_left .service_review .row:last-child span {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}
.service_left .marks {
    font-size: 1.5rem;
    color: #595959;
    line-height: 1.6;
}
.service_left .marks > span {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    color: #000000;
}
.service_left .service_report {
    background-color: #FFF;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service_left .service_report p {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.6;
}
.service_left .service_report p span {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #595959;
}
.service_left .service_report > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.service_left .service_report > div div {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.service_left .service_report > div div img {
    width: 100%;
    height: 100%;
	margin-bottom: 5px;
}
.service_left .service_report > div span {
    flex: 1;
    padding: 10px;
    border-radius: 50px;
    font-size: 1.25rem;
    color: #595959;
    background-color: #E5E5E5;
}

.service_right {
    width: 29%;
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
}
.service_right .service_right_item {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.service_right .service_right_item > :first-child {
    width: 55%;
    height: 10rem;
    overflow: hidden;
    border-radius: 6px;
}
.service_right .service_right_item img {
    width: 100%;
    height: 100%;
}
.service_right .service_right_item > :last-child {
    width: 44%;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.service_right .service_right_item > :last-child p {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.5;
}
.service_right .service_right_item > span {
    font-size: 1rem;
    line-height: 1.6;
    opacity: .5;
}
.service_text {
    display: flex;
    flex-direction: column;
    gap: 3.33rem;
    width: 33%;
}
.service_text span {
    font-family: var(--fontM);
    font-weight: 700;
    font-size: 3.33rem;
    line-height: 1.6;
    color: var(--BlueColor);
}
.service_text h2 {
    font-weight: 700;
    font-size: 3.33rem;
    line-height: 1.6;
}
.service_text p {
    font-size: 1.5rem;
    line-height: 1.6;
}
@media (max-width: 1200px) {
    .service_list {
        width: 68%;
        gap: 20px;
    }
    .service_text {
        width: 30%;
    }
    .service_list_header .service_info span:first-child {
        font-size: 12px;
    }
    .service_search .search_box span {
        padding: 7px 15px;
    }
    .service_left .service_review .row:first-child > span {
        font-size: 1.2rem;
    }
    .service_left .service_review .row:last-child span {
        font-size: 1.3rem;
    }
    .service_text p {
        font-size: 1.8rem;
    }
    .service_list_content .service_left .service_review {
        gap: 1rem;
    }
}
@media (max-width: 1050px) {
    .service_intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .service_list {
        width: 100%;
    }
    .service_text {
        width: 75%;
        gap: 3rem;
    }
    .service_list_content .service_left .service_banner {
        height: 55rem;
    }
    .service_right .service_right_item > div:first-child {
        height: 14rem;
    }
    .service_right .service_right_item > div:last-child p {
        font-size: 1.7rem;
    }
    .service_right .service_right_item > div:last-child span {
        font-size: 1.7rem;
    }
    .service_list_content .service_left .service_title {
        font-size: 3rem;
    }
    .service_left .service_review .row:first-child > div > :first-child {
        width: 38px;
        height: 38px;
    }
    .service_left .service_review .row:first-child > div p {
        font-size: 2.2rem;
    }
    .service_left .service_review .row:first-child > div span {
        font-size: 1.7rem;
    }
    .service_left .service_review .row:first-child > span {
        font-size: 2rem;
        padding: 1rem 2.5rem;
    }
    .service_left .service_review .row:last-child {
        gap: 2rem;
    }
    .service_left .service_review .row:last-child span {
        font-size: 2rem;
    }
    .service_left .service_review .row:last-child > div {
        padding: .8rem 1.8rem;
    }
    .service_left .service_report p {
        font-size: 2.5rem;
    }
    .service_left .service_report p span {
        font-size: 2.2rem;
    }
    .service_left .service_report > div span {
        font-size: 2.5rem;
    }
    .service_left .service_report > div div {
        width: 38px;
        height: 38px;
    }
    .service_left .marks {
        font-size: 2.5rem;
    }
    .service_left .marks > span {
        font-size: 2.5rem;
    }



    .service_text span {
        font-size: 4rem;
    }
    .service_text h2 {
        font-size: 4rem;
    }
    .service_text p {
        font-size: 2.2rem;
    }
}
@media (max-width: 900px) {
    .service_right {
        width: 25%;
    }
    .service_right .service_right_item {
        flex-direction: column;
        justify-content: flex-start;
        gap: .5rem;
    }
    .service_right .service_right_item > div:last-child {
        width: 100%;
    }
    .service_right .service_right_item > div:last-child p {
        font-size: 2.3rem;
    }
    .service_right .service_right_item > div:last-child span {
        font-size: 2.3rem;
    }
    .service_right .service_right_item > div:first-child {
        width: 100%;
        height: 19rem;
    }
    .service_list_content .service_left {
        width: 73%;
    }
    .contents.home .container {
        padding: 40px 30px;
    }




    .service_text span {
        font-size: 5rem;
    }
    .service_text h2 {
        font-size: 5rem;
    }
    .service_text p {
        font-size: 2.8rem;
    }
}
@media (max-width: 767px) {
    .service_left .service_review .row:first-child > div > :first-child {
        width: 35px;
        height: 35px;
    }
    .service_left .service_review .row:last-child span svg {
        width: 20px;
    }
}
@media (max-width: 676px) {
    .contents.home .container {
        padding: 40px 20px;
    }
    .service_list {
        padding: 3rem;
    }
    .service_list_content {
        flex-direction: column;
        gap: 20px;
    }
    .service_right {
        width: 100%;
    }
    .service_right .service_right_item {
        width: 100%;
        flex-direction: row;
        gap: 10px;
    }
    .service_right .service_right_item > div:first-child {
        width: 40%;
        height: 33rem;
    }
    .service_right .service_right_item > div:last-child {
        width: 40%;
        gap: 2.5rem;
    }
    .service_right .service_right_item > div:last-child p {
        font-size: 3.8rem;
    }
    .service_right .service_right_item > div:last-child span {
        font-size: 3.8rem;
    }
    .service_list_content .service_left {
        width: 100%;
    }
    .service_list_content .service_left .service_banner {
        height: 70rem;
    }
    .service_list_content .service_left .service_title {
        font-size: 4rem;
    }
    .service_list_content .service_left .service_review {
        gap: 3rem;
    }
    .service_left .service_review .row:first-child > div p {
        font-size: 3.2rem;
    }
    .service_left .service_review .row:first-child > div span {
        font-size: 2.5rem;
    }
    .service_left .service_review .row:first-child > span {
        padding: 1.5rem 3rem;
        font-size: 3rem;
    }
    .service_left .service_review .row:last-child {
        gap: 2rem;
    }
    .service_left .service_review .row:last-child > div {
        padding: 1.3rem 2.5rem;
        gap: 1.5rem;
    }
    .service_left .service_review .row:last-child span {
        font-size: 2.5rem;
    }
    .service_left .marks {
        font-size: 3.3rem;
    }
    .service_left .marks > span {
        font-size: 3.3rem;
    }
    .service_left .service_report p {
        font-size: 3.3rem;
    }
    .service_left .service_report p span {
        font-size: 3.3rem;
    }
    .service_left .service_report > div span {
        font-size: 3.3rem;
    }


    .service_text {
        width: 100%;
    }
    .service_text span {
        font-size: 6rem;
    }
    .service_text h2 {
        font-size: 6rem;
    }
    .service_text p {
        font-size: 3.2rem;
    } 
}
@media (max-width: 576px) {
    .service_intro {
        gap: 10px;
    }
    .service_list {
        padding: 10px;
    }
    .service_list .service_list_header {
        flex-wrap: wrap;
        gap: 10px;
    }
    .service_list .service_list_header .service_mark {
        font-size: 14px;
    }
    .service_list .service_list_header .service_mark {
        width: 100%;
    }
    .service_list .service_list_header .service_search {
        width: 67%;
        gap: 10px;
    }
    .service_list .service_list_header .service_info {
        width: 30%;
        gap: 10px;
    }
    .service_list_content .service_left .service_title {
        font-size: 4.6rem;
    }
    .service_list_content .service_left .service_review {
        flex-wrap: wrap;
        gap: 10px;
    }
    .service_left .service_review .row {
        flex: none !important;
        width: 100%;
    }
    .service_left .service_review .row:first-child > div {
        gap: 15px;
    }
    .service_left .service_review .row:first-child > div p {
        font-size: 13px;
    }
    .service_left .service_review .row:first-child > div span {
        font-size: 11px;
    }
    .service_left .service_review .row:first-child > span {
        font-size: 13px;
        padding: 6px 15px;
    }
    .service_left .service_review .row:last-child {
        justify-content: flex-end;
    }
    .service_left .service_review .row:last-child > div {
        padding: 5px 15px;
        gap: 6px;
        border-radius: 30px;
    }
    .service_left .service_review .row:last-child span {
        font-size: 12px;
        border-radius: 20px;
    }
    .service_list_content .service_left {
        gap: 10px;
    }
    .service_left .marks {
        font-size: 14px;
    }
    .service_left .marks > span {
        font-size: 14px;
    }
    .service_left .service_report p {
        font-size: 14px;
    }
    .service_left .service_report p span {
        font-size: 14px;
    }
    .service_left .service_report > div span {
        font-size: 14px;
    }
    .service_left .service_report {
        padding: 20px 15px;
    }
    .service_right .service_right_item > div:last-child p {
        font-size: 13px;
    }
    .service_right .service_right_item> div:last-child span {
        font-size: 13px;
    }


    .service_text span {
        font-size: 24px;
    }
    .service_text h2 {
        font-size: 24px;
    }
    .service_text p {
        font-size: 14px;
    } 
}
@media (max-width: 521px) {
    .service_list .service_list_header .service_mark {
        order: 0;
        width: fit-content;
    }
    .service_list .service_list_header .service_info {
        order: 1;
        width: fit-content;
    }
    .service_list .service_list_header .service_search {
        order: 2;
        width: 100%;
    }
}
@media (max-width: 450px) {
    .service_left .service_review .row:first-child > div {
        gap: 4px;
    }
    .service_left .service_review .row:last-child {
        justify-content: space-between;
    }
    .service_left .service_report {
        padding: 15px 10px;
    }
    .service_right {
        gap: 10px;
    }
    .service_right .service_right_item > div:first-child {
        width: 50%;
        height: 40rem;
    }
    .service_right .service_right_item > div:last-child {
        width: 50%;
    }
    .service_right .service_right_item > div:last-child p {
        font-size: 13px;
    }
    .service_right .service_right_item > div:last-child span {
        font-size: 13px;
    }
    .service_list_content .service_left .service_title {
        font-size: 16px;
    }
	.service_left .service_report > div div {
		width: 40px;
		height: 40px;
	}
	.service_left .service_review .row:first-child > div > :first-child {
		width: 40px;
		height: 40px;
	}
	.service_list_header .service_info > div:last-child {
		width: 35px;
		height: 35px;
	}
	.service_left .service_review .row:first-child > div > :first-child img {
		margin-bottom: 7px;
	}
	.service_left .service_report > div div img {
		margin-bottom: 7px;
	}
}
.introduction {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 3.33rem;
    background-color: #5CC9F333;
}
.introduction .introduction_content {
    display: flex;
    flex-direction: column;
    gap: 3.33rem;
    width: 75%;
}
.introduction .introduction_content h3 {
    font-size: 3.3333rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--BlueColor);
    width: fit-content;
}
.introduction .introduction_content p {
    font-size: 1.67rem;
    line-height: 1.5;
    color: var(--BlueColor);
}
.introduction .introduction_content p span {
    font-size: 2.2rem;
    color: var(--BlueColor);
    font-weight: 600;
}
.introduction .introduction_content p:nth-child(2) {
    font-weight: 700;
}
.introduction .introduction_content p:last-child {
    margin-left: auto;
}
.introduction .introduction_image {
    width: 17%;
    height: 30rem;
}
.introduction .introduction_image img {
    width: 100%;
    height: 100%;
}
@media (max-width: 1300px) {
    .introduction .introduction_content h3 {
        font-size: 3.83rem;
    }
    .introduction .introduction_content p {
        font-size: 2rem;
    }
    .introduction .introduction_content p span {
        font-size: 2.5rem;
    }
}
@media (max-width: 991px) {
    .introduction .introduction_content h3 {
        font-size: 4rem;
    }
    .introduction .introduction_content p {
        font-size: 2.5rem;
    }
    .introduction .introduction_content p span {
        font-size: 3rem;
    }
    .introduction .introduction_image {
        width: 20%;
        height: 35rem;
    }
}
@media (max-width: 676px) {
    .introduction {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    .introduction .introduction_content {
        width: 100%;
    }
    .introduction .introduction_content h3 {
        font-size: 24px;
    }
    .introduction .introduction_content p {
        font-size: 13px;
    }
    .introduction .introduction_content p span {
        font-size: 18px;
    }
    .introduction .introduction_content p:last-child {
        position: absolute;
        left: 55vw;
        bottom: 30vw;
    }
    .introduction .introduction_image {
        width: 50%;
        height: 80rem;
    }
}
@media (max-width: 450px) {
    .introduction .introduction_content h3 {
        font-size: 22px;
    }
    .introduction .introduction_content p {
        font-size: 12px;
    }
    .introduction .introduction_content p span {
        font-size: 16px;
    }
    .introduction .introduction_content p:last-child {
        position: absolute;
        left: 50vw;
        bottom: 30vw;
    }
}
.inquiry {
    background-color: #0044951A;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.inquiry .inquiry_top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.inquiry .inquiry_top h3 {
    font-size: 3.33rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--BlueColor);
    width: fit-content;
}
.inquiry .inquiry_top h5 {
    font-size: 1.67rem;
    font-weight: 700;
    color: var(--BlueColor);
    line-height: 1.5;
}
.inquiry .inquiry_top p {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--BlueColor);
}
.inquiry .inquiry_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.inquiry .inquiry_bottom a {
    text-align: center;
    width: 49%;
    border-radius: 10px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.inquiry .inquiry_bottom a.inquiry_btn {
    background-color: var(--BlueColor);
    border: 1px solid var(--BlueColor);
}
.inquiry .inquiry_bottom a p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
}
.inquiry .inquiry_bottom span {
    font-weight: 700;
    line-height: 1.5;
}
.inquiry .inquiry_bottom a div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
   
    margin: 0 auto;
    border-radius: 5px;
}
.inquiry .inquiry_bottom a.inquiry_btn p {
    color: #FFF;
}
.inquiry .inquiry_bottom a.inquiry_btn span {
    color: #FFF;
    font-size: 14px;
}

.inquiry .inquiry_bottom a.inquiry_btn div {
    border: 1px solid #FFF;
    padding: 10px 20px;
}
.inquiry .inquiry_bottom a.phone_btn  {
    border: 1px solid var(--BlueColor);
}
.inquiry .inquiry_bottom a.phone_btn p {
    color: var(--BlueColor);
}
.inquiry .inquiry_bottom a.phone_btn span {
    color: #004495;
    font-size: 30px;
}
.inquiry .inquiry_bottom a.inquiry_btn:hover {
    background-color: transparent;
}
.inquiry .inquiry_bottom a.inquiry_btn:hover p {
    color: var(--BlueColor);
}
.inquiry .inquiry_bottom a.inquiry_btn:hover div {
    border: 1px solid var(--BlueColor);
}
.inquiry .inquiry_bottom a.inquiry_btn:hover div span {
    color: var(--BlueColor);
}
.inquiry .inquiry_bottom a.inquiry_btn:hover div svg path {
    fill: var(--BlueColor);
}
.inquiry .inquiry_bottom a.phone_btn:hover {
    background-color: #004495;
}
.inquiry .inquiry_bottom a.phone_btn:hover p {
    color: #FFF;
}
.inquiry .inquiry_bottom a.phone_btn:hover span {
    color: #FFF;
}
.inquiry .inquiry_bottom a.phone_btn:hover svg path {
    fill: #FFF;
}
@media (max-width: 1300px) {
    .inquiry .inquiry_top h3 {
        font-size: 4rem;
    }
    .inquiry .inquiry_top h5 {
        font-size: 2.3rem;
    }
    .inquiry .inquiry_top p {
        font-size: 2rem;
    }
    .inquiry .inquiry_bottom a {
        padding: 4rem;
    }
    .inquiry .inquiry_bottom a p {
        font-size: 15px;
    }
    .inquiry .inquiry_bottom a.phone_btn span {
        font-size: 28px;
    }
    .inquiry .inquiry_bottom a.phone_btn svg {
        width: 26px;
    }
}
@media (max-width: 991px) {
    .inquiry {
        padding: 30px;
    }
    .inquiry .inquiry_top h3 {
        font-size: 5rem;
    }
    .inquiry .inquiry_top h5 {
        font-size: 2.8rem;
    }
    .inquiry .inquiry_top p {
        font-size: 2.5rem;
    }
    .inquiry .inquiry_bottom a {
        padding: 4rem;
        gap: 15px;
    }
    .inquiry .inquiry_bottom a p {
        font-size: 14px;
    }
    .inquiry .inquiry_bottom a.phone_btn span {
        font-size: 28px;
    }
    .inquiry .inquiry_bottom a.phone_btn svg {
        width: 26px;
    }
}
@media (max-width: 767px) {
    .inquiry .inquiry_top {
        gap: 15px;
    }
    .inquiry .inquiry_top h3 {
        font-size: 5.3rem;
    }
    .inquiry .inquiry_top h5 {
        font-size: 3.2rem;
    }
    .inquiry .inquiry_top p br {
        display: none;
    }
    .inquiry .inquiry_top p {
       font-size: 2.8rem;
    }
    .inquiry .inquiry_bottom a.inquiry_btn span {
        font-size: 12px;
    }
    .inquiry .inquiry_bottom a.phone_btn span {
        font-size: 26px;
    }
}
@media (max-width: 621px) {
    .inquiry .inquiry_top h3 {
        font-size: 24px;
    }
    .inquiry .inquiry_top h5 {
        font-size: 16px;
    }
    .inquiry .inquiry_top p {
        font-size: 13px;
    }
    .inquiry .inquiry_bottom {
        flex-direction: column;
        gap: 20px;
    }
    .inquiry .inquiry_bottom a {
        width: 100%;
        padding: 20px;
    }
}
@media (max-width: 450px) {
    .inquiry {
        padding: 30px 20px;
    }
    .inquiry .inquiry_bottom a.inquiry_btn div {
        padding: 8px 20px;
    }
    .inquiry .inquiry_bottom a.phone_btn span {
        font-size: 24px;
    }.inquiry .inquiry_bottom a.phone_btn svg {
        width: 24px;
    }
    .inquiry .inquiry_bottom a.inquiry_btn p {
        font-size: 13px;
    }
} 






/* ------------page company style---------- */
.company .block_title h3 {
    color: var(--BlueColor);
}
.company_partner p {
    font-size: 1.333rem;
    line-height: 1.6;
}
@media (max-width: 1600px) {
    .company_partner p {
        font-size: 1.7rem;
    }
}
@media (max-width: 1440px) {
    .company_partner p {
        font-size: 1.9rem;
    }
}
@media (max-width: 767px) {
    .company_partner p {
        font-size: 3rem;
    }
}
@media (max-width: 576px) {
    .company_partner p {
        font-size: 13px;
    }
}
.company_philosophy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.company_philosophy > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.company_philosophy h5 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
}
.company_philosophy p {
    font-size: 16px;
    line-height: 1.6;
}
.company_philosophy .value_content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}
.value_content .value_item {
    border: 1px solid #CCCCCC;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}
@media (max-width: 1600px) {
    .value_content .value_item h5 {
        font-size: 1.8rem;
    }
    .company_philosophy p {
        font-size: 1.5rem;
    }
}
@media (max-width: 1440px) {
    .value_content .value_item h5 {
        font-size: 2.1rem;
    }
    .company_philosophy p {
        font-size: 1.8rem;
    }
}
@media (max-width: 1100px) {
    .value_content .value_item  {
        gap: 15px;
        padding: 20px 15px;
    }
    .value_content .value_item h5 {
        font-size: 2.3rem;
    }
    .company_philosophy p {
        font-size: 1.8rem;
    }
}
@media (max-width: 991px) {
    .value_content .value_item h5 {
        font-size: 2.6rem;
    }
    .company_philosophy p {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .company_philosophy .value_content {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 2% ;
    }
    .value_content .value_item {
        width: 32%;
    }
    .value_content .value_item h5 {
        font-size: 3.5rem;
    }
    .company_philosophy p {
        font-size: 2.8rem;
    }
    .company_philosophy > div {
        gap: 15px;
    }
}
@media (max-width: 576px) {
    .company_philosophy h5 {
        font-size: 18px;
    }
    .company_philosophy .value_content {
        gap: 20px 4%;
    }
    .value_content .value_item {
        width: 48%;
    }
    .value_content .value_item h5 {
        font-size: 16px;
    }
    .company_philosophy p {
        font-size: 13px;
    }
}
@media (max-width: 450px) {
    .value_content .value_item {
        padding: 15px 10px;
    }
    .value_content .value_item h5 {
        font-size: 15px;
    } 
    .company_philosophy p {
        font-size: 12px;
    }
}
.company_profile {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.company_profile .profile_content {
    display: flex;
    justify-content: space-between;
}
.profile_content .table {
    width: 44%;
}
.profile_content .table dl {
    display: flex;
    margin: 0;
    border-bottom: 1px solid #CCCCCC;
    padding: 1.67rem;
}
.profile_content .table dl:first-child {
    border-top: 1px solid #CCCCCC;
}
.profile_content .table dt, .profile_content .table dd {
    margin: 0;
    font-size: 1.33rem;
    line-height: 1.6;
}
.profile_content .table dt {
    width: 35%;
}
.profile_content .company_map {
    width: 40%;
    height: 36rem;
}
.company_map iframe {
    width: 100%;
    height: 100%;
}
@media (max-width: 1600px) {
    .profile_content .table dt, .profile_content .table dd {
        font-size: 1.5rem;
    }
}
@media (max-width: 1440px) {
    .profile_content .table dt, .profile_content .table dd {
        font-size: 1.8rem;
    }
}
@media (max-width: 1100px) {
    .profile_content .table dt, .profile_content .table dd {
        font-size: 2.1rem;
    }
    .profile_content .table dl {
        padding: 2rem 1.67rem;
    }
}
@media (max-width: 767px) {
    .profile_content .table dt, .profile_content .table dd {
        font-size: 2.3rem;
    } 
    .profile_content .company_map {
        width: 45%;
        height: 40rem;
    }
}
@media (max-width: 676px) {
    .company_profile .profile_content {
        flex-direction: column;
        gap: 30px;
    }
    .profile_content .table {
        width: 100%;
    }
    .profile_content .table dl {
        padding: 15px 20px;
    }
    .profile_content .table dt, .profile_content .table dd {
        font-size: 13px;
    }
    .profile_content .company_map {
        width: 70%;
        height: 60rem;
        margin: 0 auto;
    }
}
@media (max-width: 450px) {
    .profile_content .table dl {
        padding: 15px 10px;
    }
    .profile_content .table dt {
        width: 32%;
    }
    .profile_content .company_map {
        width: 100%;
        height: 90rem;
    }
} 
.company_greeting {
    position: relative;
    background-color: #F2F2F2;
    padding: 3.33rem;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
}
.company_greeting .greeting_content {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 3.33rem;
}
.company_greeting p {
    font-size: 1.33rem;
    line-height: 1.6;
}
.greeting_name {
    text-align: right;
}
.greeting_name p span {
    font-weight: 500;
    padding-left: 2rem;
    font-size: 1.5rem;
}
.company_greeting .greeting_image {
    width: 26%;
    height: 50rem;
    line-height: 1;
}
.company_greeting .greeting_image img {
    width: 100%;
    height: 100%;
}
@media (max-width: 1600px) {
    .company_greeting p {
        font-size: 1.5rem;
    } 
    
    .greeting_name p span {
        font-size: 2.3rem;
    }
    .company_greeting .greeting_image {
        width: 30%;
        height: 58rem;
    }
}
@media (max-width: 991px) {
    .company_greeting {
        align-items: center;
    }
    .company_greeting p {
        font-size: 1.8rem;
    } 
    .greeting_name span {
        font-size: 2.6rem;
    }
}
@media (max-width: 767px) {
    .company_greeting {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .company_greeting .greeting_content {
        width: 100%;
    }
    .company_greeting p {
        font-size: 13px;
    }
    .greeting_name p span {
        font-size: 18px;
    }
    .greeting_name {
        position: absolute;
        bottom: 50rem;
        left: 85rem;
    }
    .company_greeting .greeting_image {
        width: 55%;
        height: 100rem;
    }
}
@media (max-width: 500px) {
    .company_greeting .greeting_content {
        gap: 20px;
    }
    .greeting_name {
        left: 83rem;
    }
    .company_greeting p {
        font-size: 12px;
    }
    .greeting_name p span {
        font-size: 16px;
    }
} 

/* -------------page collab style------------- */
.filter_btn ul {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.filter_btn ul li a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #EBEBEB;
    border-radius: 5px;
    font-size: 14px;
    border: 1px solid transparent;
}
.filter_btn ul li a:hover {
    border-color: var(--BlueColor);
    background-color: #FFF;
    color: var(--BlueColor);
}
.filter_btn ul li:first-child a {
    background-color: var(--BlueColor);
    color: #FFF;
    border: 1px solid transparent;
}
.filter_btn ul li:first-child a:hover {
    border-color: var(--BlueColor);
    background-color: #FFF;
    color: var(--BlueColor);
}
@media (max-width: 1440px) {
    .filter_btn ul li a {
        font-size: 13px;
    }
}
@media (max-width: 1100px) {
    .filter_btn ul li a {
        font-size: 12px;
    }
}
@media (max-width: 991px) {
    .filter_btn ul li a {
        font-size: 12px;
    }
}
  .pickup__title {
    margin-bottom: 24px;
  }
  .pickup__list {
    overflow: hidden;
  }
  .pickup__category {
    display: flex;
    align-items: center;
  }
  .pickup__category--title {
    margin-left: 8px;
    font-size: 24px;
    font-weight: bold;
  }
  .pickup__link {
    display: block;
    height: 280px;
  }
  .pickup__item {
    display: flex;
    flex-flow: row-reverse;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 5px;
    border: 2px solid #030303;
  }
  .pickup__item:hover .pickup__thumbnail img {
    transform: scale(1.15);
  }
  .pickup__meta {
    width: 100%;
    max-width: 342px;
    margin-top: 0;
    padding: 36px;
    text-decoration: none !important;
    background-color: var(--bg-gray);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    display: flex;
    flex-flow: column;
  }
  .pickup__meta--group {
    display: flex;
    align-items: center;
  }
  .pickup__meta--date {
    font-size: 14px;
    font-weight: bold;
    color: var(--color-black);
  }
  .pickup__meta--category {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    padding: 4px 16px 4px 20px;
    font-size: 12px;
    color: #fff;
    border-radius: 6px;
    background-color: var(--bg-beige-light);
  }
  .pickup__meta--category svg {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
  }
  .pickup__meta--title {
    font-size: 20px;
    margin-top: 8px;
    font-weight: bold;
  }
  .pickup__meta--more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 154px;
    height: 40px;
    margin-top: auto;
    margin-bottom: 20px;
    font-size: 12px;
    color: #fff;
    background-color: var(--color-black);
    border-radius: 20px;
  }
  .pickup__meta--more span {
    color: #FFF;
    font-size: 12px;
    line-height: 1;
  }
  .pickup__meta--more svg {
    margin-left: 16px;
  }
  .pickup__thumbnail {
    width: 100%;
    border-radius: 0 5px 5px 0;
    border-left: 2px solid var(--border-color);
    overflow: hidden;
  }
  .pickup__thumbnail img {
    border-radius: 5px;
    height: 100%;
    width: 100%;
    transition: transform 0.25s;
    object-fit: cover;
  }
  @media screen and (max-width: 768px) {
    .pickup__title {
      margin-bottom: 20px;
    }
    .pickup__link {
      height: 100%;
    }
    .pickup__item {
      flex-flow: column;
    }
    .pickup__meta {
      padding: 12px;
      border-top-left-radius: 0;
      border-bottom-right-radius: 5px;
    }
    .pickup__meta--title {
      font-size: 12px;
      overflow: hidden;
      display: -webkit-box;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }
    .pickup__meta--category {
      margin-top: 0;
      margin-left: 8px;
    }
    .pickup__meta--date {
      font-size: 10px;
    }
    .pickup__meta--more {
      height: 32px;
      width: 100px;
      margin-top: 12px;
      margin-bottom: 0;
      font-size: 10px;
    }
    .pickup__meta--more span {
        font-size: 10px;
    }
    .pickup__thumbnail {
      height: 160px;
      border-left: none;
      border-bottom: 2px solid var(--border-color);
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
    }
  
    .pickup__thumbnail img {
    object-fit: fill;
  }
  }
  @media screen and (min-width: 1600px) {
    .pickup__title {
      padding-left: 480px;
    }
  }
  
  .post__section--title {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
  }
  .post__section--title svg {
    width: 20px;
    height: 20px;
  }
  .post__wrap {
    padding-bottom: 20px;
    border-bottom: 1.5px solid var(--border-color);
  }
  .post__wrap.latest {
    padding-top: 12px;
    border-bottom: none;
  }
  .post__wrap.bg-beige-dark {
    background-color: var(--bg-beige-dark);
  }
  .post__wrap.bg-beige-medium {
    background-color: var(--bg-beige-medium);
  }
  .post__wrap.bg-beige-light {
    background-color: var(--bg-beige-light);
  }
  .post__list {
    overflow: hidden;
  }
  .post__category {
    display: flex;
    align-items: center;
  }
  .post__category--title {
    margin-left: 8px;
    font-size: 20px;
    font-weight: bold;
  }
  .post__item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100% !important;
    border-radius: 5px;
    border: 2px solid var(--border-color);
    background: var(--bg-gray);
    box-shadow: 0px 3px 6px rgba(105, 105, 105, 0.1607843137);
  }
  .post__item:hover .post__thumbnail img {
    transform: scale(1.05);
  }
  .post__meta {
    margin-top: 0;
    padding: 18px;
    padding-bottom: 52px;
  }
  .post__meta--date {
    font-size: 12px;
    color: #a2a2a2;
  }
  .post__meta--category {
    position: relative;
    display: inline-block;
    margin-top: 8px;
    padding: 4px 16px 4px 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    border-radius: 6px;
    background-color: var(--bg-beige-light);
  }
  .post__meta--category svg {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
  }
  .post__meta--title {
    margin-top: 8px;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .post__meta--more {
    position: absolute;
    bottom: 18px;
    left: 18px;
    font-size: 12px;
    color: #a2a2a2;
  }
  .post__thumbnail {
    height: 170px;
    width: 100%;
    border-bottom: 2px solid var(--border-color);
    overflow: hidden;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .post__thumbnail img {
    object-fit: cover;
    height: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: transform 0.25s;
    width: 100%;
  }
  
  @media screen and (max-width: 767px) {
  .post__thumbnail img {
          object-fit: fill;
      }
  }
  .post__button {
    margin-top: 40px;
    padding-bottom: 10px;
  }
  .post__button .btn {
    width: initial;
    padding: 14px 56px 14px 35px;
    box-shadow: 3px 5px 0px 0px var(--color-black);
  }
  .btn::before {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    transition: background-color 0.3s;
}
.btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.08em;
    padding: 10px 0;
    border: 1px solid #000;
    border-radius: 20px;
    width: 15.875rem;
    text-align: center;
    position: relative;
    background: #fff;
    transition: background-color 0.3s, color 0.3s;
}
.btn::after {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    position: absolute;
    right: 20px;
    top: 44%;
    transform: translateY(-50%) rotate(30deg);
    background: #000;
    transition: background-color 0.3s;
}
.btn:hover {
    border: 1px solid #fff;
    background: #000;
    color: #fff;
}
  .post__button .btn:hover {
    box-shadow: none;
  }
  .post__rank {
    position: absolute;
    top: -20px;
    left: -14px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 100%;
    color: #fff;
    background-color: #192735;
  }
  .post__rank.number-1 {
    background: transparent linear-gradient(72deg, #f0de00 0%, #d9b800 100%);
  }
  .post__rank.number-2 {
    background: transparent linear-gradient(72deg, #dedede 0%, #acacac 100%);
  }
  .post__rank.number-3 {
    background: transparent linear-gradient(72deg, #9b7065 0%, #d16e3a 100%);
  }
  @media screen and (max-width: 768px) {
    .post__list {
      margin-left: 10px;
    }
    .post__item {
      flex-flow: column;
    }
    .post__category--title {
      font-size: 20px;
    }
    .post__meta {
      height: 150px;
      padding: 12px;
      padding-bottom: 42px;
      border-top-left-radius: 0;
      border-bottom-right-radius: 10px;
    }
    .post__meta--title {
      font-size: 12px;
    }
    .post__meta--category {
      font-size: 10px;
    }
    .post__meta--date {
      font-size: 10px;
    }
    .post__meta--more {
      margin-top: 8px;
      font-size: 10px;
    }
    .post__thumbnail {
      height: 160px;
    }
    .post__thumbnail.is-archive {
      height: 100%;
    }
    .post__button {
      text-align: center;
    }
    .post__button .btn {
      font-size: 12px;
    }
  }


/* ------------page service style---------- */
.service_header {
     display: flex;
     flex-direction: column;
     gap: 20px;
}
.service_header h3 {
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--BlueColor);
}
.service_header p {
    font-size: 1.333rem;
    line-height: 1.6;
}
.service_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}
.service_item {
    display: flex;
    flex-direction: column;
    gap: 1.67rem;
}
.service_item .service_image {
    height: 28rem;
    width: 100%;
    overflow: hidden;
}
.service_item .service_image img {
    width: 100%;
    height: 100%;
    transition: all 1s cubic-bezier(0.25,0.1,0.25,1);
}
.service_item .service_image:hover img {
    scale: 1.1;
}
.service_item h4 {
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--BlueColor);
    line-height: 1.5;
}
.service_item h3 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5;
}
.service_item p {
    font-size: 1.333rem;
}
.more_btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 210px;
    border-radius: 5px;
    border: 1px solid #CCCCCC;
    height: 40px;
    transition: all 0.4s cubic-bezier(0.25,0.1,0.25,1);
}
.more_btn span {
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    width: 120px;
    left: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25,0.1,0.25,1);
}
.more_btn svg {
    position: absolute;
    right: 20px;
    transition: all 0.4s cubic-bezier(0.25,0.1,0.25,1);
}
@media ( hover:hover) {
    .more_btn:hover {
        border-color: var(--BlueColor);
    }
    .more_btn:hover span {
        left: 50%;
        transform: translateX(-50%);
    }
    .more_btn:hover svg {
        scale: 0;
    }
}
@media (max-width: 1600px) {
    .service_header h3 {
        font-size: 3rem;
    }
    .service_header p {
        font-size: 1.7rem;
    }
    .service_content {
        gap: 4rem;
    }
    .service_item {
        gap: 2rem;
    }
    .service_item h4 {
        font-size: 2rem;
    }
    .service_item h3 {
        font-size: 3rem;
    }
    .service_item p {
        font-size: 1.5rem;
    }
}
@media (max-width: 1440px) {
    .service_header h3 {
        font-size: 3.2rem;
    }
    .service_header p {
        font-size: 1.9rem;
    }
    .service_item {
        gap: 2rem;
    }
    .service_item h4 {
        font-size: 2.4rem;
    }
    .service_item h3 {
        font-size: 3.2rem;
    }
    .service_item p {
        font-size: 1.55rem;
    }
}
@media (max-width: 767px) {
    .service_header h3 {
        font-size: 5rem;
    }
    .service_header p {
        font-size: 3rem;
    }
    .service_item {
        gap: 4rem;
    }
    .service_item h4 {
        font-size: 3.3rem;
    }
    .service_item h3 {
        font-size: 4rem;
    }
    .service_item p {
        font-size: 2.7rem;
    }
    .more_btn {
        width: 100%;
    }
    .more_btn span {
        left: 15px;
        font-size: 13px;
        width: 60%;
    }
    .more_btn svg {
        right: 15px;
    }
}
@media (max-width: 475px) {
    .service_header h3 {
        font-size: 21px;
    }
    .service_header p {
        font-size: 12px;
    }
    .service_item {
        gap: 13px;
    }
    .service_item h4 {
        font-size: 19px;
    }
    .service_item h3 {
        font-size: 23px;
    }
    .service_item p {
        font-size: 13px;
    }
    .service_item .service_image {
        height: 80rem;
    }
    .more_btn {
        width: 210px;
        height: 40px;
    }
    .more_btn span {
        width: 120px;
        left: 20px;
    }
    .more_btn svg {
        right: 20px;
    }
}


/* ------------page service detail style---------- */
.service_banner {
    display: flex;
    width: 100%;
}
.service_banner img {
    width: 100%;
}
.challenge_inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.challenge_ttl {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.5;
}
.challenge_top {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 0 6rem;
}
.challenge_item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #CCCCCC;
    padding: 1.7rem;
    background-color: #FFF;
}
.challenge_item span {
    font-size: 4rem;
    font-family: var(--fontT);
    font-weight: bold;
    line-height: 1.5;
    color: var(--BlueColor);
}
.challenge_item p {
    font-size: 1.6rem;
    line-height: 1.6;
}
.challenge_btm {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 7rem 0;
    background-color: var(--BlueColor);
    margin-top: -4rem;
}
.challenge_btm h5 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
    color: #FFF;
}
.challenge_btm p {
    font-size: 1.6rem;
    color: #FFFF;
    line-height: 1.6;
}
.service_detail {
    background-color: #F2F2F2;
}
.detail_inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.detail_ttl {
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
}
.detail_content {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.detail_item {
    background-color: #FFF;
    display: flex;
}
.detail_img {
    display: flex;
    width: 25%;
}
.detail_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.detail_txt {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 0 3.3rem;
}
.detail_txt span {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 5.5rem;
    font-family: var(--fontT);
    font-weight: bold;
    line-height: 1;
    color: #F2F2F2;
}
.detail_txt h5 {
    font-size: 2rem;
    font-weight: bold;
}
.detail_txt p {
    font-size: 1.6rem;
    line-height: 1.6;
}
.case_inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.case_ttl {
    font-size: 4rem;
    font-weight: bold;
}
.case_content {
    display: flex;
    gap: 3.3rem;
}
.case_item {
    flex: 1;
    display: flex;
    flex-direction: column
}
.case_img {
    display: flex;
    overflow: hidden;
    border-radius: .5rem;
}
.case_img img {
    width: 100%;
}
.case_txt {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.7rem 0;
}
.case_txt span {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: bold;
    width: fit-content;
    padding: 3px;
    border-radius: 3px;
    background-color: #3B82F6;
    color: #FFF;
}
.case_txt p {
    font-size: 1.7rem;
    font-weight: bold;
}
@media (max-width: 676px) {
    .challenge_ttl {
        font-size: 6rem;
    }
    .challenge_top {
        padding: 0 3rem;
    }
    .challenge_item {
        padding: 2rem;
        gap: 1.5rem;
    }
    .challenge_item span {
        font-size: 5rem;
    }
    .challenge_item p {
        font-size: 2.8rem;
    }
    .challenge_btm {
        margin-top: -6rem;
        padding: 10rem 4rem;
        gap: 4rem;
    }
    .challenge_btm h5 {
        font-size: 4rem;
    }
    .challenge_btm p {
        font-size: 2.8rem;
    }
    .detail_ttl, .case_ttl {
        font-size: 6rem;
    }
    .detail_inner {
        gap: 6rem;
    }
    .detail_content {
        gap: 5rem;
    }
    .detail_txt {
        padding: 4rem;
    }
    .detail_txt span {
        top: 2rem;
        right: 2rem;
        font-size: 7rem;
    }
    .detail_txt h5 {
        font-size: 3.5rem;
    }
    .detail_txt p {
        font-size: 2.8rem;
    }
    .case_inner {
        gap: 6rem;
    }
    .case_txt span {
        font-size: 2.4rem;
    }
    .case_txt {
        padding: 2.5rem 0;
        gap: 2rem;
    }
    .case_txt p {
        font-size: 2.8rem;
    }
}
@media (max-width: 450px) {
    .challenge_ttl {
        font-size: 24px;
    }
    .challenge_top {
        flex-direction: column;
        padding: 0 15px;
    }
    .challenge_item {
        padding: 15px;
        gap: 10px;
    }
    .challenge_item span {
        font-size: 28px;
        line-height: 1;
    }
    .challenge_item p {
        font-size: 14px;
    }
    .challenge_btm {
        margin-top: -20px;
        padding: 40px 15px;
        gap: 20px;
    }
    .challenge_btm h5 {
        font-size: 18px;
    }
    .challenge_btm p {
        font-size: 14px;
    }
    .detail_ttl, .case_ttl {
        font-size: 24px;
    }
    .detail_inner {
        gap: 30px;
    }
    .detail_content {
        gap: 15px;
    }
    .detail_txt {
        padding: 4rem;
    }
    .detail_item {
        flex-direction: column;
    }
    .detail_img {
        width: 100%;
    }
    .detail_txt {
        padding: 20px 15px;
        gap: 15px;
    }
    .detail_txt span {
        top: -40px;
        right: 10px;
        font-size: 32px;
    }
    .detail_txt h5 {
        font-size: 18px;
    }
    .detail_txt p {
        font-size: 14px;
    }
    .case_inner {
        gap: 30px;
    }
    .case_content {
        flex-direction: column;
        gap: 20px;
    }
    .case_txt span {
        font-size: 13px;
    }
    .case_txt {
        padding: 15px 0;
        gap: 10px;
    }
    .case_txt p {
        font-size: 16px;
    }
}



/* ------------page recruit style---------- */
.recruit_workstyle {
    background-color: #FAFAFA;
}
.workstyle_content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.workstyle_content h3 {
    font-size: 3.5rem;
    font-weight: bold;
}
.workstyle_content p {
    font-size: 1.8rem;
    line-height: 1.6;
}
.recruit_inner {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.recruit_ttl {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
}
.recruit_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6.6rem;
}
.recruit_item:nth-child(odd) {
    flex-direction: row-reverse;
}
.recruit_img {
    display: flex;
    width: 50%;
}
.recruit_img img {
    width: 100%;
}
.recruit_txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
}
.recruit_txt h5 {
    font-size: 2.3rem;
    font-weight: bold;
}
.recruit_txt h5 span {
    font-size: 2.3rem;
    padding-right: 1rem;
    font-weight: bold;
    color: #004495;
}
.recruit_txt p {
    font-size: 1.6rem;
    line-height: 1.6;
}
.work_inner {
    width: 85%;
    background-color: #004495;
    margin: 0 auto;
}
.work_content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.work_content h3 {
    font-size: 3rem;
    font-weight: bold;
    color: #FFFF;
}
.work_content p {
    font-size: 1.7rem;
    font-weight: bold;
    color: #FFFF;
    line-height: 1.6;
}
@media (max-width: 676px) {
    .workstyle_content {
        gap: 30px;
    }
    .workstyle_content h3 {
        font-size: 26px;
    }
    .workstyle_content p {
        font-size: 15px;
    }
    .recruit_inner {
        gap: 30px;
    }
    .recruit_ttl {
        font-size: 23px;
    }
    .recruit_txt {
        gap: 15px;
    }
    .recruit_txt h5, .recruit_txt h5 span {
        font-size: 18px;
    }
    .recruit_txt p {
        font-size: 14px;
    }
    .work_inner {
        width: 100%;
    }
    .work_content {
        gap: 25px;
    }
    .work_content h3 {
        font-size: 24px;
    }
    .work_content p {
        font-size: 16px;
    }
}
@media (max-width: 450px) {
    .workstyle_content h3 {
        font-size: 24px;
    }
    .workstyle_content p {
        font-size: 14px;
    }
    .recruit_ttl {
        font-size: 22px;
    }
    .recruit_item, .recruit_item:nth-child(odd) {
        flex-direction: column;
        gap: 15px;
    }
    .recruit_img {
        width: 100%;
    }
    .recruit_txt {
        width: 100%;
        flex: none;
        gap: 10px;
    }
    .recruit_txt h5, .recruit_txt h5 span {
        font-size: 18px;
    }
    .recruit_txt p {
        font-size: 14px;
    }
    .work_content {
        gap: 25px;
    }
    .work_content h3 {
        font-size: 22px;
    }
    .work_content p {
        font-size: 14px;
    }
}


/* ------------owl casusel style------------ */
.owl-theme .owl-dots {
    height: 8px !important;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.owl-theme .owl-dots .owl-dot span {
    background-color: #2F3D4C !important;
    margin: 0 3px;
    bottom: -40px;
}
.owl-theme .owl-dots .owl-dot span {
    height: 8px !important;
    width: 8px !important;
}
.owl-theme .owl-dots .owl-dot.active span {
    width: 8px !important;
    height: 8px !important;
    background-color: var(--BlueColor) !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--BlueColor);
    height: 8px !important;
    width: 8px !important;
}
.owl-carousel .owl-nav button.owl-prev , .owl-carousel .owl-nav button.owl-next{
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    left: -10px;
    color: var(--BlueColor);
    font-size: 30px;
}
.owl-carousel .owl-nav button.owl-next {
    right: -10px;
    left: unset;
}
.slide2.owl-carousel .owl-nav button.owl-prev {
    left: -22px;
}
.slide2.owl-carousel .owl-nav button.owl-next {
    right: -22px;
}
.owl-theme .owl-dots::after {
    content: "";
}
.owl-theme .owl-dots::before {
    content: "";
    font-size: 27px;
    color: red;
}
.owl-carousel.owl-drag .owl-item {
    background-color: transparent !important;
}














/* -----------page contact style---------- */
.contents.contact .page_header {
    padding-left: 16.7rem;
}
.contact_block {
    width: 77rem;
    margin: 0 auto;
    padding: 5rem;
}
.recaptcha-error .recaptcha-checkbox-border {
	border-color: #d93025 !important;
}
.contact_block .form_field .field_cap {
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}
 .form_field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 3.33rem;
}
.contact_block .form_field .field_cap span {
    color: #BD2D2D;
    font-weight: 700;
    font-size: 16px;
}
input[type=text] , input[type=email] , textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #CCCCCC;
    padding: 2rem 2.5rem;
    font-size: 18px;
    line-height: 1;
    outline: none;
}
input[type=text]:focus , input[type=email]:focus , textarea:focus {
    border-color: #004495;
}
.contact_block .form_field .field_control textarea {
    height: 180px;
    outline: none;
}

textarea::placeholder, input::placeholder {
    color: #CCCCCC;
}
.contact_block .field_contactbtn {
    text-align: center;
}
.contact_block .field_contactbtn input[type=submit]{
    position: relative;
    width: 100%;
    height: 90px;
    border-radius: 80px;
    background-color: #004495;
    border: 1px solid #004495;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #FFF;
    box-shadow: 0px 4px 0px 0px #00000033;
    cursor: pointer;
}
.form_field.agree {
    margin-bottom: 0;
}
.radio_btn {
    position: relative;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
}
.radio_btn input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.radio_btn span {
    font-size: 16px;
}
.checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #CCCCCC;
    line-height: 1;
}
.radio_btn input:checked ~ .checkmark {
  background-color: transparent;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

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

.radio_btn .checkmark:after {
 	top: 5px;
	left: 5px;
	width: 8px;
	height: 8px;
	background-color: #004495;
    border-radius: 50%;
}
@media (max-width: 1600px) {
    .contact_block {
        width: 80rem;
    }
}
@media (max-width: 1440px) {
    .contact_block {
        width: 90rem;
    }
    .contact_block .form_field .field_cap {
        font-size: 15px;
    }
    input[type=text], input[type=email], textarea {
        font-size: 16px;
    }
}
@media (max-width: 1100px) {
    .contact_block {
        width: 100rem;
    }
    .contact_block .form_field .field_cap {
        font-size: 14px;
    }
    input[type=text], input[type=email], textarea {
        font-size: 16px;
    } 
    .contact_block .field_contactbtn input[type=submit] {
        height: 80px;
    }
}
@media (max-width: 991px) {
    .contact_block {
        width: 120rem;
    }
    .contents.contact .page_header {
        padding-left: 14rem;
    }
}
@media (max-width: 767px) {
    .contents.contact .page_header {
        padding-left: 5rem;
    }
}
@media (max-width: 676px) {
    input[type=text], input[type=email], textarea {
        padding: 15px 20px;
    }
}
@media (max-width: 576px) {
    .contents.contact .page_header {
        padding-left: 5rem;
    }
    .contact_block {
        width: 100%;
    }

}
@media (max-width: 576px) {
    .contents.contact .page_header {
        padding-left: 0;
    }
    .contact_block {
        padding: 5rem 0;
    }
    .form_field {
        margin-bottom: 20px;
    }
    input[type=text], input[type=email], textarea {
        font-size: 15px;
    }
    .radio_btn span {
        font-size: 14px;
    }
    .contact_block .field_contactbtn input[type=submit] {
        height: 60px;
        font-size: 16px;
    }
}


/* -------------loading animation style-------------- */
.loading_wrapper {
    transition: opacity .8s ease;
}
.loading_wrapper.is_hide {
    opacity: 0;
}
#loading {
    width: 100vw;
    height: 100vh;
    background-color: #111;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    opacity: 1;
    transition: all .6s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.loading_wrapper.is-loaded #loading {
    opacity: 0;
}
#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: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: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;
  }
}
.loading_video {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #FFF;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 980;
    opacity: 1;
    transition: all .2s;
    display: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}
.loading_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.loading_video button {
    position: absolute;
    bottom: 10vh;
    right: 10vw;
    outline: none;
    background-color: var(--color-black);
    border: 4px solid var(--color-black);
    font-size: 20px;
    font-family: var(--fontM);
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 2px;
    color: #FFF;
    transition: all .6s;
    cursor: pointer;
    z-index: 10;
}
.loading_video button:hover {
    background-color: transparent;
    color: var(--color-black);
}
.loading_video.is_hide {
    opacity: 0;
}




/* ------------swiper style---------- */
.swiper {
    display: none;
  }
  
  .swiper.swiper-initialized {
    display: block;
  }
  
  .swiper {
    padding-left: 14px;
  }
  
  .swiper-controller {
    width: 120px;
    display: flex;
    gap: 24px;
    align-items: center;
    margin-left: auto;
    margin-right: clamp(1.25rem, -4.4642857143rem + 11.9047619048vw, 6.25rem);
  }
  @media screen and (max-width: 767px) {
    .swiper-controller {
      margin-right: 0;
      gap: 16px;
    }
  }
  .swiper-controller--pickup {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
  }
  
  /* ページネーション
  -------------------------*/
  .swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 20px;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    transition: var(--transition);
    background-color: #a3a3a3;
    border-radius: 100%;
    cursor: pointer;
  }
  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-black);
  }
  
  /* 前へ / 次へボタン
  -------------------------*/
  .swiper-button-prev,
  .swiper-button-next {
    display: grid;
    place-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #6a6a6a;
    cursor: pointer;
    transition: var(--transition);
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    content: "";
    width: 12px;
    height: 12px;
    border: solid var(--color-black);
    border-width: 1.5px 1.5px 0 0;
  }
  
  .swiper-button-prev::after {
    margin-left: 6px;
    transform: rotate(-135deg);
  }
  
  .swiper-button-next::after {
    margin-right: 6px;
    transform: rotate(45deg);
  }
  
  .swiper-button-disabled {
    pointer-events: none;
    opacity: 0.3;
  }
  
  /* スクロールバー
  -------------------------*/
  .swiper-scrollbar {
    margin-top: 30px;
    height: 6px;
    width: 290px;
    background-color: #fff;
    border: solid 1px #030303;
    border-radius: 6px;
    box-shadow: inset 0px 2px 6px rgba(90, 90, 90, 0.1607843137);
  }
  .swiper-scrollbar-drag {
    height: 6px;
    background: var(--BlueColor);
    border-radius: 6px;
  }
  .section__title--ja {
    font-weight: 700;
    font-size: 26px;
  }


/* ----------single page style-------- */
.pgsingle {
    background-color: #efebe4;
    padding: 40px 0;
}
.pgsingle .content {
    max-width: 900px;
    margin: 0 auto;
}
.pgsingle .breadcrumb {
    width: 100%;
}
.pgsingle .breadcrumb ul {
    display: flex;
    align-items: center;
}
.pgsingle .breadcrumb ul li:last-child {
    opacity: .75;
}
.pgsingle .breadcrumb a {
    display: flex;
    align-items: center;
    gap: 3px;
}
.pgsingle .breadcrumb a span {
    font-size: 13px;
    line-height: 1;
}
.pgsingle .breadcrumb svg {
    width: 18px;
    height: 18px;
}
.pgsingle .breadcrumb ul > span {
    display: flex;
    line-height: 1;
    height: 6px;
    opacity: 0.75;
    transform: rotate(45deg);
    width: 6px;
    border-right: 1px solid;
    border-top: 1px solid;
    margin: 0 9px 0 7px;
    margin-top: 2px;
}
.pgsingle .article {
    background-color: #FFF;
    padding: 30px;
    margin: 40px 0;
    border-radius: 10px;
}
.article .article_header {
    display: flex;
    align-items: center;
}
.article .article_header time {
    display: flex;
    flex-direction: column;
    padding-right: 30px;
    border-right: 2px solid #030303;
    text-align: center;
}
.article_header time > span {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}
.article_header time div {
    white-space: nowrap;
}
.article_header time div span {
    font-size: 24px;
    font-weight: 600;
}
.article .article_header h1 {
    font-weight: 600;
    font-size: 26px;
    margin-left: 30px;
}
.article .article_meta {
    display: flex;
    align-items: center;
}
.article .article_meta a {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}
.article .article_meta span {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}
.article .article_image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.article .article_image img {
    width: 100%;
}
.article main .description-title {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 40px;
}
.article main h2.title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.8;
    padding: 5px 0;
    padding-left: 20px;
    margin-bottom: 20px;
    border-left: 6px solid #5ebc35;
    display: inline-block;
}

.article main strong {
	margin: 0;
	padding: 0;
	font-weight: bold;
	font-size: inherit;
}

.article main h3.small-title {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 20px;
}
.article main h3.small-title {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.8;
}
.article main h3.small-title::before {
    content: "";
    display: inline-block;
    height: 3px;
    width: 20px;
    background-color: #5ebc35;
    margin: auto 0;
}
.article main h6 {
    font-size: 15px;
}
.article main p.text-block {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.article main figure.post-image {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.article main figure img {
    width: 100%;
	margin-bottom: 30px;
}
.article main figure.mb-n {
	margin-bottom: 0;
	line-height: 0;
}
.article main figure a {
	line-height: 0;
}
.article main ul, .article main ol {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 40px;
}
.article main ul li, .article main ol li {
    font-size: 16px;
    line-height: 2;
    list-style-type: disc;
}

.article main ol li {
	list-style-type: numbers;
}

.article main blockquote {
    background-color: #f5f8fa;
    margin: 0;
    padding: 25px 30px;
}
.article main blockquote p {
    margin: 0;
    font-size: 16px;
}
@media (max-width: 991px) {
    .article main h2.title {
        font-size: 26px;
    }
    .pgsingle .content {
        margin: 0 4vw;
    }
    .pgsingle .article {
        padding: 40px 30px;
    }
}
@media (max-width: 767px) {
    .pgsingle .breadcrumb {
        display: none;
    }
    .article .article_header {
        flex-direction: column;
    }
    .article .article_header time {
        flex-direction: row;
        border: none;
        border-bottom: 2px solid #030303;
        width: 100%;
        padding-bottom: 10px;
    }
    .article .article_header h1 {
        margin: 0;
        padding-top: 10px;
    }
    .article_header time > span {
        font-size: 18px;
        font-weight: 600;
    }
    .article_header time div span {
        font-size: 18px;
        line-height: 1.6;
    }
    .article_header span:after {
        content: ".";
        font-size: 18px;
        line-height: 1.6;
        font-weight: 600;
    }
    .article_header time div :nth-child(2) {
        display: none;
    }
	.article main blockquote {
        padding: 20px 30px;
    }
}
@media (max-width: 676px) {
    .pgsingle .article {
        padding: 40px 20px;
    }
    .article .article_header h1 {
        font-size: 24px;
    }
    .article main .description-title {
        font-size: 16px;
    }
    .article main h2.title {
        font-size: 24px;
    }
    .article main h3.small-title {
        font-size: 19px;
    }
    .article main p.text-block {
        font-size: 13px;
        line-height: 2
    }
}
@media (max-width: 450px) {
    .pgsingle .content {
        margin: 0 20px;
    }
    .article main figure.post-image {
        width: 100%;
    }
    .article .article_header h1 {
        font-size: 21px;
    }
    .article main .description-title {
        font-size: 15px;
    }
    .article main h2.title {
        font-size: 20px;
        border-width: 3px;
        padding: 0;
        padding-left: 10px;
    }
	.article main h3.small-title {
		align-items: flex-start;
	}
    .article main h3.small-title {
        font-size: 16px;
    }
    .article main p.text-block {
        margin-bottom: 30px;
		font-size: 12px;
    }
	.article main h3.small-title::before {
		width: 15px;
	}
	.article main ul, .article main ol {
		margin-bottom: 30px;
	}
	.article main ul li, .article main ol li {
        font-size: 15px;
        line-height: 2;
    }
	.article main hr {
        margin: 15px 0;
        margin-bottom: 30px;
    }
    .article main blockquote {
        padding: 20px 15px;
    }
    .article main blockquote p {
        font-size: 15px;
    }
}
.writer-desc__item {
    border: 2px solid #030303;
    border-radius: 6px;
    position: relative;
    padding: 16px 20px;
    margin-bottom: 20px;
    background-color: #f4f4f4;
}
.readmore-header {
    display: flex;
    height: 115px;
    gap: 2rem;
    align-items: center;
    
}
.readmore-content {
    height: 242px;
    overflow: hidden;
}
.readmore-content p,
.readmore-header p {
    font-size: 13px !important;
    margin-bottom: 20px !important;
}
.readmore-content a {
    font-size: 13px !important;
	word-wrap: break-word;
}
.readmore-content h2,
.readmore-header h2 {
    font-size: 15px !important;
    margin-bottom: 0.3125rem !important;
}
  
.writer-desc__detail {
    padding-top: 20px;
    border-top: 1px solid #d0d0d0;
}
  
.writer-desc.-full .readmore-content {
    height: auto;
    overflow: visible;
}
  
.writer-desc__img {
    max-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
  
.writer-desc__img img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.5rem; /* 8px */
    border: 2px solid #030303;
}
  
.writer-label span {
    font-size: 12px;
    color: #a2a2a2;
}

.article main  .writer-desc__head .writer-desc__name {
    font-size: 17px !important;
    font-weight: 700;
    margin-bottom: 0 !important;
    line-height: 1 !important;
}
.sns__items {
    display: flex;
    align-items: center;
    gap: 8px;
}  
.writer-desc__text {
    flex: 1;
}
  
.writer-desc__head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
  
.writer-desc__name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0 !important;
}
  
.writer-desc__name a {
    color: #030303;
    text-decoration: none;
}
  
.readmore-toggle {
    display: none;
}
  
.readmore-toggle:checked + .readmore-label {
    display: none;
}
  
.readmore-label {
    position: absolute;
    top: 23%;
    transform: translateY(-50%);
    right: 20px;
    font-size: 14px;
    color: #a2a2a2;
    z-index: 10;
}
  
.readmore-label svg {
    margin-left: 4px;
}
  
.writer-desc.-full .readmore-label {
    display: none;
}
  
.readmore-toggle:checked ~ .readmore-content {
    height: auto !important;
    overflow: visible !important;
}
  
.readmore-toggle:checked ~ .readmore-label::before {
    content: none;
}
@media (max-width: 450px) {
    .readmore-content {
        height: 238px;
    }
    .writer-desc__item {
        padding: 15px 10px;
    }
    .article main .writer-desc__head .writer-desc__name {
        font-size: 16px !important;
    }
    .readmore-label {
        font-size: 13px;
        right: 10px;
    }
    .readmore-label svg {
        margin-left: 0;
    }
    .readmore-content p, .readmore-header p {
        font-size: 12px !important;
    }
	.writer-desc__img img {
		width: 75px;
		height: 75px;
	}
}




/* ----------archive page style-------- */
.collab_content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 1.15rem;
}
.collab_content .collab_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.collab_item .collab_image {
    width: 100%;
    height: 17rem;
    border-radius: 10px;
    overflow: hidden;
}
.collab_item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: all .8s cubic-bezier(0.25,0.1,0.25,1);
}
.collab_item:hover img {
    scale: 1.1;
}
.collab_item p:nth-child(2) {
    opacity: .6;
}
.collab_item span {
    font-size: 1rem;
    color: #FFF;
    width: fit-content;
    padding: 3px 5px;
    border-radius: 3px;
}
@media (max-width: 1600px) {
    .collab_item p {
        font-size: 1.5rem;
    }
    .collab_item span {
        font-size: 1.2rem;
    }
}
@media (max-width: 1300px) {
    .collab_content {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px 2rem;
    }
    .collab_item p {
        font-size: 1.8rem;
    }
    .collab_item span {
        font-size: 1.6rem;
    }
}
@media (max-width: 991px) {
    .collab_item p {
        font-size: 2rem;
    }
    .collab_item span {
        font-size: 1.8rem;
    }
}
@media (max-width: 767px) {
    .collab_item p {
        font-size: 2.5rem;
    }
    .collab_item span {
        font-size: 2.3rem;
    }
}
@media (max-width: 621px) {
    .block_title h5 {
        font-size: 18px;
    }
    .collab_item p {
        font-size: 3rem;
    }
    .collab_item span {
        font-size: 2.6rem;
    }
}
@media (max-width: 450px) {
    .collab_item p {
        font-size: 12px;
    }
    .collab_item span {
        font-size: 11px;
        padding: 2px 3px;
    }
}
@media (max-width: 1300px) {
    .collab_item .collab_image {
        height: 20rem;
    }
}
@media (max-width: 767px) {
    .collab_content {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 2rem;
    }
    .collab_item .collab_image {
        height: 28rem;
    }
}
@media (max-width: 621px) {
    .collab_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 2rem;
    }
    .collab_item .collab_image {
        height: 40rem;
    }
}
@media (max-width: 450px) {
    .contents.article .container {
        padding: 40px 15px;
    }
    .collab_content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }
}






.pagination_wrap {
	display: flex;
	align-items: center;
    justify-content: center;
	padding-top: 50px;
}
.wp-pagenavi {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 3px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    color: #303F9F;
    border-color: #E7F1FB;
	font-size: 14px;
    border-radius: 5px;
}
.wp-pagenavi a.previouspostslink {
	width: 32px;
}
.wp-pagenavi a.nextpostslink {
	width: 32px;
}
.wp-pagenavi span {
    color: #303F9F;
    background-color: transparent;
}

.wp-pagenavi a:hover {
    color: #303F9F !important;
	background-color: transparent !important;
}

.wp-pagenavi span.current {
	background-color: #303F9F;
	color: #fff;
    border-color: #E7F1FB;
}

@media(min-width:0px) and (max-width:767px){
	.wp-pagenavi a,
	.wp-pagenavi span {
		width: 28px;
		height: 28px;
		font-size: 12px;
	}
	.wp-pagenavi a.previouspostslink {
		width: 28px;
	}
	.wp-pagenavi a.nextpostslink {
		width: 28px;
	}
}