<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*#region var*/
:root {
    --pxunit: 0.9rem;
    --fontB: 'Noto Serif JP';
    /* Base font */
    --fontS: 'Shippori Mincho';
    --fontEB: 'EB Garamond';
    --bg-blue-color: #4083C5;
    --bg-black-color: #231815;
    --bg-back-color: #AFDCDD;
    --headerH: 80px;
}

* {
    font-size: 1.67rem;
    box-sizing: border-box;
    color: var(--bg-black-color);
    font-family: var(--fontB);
    font-weight: 400;
    line-height: 1.6;
}

html {
    font-size: 0.625vw;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-back-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*#endregion var*/

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

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;
    margin: 0;
    padding: 0;
    object-fit: cover;
}

/*#endregion RESET*/

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

.pspander_opened {
    display: block;
}

.pspander_closed {
    display: none;
}

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

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

.pspander_collapse {
    display: none;
}

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

.js_opac.on {
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.initani_bw::after {
    background-color: #fff;
}

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

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

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

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

.initani.initani_wbk::before {
    background-color: #DAF5F4;
}

.initani.initani_wbk::after {
    background-color: #DAF5F4;
}

.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.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: 0px;
    padding: 0 5rem;
    width: 100%;
    position: fixed;
    height: var(--headerH);
    ;
    top: 0;
    width: 100%;
    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: transparent;
    z-index: 9999;
}

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

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

.header_logo {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.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 2.5rem;
    margin: 0 .5rem;
    height: var(--headerH);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .1s;
}

.headmenu_a .headmenu_cap {
    font-size: 2rem;
    line-height: 1.5;
    font-family: var(--fontS);
}

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

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

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

.headmenu_a.contact {
    height: 40px;
    border-radius: 40px;
    border: 1px solid var(--bg-blue-color);
    background-color: var(--bg-blue-color);
    transition: all .3s;
}

.headmenu_a.contact .headmenu_cap {
    color: #FFF;
    transition: all .3s;
}

.headmenu_a.contact:hover {
    background-color: transparent;
}

.headmenu_a.contact:hover .headmenu_cap {
    color: var(--bg-black-color);
}

.headmenu_a.require {
    height: 40px;
    border-radius: 40px;
    border: 1px solid var(--bg-blue-color);
    transition: all .3s;
}

.headmenu_a.require:hover {
    background-color: var(--bg-blue-color);
    transition: all .3s;
}

.headmenu_a.require:hover .headmenu_cap {
    color: #FFF;
}

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

.pst_blackheader .hamburger_btn span {
    background-color: var(--bg-black-color);
}

.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*/
.wrapper {
    padding-top: var(--headerH);
}

.container {
    position: relative;
    width: auto;
    padding: 0 30rem;
    z-index: 20;
}

.container_lg {
    position: relative;
    width: auto;
    padding: 0 14.5rem 0 30rem;
    display: flex;
    justify-content: space-between;
    gap: 3.3rem;
    z-index: 20;
}

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

    .container_lg {
        width: auto;
        padding: 0 12rem 0 25rem;
    }
}

@media (min-width: 1440px) {
    .container_home {
        padding: 0 20rem;
    }
}

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

    .container_lg {
        width: auto;
        padding: 0 10rem 0 20rem;
    }
}

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

    .container_lg {
        width: auto;
        padding: 0 13rem;
    }
}

@media (max-width: 767px) {

    .container,
    .container_lg {
        padding: 0 2.2rem;
    }
}

@media (max-width: 450px) {

    .container,
    .container_lg {
        padding: 0 20px;
    }
}

.block_title {
    position: relative;
    z-index: 12;
    margin-top: -3rem;
}

.block_title h3 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.6;
    font-family: var(--fontS);
}

.block_title p {
    font-size: 2rem;
    color: var(--bg-blue-color);
    line-height: 1.5;
}

.block_title span {
    font-size: 1.8rem;
    color: var(--bg-blue-color);
}

.block_title &gt; div {
    display: flex;
    align-items: baseline;
    gap: 1.7rem;
}

.block_title &gt; div div {
    flex: 1;
    background-color: var(--bg-blue-color);
    height: 1px;
}

@media (max-width: 991px) {
    .block_title h3 {
        font-size: 5rem;
    }

    .block_title p {
        font-size: 3rem;
    }

    .block_title span {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .block_title {
        margin-top: -3rem;
    }

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

    .block_title p {
        font-size: 1.4rem;
    }

    .block_title span {
        font-size: 1.4rem;
    }

    .block_title &gt; div {
        gap: .8rem;
    }
}

@media (max-width: 450px) {
    .block_title {
        margin-top: -3rem;
    }

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

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

    .block_title span {
        font-size: 15px;
    }
}

.display-flex {
    display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.more_btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    width: fit-content;
}

.more_btn span {
    position: relative;
    font-size: 2rem;
    color: var(--bg-blue-color);
    line-height: 1.5;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    white-space: nowrap;
}

.more_btn span::before {
    content: "";
    display: block;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    position: absolute;
    z-index: 1;
    background-color: var(--bg-blue-color);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 1s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1)
}

.more_btn:hover span::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.more_btn svg {
    display: inline-block;
    width: 9rem;
    height: 9rem;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.more_btn svg rect,
.more_btn svg path {
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.more_btn:hover svg rect {
    fill: transparent;
    stroke: var(--bg-blue-color);
}

.more_btn:hover svg path {
    fill: var(--bg-blue-color);
}

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

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

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

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

@media (max-width: 991px) {
    .more_btn {
        gap: 20px;
    }

    .more_btn span {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .more_btn span {
        font-size: 1.2rem;
    }

    .more_btn svg {
        height: 60px;
        width: 60px;
    }
}

@media (max-width: 576px) {
    .more_btn span {
        font-size: 16px;
    }
}

/* -------------home page style------------ */
.banner {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--headerH));
    display: flex;
    justify-content: space-between;
    padding: 1.67rem 1.67rem 0 25rem;
    z-index: 998;
    background-color: var(--bg-back-color);
}

.banner .banner_text {
    padding-top: 4rem;
    display: flex;
    gap: 1rem;
}

.banner .banner_text h2 {
    font-size: 4rem;
    font-family: var(--fontS);
    color: var(--bg-blue-color);
    letter-spacing: .2em;
    writing-mode: vertical-lr;
    line-height: 1.2;
}

.banner .banner_image {
    height: 71rem;
    width: 90rem;
}

.banner .banner_image img {
    height: 100%;
    width: 100%;
}

@media (max-width: 1300px) {
    .banner {
        height: auto;
    }
}

@media (max-width: 767px) {
    .banner {
        padding: 1rem .4rem 2rem 6rem;
    }

    .banner .banner_text {
        padding-top: 1rem;
        gap: .3rem;
    }

    .banner .banner_text h2 {
        font-size: 1.3rem;
    }

    .banner .banner_image {
        height: 18.1rem;
        width: 23rem;
    }
}

@media (max-width: 450px) {
    .banner {
        padding: 20px 10px 40px 40px;
        align-items: center;
    }

    .banner .banner_text {
        padding-top: 0;
    }

    .banner .banner_text h2 {
        font-size: 20px;
    }
}

.marquee {
    width: 100%;
}

.splide {
    position: relative;
    visibility: hidden
}

.splide__track--draggable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.splide__track--fade &gt; .splide__list &gt; .splide__slide {
    margin: 0 !important;
    opacity: 0;
    z-index: 0
}

.splide__track--fade &gt; .splide__list &gt; .splide__slide.is-active {
    opacity: 1;
    z-index: 1
}

.splide__track--ttb &gt; .splide__list {
    display: block
}

.splide__list {
    backface-visibility: hidden;
    display: flex;
    align-items: flex-end;
    margin: 0 !important;
    padding: 0 !important;
}

.splide__slide {
    list-style-type: none !important;
    backface-visibility: hidden;
    box-sizing: border-box;
    flex-shrink: 0;
    margin: 0;
    position: relative;
}

.splide.is-initialized:not(.is-active) .splide__list {
    display: block
}

.splide__pagination li {
    display: inline-block;
    line-height: 1;
    list-style-type: none;
    margin: 0;
    pointer-events: auto
}

.splide:not(.is-overflow) .splide__pagination {
    display: none
}

.splide.is-initialized,
.splide.is-rendered {
    visibility: visible
}

.splide__slide img {
    vertical-align: middle;
}

.splide__toggle__pause {
    display: block;
}

.splide__toggle.is-active .splide__toggle__play {
    display: block;
}

.splide__toggle.is-active .splide__toggle__pause {
    display: inline
}

.splide__track {
    overflow: hidden;
    position: relative;
    z-index: 0
}

.marquee .splide__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.marquee .splide__list li:nth-child(odd) img {
    width: 25rem;
    height: 35rem;
}

.marquee .splide__list li:nth-child(even) img {
    width: 25rem;
    height: 35rem;
}

@media (max-width: 767px) {
    .marquee .splide__list li:nth-child(odd) img {
        width: 8rem;
        height: 12rem;
    }

    .marquee .splide__list li:nth-child(even) img {
        width: 8rem;
        height: 12rem;
    }

    .marquee .splide__list {
        gap: 1rem;
    }
}

@media (max-width: 450px) {
    .marquee .splide__list li:nth-child(odd) img {
        width: 115px;
        height: 150px;
    }

    .marquee .splide__list li:nth-child(even) img {
        width: 115px;
        height: 150px;
    }
}

.section_title {
    position: relative;
    padding: 0 10rem;
    margin-top: -7rem;
    margin-bottom: 1rem;
    z-index: 20;
}

.section_title h1 {
    font-size: 5rem;
    font-family: var(--fontEB);
    line-height: 1;
}

.section_title p {
    font-family: var(--fontS);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 1.7rem;
    color: var(--bg-blue-color);
}

@media (max-width: 991px) {
    .section_title {
        padding: 0 12rem;
    }

    .section_title h1 {
        font-size: 8rem;
    }

    .section_title p {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .section_title {
        padding: 0 3rem;
        margin-bottom: .3rem;
    }

    .section_title h1 {
        font-size: 2.5rem;
        margin-top: 5rem;
    }

    .section_title p {
        font-size: 1rem;
        margin-top: .7rem;
    }
}

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

    .section_title h1 {
        font-size: 36px;
        margin-top: 5rem;
    }

    .section_title p {
        font-size: 16px;
        margin-top: 10px;
    }
}

@media (max-width: 450px) {
    .section_title h1 {
        font-size: 34px;
        margin-top: 5rem;
    }
}

/* -------section career style-------- */
/* 蜈ｱ騾壹せ繧ｿ繧､繝ｫ */
.career {
    position: relative;
}

.video-wrapper {
    display: flex;
    justify-content: center;
    /* 讓ｪ譁ｹ蜷台ｸｭ螟ｮ蟇�○ */
    align-items: center;
    /* 邵ｦ譁ｹ蜷台ｸｭ螟ｮ蟇�○�亥ｿ�ｦ√↓蠢懊§縺ｦ�� */
    padding: 0 5px;
    box-sizing: border-box;
    width: 100%;
}

.video-wrapper video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* PC逕ｻ髱｢�亥ｹ�768px莉･荳奇ｼ峨�縺ｨ縺阪□縺�90%縺ｫ蛻ｶ髯� */
@media screen and (min-width: 768px) {
  .video-wrapper video {
    max-width: 80%;
  }
}


.career:before {
    position: absolute;
    content: "CAREER";
    font-family: var(--fontEB);
    color: #BCFEFF;
    left: 0;
    font-size: 8rem;
    writing-mode: vertical-lr;
    line-height: 1;
    top: 20rem;
}

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

.career_item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 30rem;
    /* PC蝓ｺ貅� */
}

.career_item .career_image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}

.career .career_item h2 {
    font-size: 3.5rem;
    line-height: 1.6;
    font-family: var(--fontS);
    text-align: center;
    margin-bottom: -10px;
}

.career_item .career_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*  768px縲� 3/2讓ｪ荳ｦ縺ｳ邯ｭ謖� */
@media (min-width: 768px) {


    .career_list {
        max-width: 1400px;
        margin: 0 auto;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        display: flex;
    }

    .career_item {
        flex: 0 0 calc((90% - 4rem) / 3);
        max-width: calc((90% - 4rem) / 3);
        box-sizing: border-box;
    }

    .career_item h2,
    .career_item .small_title {
        font-size: 3.5rem;
    }

    .career_item p {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    .career:before {
        top: 5rem;
        font-size: 3rem;
    }

    .career_list {
        max-width: 767px;
        margin: 0 auto;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        display: flex;
    }

    .career_item {
        flex: 0 0 calc((90% - 4rem) / 3);
        max-width: calc((90% - 4rem) / 3);
        box-sizing: border-box;
    }

    .career .career_item h2 {
        font-size: 1rem;
    }

    .career .career_item .small_title {
        font-size: 1rem;
    }

    .career .career_item h2 br {
        display: none;
    }

    .career .career_item p {
        font-size: .8rem;
    }
}

/* 繧ｹ繝槭�576px莉･荳�: 2/2/1 */
@media (max-width: 576px) {
    .career:before {
        display: none;
    }


    .career_list {
        gap: 1rem;
    }

    .career_item {
        width: 48%;
        max-width: 17rem;
    }

    .career_item:nth-child(5) {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .career_item .career_image {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .career .career_item h2 {
        font-size: 17px;
    }

    .career .career_item .small_title {
        font-size: 17px;
    }

    .career .career_item p {
        font-size: 13px;
    }
}







/* ----------section people style----------- */
.people {
    position: relative;
}

.people::before {
    position: absolute;
    content: "PEOPLE";
    color: #BCFEFF;
    font-size: 8rem;
    font-family: var(--fontEB);
    writing-mode: vertical-lr;
    line-height: 1;
    top: 20rem;
}

.people .people_content {
    position: relative;
    padding: 0 10rem;
}

.people .people_content .layout {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.people_content .people_item:first-child {
    position: relative;
    z-index: 10;
}

.people_content .people_item:first-child .people_image {
    width: 53.3rem;
    height: 53.3rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: -4.5rem;
}

.people_content .people_item .people_image img {
    width: 100%;
    height: 100%;
}

.people_content .people_item:last-child .people_image {
    width: 36.7rem;
    height: 36.7rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

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

@media (max-width: 991px) {
    .people .people_content {
        padding: 0 12rem;
    }
}

@media (max-width: 767px) {
    .people::before {
        top: 5rem;
        font-size: 3rem;
    }

    .people .people_content {
        padding: 0 3rem;
    }

    .people_content .people_item:first-child .people_image {
        width: 16rem;
        height: 16rem;
        margin-right: -1.2rem;
    }

    .people_content .people_item:last-child .people_image {
        width: 11rem;
        height: 11rem;
        margin-bottom: .7rem;
    }
}

@media (max-width: 576px) {
    .people::before {
        display:
            none;
    }

    .people .people_content {
        padding: 0;
    }

    .people .people_content .layout {
        justify-content: center;
    }

    .people_content .people_item:first-child .people_image {
        width: 20rem;
        height: 20rem;
        margin-right: -2rem;
    }

    .people_content .people_item:last-child .people_image {
        width: 14rem;
        height: 14rem;
    }
}


/* ---------section requirment-------- */
.reuqirment {
    position: relative;
}

.reuqirment::before {
    position: absolute;
    content: "REQUIREMNTS";
    color: #BCFEFF;
    left: 0;
    font-size: 8rem;
    font-family: var(--fontEB);
    writing-mode: vertical-lr;
    line-height: 1;
    top: 8rem;
}

.reuqirment .reuqirment_content {
    position: relative;
    padding: 0 10rem;
}

.reuqirment .reuqirment_content .layout {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.reuqirment_content .reuqire_item:nth-child(2) {
    position: relative;
    z-index: 10;
}

.reuqirment_content .reuqire_item:nth-child(2) .reuqirment_image {
    width: 53.3rem;
    height: 53.3rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: -8rem;
}

.reuqirment_content .reuqire_item .reuqirment_image img {
    width: 100%;
    height: 100%;
}

.reuqirment_content .reuqire_item:last-child .reuqirment_image {
    width: 33.33rem;
    height: 33.33rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.reuqirment .more_btn {
    margin-top: 14rem;
    margin-bottom: auto;
}

@media (max-width: 991px) {
    .reuqirment .reuqirment_content {
        padding: 0 12rem;
    }

    .reuqirment_content .reuqire_item:nth-child(2) .reuqirment_image {
        width: 56rem;
        height: 56rem;
    }
}

@media (max-width: 767px) {
    .reuqirment::before {
        top: 4rem;
        font-size: 3rem;
    }

    .reuqirment .reuqirment_content {
        padding: 0 3rem;
    }

    .reuqirment .reuqirment_content .layout {
        flex-wrap: wrap;
    }

    .reuqirment_content .reuqire_item:nth-child(2) .reuqirment_image {
        width: 18rem;
        height: 18rem;
        margin-right: -2rem;
        order: 0;
    }

    .reuqirment_content .reuqire_item:last-child .reuqirment_image {
        width: 11rem;
        height: 11rem;
        order: 1;
    }

    .reuqirment .more_btn {
        flex: 1;
        margin: 0;
        justify-content: flex-end;
        order: 2;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .reuqirment::before {
        display: none;
    }

    .reuqirment .reuqirment_content {
        padding: 0;
    }

    .reuqirment .reuqirment_content .layout {
        justify-content: center;
    }

    .reuqirment_content .reuqire_item:nth-child(2) .reuqirment_image {
        width: 22rem;
        height: 22rem;
    }

    .reuqirment_content .reuqire_item:last-child .reuqirment_image {
        width: 13rem;
        height: 13rem;
        margin-bottom: 1rem;
    }
}

/* ---------sectin entry--------- */
.entry {
    position: relative;
}

.entry .entry_content a:hover .more_btn span::before {
    transform-origin: left top !important;
    transform: scale(1, 1) !important;
}

.entry:before {
    position: absolute;
    content: "ENTRY";
    color: #BCFEFF;
    left: 0;
    font-size: 8rem;
    font-family: var(--fontEB);
    writing-mode: vertical-lr;
    line-height: 1;
    top: -5rem;
}

.entry_content {
    position: relative;
    padding: 0 10rem;
}

.entry_content .section_title {
    padding: 0;
}

.entry_content a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 10rem;
    border-radius: 50rem;
    background-color: var(--bg-blue-color);
    z-index: 11;
}

.entry .more_btn span::before {
    background-color: #FFF;
}

.entry .more_btn:hover svg rect {
    stroke: #FFF;
}

.entry .more_btn:hover svg path {
    fill: #FFF;
}

@media (max-width: 991px) {
    .entry_content {
        padding: 0 12rem;
    }
}

@media (max-width: 767px) {
    .entry:before {
        font-size: 3rem;
        top: -1rem;
    }

    .entry_content {
        padding: 0 3rem;
    }

    .entry_content a {
        padding: 1.5rem 2.5rem;
    }
}

@media (max-width: 576px) {
    .entry:before {
        display: none;
    }

    .entry_content {
        padding: 0;
    }

    .entry_content a {
        padding: 2rem 3rem;
    }
}

@media (max-width: 450px) {
    .entry_content a {
        flex-direction: column;
        padding: 2rem 3rem;
        align-items: flex-start;
        padding: 30px;
        border-radius: 20px;
    }

    .entry_content a .more_btn {
        margin-left: auto;
    }
}


/* ------------career page style------------ */
.homeMain {
    flex: 1;
}

.homeSide {
    top: 0;
    position: sticky;
    width: 12rem;
    height: calc(100vh - var(--headerH));
    display: flex;
    flex-direction: column;
    z-index: 99;
}

.homeSide ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: calc(32rem);
}

.homeSide ul li a {
    position: relative;
    font-size: 1.7rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: all .3s;
}

.homeSide ul li a::before {
    position: absolute;
    display: inline-block;
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--bg-black-color);
    white-space: nowrap;
    left: -9px;
    transition: all .3s;
}

.homeSide ul li a.actve {
    color: var(--bg-blue-color);
}

.homeSide ul li a.active::before {
    background-color: var(--bg-blue-color);
}

@media (max-width: 991px) {
    .homeSide {
        display: none;
    }
}


.career_block {
    position: relative;
}

.career_block .career_block_content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    z-index: 11;
}

.career_description h4 {
    font-size: 2.4rem;
    line-height: 1.6;
    font-family: var(--fontS);
    margin-bottom: 1.7rem;
}

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

.career_detail {
    display: flex;
    flex-direction: column;
    gap: 3.33rem;
}

.career_detail h3 {
    font-size: 2.8rem;
    line-height: 1.6;
    font-family: var(--fontS);
    margin-bottom: -2rem
}

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

.career_detail p span {
    font-size: 2rem;
    font-weight: 500;
}

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

.career_detail div &gt; span {
    display: inline-block;
    width: 50%;
    height: 50rem;
}

.career_detail div &gt; span img {
    width: 100%;
    height: 100%;
}

.career_detail div p {
    width: 47%;
}

@media (max-width: 991px) {
    .career_block {
        padding: 0 10rem;
    }

    .career_detail div &gt; span {
        height: 50rem;
    }

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

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

    .career_detail h3 {
        font-size: 3rem;
        margin-bottom: 0rem;
    }

    .career_description h4 {
        font-size: 2.4rem;
    }

    .career_detail p span {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    .career_block {
        padding: 0 3rem;
    }

    .career_block .career_block_content {
        gap: 1.4rem;
    }

    .career_detail div &gt; span {
        width: 100%;
        height: 40rem;
    }

    .career_description p {
        font-size: 1rem;
    }

    .career_detail p {
        font-size: 1rem;
    }

    .career_detail h3 {
        font-size: 3rem;
        margin-bottom: 0rem;

    }

    .career_description h4 {
        font-size: 1.3rem;
        margin-bottom: .7rem;
    }

    .career_detail h3 {
        font-size: 1.7rem;
    }

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

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

    .career_detail div p {
        width: 100%;
    }

    .career_detail {
        gap: 1rem;
    }
}

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

    .career_block .career_block_content {
        gap: 15px;
    }

    .career_description h4 {
        font-size: 18px;
        margin-bottom: .7rem;
    }

    .career_detail div &gt; span {
        height: 30rem;
    }

    .career_description p {
        font-size: 12px;
    }

    .career_detail p {
        font-size: 12px;
    }

    .career_detail h3 {
        font-size: 3rem;
    }

    .career_detail h3 {
        font-size: 21px;
        margin-bottom: 0rem;

    }

    .career_detail p span {
        font-size: 14px;
    }

    .career_detail div {
        gap: 20px;
    }

    .career_detail div p {
        width: 100%;
    }

    .career_detail {
        gap: 10px;
    }
}



/* -----------people page style------------ */
.people_interview {
    position: relative;
}

.interview_content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 3.33rem;
    z-index: 12;
}

.interview_content .interview_item {
    position: relative;
}

.interview_item .interview_image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

.interview_item .interview_image img {
    width: 100%;
    height: 100%;
}

.interview_item .interview_image.animated_img::before,
.interview_image.animated_img::after {
    background: rgba(0, 0, 0, .8);
}

.interview_item .interview_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    width: 70%;
    opacity: 0;
    pointer-events: none;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
    transition-delay: .4s;
    z-index: 10;
}

.interview_item:hover .interview_text {
    opacity: 1;
}

.interview_item .interview_text h3 {
    font-size: 3.5rem;
    color: #FFF;
    font-family: var(--fontS);
    font-weight: 500;
    line-height: 1.6;
}

.interview_item .interview_text h5 {
    font-size: 2.5rem;
    color: #FFF;
    font-family: var(--fontS);
    line-height: 1.6;
}

.interview_item .interview_text p {
    font-size: 1.9rem;
    color: #FFF;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .people_interview {
        padding: 0 10rem;
    }

    .interview_item .interview_text h3 {
        font-size: 4rem;
    }

    .interview_item .interview_text h5 {
        font-size: 3rem;
    }

    .interview_item .interview_text p {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    .people_interview {
        padding: 0 3rem;
    }

    .interview_content {
        gap: .8rem;
    }

    .interview_item .interview_text {
        gap: .4rem;
        width: 90%;
    }

    .interview_item .interview_text h3 {
        font-size: 1.4rem;
    }

    .interview_item .interview_text h5 {
        font-size: 1rem;
    }

    .interview_item .interview_text p {
        font-size: .7rem;
    }
}

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

    .interview_content {
        grid-template-columns: repeat(1, 4fr);
        gap: 20px;
    }

    .interview_item .interview_text {
        gap: 10px;
        width: 80%;
    }

    .interview_item .interview_text h3 {
        font-size: 32px;
    }

    .interview_item .interview_text h5 {
        font-size: 24px;
    }

    .interview_item .interview_text p {
        font-size: 14px;
    }
}

/* ------------recruit page style--------------- */
.page_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #4083C533;
    margin-bottom: -7rem;
}

.page_header .page_title h1 {
    font-size: 6rem;
    line-height: 1;
    font-family: var(--fontEB);
}

.page_header .page_title p {
    font-size: 2rem;
    font-family: var(--fontS);
    color: var(--bg-blue-color);
    font-weight: 500;
    margin-top: 5px;
}

.page_header .page_image {
    width: 35rem;
    height: 27.5rem;
    line-height: 0;
}

.page_header .page_image img {
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .page_header {
        margin-bottom: 0rem;
    }

    .page_header .page_title h1 {
        font-size: 2.5rem;
        letter-spacing: -0.1em;
    }

    .page_header .page_title p {
        font-size: 1rem;
    }

    .page_header .page_image {
        width: 13rem;
        height: 10rem;
    }
}

@media (max-width: 450px) {
    .page_header {
        margin-bottom: 0rem;
    }

    .page_header .page_title h1 {
        font-size: 23px;
        letter-spacing: -0.13em;
    }

    .page_header .page_title p {
        font-size: 13px;
        margin-top: 10px;
    }

    .page_header .page_image {
        height: 11rem;
        width: 14rem;
    }
}

.recruit_list {
    position: relative;
}

.recruit_list_content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10rem;
    z-index: 12;
}

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

.recruit_list .recruit_list_item h3 {
    font-size: 3.33rem;
    font-weight: 500;
    font-family: var(--fontS);
    line-height: 1.6;
}

.recruit_list_item .recruit_list_content ul {
    display: grid;
    grid-template-columns: repeat(3, calc(94%/3));
    gap: 3%;
    align-items: center;
}

.recruit_list_item .recruit_list_content ul li {
    width: 100%;
}

.recruit_list_item .recruit_list_content ul a {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    height: 100px;
    border: 1px solid #4083C533;
    border-radius: 10px;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.recruit_list_item .recruit_list_content ul a span {
    position: absolute;
    white-space: nowrap;
    left: 1.67rem;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    font-size: 2rem;
    font-family: var(--fontS);
}

.recruit_list_item .recruit_list_content ul a svg {
    position: absolute;
    right: 1.67rem;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.recruit_list_item .recruit_list_content ul a:hover span {
    left: 50%;
    transform: translateX(-50%);
}

.recruit_list_item .recruit_list_content ul a:hover svg {
    scale: 0;
}

@media (max-width: 1300px) {
    .recruit_list_item .recruit_list_content ul a {
        height: 85px;
    }

    .recruit_list_item .recruit_list_content ul a svg {
        width: 50px;
    }
}

@media (max-width: 1100px) {
    .recruit_list_item .recruit_list_content ul a span {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .recruit_list_item .recruit_list_content ul a {
        height: 75px;
    }

    .recruit_list_item .recruit_list_content ul a svg {
        width: 45px;
    }

    .recruit_list_content {
        gap: 3rem;
    }

    .recruit_list .recruit_list_item {
        gap: 1.3rem;
    }

    .recruit_list .recruit_list_item h3 {
        font-size: 1.5rem;
        margin-top: -3rem;
    }

    .recruit_list_item .recruit_list_content ul li {
        width: 100%;
    }

    .recruit_list_item .recruit_list_content ul a span {
        font-size: 0.9rem;
        left: .5rem;
        letter-spacing: -0.08em
    }

    .recruit_list_item .recruit_list_content ul a svg {
        right: .5rem;
    }
}

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

    .recruit_list .recruit_list_item h3 {
        font-size: 21px;
    }

    .recruit_list_item .recruit_list_content ul {
        grid-template-columns: 100%;
        gap: 15px;
    }

    .recruit_list_item .recruit_list_content ul li {
        width: 100%;
    }

    .recruit_list_item .recruit_list_content ul a span {
        font-size: 15px;
        left: 15px;
    }

    .recruit_list_item .recruit_list_content ul a svg {
        right: 15px;
    }
}


/* ----------------entry page style-------------- */
.entry_block {
    width: 600px;
    margin: 0 auto;
}

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

.entry_form .form_item .block_title {
    padding-bottom: 1.5rem;
}

.entry_form .form_field {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.entry_form .form_field .field_cap {
    font-size: 2rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 3px;
}

.entry_form .form_field .field_cap span {
    color: #FFF;
    font-size: 1.5rem;
    background-color: var(--bg-blue-color);
    line-height: 1;
    padding: .5rem;
    border-radius: .3rem;
}

.entry_form .form_field .field_control input,
textarea,
select {
    width: 100%;
    border-radius: 3px;
    border: 1px solid #4083C533;
    padding: 10px 15px;
    font-size: 18px;
    line-height: 1.5;
    outline: none;
    color: #4A6C6C;
}

.entry_form .form_field .field_control textarea {
    height: 200px;
    outline: none;
}

.entry_form .form_field.multi_cols .field_control {
    display: flex;
    align-items: center;
    gap: 3.33rem;
}

.entry_form .form_field.two_cols .field_control {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.entry_form .form_field.two_cols .field_control .col {
    display: flex;
    align-items: center;
    gap: 10px;
}

.entry_form .form_field.two_cols .field_control .col span {
    font-size: 1.7rem;
    line-height: 1.5;
}

.entry_form .form_field.two_cols .field_control .col div {
    flex: 1;
}

.entry_form .field_control &gt; span.file_select {
    display: inline-block;
    font-size: 18px;
    color: #4A6C6C;
    background-color: #FFF;
    border: 1px solid #4083C533;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 3px;
}

textarea::placeholder,
input::placeholder {
    opacity: .5;
}

.entry_form p {
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    padding: 40px 0;
}

.entry_form p a {
    text-decoration: underline;
    font-size: 16px;
    color: var(--bg-blue-color);
}

.radio_btn {
    position: relative;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio_btn input[type=radio] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio_btn span {
    font-size: 2rem;
    line-height: 1.5;
}

.checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #FFF;
    border-radius: 50%;
    border: 1px solid var(--bg-black-color);
}

.radio_btn input:checked ~ .checkmark {
    border: 1px solid var(--bg-blue-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

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

.radio_btn .checkmark:after {
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 50%;
}

.entry_form .field_contactbtn button[type=submit] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    width: 260px;
    height: 50px;
    margin: 0 auto;
    border: 1px solid var(--bg-blue-color);
    background-color: var(--bg-blue-color);
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    outline: none;
    gap: 20px;
}

.entry_form .field_contactbtn button[type=submit] span {
    font-size: 16px;
    line-height: 1.5;
    color: #FFF;
    left: 30px;
    white-space: nowrap;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.entry_form .field_contactbtn button[type=submit] svg path {
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.entry_form .field_contactbtn button[type=submit]:hover {
    background-color: transparent;
}

.entry_form .field_contactbtn button[type=submit]:hover span {
    color: var(--bg-blue-color);
}

.entry_form .field_contactbtn button[type=submit]:hover svg path {
    fill: var(--bg-blue-color);
}

@media (max-width: 1100px) {
    .entry_block {
        width: 100%;
    }

    .entry_form .form_field .field_cap {
        font-size: 2.5rem;
    }

    .entry_form .form_field .field_cap span {
        font-size: 2rem;
    }

    .entry_form .form_field.two_cols .field_control .col span {
        font-size: 2.3rem;
    }

    .radio_btn span {
        font-size: 2.5rem;
    }

    .entry_form .form_field .field_control input,
    textarea,
    select {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .entry_form .form_item {
        gap: 1.3rem;
    }

    .entry_form .form_field .field_cap {
        font-size: 1.2rem;
    }

    .entry_form .form_field .field_cap span {
        font-size: .9rem;
        padding: .2rem;
    }

    .entry_form .form_field.two_cols .field_control .col span {
        font-size: 1rem;
    }

    .entry_form p {
        padding: 20px 0;
    }

    .radio_btn span {
        font-size: 1rem;
    }
}

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

    .entry_form .form_field.multi_cols .field_control {
        justify-content: space-between;
        gap: 0;
    }

    .entry_form .form_field .field_cap {
        font-size: 16px;
    }

    .entry_form .form_field .field_cap span {
        font-size: 12px;
        padding: 3px;
    }

    .entry_form .form_field.two_cols .field_control .col span {
        font-size: 15px;
    }

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

    .entry_form .form_field .field_control input,
    textarea,
    select {
        font-size: 14px;
    }
}







/* --------------footer style---------------- */
footer {
    position: relative;
    background-color: #28569B0D;
    z-index: 997;
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

footer .footer_logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .footer_logo span {
    font-size: 1.67rem;
    line-height: 1.6;
}

footer .footer_logo span span {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
}

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

footer .footer_left {
    display: flex;
    flex-direction: column;
    gap: 3.33rem;
}

footer .footer_left div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .footer_left p span {
    display: inline-block;
    width: 12rem;
}

.footer_menu {
    display: flex;
    gap: 4rem;
}

.footer_menu .col ul {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    /*繝輔ャ繧ｿ繝ｼ繝｡繝九Η繝ｼ鬆�岼縺ｮ邵ｦ蟷�ｪｿ謨ｴ*/
}

.footer_menu .col ul li a {
    position: relative;
    font-family: var(--fontS);
    font-size: 1.8rem;
    display: inline-block;
}

.footer_menu .col ul li:first-child a {
    font-size: 2rem;
    color: var(--bg-blue-color);
    padding-bottom: 1rem;
}

.footer_menu .col ul li a:after {
    content: "";
    position: absolute;
    bottom: -3px;
    width: 0;
    left: 0;
    background-color: var(--bg-black-color);
    height: 1px;
    transition: all .4s;
}

.footer_menu .col ul li a:hover:after {
    width: 100%;
}

.footer_bottom p {
    font-family: var(--fontEB);
    font-size: 1.6rem;
    width: fit-content;
    text-align: left;
    margin-left: auto;
}

.footer_bottom p span {
    font-family: var(--fontB);
    display: inline-block;
    font-size: 2rem;
}

.title_dummy {
    position: absolute;
    margin-top: -80px;
    visibility: collapse;
}

.title_dummy2 {
    position: absolute;
    margin-top: 10px;
    visibility: collapse;
}

@media (max-width: 1100px) {
    footer .footer_logo span {
        font-size: 2rem;
    }

    footer .footer_logo span span {
        font-size: 2.4rem;
    }

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

    footer .footer_left p span {
        font-size: 2rem;
        width: 15rem;
    }

    .footer_menu .col ul li:first-child a {
        font-size: 2.4rem;
    }

    .footer_menu .col ul li a {
        font-size: 2rem;
    }

    .footer_menu {
        gap: 3rem;
    }

    .footer_menu .col ul {
        gap: 1.4rem;
    }

    .footer_line {
        margin: 2rem 0;
    }

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

    .footer_bottom p span {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    footer .container {
        gap: 1.5rem;
    }

    footer .footer_top {
        flex-direction: column;
        gap: 1.5rem;
    }

    footer .footer_left {
        gap: 1.6rem;
    }

    footer .footer_logo span {
        font-size: 1rem;
    }

    footer .footer_logo span span {
        font-size: 1.2rem;
    }

    .footer_left p {
        font-size: 1rem;
    }

    footer .footer_left p span {
        font-size: 1rem;
        width: 7rem;
    }

    .footer_menu .col ul li:first-child a {
        font-size: 1.2rem;
        padding-bottom: .4rem;
    }

    .footer_menu .col ul li a {
        font-size: .9rem;
    }

    .footer_menu {
        justify-content: center;
        gap: 3rem;
    }

    .footer_menu .col ul {
        gap: 0.4rem;
    }

    .footer_bottom p {
        font-size: 1rem;
    }

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

@media (max-width: 450px) {
    footer {
        padding: 30px 0;
    }

    footer .container {
        gap: 30px;
    }

    footer .footer_logo span span {
        font-size: 16px;
    }

    footer .footer_logo span {
        font-size: 15px;
    }

    footer .footer_top {
        flex-direction: column;
        gap: 3rem;
    }

    footer .footer_left {
        gap: 10px;
    }

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

    footer .footer_left p span {
        font-size: 13px;
        width: 80px;
    }

    .footer_menu {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer_menu .col ul li:first-child a {
        font-size: 18px;
        padding: 0;
    }

    .footer_menu .col ul li a {
        font-size: 14px;
    }

    .footer_menu .col ul {
        align-items: center;
        gap: 0.1rem;
    }

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

    .footer_bottom p span {
        font-size: 16px;
    }
}

/* ---------loading animation----------- */
#loading {
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-back-color);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    opacity: 1;
    transition: all .8s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

#loading.is-loadded {
    opacity: 0;
}

/* -------------single page style----------- */
.requirement_item {
    display: flex;
    flex-direction: column;
    gap: 3.33rem;
    line-height: 1.6;
}

.requirement_item_content p {
    font-size: 2rem;
    line-height: 1.5;
}

.requirement_table dl {
    display: flex;
    align-items: center;
    margin: 0;
    width: 100%;
    padding: 2rem 0;
    border-bottom: 1px solid #4083C533;
}

.requirement_table dl:first-child {
    border-top: 1px solid #4083C533;
}

.requirement_table dt,
.requirement_table dd {
    margin: 0;
    font-size: 2rem;
    line-height: 1.5;
}

.requirement_table dt {
    width: 33.33rem;
}

.requirement_table dd {
    width: calc(100% - 33.33rem);
}

.requirement_item_content .entry_btn {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 50px;
    width: 320px;
    height: 70px;
    margin: 0 auto;
    border: 1px solid var(--bg-blue-color);
    background-color: var(--bg-blue-color);
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.requirement_item_content .entry_btn span {
    position: absolute;
    font-size: 20px;
    line-height: 1.5;
    color: #FFF;
    left: 30px;
    width: 70%;
    white-space: nowrap;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.requirement_item_content .entry_btn svg {
    position: absolute;
    right: 30px;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.requirement_item_content .entry_btn:hover {
    background-color: transparent;
}

.requirement_item_content .entry_btn:hover span {
    color: var(--bg-blue-color);
    left: 50%;
    transform: translateX(-50%);
}

.requirement_item_content .entry_btn:hover svg {
    scale: 0;
}

@media (max-width: 1300px) {
    .requirement_item_content .entry_btn {
        height: 60px;
    }
}

@media (max-width: 991px) {
    .requirement_item_content p {
        font-size: 2.5rem;
    }

    .requirement_table dt,
    .requirement_table dd {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .requirement_item {
        gap: 1.7rem;
    }

    .requirement_item_content p {
        font-size: 1rem;
    }

    .requirement_table dl {
        padding: 1rem 0;
    }

    .requirement_table dt,
    .requirement_table dd {
        font-size: 0.9rem;
    }

    .requirement_table dt {
        width: 8rem;
    }

    .requirement_table dd {
        width: calc(100% - 8rem);
    }

    .requirement_item_content .entry_btn {
        width: 300px;
    }

    .requirement_item_content .entry_btn span {
        font-size: 18px;
    }
}

@media (max-width: 450px) {
    .requirement_item_content p {
        font-size: 12px;
    }

    .requirement_table dl {
        flex-direction: column;
        padding: 15px 0;
        gap: 15px;
    }

    .requirement_table dt {
        width: 100%;
        font-weight: bold;
    }

    .requirement_table dd {
        width: 100%;
    }

    .requirement_table dt,
    .requirement_table dd {
        font-size: 12px;
    }

    .requirement_item_content .entry_btn {
        height: 50px;
        width: 280px;
    }

    .requirement_item_content .entry_btn span {
        font-size: 16px;
    }
}


/* ---------flower style--------- */
.flower_overlay {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 20;
}

.flower_overlay .flowers_wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 40;
}

.flower_overlay .flower_item {
    width: 13rem;
    display: block;
    position: absolute;
    transform: translateY(0%);
    top: 0;
    bottom: 0;
    opacity: 0;
    animation: overlayItemFallAnime 16s cubic-bezier(0.3, 0.1, 0.7, 0.9) infinite;
}

.flower_overlay .flower_item img {
    scale: 0.8;
    width: 100%;
    animation: overlayItemRotateAnime 8s linear infinite;
}

.flower_overlay .flower_item:first-child {
    left: 1rem;
}

.flower_overlay .flower_item:nth-child(2) {
    animation-delay: -5s;
    left: 5rem;
}

.flower_overlay .flower_item:nth-child(3) {
    animation-delay: -10s;
    left: 10rem;
}

.flower_overlay .flower_item:nth-child(4) {
    animation-delay: 2s;
    right: 13rem;
}

.flower_overlay .flower_item:nth-child(5) {
    animation-delay: -8s;
    right: 8rem;
}

.flower_overlay .flower_item:nth-child(6) {
    animation-delay: -2s;
    right: 2rem;
}

@keyframes overlayItemFallAnime {
    0% {
        transform: translateY(0%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    50% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

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

    20% {
        scale: .75;
    }

    40% {
        scale: .9;
    }

    50% {
        scale: 1;
    }

    75% {
        scale: .9;
    }

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

    200% {
        transform: rotate(360deg);
        scale: .8;
    }
}

@media (max-width: 768px) {
    .flower_overlay .flower_item {
        width: 4rem;
    }

    .flower_overlay .flower_item:first-child {
        left: .25rem;
    }

    .flower_overlay .flower_item:nth-child(2) {
        animation-delay: -5s;
        left: 2rem;
    }

    .flower_overlay .flower_item:nth-child(3) {
        animation-delay: -10s;
        left: 3rem;
    }

    .flower_overlay .flower_item:nth-child(4) {
        animation-delay: 2s;
        right: 4rem;
    }

    .flower_overlay .flower_item:nth-child(5) {
        animation-delay: -8s;
        right: 1rem;
    }

    .flower_overlay .flower_item:nth-child(6) {
        animation-delay: -2s;
        right: .5rem;
    }
}

@media (max-width: 450px) {
    .flower_overlay .flower_item {
        width: 60px;
    }

    .flower_overlay .flower_item:first-child {
        left: 5px;
    }

    .flower_overlay .flower_item:nth-child(2) {
        animation-delay: -5s;
        left: 25px;
    }

    .flower_overlay .flower_item:nth-child(3) {
        animation-delay: -10s;
        left: 40px;
    }

    .flower_overlay .flower_item:nth-child(4) {
        animation-delay: 2s;
        right: 50px;
    }

    .flower_overlay .flower_item:nth-child(5) {
        animation-delay: -8s;
        right: 30px;
    }

    .flower_overlay .flower_item:nth-child(6) {
        animation-delay: -2s;
        right: 10px;
    }
}
</pre></body></html>