/*#region var*/
:root {
    --pxunit: .83rem;
    --headerH: 10rem;
    --fontB: 'Noto Sans JP';
    --fontP: 'Poppins';
    --fontR: 'Raleway';
    --fontDIN: 'DIN 2014';
    --bg-white-color: #FFF;
    --bg-grey-color: #E6EEF6;
    --bg-font-color: #18181B;
    --bg-black-color: #000000;
    --bg-green-color: #01ADC2;
    --bg-blue-color: #0757A5;
    --bg-red-color: #EF4444;
    --bg-main-linear: linear-gradient(90deg, #D2C0FC 0%, #FA8160 100%);
}

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

html {
    font-size: .625vw;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    html {
        font-size: 2.5vw;
    }
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* html,
body {
    overflow-y: hidden;
    touch-action: none;
    scroll-behavior: auto !important;
    overflow-anchor: 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);
}

/*#endregion var*/

/*#region RESET*/
html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    font-weight: normal;
}

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

a {
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

input {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

input:hover,
input:focus,
input:active {
    outline: none;
}

input::-webkit-input-placeholder {
    color: #333333;
}

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

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

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

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

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

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

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

button:focus {
    outline: 0;
}

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

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

img {
    border: 0px;
}

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

/*#endregion RESET*/

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

.pspander_opened {
    display: block;
}

.pspander_closed {
    display: none;
}

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

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

.pspander_collapse {
    display: none;
}

/*#endregion pspander*/
/*#region ANIMATION*/
/*#region opacity animation*/
.js_opac {
    opacity: 0;
    transition: all .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%;
}

.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: #1A1A1A;
}

.initani.initani_bkw::before {
    background-color: #1A1A1A;
}

.initani.initani_bkw::after {
    background-color: #fff;
}

.initani.initani_bg::before {
    background-color: #2b3f6c;
}

.initani.initani_bg::after {
    background-color: #DEE9EC;
}

.initani.initani_bc::before {
    background-color: #2b3f6c;
}

.initani.initani_bc::after {
    background-color: #E9F9FA;
}

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

.initani.initani_wg::after {
    background-color: #A9CD36;
}

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

.initani.initani_wy::after {
    background-color: #A9CD36;
}

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

.initani.initani_wc::after {
    background-color: #E9F9FA;
}

.initani.initani_tw::before {
    background-color: transparent;
}

.initani.initani_tw::after {
    background-color: #fff;
}

.initani.initani_tb::before {
    background-color: transparent;
}

.initani.initani_tb::after {
    background-color: #2b3f6c;
}

.initani::before {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.4s 0.1s 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.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.6s 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 pg specials*/
.font-white {
    color: var(--bg-white-color) !important;
}

.bg-white {
    background-color: var(--bg-white-color) !important;
}

.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-start {
    align-items: flex-start;
}

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

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

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

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

.white__color {
    color: var(--bg-white-color) !important;
}

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

/*#region HEADER*/
header {
    margin: 0;
    padding: 0 7rem;
    width: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    height: var(--headerH);
    background-color: var(--bg-white-color);
    z-index: 111;
    transition: all 0.4s 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;
}

.pg__home header {
    top: calc(-1 * var(--headerH));
    transition: top .9s cubic-bezier(.165, .84, .44, 1);
}

[data-loaded='1'] header {
    top: 0;
}

.header_set {
    display: flex;
    align-items: center;
    gap: 5rem;
    width: 100%;
}

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

.header_logo svg {
    width: 100%;
}

.header_logo span {
    font-size: 1.6rem;
    line-height: 1.6;
    padding-left: 2rem;
    border-left: 1px solid #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

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

.headmenu_shape {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .6rem 1.7rem;
}

.headmenu_uline {
    display: none;
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    background-color: var(--bg-black-color);
    width: 0;
    transition: all .3s;
}

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

.headmenu_a .headmenu_cap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--fontP);
    font-weight: 900;
    color: var(--bg-font-color);
    line-height: 1.2;
    letter-spacing: 1px;
}

.headmenu_a.is__opened .headmenu_cap {
    color: var(--bg-black-color);
    -webkit-text-stroke: 1px var(--bg-font-color);
}

.headmenu_cap::before,
.headmenu_cap::after {
    white-space: nowrap;
    content: attr(data-txt);
    position: absolute;
    font-size: 2rem;
    font-family: var(--fontP);
    font-weight: 900;
    color: var(--bg-green-color);
    line-height: 1.2;
    opacity: 0;
    transition: top 0.2s 0.1s, left 0.2s 0.1s, right 0.2s 0.1s, bottom 0.2s 0.1s, opacity 0.2s;
}

.headmenu_cap::before {
    top: 0;
    left: 0;
    color: var(--bg-green-color);
    z-index: -2;
    -webkit-text-stroke: 1px var(--bg-green-color);
}

.headmenu_cap::after {
    bottom: 0;
    right: 0;
    color: var(--bg-blue-color);
    z-index: -1;
    -webkit-text-stroke: 1px var(--bg-blue-color);
}

.headmenu_a.is__opened .headmenu_cap::before {
    top: -2.5px;
    left: -2.5px;
    opacity: 1;
}

.headmenu_a.is__opened .headmenu_cap::after {
    bottom: -2.5px;
    right: -2.5px;
    opacity: 1;
}

.headmenu_a:hover .headmenu_cap::before {
    top: -2.5px;
    left: -2.5px;
    opacity: 1;
}

.headmenu_a:hover .headmenu_cap::after {
    bottom: -2.5px;
    right: -2.5px;
    opacity: 1;
}

[data-focus='true'] .headmenu_a.is__opened .headmenu_cap {
    color: var(--bg-font-color);
    -webkit-text-stroke: 0px var(--bg-font-color);
}

[data-focus='true'] .headmenu_a.is__opened .headmenu_cap::before,
[data-focus='true'] .headmenu_a.is__opened .headmenu_cap::after {
    opacity: 0;
}

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

.hamburger_set a {
    color: #000;
}

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

.pst_blackheader {
    box-shadow: 0 1.5px 1px #CCCCCC;
}

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

/*#endregion HEADER*/

/* -----------img animation---------- */
.animation_txt {
    display: inline-block;
    font-size: initial;
    font-weight: initial;
    color: initial;
    clip-path: inset(0 0 100% 0);
}

.animated_img {
    position: relative;
    overflow: hidden;
}

.animated_img:hover::before,
.animated_img:hover::after {
    translate: 0% 0%;
}

.animated_img::before {
    background: rgba(255, 255, 255, .3);
    content: "";
    height: 100%;
    right: 0;
    position: absolute;
    top: 0;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
    width: 101%;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
    top: 0;
    translate: 100% -100%;
    z-index: 99;
}

.animated_img::after {
    background: rgba(255, 255, 255, .3);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
    width: 101%;
    bottom: 0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    right: 0;
    translate: -100% 100%;
    z-index: 99;
}

/* -----------brush animation---------- */
.brush.on {
    animation: brush01 2.4s 0.2s steps(22) forwards;
}

.brush {
    -webkit-mask: url("../img/brush.png");
    mask: url("../img/brush.png");
    -webkit-mask-size: 2500% 100%;
    mask-size: 2500% 100%;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
}

@keyframes brush01 {
    0% {
        -webkit-mask-position: 0 0;
        mask-position: 0 0;
    }

    100% {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0;
    }
}

/* -------fade up animation----- */
.fade_y {
    transform: translate(0, 2rem);
    opacity: 0;
    transition: opacity 0.5s 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);
}

/* -------inview animation------ */
[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 2.5s, -webkit-mask-position 2.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 2.5s, mask-position 2.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 2.5s, mask-position 2.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;
}


/* -------clip path animation------ */
.clip_path {
    clip-path: inset(0% 100% 0% 0%);
    transition: clip-path 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.clip_path.on {
    clip-path: inset(0% 0% 0% 0%);
}

/* -----------page common style---------- */
.wrapper {
    opacity: 0;
    padding-top: var(--headerH);
}

.pg__home.wrapper {
    opacity: 1;
}

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

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

.l-inner {
    gap: 6.6rem;
}

.m-inner {
    gap: 5rem;
}

.s-inner {
    gap: 4rem;
}

.pg__fv {
    position: relative;
}

.pg__ttl {
    width: fit-content;
}

.pg__ttl .l {
    display: inline-block;
    font-size: 5rem;
    font-family: var(--fontP);
    font-weight: bold;
    line-height: 1.5;
    width: fit-content;
    clip-path: inset(0 0 100% 0);
}

.sec__ttl {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: fit-content;
}

.t__version {
    display: none;
}

.sec__mainTtl .l {
    font-size: 5.5rem;
    font-family: var(--fontP);
    font-weight: bold;
    color: var(--bg-blue-color);
    line-height: 1.2;
    clip-path: inset(0 0 -10% -10%);
    display: inline-block;
    will-change: transform, opacity, clip-path;
}

.sec__mainTtl .l:first-child {
    color: var(--bg-green-color);
}

.sec__subTtl {
    font-size: 1.6rem;
    font-weight: bold;
}

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

    .l-inner {
        gap: 3rem;
    }

    .m-inner {
        gap: 2.5rem;
    }

    .s-inner {
        gap: 1.5rem;
    }

    .pg__ttl .l {
        font-size: 2.2rem;
    }

    .sec__ttl {
        gap: .6rem;
    }

    .sec__mainTtl .l {
        font-size: 2.2rem;
    }

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

    .t__version {
        display: flex;
    }

    .p__version {
        display: none;
    }
}

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

    .l-inner {
        gap: 35px;
    }

    .m-inner {
        gap: 30px;
    }

    .s-inner {
        gap: 20px;
    }

    .pg__ttl .l {
        font-size: 36px;
    }

    .sec__ttl {
        gap: 8px;
    }

    .sec__mainTtl .l {
        font-size: 3.5rem;
    }

    .sec__subTtl {
        font-size: 14px;
    }
}

.sec__btn {
    position: relative;
}

.more__btn {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: fit-content;
}

.more__btn-txt {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    overflow: hidden;
    line-height: 1;
}

.more__btn-front,
.more__btn-back {
    display: inline-block;
    font-size: 4px;
    line-height: 1;
}

.more__btn-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.more__btn-txt .l {
    display: inline-block;
    font-size: 2rem;
    font-family: var(--fontP);
    font-weight: bold;
    transition: color .4s ease;
}

.more__btn:hover .more__btn-txt .l {
    color: var(--bg-blue-color);
}

.more__btn-paint {
    position: relative;
    width: 4rem;
    height: 4rem;
    background-color: var(--bg-blue-color);
    overflow: hidden;
}

.more__btn-paint svg {
    position: absolute;
    top: 50%;
    width: 2rem;
    transform: translate(-50%, -50%);
    transition: all .6s cubic-bezier(.165, .84, .44, 1);
}

.more__btn-paint svg:first-child {
    left: 50%;
}

.more__btn-paint svg:last-child {
    left: -200%;
}

.more__btn:hover .more__btn-paint svg:first-child {
    left: 200%;
}

.more__btn:hover .more__btn-paint svg:last-child {
    left: 50%;
}

@media (max-width: 768px) {
    .sec__btn {
        margin-left: auto;
    }

    .more__btn {
        gap: 1rem;
    }

    .more__btn-txt .l {
        font-size: 1.1rem;
    }

    .more__btn-paint {
        width: 2rem;
        height: 2rem;
    }

    .more__btn-paint svg {
        width: 1rem;
    }
}

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

    .more__btn-txt .l {
        font-size: 16px;
    }

    .more__btn-paint {
        width: 35px;
        height: 35px;
    }

    .more__btn-paint svg {
        width: 18px;
    }
}

.js_bg {
    position: relative;
    background-image: var(--bg-main-linear);
    overflow: hidden;
}

.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: .1s;
}

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

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

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



/* ---------Home page style-------- */
/* -------section banner------- */
.banner {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--headerH));
}

.banner__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    width: 100%;
    height: 100%;
    padding-bottom: 5vh;
}

.banner__ttl {
    text-align: center;
    position: absolute;
    top: 17%;
    width: 100%;
}

.banner__ttl svg {
    width: 75%;
}

.banner__ttl svg path {
    /* stroke-dasharray: 500px;
    stroke-dashoffset: 500px; */
    position: relative;
    stroke: var(--bg-green-color);
    transition: stroke 0.4s ease;
}

.banner__ttl svg {
    transition: opacity 0.4s ease;
    opacity: 0;
}

[data-loaded='1'] .banner__ttl svg {
    opacity: 1;
}

[data-loaded='1'] .banner__ttl svg path {
    animation: flashAndPulse 3s ease-in-out infinite 1s;
}

@keyframes flashAndPulse {
    0% {
        stroke: var(--bg-green-color);
        filter: brightness(1);
        opacity: .8;
    }

    25% {
        stroke: var(--bg-blue-color);
        filter: brightness(1.5);
        opacity: 1;
    }

    50% {
        stroke: var(--bg-green-color);
        filter: brightness(1);
        opacity: .8;
    }

    75% {
        stroke: var(--bg-green-color);
        filter: brightness(1.5);
        opacity: 1;
    }

    100% {
        stroke: var(--bg-blue-color);
        filter: brightness(1);
        opacity: .8;
    }
}

.banner__ttl-SP {
    display: none;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.banner__mark {
    position: relative;
    width: 52%;
    z-index: 1;
    opacity: 0;
    scale: .95;
    transition: opacity .9s cubic-bezier(.165, .84, .44, 1), scale .9s cubic-bezier(.165, .84, .44, 1);
}

[data-loaded='1'] .banner__mark {
    opacity: 1;
    scale: 1;
}

.banner__mark img {
    width: 100%;
}

.banner__scrollBtn {
    position: relative;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner__scrollBtn svg {
    position: absolute;
    height: 100%;
    opacity: 0;
    transition: opacity .5s .6s;
}

[data-loaded='1'] .banner__scrollBtn svg {
    opacity: 1;
    animation: 1.4s 1.5s linear scrollSuggestion infinite;
}

@keyframes scrollSuggestion {
    0% {
        opacity: 0;
        transform: translate(0, 0);
    }

    10% {
        opacity: .5;
        transform: translate(0, 0);
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    90% {
        opacity: .5;
        transform: translate(0, 35px);
    }

    100% {
        opacity: 0;
        transform: translate(0, 35px);
    }
}

@media (max-width: 768px) {
    .banner__ttl svg {
        width: 90%;
    }

    .banner__mark {
        width: 70%;
    }

    .banner__scrollBtn {
        height: .8rem;
    }
}

@media (max-width: 450px) {
    .banner {
        padding: 0 20px;
        padding-bottom: 15vh;
    }

    .banner__ttl {
        top: 35%;
    }

    .banner__ttl svg {
        width: 100%;
    }

    .banner__mark {
        width: 95%;
    }

    .banner__scrollBtn {
        position: absolute;
        bottom: 10vh;
        height: 10px;
    }

    .banner__ttl-PC {
        display: none;
    }

    .banner__ttl-SP {
        display: block;
    }
}

/* -------section works------- */
.sec__works .more__btn {
    margin-left: auto;
}

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

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

.wp-pagenavi a,
.wp-pagenavi span {
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    border: 1px solid var(--bg-font-color);
    font-size: 1.6rem;
    font-family: var(--fontP);
    font-weight: bold;
}

.wp-pagenavi a.previouspostslink {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.wp-pagenavi a:hover {
    color: #FFF;
    background-color: var(--bg-blue-color);
    border-color: var(--bg-blue-color);
}

.wp-pagenavi span.current {
    background-color: var(--bg-blue-color);
    color: #fff;
    border-color: var(--bg-blue-color);
}

@media(min-width:0px) and (max-width:767px) {
    .pagination_wrap {
        padding-top: 20px;
    }

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

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

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


/* -------section about------- */
.about__inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18rem;
}

.about__left {
    position: relative;
    width: 45%;
}

.about__img {
    position: relative;
    display: flex;
    width: 100%;
	padding: 5px;
	padding-bottom: 0;
	border: 1px solid #CCCCCC;
}

.about__img img {
    width: 100%;
}

.about__right {
    position: relative;
    width: 42%;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.about__txt {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.about__txt p {
    font-size: 1.7rem;
}

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

    .about__right {
        width: 100%;
    }

    .about__left {
        width: 100%;
        margin-top: 1rem;
    }

    .about__paint {
        top: -4rem;
        left: -3rem;
        width: calc(100% + 3rem);
    }

    .about__txt {
        padding: 0;
        gap: 2rem;
    }

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

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

    .about__left {
        margin-top: 10px;
    }

    .about__paint {
        top: -40px;
        left: -20px;
        width: calc(100% + 20px);
    }

    .about__txt {
        gap: 25px;
    }

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


/* -------section access------- */
.access__inner {
    display: flex;
    gap: 6.6rem;
}

.access__left {
    width: 42%;
}

.access__left,
.access__content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.access__content .access__position {
    width: 100%;
    gap: 2rem;
}

.access__right {
    flex: 1;
    aspect-ratio: 1/1;
}

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

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

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

    .access__content {
        padding: 0;
        gap: 2rem;
    }

    .access__content .access__position {
        gap: 1rem;
    }

    .access__right {
        padding: 0 0 3rem 0;
        aspect-ratio: 2/1.4;
    }
}

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

    .access__left {
        gap: 25px;
    }

    .access__content {
        gap: 25px;
    }

    .access__content .access__position {
        gap: 15px;
    }

    .access__right {
        padding: 0 0 30px 0;
    }
}



/* -------section recruit------- */
.recruit__inner,
.contact__inner {
    display: flex;
    justify-content: space-between;
    gap: 8rem;
}
.recruit__inner {
    flex-direction: row-reverse;
}

.recruit__left,
.contact__left {
    position: relative;
    width: 46%;
}

.recruit__img,
.contact__img {
    position: relative;
    display: flex;
    width: 100%;
}

.recruit__img img,
.contact__img img {
    width: 100%;
}

.recruit__right,
.contact__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.recruit__content,
.contact__content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.recruit__txt,
.contact__txt {
    font-size: 1.7rem;
}

@media (max-width: 768px) {

    .recruit__inner,
    .contact__inner {
        flex-direction: column;
        gap: 2rem;
    }

    .sec__contact .sec__ttl {
        order: 0;
    }

    .recruit__left,
    .contact__left {
        margin-top: 1rem;
        width: 100%;
    }

    .contact__left {
        order: 1;
    }

    .recruit__content,
    .contact__content {
        padding: 0;
        gap: 2rem;
    }

    .contact__right {
        order: 2;
    }

    .recruit__txt,
    .contact__txt {
        font-size: .9rem;
    }
}

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

    .recruit__left,
    .contact__left {
        margin: 10px 0;
    }

    .recruit__content,
    .contact__content {
        padding: 0;
        gap: 25px;
    }

    .recruit__txt,
    .contact__txt {
        font-size: 15px;
    }
}


/* -----------About page style---------- */
.profile__inner,
.business__inner,
.studio__inner {
    display: flex;
    align-items: flex-start;
    gap: 13rem;
}

.profile__ttl,
.business__ttl,
.studio__ttl {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.profile__content {
    flex: 1;
    display: flex;
    gap: 6rem;
}

.profile__item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: fit-content;
}

.profile__row {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin: 0;
}

.profile__row dt {
    font-weight: bold;
}

.profile__row dt,
.profile__row dd {
    font-size: 1.6rem;
    padding: 0;
    margin: 0;
}

.profile__row dd a {
    color: var(--bg-blue-color);
    text-decoration: underline;
}

.profile__row dd a:hover {
    opacity: .8;
}

.business__content {
    flex: 1;
    display: flex;
    gap: 3.5rem;
}

.business__item {
    display: flex;
    align-items: flex-start;
    gap: 1.7rem;
    width: 45%;
}

.business__item svg {
    width: 4rem;
}

.business__item p {
    flex: 1;
    font-size: 1.6rem;
}

.studio__content {
    display: flex;
    gap: 2.5rem;
}

.studio__item {
    flex: 1;
    display: flex;
}

.studio__item img {
    width: 100%;
}

@media (max-width: 768px) {

    .profile__inner,
    .business__inner,
    .studio__inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .profile__ttl,
    .business__ttl,
    .studio__ttl {
        font-size: 1.2rem;
    }

    .profile__content {
        gap: 2rem;
    }

    .profile__item {
        flex: 1;
        gap: .8rem;
    }

    .profile__row {
        gap: 3px;
    }

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

    .business__content {
        gap: 1.5rem;
    }

    .business__item {
        flex: 1;
        gap: .6rem;
    }

    .business__item svg {
        width: 1.8rem;
    }

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

    .studio__content {
        gap: 1rem;
    }
}

@media (max-width: 450px) {

    .profile__inner,
    .business__inner,
    .studio__inner {
        gap: 30px;
    }

    .profile__ttl,
    .business__ttl,
    .studio__ttl {
        font-size: 20px;
    }

    .profile__content {
        flex-direction: column;
        gap: 0;
    }

    .profile__item {
        flex: none;
        width: 100%;
        gap: 0;
    }

    .profile__row {
        padding: 15px 0;
        border-bottom: 1px solid #CCCCCC;
    }

    .profile__row:first-child {
        border-top: 1px solid #CCCCCC;
    }

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

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

    .business__item {
        width: 100%;
        gap: 10px;
    }

    .business__item svg {
        width: 30px;
    }

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

    .studio__content {
        flex-direction: column;
        gap: 15px;
    }
}



/* -----------Works page style---------- */
.works__main {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.works__navi {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.works__navi--link {
    position: relative;
    display: flex;
    font-size: 2.1rem;
    font-family: var(--fontP);
    font-weight: 500;
}

.works__navi--link.active {
	font-weight: bold;
}

.works__navi--link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scale(0, 1);
    background-image: linear-gradient(90deg, #01ADC2 50%, #0757A5 100%);
    transition: transform .2s;
}

.works__navi--link:hover::before {
    transform: scale(1, 1);
}

.works__navi--link.active::before {
	transform: scale(1, 1);
}

.works__content,.post__list {
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 3.3rem 2rem;
}

.works__item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(calc(100% - 8rem)/5);
    border: 1px solid var(--bg-font-color);
    transition: all .4s;
}

.works__item:hover {
    transform: translateY(-3px);
    box-shadow: 3px 3px 2px var(--bg-font-color);
}

.works__thumb {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 26/16;
    overflow: hidden;
    background-color: #F6F6F6;
	background-color: var(--bg-green-color);
}

.works__thumb span {
    position: absolute;
    display: inline-block;
    top: 50%;
    width: fit-content;
    text-align: center;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: bold;
    padding: 0 3px;
    color: var(--bg-white-color);
    transition: opacity .2s;
	color: #FFF;
}

.works__item:hover .works__thumb span {
    opacity: 0;
}

.works__thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-green-color);
    opacity: 0;
    transition: all .3s;
}

.works__thumb::after {
    content: 'READ MORE';
    white-space: nowrap;
    font-size: 14px;
    position: absolute;
    font-family: var(--fontP);
    top: 50%;
    left: 50%;
    letter-spacing: .3rem;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
    opacity: 0;
}

.works__item:hover .works__thumb::before {
    opacity: .9;
}

.works__item:hover .works__thumb::after {
    opacity: 1;
}

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

.works__txt {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    padding: 1.5rem;
    background-color: var(--bg-white-color);
}

.works__ttl {
    font-size: 1.6rem;
}

.works__ttl span {
	display: block;
	line-height: 1.3;
	font-weight: 600;
}

.works__info {
    font-size: 1.5rem;
}

.works__info span {
	display: block;
	line-height: 1.3;
}

.works__detail {
	font-size: 1.2rem;
	color: #71717A;
}

.works__category {
    position: relative;
    display: flex;
    width: fit-content;
    font-size: 1.4rem;
    font-family: var(--fontP);
    color: #71717A;
    margin-top: 3px;
}

.works__category::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-image: linear-gradient(90deg, #01ADC2 50%, #0757A5 100%);
    transition: width .3s;
}

.works__item:hover .works__category::after {
    width: 100%;
}

.works__id {
    font-size: 1.4rem;
    line-height: 1;
    text-align: right;
}

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

    .works__navi {
        gap: .5rem 1.5rem;
    }

    .works__navi--link {
        font-size: 1.1rem;
    }

    .works__content {
        gap: 1.5rem 1rem;
    }

    .works__item {
        width: calc(calc(100% - 2rem)/3);
    }

    .works__thumb span {
        font-size: .8rem;
    }

    .works__txt {
        padding: .8rem;
        gap: .3rem;
    }

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

    .works__info {
        font-size: .75rem;
    }
	
	.works__detail {
		font-size: .6rem;
	}

    .works__category {
        font-size: .7rem;
    }
    
    .works__id {
        font-size: .7rem;
    }
}

@media (max-width: 450px) {
    .works__main {
        gap: 40px;
    }

    .works__navi {
        gap: 12px 20px;
    }

    .works__navi--link {
        font-size: 18px;
    }

    .works__navi--link::before {
        bottom: -5px;
    }

    .works__content {
        gap: 25px 14px;
    }

    .works__item {
        width: calc(calc(100% - 14px)/2);
    }

    .works__thumb span {
        font-size: 13px;
    }

    .works__txt {
        padding: 10px;
        gap: 5px;
    }

    .works__ttl {
        font-size: 15px;
    }

    .works__info {
        font-size: 14px;
    }
	
	.works__detail {
		font-size: 10px;
	}

    .works__category {
        font-size: 12px;
    }

    .works__id {
        font-size: 12px;
    }
}



/* -----------Access page style---------- */
.access__main {
    display: flex;
    gap: 5rem;
}

.access__position {
    width: 36%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.access__position h2,
.access__position h3 {
    font-size: 2.5rem;
    font-weight: bold;
}

.access__position ul {
    padding-left: 2rem;
}

.access__position p,
.access__position li {
    font-size: 1.7rem;
}

.access__position li {
    list-style-type: disc;
}

.position__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.position__item svg {
    width: 2.5rem;
}

.position__detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.position__detail p {
    line-height: 1.4;
}

.access__map {
    flex: 1;
    display: flex;
    aspect-ratio: 2/1.4;
}

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

.position__item:last-child {
    align-items: center;
}

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

    .access__position,
    .access__map {
        width: 100%;
    }

    .access__position {
        gap: 1rem;
    }

    .access__position h2,
    .access__position h3 {
        font-size: 1.1rem;
    }

    .access__position ul {
        padding-left: 1rem;
    }

    .access__position p,
    .access__position li {
        font-size: .85rem;
    }

    .position__item {
        gap: 1rem;
    }

    .position__item svg {
        width: 1.5rem;
    }
}

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

    .access__position {
        gap: 15px;
    }

    .access__position h2,
    .access__position h3 {
        font-size: 18px;
    }

    .access__position ul {
        padding-left: 16px;
    }

    .access__position p,
    .access__position li {
        font-size: 15px;
    }

    .position__item {
        gap: 10px;
    }

    .position__item svg {
        width: 20px;
    }
}


/* -----------Recruit page style---------- */
.recruit__main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.recruit__des {
    font-size: 1.6rem;
}

.requirement__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--bg-font-color);
}

.requirement__item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.requirement__ttl {
    font-size: 1.9rem;
    font-weight: bold;
}

.requirement__txt {
    font-size: 1.6rem;
    line-height: 1;
}

.requirement__eligibility {
    display: flex;
    gap: 2.5rem;
}

.eligibility__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.eligibility__ttl {
    font-size: 1.5rem;
    font-weight: bold;
}

.eligibility__txt {
    font-size: 1.5rem;
}

.recruit__line {
    width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
    background-color: #F4F4F5;
}

.requirement__intro {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.intro__item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: calc(calc(100% - 3rem)/3);
}

.intro__ttl {
    font-weight: bold;
}

.intro__txt,
.intro__ttl {
    font-size: 1.5rem;
}

.requirement__guide {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.guide__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.guide__item svg {
    width: 2.2rem;
}

.guide__txt {
    flex: 1;
    font-size: 1.5rem;
}

.requirement__flow {
    display: flex;
    gap: 2rem;
}

.flow__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.flow__item span {
    font-size: 1.4rem;
    color: var(--bg-green-color);
}

.flow__txt {
    font-size: 1.5rem;
}

.requirement__info {
    display: flex;
    gap: 1.5rem;
}

.requirement__info .requirement__item {
    width: 40%;
}

.requirement__info .requirement__item .requirement__txt {
    line-height: 1.6;
}

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

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

    .requirement__content {
        padding: 1.5rem;
        gap: 1rem;
    }

    .requirement__ttl {
        font-size: 1rem;
    }

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

    .requirement__eligibility {
        gap: 1.5rem;
    }

    .eligibility__ttl,
    .eligibility__txt {
        font-size: .8rem;
    }

    .requirement__intro {
        gap: .6rem 1rem;
    }

    .intro__txt,
    .intro__ttl {
        font-size: .8rem;
    }

    .guide__item {
        gap: .8rem;
    }

    .guide__item svg {
        width: 1.3rem;
    }

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

    .requirement__flow {
        gap: 1rem;
    }

    .flow__item span {
        font-size: .7rem;
    }

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

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

    .requirement__info .requirement__item {
        width: 100%;
    }
}

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

    .recruit__des {
        font-size: 15px;
    }

    .requirement__content {
        padding: 20px 15px;
        gap: 15px;
    }

    .requirement__ttl {
        font-size: 17px;
    }

    .requirement__txt {
        font-size: 14px;
        line-height: 1.6;
    }

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

    .eligibility__ttl,
    .eligibility__txt {
        font-size: 14px;
    }

    .requirement__intro {
        gap: 10px;
    }

    .intro__item {
        width: 100%;
    }

    .intro__txt,
    .intro__ttl {
        font-size: 14px;
    }

    .guide__item {
        gap: 8px;
    }

    .guide__item svg {
        width: 20px;
    }

    .guide__txt {
        font-size: 14px;
    }

    .requirement__flow {
        flex-wrap: wrap;
        gap: 10px;
    }

    .flow__item {
        width: calc(50% - 5px);
        flex: none;
    }

    .flow__item span {
        font-size: 13px;
    }

    .flow__txt {
        font-size: 14px;
    }

    .requirement__info {
        gap: 10px;
    }
}



/* -----------Contact page style---------- */
.contact__main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 60%;
    margin: 0 auto;
}

.contact__txt {
    font-size: 1.7rem;
}

.contact__txt p {
    line-height: 1.8;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 100%;
    margin-bottom: 3rem;
}

.field__control {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 3.5rem;
}

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

.field__cap {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.7rem;
    color: #303030;
    font-weight: 500;
}

.field__cap span {
    font-size: 1.5rem;
    padding: 0 .3rem;
    color: var(--bg-white-color);
    background-color: var(--bg-red-color);
    border-radius: .3rem;
}

input[type=text],
input[type=email],
textarea,
select {
    width: 100%;
    border: 1px solid #E2E2E2;
    padding: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.4;
    line-height: 1;
    outline: none;
    border-radius: .4rem;
}

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

textarea::placeholder,
input::placeholder {
    color: #D6D6D6;
}

input[type=checkbox] {
    margin: 0;
}

.privacy_agree {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 5rem 0;
}

.privacy_agree input {
    width: 15px;
    height: 15px;
    margin-top: .6rem;
}

.privacy_agree label {
    cursor: pointer;
    font-size: 1.7rem;
}

.privacy_agree a {
    text-decoration: underline;
}

.contact_btn {
    text-align: center;
}

.contact_btn input[type=submit] {
    position: relative;
    width: 35rem;
    height: 7rem;
    background-color: var(--bg-font-color);
    border: 1px solid var(--bg-font-color);
    font-weight: bold;
    font-size: 1.7rem;
    color: var(--bg-white-color);
    cursor: pointer;
    border-radius: .3rem;
}

.contact_btn input[type=submit]:hover {
    background-color: var(--bg-white-color);
    color: var(--bg-font-color);
}

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

    .contact__txt {
        font-size: .85rem;
    }

    .form__field {
        gap: 5px;
        margin-bottom: 1.3rem;
    }

    .field__cap {
        font-size: .85rem;
    }

    .field__cap span {
        font-size: .7rem;
        padding: 0 3px;
        border-radius: 3px;
    }

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

    .field__control textarea {
        height: 10rem;
    }

    .privacy_agree {
        gap: .5rem;
        margin: 3rem 0;
    }

    .privacy_agree input {
        margin-top: .3rem;
    }

    .privacy_agree label {
        font-size: .8rem;
    }

    .contact_btn input[type=submit] {
        width: 20rem;
        height: 3.5rem;
        font-size: .9rem;
        border-radius: .2rem;
    }
}

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

    .contact__txt {
        font-size: 14px;
    }

    .form__field {
        margin-bottom: 20px;
    }

    .field__cap {
        font-size: 15px;
    }

    .field__cap span {
        font-size: 13px;
    }

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

    .field__control textarea {
        height: 160px;
    }

    .privacy_agree {
        gap: 8px;
        margin: 50px 0;
    }

    .privacy_agree input {
        margin-top: 4px;
    }

    .privacy_agree label {
        font-size: 15px;
    }

    .contact_btn input[type=submit] {
        width: 100%;
        height: auto;
        font-size: 16px;
        padding: 15px 0;
        border-radius: 5px;
    }
}


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

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

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

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

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

}

.thanks_content a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    padding: 1.8rem 8rem;
    background-color: var(--bg-green-color);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-white-color);
    border-radius: 99999px;
    margin-top: 5rem;
    border: 2px solid var(--bg-green-color);
    transition: all .3s;
}

.thanks_content a:hover {
    background-color: transparent;
    color: var(--bg-green-color);
}

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

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

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

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

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

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

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


/* -------------footer style------------- */
footer {
    border-top: 1px solid var(--bg-font-color);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem 0;
}

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

.footer__menu {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.footer__logo {
    display: flex;
    width: 22rem;
}

.footer__logo img {
    width: 100%;
}

.footer__link {
    position: relative;
    display: flex;
    font-size: 1.6rem;
    font-family: var(--fontP);
    font-weight: bold;
}

.footer__link::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bg-font-color);
    transition: width .3s;
}

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

.footer__copy p {
    text-align: right;
    font-size: 1.6rem;
    font-family: var(--fontP);
}

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

    .footer__main {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer__logo {
        width: 15rem;
    }

    .footer__menu {
        justify-content: center;
        gap: 2rem;
        width: 100%;
    }

    .footer__link {
        font-size: .9rem;
    }

    .footer__copy p {
        text-align: center;
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    .footer__inner {
        padding: 40px 0 20px 0;
        gap: 30px;
    }

    .footer__main {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer__logo {
        width: 200px;
    }

    .footer__menu {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .footer__link {
        font-size: 15px;
    }

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


.loading {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading__inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loading__spinner {
    z-index: 1;
}

.loading__spinner-wrapper {
    position: fixed;
    bottom: 4rem;
    right: 4rem;
    display: flex;
    gap: 4px;
    align-items: center;
}

.spinner__txt {
    font-size: 2rem;
    font-family: var(--fontP);
    font-weight: 500;
    color: var(--bg-green-color);
}

.spinner__progress {
    position: relative;
    width: 2.5rem;
}

circle {
    fill: none;
    stroke-width: 7;
    stroke-linecap: round;
}

.progress__bar {
    position: absolute;
    width: 100%;
    height: 100%;
    stroke: var(--bg-green-color);
    stroke-dasharray: calc(3.14*7.5rem);
    transform-origin: 50% 50%;
    animation: rotate 1s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.loading__video,
.loading__spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white-color);
}

.loading__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity .6s ease-in;
}

.loading__video video.visible {
    opacity: 1;
}

.loading__spinner.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-out;
}

@media (max-width: 768px) {
    .loading__spinner-wrapper {
        height: fit-content;
        bottom: 2rem;
        right: 2rem;
    }

    .spinner__txt {
        font-size: 1.2rem;
    }

    .spinner__progress {
        width: 1.3rem;
    }
}

@media (max-width: 450px) {
    .loading__spinner-wrapper {
        bottom: 20px;
        right: 20px;
    }

    .spinner__txt {
        font-size: 14px;
    }

    .spinner__progress {
        width: 17px;
    }

    .loading__video {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .loading__video video {
        height: auto;
    }
}