/*#region var*/
:root {
    --pxunit: .83rem;
    --fontB: 'Noto Sans JP', sans-serif;
    --fontP: 'Poppins';
    --fontHGS: 'HGSMinchoE';
    --fontJS: 'JTDouro-Sans';
    --fontSM: 'Sawarabi Mincho';
    --fontGothic: 'Yu Gothic';
    --headerH: 11rem;
    --bg-font-color: #333333;
    --bg-black-color: #000000;
    --bg-blue-color: #5E91A8;
    --bg-grey-color: #E8E8E8;
    --bg-green-color: #118856;
    --bg-white-color: #FFFFFF;
    --bg-border-color: #CCCCCC;
}

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

html {
    font-size: .625vw;
}

body {
    margin: 0;
    padding: 0;
    overflow-y: auto;
    background-color: var(--bg-white-color);
    font-size: 1.5rem;
}

html,
body {
    overflow-y: hidden;
    touch-action: none;
}

.hx1 {
    content: "";
    height: var(--pxunit);
}

.hx2 {
    content: "";
    height: calc(var(--pxunit)*2);
}

.hx3 {
    content: "";
    height: calc(var(--pxunit)*3);
}

.hx4 {
    content: "";
    height: calc(var(--pxunit)*4);
}

.hx5 {
    content: "";
    height: calc(var(--pxunit)*5);
}

.hx6 {
    content: "";
    height: calc(var(--pxunit)*6);
}

.hx7 {
    content: "";
    height: calc(var(--pxunit)*7);
}

.hx8 {
    content: "";
    height: calc(var(--pxunit)*8);
}

.hx9 {
    content: "";
    height: calc(var(--pxunit)*9);
}

.hx10 {
    content: "";
    height: calc(var(--pxunit)*10);
}

.hx11 {
    content: "";
    height: calc(var(--pxunit)*11);
}

.hx12 {
    content: "";
    height: calc(var(--pxunit)*12);
}

.hx13 {
    content: "";
    height: calc(var(--pxunit)*13);
}

.hx14 {
    content: "";
    height: calc(var(--pxunit)*14);
}

.hx15 {
    content: "";
    height: calc(var(--pxunit)*15);
}

.hx16 {
    content: "";
    height: calc(var(--pxunit)*16);
}

.hx17 {
    content: "";
    height: calc(var(--pxunit)*17);
}

.hx18 {
    content: "";
    height: calc(var(--pxunit)*18);
}

.hx19 {
    content: "";
    height: calc(var(--pxunit)*19);
}

.hx20 {
    content: "";
    height: calc(var(--pxunit)*20);
}

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

/*#endregion var*/

/*#region RESET*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    font-weight: bold;
    line-height: 1.5;
}

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: #D6D6D6;
}

input::-moz-placeholder {
    color: #D6D6D6;
}

input:-ms-input-placeholder {
    color: #D6D6D6;
}

input:-moz-placeholder {
    color: #D6D6D6;
}

textarea::-webkit-input-placeholder {
    color: #D6D6D6;
}

textarea::-moz-placeholder {
    color: #D6D6D6;
}

textarea:-ms-input-placeholder {
    color: #D6D6D6;
}

textarea:-moz-placeholder {
    color: #D6D6D6;
}

button:focus {
    outline: 0;
}

ul {
    margin: 0px;
    padding: 0px;
}

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

picture {
    display: flex;
    line-height: 0;
    width: 100%;
}

img {
    border: 0px;
}

.clearfix {
    clear: both;
    overflow: hidden;
}

/*#endregion RESET*/

/*#region pspander*/
.pspander_header {
    cursor: pointer;
}

.pspander_opened {
    display: block;
}

.pspander_closed {
    display: none;
}

.pspander.pst_show .pspander_opened {
    display: none;
}

.pspander.pst_show .pspander_closed {
    display: block;
}

.pspander_collapse {
    display: none;
}

/*#endregion pspander*/
/*#region ANIMATION*/
/*#region opacity animation*/
.js_opac {
    opacity: 0;
    transition: all 1s;
    transition-delay: 1s;
}

.js_opac.on {
    opacity: 1;
}

/*#endregion opacity animation*/
/*#region spin animation*/
/* spin1 */
@keyframes spin1 {
    0% {
        transform: rotate(0deg)translate3d(7px, 0, 0);
    }

    100% {
        transform: rotate(360deg)translate3d(7px, 0, 0);
    }
}

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

    100% {
        transform: rotate(360deg)translate3d(5px, 0, 0);
    }
}

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

    100% {
        transform: rotate(360deg)translate3d(6px, 0, 0);
    }
}

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

    100% {
        transform: rotate(-360deg)translate3d(3px, 0, 0);
    }
}

/* spin5 */
@keyframes spin5 {
    0% {
        transform: rotate(0deg)translate3d(2px, 0, 0);
    }

    100% {
        transform: rotate(-360deg)translate3d(2px, 0, 0);
    }
}

.circleWrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.c_pos01 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin1 5s linear infinite;
    -moz-animation: spin1 5s linear infinite;
    -ms-animation: spin1 5s linear infinite;
    -o-animation: spin1 5s linear infinite;
    animation: spin1 5s linear infinite;
    /*  	animation: bo-co1 10s infinite;
        -webkit-animation: bo-co1 10s infinite; */
}

.c_pos02 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin2 4s linear infinite;
    -moz-animation: spi2 4s linear infinite;
    -ms-animation: spin2 4s linear infinite;
    -o-animation: spin2 4s linear infinite;
    animation: spin2 4s linear infinite;
    /* 	animation: bo-co2 9s infinite;
        -webkit-animation: bo-co2 9s infinite; */
}

.c_pos03 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin3 7s linear infinite;
    -moz-animation: spi3 7s linear infinite;
    -ms-animation: spin3 7s linear infinite;
    -o-animation: spin3 7s linear infinite;
    animation: spin3 7s linear infinite;
    /* 	animation: bo-co3 11s infinite;
        -webkit-animation: bo-co3 11s infinite; */
}

.c_pos04 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin4 7s linear infinite;
    -moz-animation: spi4 7s linear infinite;
    -ms-animation: spin4 7s linear infinite;
    -o-animation: spin4 7s linear infinite;
    animation: spin4 7s linear infinite;
    /* 	animation: bo-co1 12s infinite;
        -webkit-animation: bo-co1 12s infinite; */
}

.c_pos05 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin5 8s linear infinite;
    -moz-animation: spi5 8s linear infinite;
    -ms-animation: spin5 8s linear infinite;
    -o-animation: spin5 8s linear infinite;
    animation: spin5 8s linear infinite;
    /* 	animation: bo-co2 10s infinite;
        -webkit-animation: bo-co2 10s infinite; */
}

/*#endregion spn animation*/
/*#region rotate animation*/
.rot360 {
    transform: rotate(0deg);
    animation: anim_rotate360 10s linear infinite;
}

@keyframes anim_rotate360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*#endregion rotate animation*/
/*#region clip-left-right animation*/
.panir3 {
    display: inline-block;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
    vertical-align: middle;
}

.panir3.on {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

.panil3 {
    display: inline-block;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
    vertical-align: middle;
}

.panil3.on {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

/*#endregion clip-left-right animation*/
/*#region pani text rising animation*/
.pani4 {
    display: flex;
    overflow: hidden;
}

.pani4 span {
    display: block;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: transparent;
}

.pani4.on span {
    color: #222;
    transform: translateY(0);
}

.pani4 span:nth-child(0) {
    transition-delay: 0ms;
}

.pani4 span:nth-child(1) {
    transition-delay: 80ms;
}

.pani4 span:nth-child(2) {
    transition-delay: 160ms;
}

.pani4 span:nth-child(3) {
    transition-delay: 240ms;
}

.pani4 span:nth-child(4) {
    transition-delay: 320ms;
}

.pani4 span:nth-child(5) {
    transition-delay: 400ms;
}

.pani4 span:nth-child(6) {
    transition-delay: 480ms;
}

.pani4 span:nth-child(7) {
    transition-delay: 560ms;
}

.pani4 span:nth-child(8) {
    transition-delay: 640ms;
}

.pani4 span:nth-child(9) {
    transition-delay: 720ms;
}

.pani4 span:nth-child(10) {
    transition-delay: 800ms;
}

.pani4 span:nth-child(11) {
    transition-delay: 880ms;
}

.pani4 span:nth-child(12) {
    transition-delay: 960ms;
}

.pani4 span:nth-child(13) {
    transition-delay: 1040ms;
}

.pani4 span:nth-child(14) {
    transition-delay: 1120ms;
}

.pani4 span:nth-child(15) {
    transition-delay: 1200ms;
}

.pani4 span:nth-child(16) {
    transition-delay: 1280ms;
}

.pani4 span:nth-child(17) {
    transition-delay: 1360ms;
}

.pani4 span:nth-child(18) {
    transition-delay: 1440ms;
}

.pani4 span:nth-child(19) {
    transition-delay: 1520ms;
}

.pani4 span:nth-child(19) {
    transition-delay: 1600ms;
}

/*endregion pani text rising animation*/
/*#region evelit animaiton*/
.initani {
    overflow: hidden;
    position: relative;
}

.initani::before,
.initani::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.initani.initani_wb::before {
    background-color: #FFF;
}

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

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

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

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

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

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

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

.initani.initani_wg::after {
    background-color: var(--bg-green-color);
}

.initani.initani_wg::before {
    background-color: var(--bg-green-color);
}

.initani::before {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.initani::after {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateX(0);
    -ms-transform: scaleX(0) translateX(0);
    transform: scaleX(0) translateX(0);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.anistart::before {
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.anistart::after {
    -webkit-transform: scaleX(1) translateX(101%);
    -ms-transform: scaleX(1) translateX(101%);
    transform: scaleX(1) translateX(101%);
}

/*#endregion evelit animaiton*/
/*region coiran animation*/
@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
        -ms-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        transform: scale(1.1);
        -ms-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
        -ms-transformm: scale(1);
    }
}

@-o-keyframes slideShow {
    0% {
        opacity: 0;
        -o-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -o-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -o-transformm: scale(1);
    }
}

@-moz-keyframes slideShow {
    0% {
        opacity: 0;
        -moz-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -moz-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -moz-transformm: scale(1);
    }
}

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

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -webkit-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transformm: scale(1);
    }
}

/*endregion coiran animation*/
/*#region io animation*/
.pioup {
    -webkit-transition: color 0.4s ease 0s, background-color 0.4s ease 0s, opacity 1.0s ease 0s, -webkit-transform 1.0s ease 0s;
    transition: color 0.4s ease 0s, background-color 0.4s ease 0s, opacity 1.0s ease 0s, transform 1.0s ease 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity, transform;
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

.pioup.on {
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
}

/*#endregion io animation*/
/*#endregion ANIMATION*/

/*#region COMMON*/
.pmh_anchor {
    transform: translateY(-100px);
    content: "";
    width: 100%;
    height: 0;
}

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

.disb_sp {
    display: none !important;
}

.disb_pc {
    display: block !important;
}

/*#endregion COMMON*/

/*#region HEADER*/

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

header.moved {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

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

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

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

.header_logo img {
    width: 100%;
}

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

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

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

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

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

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

.headmenu_a .headmenu_shape .headmenu_cap {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.6;
}

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

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

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

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

.hamburger_btn {
    margin: 0;
    vertical-align: middle;
    display: inline-block;
    padding: 0px;
    width: 32px;
    height: 15px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.hamburger_btn span {
    background: var(--bg-black-color);
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 0px;
    margin: 0px 1px 4px 1px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

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

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

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

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

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

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

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

/*#endregion HEADER*/


/*#region pg specials*/
.display-flex {
    display: flex;
    gap: 1rem;
}

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

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

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

.justify-content-center {
    display: flex;
    justify-content: center;
}

.justify-content-start {
    display: flex;
    justify-content: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-center {
    align-items: center;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

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

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.row_reverse {
    flex-direction: row-reverse;
}

.sp_break {
    display: none !important;
}

.tb_break {
    display: none !important;
}

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

    .tb_break {
        display: block !important;
    }
}

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

    .sp_break {
        display: block !important;
    }
}

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

.container {
    width: 100%;
    padding: 0 10rem;
}

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

.m-inner {
    gap: 6.5rem;
}

.s-inner {
    gap: 4rem;
}

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

    .m-inner {
        gap: 3.2rem;
    }

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

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

    .l-inner {
        gap: 45px;
    }

    .m-inner {
        gap: 30px;
    }

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

.block_ttl {
    position: relative;
    display: flex;
}

.block_ttl::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--bg-grey-color);
}

.block_ttl h1,
.block_ttl h2 {
    position: relative;
    width: fit-content;
    font-size: 4rem;
    font-weight: bold;
    padding: 3.3rem 0;
    opacity: 0;
}

.block_ttl h1 {
    font-size: 5.3rem;
    line-height: 1;
}

.block_ttl h2::before,
.block_ttl h1::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 13rem;
    height: 1px;
    background-color: var(--bg-blue-color);
    transform: scale(0, 1);
    transition: transform 0.2s cubic-bezier(0.53, 0.2, 0.25, 1), -webkit-transform 0.2s cubic-bezier(0.53, 0.2, 0.25, 1)
}

.block_ttl.on h2::before,
.block_ttl.on h1::before {
    transform: scale(1, 1);
}

.block_ttl span {
    position: absolute;
    font-size: 12rem;
    font-family: var(--fontP);
    line-height: .7;
    right: 0;
    bottom: 0;
    opacity: .08;
}

@media (max-width: 768px) {
    .block_ttl h1 {
        font-size: 2rem;
        padding: 1.4rem 0;
    }

    .block_ttl h2 {
        font-size: 1.5rem;
        padding: 1.4rem 0;
    }

    .block_ttl span {
        font-size: 4.5rem;
    }

    .block_ttl h2::before,
    .block_ttl h1::before {
        width: 7rem;
    }
}

@media (max-width: 450px) {
    .block_ttl h1 {
        font-size: 28px;
        padding: 15px 0;
    }

    .block_ttl h2 {
        font-size: 24px;
        padding: 15px 0;
    }

    .block_ttl span {
        font-size: 60px;
    }

    .block_ttl h2::before,
    .block_ttl h1::before {
        width: 65px;
    }
}


.pg_header {
    border-bottom: 1px solid var(--bg-border-color);
}

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

.pg_ttl {
    font-size: 4.5rem;
    line-height: 1.5;
    width: fit-content;
}

.bread_list {
    width: fit-content;
}

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

.bread_list a {
    display: flex;
    font-size: 1.4rem;
    line-height: 1;
}

.bread_list li:first-child a {
    color: var(--bg-blue-color);
}

.bread_list span {
    display: flex;
    width: 1.5rem;
}

.bread_list img {
    width: 100%;
}

@media (max-width: 768px) {
    .pg_header-inner {
        gap: 2.5rem;
    }

    .pg_ttl {
        font-size: 2rem;
    }

    .bread_list ul {
        gap: .5rem;
    }

    .bread_list span {
        width: .7rem;
    }

    .bread_list a {
        font-size: .7rem;
    }
}

@media (max-width: 450px) {
    .pg_header-inner {
        gap: 35px;
    }

    .pg_ttl {
        font-size: 32px;
    }

    .bread_list ul {
        gap: 6px;
    }

    .bread_list span {
        width: 14px;
    }

    .bread_list a {
        font-size: 11.5px;
    }
}


.bordered_img {
    border-radius: 1.7rem;
    overflow: hidden;
}

.more_btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 25rem;
    height: 6rem;
    border-radius: .4rem;
    border: 2px solid var(--bg-font-color);
    background-color: var(--bg-font-color);
    transition: background-color .4s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-radius: 999px;
}

.more_btn span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-white-color);
    white-space: nowrap;
    transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.more_btn svg {
    position: absolute;
    right: 3.5rem;
    width: 1.5rem;
    transition: scale .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.more_btn:hover span {
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-font-color);
}

.more_btn:hover svg {
    scale: 0;
}

@media (max-width: 768px) {
    .bordered_img {
        border-radius: .6rem;
    }

    .more_btn {
        width: 15rem;
        height: 3.1rem;
    }

    .more_btn span {
        font-size: .8rem;
        left: 1rem;
    }

    .more_btn svg {
        right: 1rem;
        width: 1rem;
    }
}

@media (max-width: 450px) {
    .bordered_img {
        border-radius: 8px;
    }

    .more_btn {
        width: 220px;
        height: 47px;
    }

    .more_btn span {
        font-size: 14px;
        left: 20px;
    }

    .more_btn svg {
        right: 20px;
        width: 15px;
    }
}

.fade_y {
    transform: translate(0, 1.5625rem);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.53, 0.2, 0.25, 1), transform 0.8s cubic-bezier(0.53, 0.2, 0.25, 1), -webkit-transform 0.8s cubic-bezier(0.53, 0.2, 0.25, 1);
    transition-delay: 0.06s
}

.fade_y.on {
    opacity: 1;
    transform: translate(0, 0rem);
    --webkit-transform: translate(0, 0rem);
}

.js_bg {
    position: relative;
    background-color: #E6E6E6
}

.js_bg::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: var(--bg-url);
    -webkit-background-size: cover !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: 50% 50% !important;
    opacity: 0;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: opacity 0.6s, -webkit-transform 1.2s cubic-bezier(0, 0.54, 0, 1);
    transition: opacity 0.6s, -webkit-transform 1.2s cubic-bezier(0, 0.54, 0, 1);
    -o-transition: opacity 0.6s, transform 1.2s cubic-bezier(0, 0.54, 0, 1);
    transition: opacity 0.6s, transform 1.2s cubic-bezier(0, 0.54, 0, 1);
    transition: opacity 0.6s, transform 1.2s cubic-bezier(0, 0.54, 0, 1), -webkit-transform 1.2s cubic-bezier(0, 0.54, 0, 1);
    transition-delay: .2s;
}

.js_bg.on::before {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.js_bg img {
    opacity: 0;
    visibility: hidden;
}

.animation_txt span {
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.animation_txt>span {
    display: block;
}

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

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

.w_50 {
    width: 50%;
}

.w_45 {
    width: 45%;
}

.w_48 {
    width: 48%;
}

.w_60 {
    width: 60%;
}

.w_35 {
    width: 35%;
}

.w_25 {
    width: 25%;
}

.w_100 {
    width: 100%;
}

.w_70 {
    width: 70%;
}

img {
    object-fit: cover;
    margin: 0;
    padding: 0;
}

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






/* ----------page home style--------- */
/* ------section banner------ */
.banner {
    position: relative;
    height: calc(100vh - var(--headerH));
    padding: 0 3.5rem 3.3rem;
}

.banner_video {
    position: relative;
    display: flex;
    height: 100%;
    border-radius: 3.5rem;
    overflow: hidden;
}

.banner_video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    background: url(../img/banner_dot.png) 0% 0% / 3px repeat;
}

.banner_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner_main {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
    left: 10rem;
    bottom: 9rem;
}

.banner_ttl {
    font-size: 5.3rem;
}

.banner_ttl span {
    position: relative;
    display: inline-block;
    font-weight: bold;
    line-height: 1.2;
    color: var(--bg-white-color);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(#000 0 0);
    mask-image: linear-gradient(#000 0 0);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 0% 100%;
    mask-size: 0% 100%;
}

.banner_ttl.on span {
    animation: text-reveal 1s cubic-bezier(.77, 0, .18, 1) forwards;
}

.banner_ttl span:first-child:after {
    animation-delay: .8s;
}

.banner_ttl span:last-child:after {
    animation-delay: 1s;
}

.banner_ttl span::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white-color);
    transform: translateX(-101%);
}

.banner_ttl.on span::after {
    animation: a-ltr-after 1s cubic-bezier(.77, 0, .18, 1) forwards;
}

.banner_btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 22rem;
    height: 5rem;
    background-color: var(--bg-white-color);
    border: 2px solid var(--bg-white-color);
    transition: background-color .4s cubic-bezier(0.25, 0.1, 0.25, 1);
    border-radius: 999px;
}

.banner_btn span {
    position: absolute;
    left: 2rem;
    white-space: nowrap;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.banner_btn svg {
    position: absolute;
    width: 1.3rem;
    right: 2rem;
    transition: scale .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.banner_btn:hover span {
    left: 50%;
    transform: translateX(-50%);
    color: var(--bg-white-color);
}

.banner_btn:hover svg {
    scale: 0;
}

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

    .banner_video {
        border-radius: 1.5rem;
    }

    .banner_main {
        left: 3rem;
        bottom: 3.5rem;
        gap: 1.5rem;
    }

    .banner_ttl {
        font-size: 2rem;
    }

    .banner_btn {
        width: 13rem;
        height: 2.8rem;
    }

    .banner_btn span {
        font-size: .8rem;
        left: 1.5rem;
    }

    .banner_btn svg {
        width: 1rem;
        right: 1.5rem;
    }
}

@media (max-width: 450px) {
    .banner {
        height: 65vh;
        padding: 5px 15px 0;
    }

    .banner_video {
        border-radius: 15px;
    }

    .banner_main {
        left: 30px;
        bottom: 45px;
        gap: 20px;
    }

    .banner_ttl {
        font-size: 26px;
        line-height: 1.5;
    }

    .banner_btn {
        width: 220px;
        height: 45px;
    }

    .banner_btn span {
        font-size: 13.5px;
        left: 20px;
    }

    .banner_btn svg {
        width: 15px;
        right: 20px;
    }
}




/* ------section about------ */
.about_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about_img {
    display: flex;
    width: 45%;
}

.about_img img {
    width: 100%;
}

.about_txt {
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.about_txt h3 {
    font-size: 3.5rem;
    line-height: 1.5;
}

.about_txt p {
    font-size: 1.95rem;
}

.about_txt .more_btn {
    margin-left: auto;
}

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

    .about_img {
        width: 100%;
    }

    .about_txt {
        width: 100%;
        gap: 1rem;
    }

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

    .about_txt p {
        font-size: .9rem;
    }

    .about_txt .more_btn {
        margin-top: 1rem;
    }
}

@media (max-width: 450px) {
    .about_content {
        gap: 25px;
    }

    .about_txt {
        gap: 25px;
    }

    .about_txt h3 {
        font-size: 22px;
    }

    .about_txt p {
        font-size: 15px;
    }

    .about_txt .more_btn {
        margin-top: 15px;
    }
}



/* ------section news------ */
.news_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.news_img {
    display: flex;
    width: 40%;
}

.news_img img {
    width: 100%;
}

.news_right {
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

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

.news_item,
.news_post,
.news_info {
    display: flex;
    align-items: center;
}

.news_post {
    position: relative;
    width: 100%;
    gap: 3.5rem;
    padding: 3.3rem 0 2rem 0;
    border-bottom: 1px solid var(--bg-font-color);
    transition: padding-left .3s;
}

.news_post::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--bg-blue-color);
    transition: width .5s;
}

.news_list li:first-child .news_post {
    padding-top: 0;
}

.news_info {
    gap: 2rem;
}

.news_post time,
.news_post span {
    font-size: 1.6rem;
}

.news_post span {
    position: relative;
    display: block;
    padding: .4rem 1.7rem;
    border: 1px solid var(--bg-font-color);
    border-radius: 999px;
    transition: all .4s;
}

.news_post h3 {
    flex: 1;
    font-size: 1.8rem;
    transition: color .4s;
    font-weight: normal;
}

.news_content .more_btn {
    margin-left: auto;
}

.news_item:hover .news_post {
    padding-left: 5px;
}

.news_item:hover .news_post::before {
    width: 100%;
}

.news_item:hover .news_post span {
    background-color: var(--bg-font-color);
    color: var(--bg-white-color);
}

.news_item:hover .news_post h3 {
    color: var(--bg-blue-color);
}

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

    .news_img,
    .news_right {
        width: 100%;
    }

    .news_right {
        gap: 2.5rem;
    }
}

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

    .news_right {
        gap: 40px;
    }
}


/* ------section business------ */
.business_content {
    display: flex;
    gap: 8rem;
}

.business_txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.business_txt h3 {
    font-size: 3.5rem;
}

.business_txt p {
    font-size: 2rem;
}

.business_img {
    width: 48%;
}

.business_img img {
    width: 100%;
}

@media (max-width: 768px) {
    .business_content {
        flex-direction: column-reverse;
        gap: 1.5rem;
    }

    .business_img {
        width: 100%;
    }

    .business_txt {
        gap: 1rem;
    }

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

    .business_txt p {
        font-size: .9rem;
    }

    .business_txt .more_btn {
        margin-left: auto;
        margin-top: 1rem;
    }
}

@media (max-width: 450px) {
    .business_content {
        gap: 25px;
    }

    .business_txt {
        gap: 25px;
    }

    .business_txt h3 {
        font-size: 22px;
    }

    .business_txt p {
        font-size: 15px;
    }

    .business_txt .more_btn {
        margin-top: 10px;
    }
}



/* ------section company------ */
.company_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.company_img {
    width: 47%;
    display: flex;
}

.company_img img {
    width: 100%;
}

.company_nav {
    width: 40%;
}

.company_link-list {
    display: flex;
    flex-direction: column;
}

.company_link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    font-size: 1.8rem;
    border-bottom: 1px solid var(--bg-font-color);
    transition: padding .3s;
}

.company_link::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--bg-blue-color);
    transition: width .5s;
}

.company_link-list li:first-child .company_link {
    border-top: 1px solid var(--bg-font-color);
}

.company_link svg {
    position: absolute;
    width: 2rem;
    right: 0;
}

.company_link:hover {
    padding-left: 8px;
}

.company_link:hover::before {
    width: 100%;
}

.company_link:hover svg {
    animation: arrow-right 0.5s ease-in-out;
}

@keyframes arrow-right {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    50% {
        opacity: 0;
        transform: translate3d(10px, 0, 0);
    }

    50.1% {
        opacity: 0;
        transform: translate3d(-10px, 0, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 768px) {
    .company_content {
        align-items: unset;
    }

    .company_img {
        width: 50%;
    }

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

    .company_link svg {
        width: 1rem;
    }
}

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

    .company_img,
    .company_nav {
        width: 100%;
    }

    .company_link {
        padding: 15px 0;
        font-size: 15px;
    }

    .company_link svg {
        width: 15px;
    }
}



/* ----------page about style--------- */
.brand_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand_img {
    width: 18%;
}

.brand_img img {
    width: 100%;
}

.brand_txt {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    width: 60%;
}

.brand_txt div {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand_txt h3 {
    font-size: 3.3rem;
    font-weight: bold;
}

.brand_txt p {
    font-size: 2rem;
    line-height: 1.8;
}

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

    .brand_txt div {
        gap: .5rem;
    }

    .brand_txt h3 {
        font-size: 1.3rem;
    }

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

    .brand_img {
        width: 25%;
    }
}

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

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

    .brand_txt div {
        gap: 15px;
    }

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

    .brand_txt p {
        font-size: 15px;
    }

    .brand_img {
        width: 40%;
    }
}

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

.slogan_ttl {
    font-size: 5rem;
}

.slogan_txt {
    width: 48%;
}

.slogan_txt p {
    font-size: 2rem;
    line-height: 1.8;
}

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

    .slogan_ttl {
        font-size: 2rem;
    }

    .slogan_txt {
        width: 100%;
    }

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

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

    .slogan_ttl {
        font-size: 24px;
    }

    .slogan_txt p {
        font-size: 15px;
    }
}

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

.vision_txt {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 47%;
}

.vision_txt h3 {
    font-size: 3.5rem;
    font-weight: bold;
}

.vision_txt p {
    font-size: 1.95rem;
    line-height: 1.8;
}

.vision_img {
    width: 46%;
}

.vision_img img {
    width: 100%;
}

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

    .vision_txt h3 {
        font-size: 1.4rem;
    }

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

@media (max-width: 450px) {
    .vision_content {
        flex-direction: column-reverse;
        gap: 25px;
    }

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

    .vision_txt h3 {
        font-size: 24px;
    }

    .vision_txt p {
        font-size: 15px;
    }

    .vision_img {
        width: 100%;
    }
}

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

.mission_txt {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 47%;
}

.mission_txt h3 {
    font-size: 5.3rem;
}

.mission_txt h3 span {
    font-size: 3.3rem;
}

.mission_txt p {
    font-size: 2rem;
}

.mission_txt p strong {
    font-weight: bold;
}

.mission_img {
    text-align: center;
    width: 48%;
}

.mission_img img {
    width: 65%;
}

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

    .mission_txt h3 {
        font-size: 2rem;
    }

    .mission_txt h3 span {
        font-size: 1.2rem;
    }

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

    .mission_img img {
        width: 100%;
    }

    .mission_img {
        width: 47%;
    }
}

@media (max-width: 450px) {
    .mission_content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

    .mission_txt h3 {
        font-size: 28px;
    }

    .mission_txt h3 span {
        font-size: 21px;
    }

    .mission_txt p {
        font-size: 15px;
    }

    .mission_img img {
        width: 100%;
    }

    .mission_img {
        margin: 0 auto;
        width: 80%;
    }
}

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

.strategy_img {
    text-align: center;
    width: 55%;
}

.strategy_img img {
    width: 65%;
}

.strategy_right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem 2.5rem;
    width: 45%;
}

.strategy_txt {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    width: calc(50% - 1.25rem);
}

.strategy_txt h3 {
    font-size: 2.7rem;
    font-weight: bold;
}

.strategy_txt p {
    font-size: 1.85rem;
}

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

    .strategy_img {
        width: 60%;
    }

    .strategy_img img {
        width: 100%;
    }

    .strategy_right {
        width: 100%;
        gap: 1.5rem;
    }

    .strategy_txt {
        width: calc(50% - .75rem);
        gap: .5rem;
    }

    .strategy_txt h3 {
        font-size: 1.3rem;
    }

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

@media (max-width: 450px) {
    .strategy_content {
        gap: 25px;
    }

    .strategy_img {
        width: 95%;
    }

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

    .strategy_txt {
        width: 100%;
        gap: 15px;
    }

    .strategy_txt h3 {
        font-size: 18px;
    }

    .strategy_txt p {
        font-size: 15px;
    }
}

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

.idea_img {
    text-align: center;
    width: 47%;
}

.idea_img img {
    width: 75%;
}

.idea_list {
    display: flex;
    flex-direction: column;
    width: 48%;
}

.list_row {
    display: flex;
    justify-content: space-between;
    padding: 2.5rem 0;
    border-bottom: 1px solid #D6D6D6;
    margin: 0;
}

.list_row:first-child {
    padding-top: 0;
}

.list_row dt {
    font-size: 2.2rem;
    width: 22rem;
    margin: 0;
}

.list_row dd {
    flex: 1;
    font-size: 1.9rem;
    margin: 0;
}

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

    .idea_img {
        width: 50%;
    }

    .idea_img img {
        width: 100%;
    }

    .idea_list {
        width: 100%;
    }

    .list_row {
        padding: 1.5rem 0;
    }

    .list_row:first-child {
        padding-top: 1.5rem;
        border-top: 1px solid #D6D6D6;
    }

    .list_row dt {
        width: 10rem;
        font-size: 1rem;
    }

    .list_row dd {
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    .about_idea .block_ttl span {
        font-size: 49px;
    }

    .idea_content {
        gap: 15px;
    }

    .idea_img {
        width: 80%;
    }

    .list_row {
        flex-direction: column;
        padding: 20px 0;
        gap: 10px;
    }

    .list_row:first-child {
        padding-top: 15px;
    }

    .list_row dt {
        width: 100%;
        font-size: 17px;
        font-weight: bold;
    }

    .list_row dd {
        font-size: 15px;
    }
}

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

.guideline_left,
.guideline_right {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.guideline_left {
    width: 43%;
}

.guideline_right {
    width: 47%;
}

.guideline_txt {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
}

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

.guideline_item h3 {
    font-size: 2.5rem;
}

.guideline_item p {
    font-size: 1.9rem;
}

.guideline_img,
.guideline_img img {
    width: 100%;
    line-height: 0;
}

.guideline_left .more_btn {
    width: 35rem;
}

@media (max-width: 768px) {
    .guideline_content {
        flex-direction: column-reverse;
        gap: 1.5rem;
    }

    .guideline_right {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
    }

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

    .guideline_txt {
        gap: 1rem;
    }

    .guideline_item {
        gap: .5rem;
    }

    .guideline_item h3 {
        font-size: 1.1rem;
    }

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

    .guideline_left .more_btn {
        width: 16rem;
        margin-left: auto;
    }
}

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

    .guideline_right {
        flex-direction: column;
        gap: 8px;
    }

    .guideline_left {
        gap: 30px;
    }

    .guideline_txt {
        gap: 20px;
    }

    .guideline_item {
        gap: 15px;
    }

    .guideline_item h3 {
        font-size: 16px;
    }

    .guideline_item p {
        font-size: 15px;
    }

    .guideline_left .more_btn {
        width: 270px;
        height: 45px;
    }
}



/* ----------page business style--------- */
.absoluteness_img img {
    width: 100%;
}

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

.absoluteness_txt h2 {
    font-size: 4rem;
    font-weight: bold;

}

.absoluteness_txt p {
    width: 60%;
    font-size: 2.1rem;
}

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

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

    .absoluteness_txt p {
        width: 100%;
        font-size: .8rem;
    }
}

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

    .absoluteness_txt h2 {
        text-align: center;
        width: 100%;
        font-size: 24px;
    }

    .absoluteness_txt p {
        font-size: 15px;
    }
}

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

.alter_txt {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    width: 47%;
}

.alter_txt p {
    font-size: 2.1rem;
}

.alter_img {
    width: 43%;
}

.alter_img img {
    width: 100%;
}

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

    .alter_txt {
        width: 50%;
    }
}

@media (max-width: 450px) {
    .alter_content {
        flex-direction: column-reverse;
        gap: 20px;
    }

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

    .alter_txt {
        width: 100%;
    }

    .alter_img {
        width: 80%;
        margin: 0 auto;
    }
}

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

.seminar_txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    width: 38%;
}

.seminar_logo {
    display: flex;
    width: 70%;
    margin: 0 auto;
}

.seminar_logo img {
    width: 100%;
}

.seminar_txt p {
    font-size: 2.1rem;
}

.seminar_moreBtn {
    width: 32rem;
}

.seminar_img {
    text-align: center;
    width: 48%;
}

.seminar_img.sp_image {
    display: none;
}

.seminar_img img {
    width: 60%;
}

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

    .seminar_logo {
        width: 90%;
    }

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

    .seminar_moreBtn {
        width: 15rem;
    }

    .seminar_img {
        width: 55%;
    }

    .seminar_img img {
        width: 70%;
    }
}

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

    .seminar_txt {
        gap: 25px;
        width: 100%;
    }

    .seminar_logo {
        width: 75%;
    }

    .seminar_txt p {
        font-size: 15px;
    }

    .seminar_moreBtn {
        width: 75%;
    }

    .seminar_img {
        width: 100%;
    }

    .seminar_img img {
        width: 85%;
    }

    .seminar_img.sp_image {
        display: block;
    }

    .seminar_img.pc_image {
        display: none;
    }
}

.consulting_txt p {
    font-size: 2.15rem;
}

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

.consulting_item {
    width: calc(calc(100% - 9rem)/4);
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
    padding: 1.7rem;
    border: 1px solid #D6D6D6;
    border-radius: 1rem;
}

.consulting_item.flex-1 {
    flex: 1;
}

.consulting_item svg {
    width: 8.5rem;
}

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

.consulting_item h3 {
    font-size: 2.15rem;
}

.consulting_item p {
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .consulting_content {
        justify-content: center;
        gap: 2rem 1rem;
    }

    .consulting_txt p {
        font-size: .9rem;
    }

    .consulting_item {
        width: calc(calc(100% - 1rem)/2);
        padding: 1rem;
        border-radius: .8rem;
        gap: 1.5rem;
    }

    .consulting_item svg {
        width: 5rem;
    }

    .consulting_item div {
        gap: .8rem;
    }

    .consulting_item h3 {
        font-size: 1rem;
    }

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

    .consulting_item.flex-1 {
        flex: none;
    }
}

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

    .consulting_txt p {
        font-size: 15px;
    }

    .consulting_item {
        width: 100%;
        padding: 15px 20px;
        border-radius: 8px;
        gap: 10px;
    }

    .consulting_item svg {
        width: 80px;
    }

    .consulting_item div {
        gap: 10px;
    }

    .consulting_item h3 {
        font-size: 18px;
    }

    .consulting_item p {
        font-size: 15px;
    }
}



/* ----------page company style--------- */
.profile_content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

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

.profile_img:first-child {
    width: 100%;
}

.profile_img {
    display: flex;
    width: calc(50% - 1.25rem);
    border-radius: 1.7rem;
    overflow: hidden;
}

.profile_img img {
    width: 100%;
}

.profile_table {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.table_row:first-child {
    padding-top: 0;
}

.table_row dt,
.table_row dd {
    margin: 0;
    font-size: 1.9rem;
}

.table_row dt {
    width: 19rem;
}

.table_row dd {
    flex: 1;
}

.company_map {
    width: 100%;
    aspect-ratio: 3/1;
}

.company_map iframe {
    width: 100%;
    height: 100%;
}

.company_btn-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 6.6rem;
}

.company_btn {
    flex: 1;
    position: relative;
    height: 11rem;
    display: flex;
    align-items: center;
    background-color: var(--bg-font-color);
    border: 1px solid var(--bg-font-color);
    transition: background-color .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.company_btn span {
    position: absolute;
    white-space: nowrap;
    left: 3rem;
    font-size: 2rem;
    color: var(--bg-white-color);
    transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.company_btn svg {
    position: absolute;
    right: 3rem;
    width: 2.4rem;
    transition: scale .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.company_btn:hover span {
    left: 50%;
    transform: translateX(-50%);
    color: var(--bg-font-color);
}

.company_btn:hover svg {
    scale: 0;
}

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

    .profile_gallery {
        width: 100%;
        gap: 1.2rem;
    }

    .profile_img {
        border-radius: .6rem;
        width: calc(50% - .6rem);
    }

    .profile_table {
        width: 100%;
    }

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

    .table_row {
        padding: 1.5rem 0;
    }

    .table_row dt {
        width: 10rem;
    }

    .company_btn-list {
        gap: 1rem;
    }

    .company_map {
        aspect-ratio: unset;
        height: 18rem;
    }

    .company_btn {
        height: 4rem;
    }

    .company_btn span {
        left: 1rem;
        font-size: .9rem;
    }

    .company_btn svg {
        width: 1rem;
        right: 1rem;
    }
}

@media (max-width: 450px) {
    .profile_content {
        gap: 25px;
    }

    .profile_gallery {
        gap: 10px;
    }

    .profile_img {
        width: calc(50% - 5px);
        border-radius: 5px;
    }

    .table_row dt,
    .table_row dd {
        font-size: 15px;
    }

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

    .table_row {
        flex-direction: column;
        gap: 5px;
        padding: 15px 0;
    }

    .table_row dt {
        font-weight: bold;
    }

    .company_map {
        height: 180px;
    }

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

    .company_btn {
        flex: none;
        width: 100%;
        height: 60px;
    }

    .company_btn span {
        left: 25px;
        font-size: 15px;
    }

    .company_btn svg {
        width: 15px;
        right: 20px;
    }
}


/* ----------page message style--------- */
.ceo_content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem 9rem 0 18rem;
    background-color: var(--bg-grey-color);
}

.ceo_img {
    display: flex;
    width: 35%;
}

.ceo_img img {
    width: 100%;
}

.ceo_name p {
    text-align: right;
    font-size: 1.9rem;
    padding-bottom: 6.5rem;
    transition: opacity 3s, mask-position 3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-mask-position 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ceo_name span {
    font-size: 2.7rem;
}

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

    .ceo_img {
        width: 40%;
    }

    .ceo_name p {
        padding-bottom: 2rem;
        font-size: .9rem;
    }

    .ceo_name span {
        font-size: 1.1rem;
    }
}

@media (max-width: 450px) {
    .ceo_content {
        padding: 20px 15px 0;
        align-items: center;
    }

    .ceo_img {
        width: 65%;
    }

    .ceo_name {
        position: absolute;
        right: 15px;
    }

    .ceo_name p {
        padding-bottom: 10rem;
        font-size: 14px;
    }

    .ceo_name span {
        font-size: 17px;
        padding-left: 8px;
        font-weight: 500;
    }
}

.message_catchphrase {
    font-size: 5.3rem;
    font-weight: bold;
}

.message_ttl {
    width: fit-content;
    font-size: 4.5rem;
    font-weight: normal;
}

.future_txt {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
}

.future_ttl,
.value_ttl,
.think_ttl,
.assets_ttl,
.wish_ttl {
    font-size: 3.3rem;
    font-weight: normal;
}

.future_txt strong,
.wish_txt strong {
    font-weight: bold;
}

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

    .display-flex {
        gap: 5px;
    }

    .message_ttl {
        font-size: 1.5rem;
    }

    .future_ttl,
    .value_ttl,
    .think_ttl,
    .assets_ttl,
    .wish_ttl {
        font-size: 1.2rem;
    }

    .future_txt {
        gap: 1.1rem;
    }
}

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

    .message_ttl {
        font-size: 21px;
    }

    .future_ttl,
    .value_ttl,
    .think_ttl,
    .assets_ttl,
    .wish_ttl {
        font-size: 18px;
    }

    .future_txt {
        gap: 15px;
    }
}

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

.value_img {
    width: 40%;
    line-height: 0;
}

.value_img img {
    width: 100%;
}

.value_txt {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
    width: 50%;
}

.value_txt p strong {
    font-weight: bold;
}

.value_txt p,
.future_txt p,
.sense_txt p,
.management_txt p,
.wish_txt p {
    font-size: 2.1rem;
    line-height: 1.8;
}

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

    .value_img,
    .value_txt {
        width: 100%;
    }

    .value_txt {
        gap: 1.1rem;
    }

    .value_txt p,
    .future_txt p,
    .sense_txt p,
    .management_txt p,
    .wish_txt p {
        font-size: .8rem;
    }
}

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

    .value_img,
    .value_txt {
        width: 100%;
    }

    .value_txt {
        gap: 15px;
    }

    .value_txt p,
    .future_txt p,
    .sense_txt p,
    .management_txt p,
    .wish_txt p {
        font-size: 15px;
    }
}

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

.sense_txt {
    width: 48%;
}

.sense_txt strong {
    font-weight: bold;
}

.sense_img {
    width: 40%;
    line-height: 0;
}

.sense_img img {
    width: 100%;
}

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

    .sense_txt,
    .sense_img {
        width: 100%;
    }
}

@media (max-width: 450px) {
    .sense_content {
        gap: 15px;
    }
}

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

.management_img {
    width: 33%;
    line-height: 0;
}

.management_img img {
    width: 100%;
}

.management_txt {
    width: 51%;
}

.management_txt strong {
    font-weight: bold;
}

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

    .management_img,
    .management_txt {
        width: 100%;
    }

    .management_img {
        text-align: center;
    }

    .management_img img {
        width: 70%;
    }
}

@media (max-width: 450px) {
    .management_content {
        gap: 15px;
    }

    .management_img img {
        width: 85%;
    }
}

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

.create_txt {
    width: 45%;
}

.create_txt p,
.think_txt p {
    font-size: 2.1rem;
}

.create_txt strong {
    font-weight: bold;
}

.create_img {
    text-align: center;
    width: 43%;
}

.create_img img {
    width: 100%;
}

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

    .create_txt,
    .create_img {
        width: 100%;
    }

    .create_txt p,
    .think_txt p {
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    .create_content {
        gap: 15px;
    }

    .create_txt p,
    .think_txt p {
        font-size: 15px;
    }
}

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

.think_img {
    width: 40%;
    line-height: 0;
}

.think_img img {
    width: 100%;
}

.think_txt {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
    width: 50%;
}

.think_txt strong {
    font-weight: bold;
}

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

    .think_img,
    .think_txt {
        width: 100%;
    }

    .think_txt {
        gap: 1.1rem;
    }
}

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

    .think_txt {
        gap: 15px;
    }
}

.assests_txt p {
    font-size: 2rem;
}

.assests_txt p span {
    font-size: 2.8rem;
    font-weight: bold;
}

.assests_txt strong {
    font-weight: bold;
}

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

.invest_item {
    width: 25%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.invest_item svg {
    width: 5.5rem;
}

.invest_txt span {
    font-size: 1.8rem;
    font-weight: bold;
}

.invest_txt {
    font-size: 1.7rem;
}

.assets_support {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.support_item {
    width: calc(calc(100% - 6rem)/3);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.support_item p {
    text-align: center;
    font-size: 1.9rem;
}

.wish_content {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
}

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

.wish_img img {
    width: 100%;
}

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

    .assests_txt p span {
        font-size: 1.2rem;
    }

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

    .assests_invest {
        row-gap: 2rem;
    }

    .invest_item {
        width: 50%;
        gap: .5rem;
    }

    .invest_item svg {
        width: 3rem;
    }

    .invest_txt {
        flex: 1;
    }

    .invest_txt span {
        font-size: .9rem;
    }

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

    .assets_support {
        gap: 1.2rem .6rem;
    }

    .support_item {
        width: calc(calc(100% - 1.2rem)/3);
        gap: .5rem;
    }

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

    .wish_content {
        gap: 1.1rem;
    }
}

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

    .assests_txt p span {
        font-size: 18px;
    }

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

    .assests_invest {
        justify-content: center;
        row-gap: 15px;
    }

    .invest_item {
        text-align: center;
        flex-direction: column;
        width: 50%;
        gap: 6px;
    }

    .invest_item svg {
        width: 40px;
    }

    .invest_txt span {
        font-size: 16px;
    }

    .invest_txt p {
        font-size: 15px;
    }

    .assets_support {
        gap: 15px 8px;
    }

    .support_item {
        gap: 0;
        width: calc(50% - 4px);
        flex: none;
    }

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

    .support_layer:last-child .support_item {
        width: 100%;
    }

    .wish_content {
        gap: 20px;
    }
    
    .support_img {
        height: 12rem;
    }
}

.message_link {
    position: relative;
    display: flex;
    align-items: center;
    width: 40rem;
    height: 10rem;
    border: 1px solid var(--bg-font-color);
    background-color: var(--bg-font-color);
    margin: 0 auto;
    transition: background-color .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.message_link span {
    position: absolute;
    left: 3rem;
    font-size: 2.3rem;
    color: var(--bg-white-color);
    transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.message_link svg {
    position: absolute;
    right: 3rem;
    width: 2.5rem;
    transition: scale .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.message_link:hover span {
    left: 50%;
    transform: translateX(-50%);
    color: var(--bg-font-color);
}

.message_link:hover svg {
    scale: 0;
}

@media (max-width: 768px) {
    .message_link {
        width: 15rem;
        height: 4rem;
    }

    .message_link span {
        font-size: 1rem;
        left: 1.5rem;
    }

    .message_link svg {
        width: 1.3rem;
        right: 1.5rem;
    }
}

@media (max-width: 450px) {
    .message_link {
        width: 240px;
        height: 55px;
    }

    .message_link span {
        font-size: 15px;
        left: 20px;
    }

    .message_link svg {
        width: 15px;
        right: 20px;
    }
}

/* ----------page news style--------- */
.newsBlock_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.newsBlock_main {
    width: 73%;
    display: flex;
    flex-direction: column;
    gap: 7rem;
}

.newsBlock_side {
    position: sticky;
    top: calc(var(--headerH) + 10px);
    width: 13%;
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
}

.current_category-link {
    display: flex;
    font-size: 2.2rem;
    padding-bottom: 1.7rem;
    border-bottom: 1px solid var(--bg-font-color);
}

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

.news_category-link {
    position: relative;
    font-size: 1.8rem;
}

.news_category-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--bg-font-color);
    transition: width .3s;
}

.news_category-link:hover::after {
    width: 100%;
}

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

    .newsBlock_main,
    .newsBlock_side {
        position: static;
        width: 100%;
    }

    .newsBlock_main {
        gap: 3rem;
    }

    .newsBlock_side {
        gap: 1.3rem;
    }

    .current_category-link {
        font-size: 1.3rem;
        padding-bottom: .8rem;
        font-weight: bold;
    }

    .news_category-list {
        flex-direction: row;
        justify-content: space-between;
    }

    .news_category-link {
        display: flex;
        font-size: .8rem;
    }

    .news_post {
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .news_list li:first-child .news_post {
        padding-top: 1.5rem;
        border-top: 1px solid var(--bg-font-color);
    }

    .news_info {
        gap: 1rem;
    }

    .news_post time,
    .news_post span {
        font-size: .7rem;
    }

    .news_post span {
        padding: .2rem .5rem;
    }

    .news_post h3 {
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    .newsBlock_inner {
        gap: 50px;
    }

    .newsBlock_main {
        gap: 30px;
    }

    .newsBlock_side {
        gap: 20px;
    }

    .current_category-link {
        font-size: 19px;
        padding-bottom: 10px;
        font-weight: bold;
    }

    .news_category-list {
        flex-wrap: wrap;
        gap: 10px;
    }

    .news_category-list li {
        width: calc(50% - 5px);
    }

    .news_category-link {
        justify-content: center;
        padding: 7px 0;
        font-size: 13px;
        font-weight: bold;
        border: 1.5px solid var(--bg-font-color);
        border-radius: 999px;
    }

    .news_category-link::after {
        content: unset;
    }

    .news_category-link:hover {
        background-color: var(--bg-font-color);
        color: var(--bg-white-color);
    }

    .news_post {
        padding: 15px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .news_list li:first-child .news_post {
        padding-top: 15px;
    }

    .news_info {
        gap: 10px;
    }

    .news_post time {
        font-weight: 600;
        font-size: 13px;
    }

    .news_post span {
        font-size: 12px;
        font-weight: bold;
        padding: 2px 10px;
    }

    .news_post h3 {
        font-size: 14px;
    }
}

.pagination_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

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

.wp-pagenavi a,
.wp-pagenavi span {
    width: 5rem;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 4px;
    color: var(--bg-font-color);
    font-weight: bold;
    font-size: 1.8rem;
    border-radius: 50%;
    border-color: transparent;
}

.wp-pagenavi a.previouspostslink {
    width: 5rem;
}

.wp-pagenavi a.nextpostslink {
    width: 5rem;
}

.wp-pagenavi span {
    color: var(--bg-font-color);
    background-color: transparent;
}

.wp-pagenavi a:hover {
    background-color: transparent !important;
    border: 1px solid var(--bg-font-color);
}

.wp-pagenavi span.current {
    background-color: var(--bg-font-color);
    color: var(--bg-white-color);
    border-color: var(--bg-font-color);
}

@media(min-width:0px) and (max-width:767px) {

    .wp-pagenavi a,
    .wp-pagenavi span {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .wp-pagenavi a.previouspostslink {
        width: 34px;
    }

    .wp-pagenavi a.nextpostslink {
        width: 34px;
    }
}



/* ----------page contact style--------- */
.contact_form {
    width: 60%;
    margin: 0 auto;
}

.form_field {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 2rem;
}

.field_cap,
.field_control {
    display: flex;
    font-size: 1.9rem;
    font-weight: 600;
}

.field_cap span {
    font-size: 1.9rem;
    color: #EF4444;
}

.field_control label a {
    color: var(--bg-black-color);
    text-decoration: underline;
}

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

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

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

.agree_field {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 4rem 0;
}

.agree_btn {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.agree_btn label {
    flex: 1;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.agree_btn a {
    font-size: 1.9rem;
    text-decoration: underline;
    line-height: 1;
}

input[type=checkbox] {
    margin: 0;
    padding: 0;
    width: 1.6rem;
    height: 1.6rem;
}

.field_contactbtn {
    width: 100%;
    text-align: center;
}

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

.field_contactbtn input:hover {
    background-color: var(--bg-white-color);
    color: var(--bg-font-color);
}

@media (max-width: 768px) {
    .contact_form {
        width: 100%;
    }

    .form_field {
        gap: .3rem;
        margin-bottom: 1rem;
    }

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

    .field_control {
        gap: .3rem;
    }

    .checkbox_list {
        gap: 1.3rem;
    }

    .field_control>span {
        font-size: .8rem;
    }

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

    .field_control textarea {
        height: 8rem;
    }

    .agree_field {
        padding: 2rem 0;
        gap: .5rem;
    }

    .agree_btn {
        gap: .4rem;
    }

    input[type=checkbox] {
        width: .8rem;
        height: .8rem;
    }

    .agree_btn label,
    .agree_btn a {
        font-size: .8rem;
    }

    .field_contactbtn input {
        padding: 1rem 0;
        font-size: .9rem;
        border-radius: 3px;
    }

}

@media (max-width: 450px) {
    .form_field {
        gap: 3px;
        margin-bottom: 15px;
    }

    .field_cap {
        font-size: 15px;
    }

    .field_cap span {
        font-size: 16px;
    }

    .checkbox_list {
        justify-content: space-between;
    }

    input[type=text],
    input[type=email],
    textarea,
    select {
        font-size: 15px;
        padding: 12px 10px;
        border-radius: 1px;
    }

    .field_control textarea {
        height: 150px;
    }

    .agree_field {
        padding: 20px 0 30px 0;
        gap: 10px;
    }

    .agree_btn label,
    .agree_btn a {
        font-size: 13px;
    }

    .agree_btn {
        gap: 5px;
    }

    input[type=checkbox] {
        width: 13px;
        height: 13px;
    }

    .field_contactbtn input {
        padding: 13px 0;
        font-size: 16px;
        border-radius: 1px;
    }

}

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

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

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

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

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

}

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

.thanks_content a:hover {
    background-color: var(--bg-white-color);
    background-image: none;
    color: var(--bg-font-color);
}

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

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

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

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

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

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

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



/* ----------page privacy policy style--------- */
.privacy_des {
    font-size: 1.7rem;
    color: var(--bg-black-color);
}

.privacy_inner {
    width: 68%;
    margin: 0 auto;
}

.privacy_content {
    display: flex;
    flex-direction: column;
    gap: 6.5rem;
}

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

.privacy_item h5 {
    font-size: 2.2rem;
    font-weight: normal;
    color: var(--bg-black-color);
}

.privacy_item p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: var(--bg-black-color);
}

@media (max-width: 768px) {
    .privacy_inner {
        width: 100%;
    }

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

    .privacy_content {
        gap: 2.5rem;
    }

    .privacy_item {
        gap: 1rem;
    }

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

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

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

    .privacy_content {
        gap: 30px;
    }

    .privacy_item {
        gap: 10px;
    }

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

    .privacy_item p {
        font-size: 15px;
    }
}



/* ----------page single 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;
    flex-wrap: wrap;
}

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

.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 strong {
    font-weight: 700;
}

.article main h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    padding-left: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #333;
    display: inline-block;
}

.article main h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    padding-left: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 4px solid #333;
    display: inline-block;
}

.article main h3 {
    font-size: 21px;
    padding-left: 20px;
    font-weight: 700;
    line-height: 1.3;
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 3px solid #333;
}

.article main h4 {
    font-size: 20px;
    font-weight: 700;
    padding-left: 20px;
    line-height: 1.3;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 2px solid #333;
}

.article main h5 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    padding-left: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 3px solid #5ebc35;
}

.article main h6 {
    font-size: 14px;
    font-weight: 700;
    padding-left: 20px;
    line-height: 1.5;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 3px solid #5ebc35;
}

.article main hr {
    width: 100%;
    margin: 0;
    border-top: 1px solid var(--bg-font-color);
    margin: 20px 0;
    margin-top: 40px;
}

.article main p {
    font-size: 15px;
    line-height: 1.6;
    margin: 20px 0;
}

.article main ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 20px 0;
}

.article main ul li {
    font-size: 16px;
    line-height: 1.6;
    list-style-type: disc;
}

.article main img {
    width: 100%;
    margin: 0 auto;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.article main blockquote {
    background-color: #f5f8fa;
    margin: 0;
    padding: 25px 30px;
}

.article main blockquote p {
    margin: 0;
    font-size: 16px;
}

.article main a {
    font-size: 15px;
    color: var(--bg-blue-color);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .article main h2.title strong:first-child {
        font-size: 26px;
    }

    .pgsingle .content {
        margin: 0 4vw;
    }

    .pgsingle .article {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .article .article_header {
        flex-direction: column;
        align-items: flex-start;
    }

    .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 h1 {
        font-size: 30px;
        padding-left: 15px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .article main h2 {
        font-size: 26px;
        padding-left: 15px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .article main h3 {
        font-size: 20px;
        padding-left: 15px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .article main h4 {
        font-size: 19px;
        padding-left: 15px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .article main h5 {
        font-size: 17px;
        padding-left: 15px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .article main blockquote {
        padding: 20px 30px;
    }
}

@media (max-width: 676px) {
    .pgsingle .article {
        padding: 40px 20px;
    }

    .article .article_header h1 {
        font-size: 24px;
        line-height: 1.3;
    }
}

@media (max-width: 450px) {
    .pgsingle {
        padding-top: 20px;
    }

    .pgsingle .article {
        padding: 30px 20px;
    }

    .article_header time div span,
    .article_header time>span {
        font-size: 15px;
    }

    .article .article_meta {
        margin-top: 20px;
    }

    .article .article_meta span {
        font-size: 16px;
    }

    .pgsingle .content {
        margin: 0 15px;
    }

    .article main figure.post-image {
        width: 100%;
    }

    .article .article_header h1 {
        font-size: 21px;
    }

    .article main h1 {
        font-size: 24px;
    }

    .article main h2 {
        font-size: 22px;
    }

    .article main h3 {
        font-size: 20px;
    }

    .article main h4 {
        font-size: 18px;
        padding-left: 15px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .article main h5 {
        font-size: 16px;
        padding-left: 15px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .article main p {
        font-size: 14px;
    }

    .article main ul 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;
    }
}

/* ----------page notfound style-------- */
.notfound_content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    width: 100%;
    height: calc(100vh - var(--headerH));
}
.notfound_content h1 {
    font-size: 10rem;
    font-family: "reckless", serif;
    line-height: 1.2;
}
.notfound_content p {
    font-size: 1.7rem;
}
.notfound_content h3 {
    font-size: 2.2rem;
}
.notfound_content a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 1.5rem 6rem;
    background-color: var(--bg-font-color);
    color: var(--bg-white-color);
    border-radius: 9999px;
    border: 2px solid var(--bg-font-color);
    transition: all .3s;
}
.notfound_content a:hover {
    color: var(--bg-font-color);
    background-color: transparent;
}
@media (max-width: 768px) {
    .notfound_content {
        gap: 3rem;
    }
    .notfound_content h1 {
        font-size: 5rem;
    }
    .notfound_content p {
        font-size: .8rem;
    }
    .notfound_content h3 {
        font-size: 1.2rem;
    }

    .notfound_content a {
        font-size: .9rem;
        padding: .8rem 3.5rem;
    }
}
@media (max-width: 450px) {
    .notfound_content {
        gap: 30px;
    }
    .notfound_content h1 {
        font-size: 50px;
    }
    .notfound_content p {
        font-size: 14px;
        line-height: 1.4;
    }
    .notfound_content h3 {
        font-size: 18px;
    }

    .notfound_content a {
        font-size: 14px;
        padding: 10px 50px;
    }
}

/* -------------footer style------------ */
footer {
    background-color: var(--bg-font-color);
}

.footer_inner {
    padding: 0 2rem;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 7rem 0 5rem 0;
}

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

.footer_logo img {
    width: 100%;
}

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

.footer_menu li a {
    position: relative;
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 500;
    color: #FFF;
    transition: all .3s;
}

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

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

.footer_btm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.5rem 0;
    border-top: 1px solid #FFFFFF20;
}

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

.footer_btm p {
    font-family: var(--fontP);
}

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

    .footer_top {
        padding: 3rem 0 2rem 0;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer_logo {
        width: 10rem;
    }

    .footer_menu {
        width: 100%;
    }

    .footer_menu ul {
        justify-content: space-between;
        gap: 1.5rem;
    }

    .footer_menu li a {
        font-size: .75rem;
    }

    .footer_btm {
        padding: 1.5rem 0;
    }

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

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

    .footer_top {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 50px 0;
        padding-bottom: 30px;
    }

    .footer_logo {
        width: 180px;
    }

    .footer_menu {
        width: fit-content;
    }

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

    .footer_menu li a {
        font-size: 13.5px;
    }

    .footer_btm {
        padding: 20px 0;
    }

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