/*#region var*/
:root {
    --pxunit: .83rem;
    --fontB: 'Noto Sans JP';
    --fontP: 'Poppins';
    --fontDIN: 'DIN 2014';
    --fontS: 'Shippori Mincho B1';
    --fontHKG: 'hiragino kaku gothic stdn w8';
    --headerH: 8.5rem;
    --bg-black-color: #303030;
    --bg-blue-color: #008CD6;
    --bg-blue700-color: #00637F;
    --bg-blue900-color: #003B5A;
    --bg-white-color: #FFF;
    --bg-red-grad: linear-gradient(90deg, #EF9C44 0%, #EF4444 100%);
    --bg-blue-grad: linear-gradient(90deg, #00C1D6 0%, #008CD6 100%);
}

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

html {
    font-size: .625vw;
}

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

body {
    margin: 0;
    padding: 0;
}

.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,
body {
    overflow-x: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.initani.initani_wbk::after {
    background-color: #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 HEADER*/

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

.header_set {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFFCC;
    backdrop-filter: blur(10px);
    padding: 0 3.5rem;
    border-radius: 1rem;
    height: 100%;
}

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

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

.header_logo img {
    height: 5.5rem;
}

.header_left span {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--bg-blue900-color);
}

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

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

.headmenu_shape {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 22rem;
    height: 5rem;
    border-radius: .3rem;
}

.headmenu_recruit .headmenu_shape {
    background-image: var(--bg-red-grad);
}

.headmenu_contact .headmenu_shape {
    width: 23rem;
    background-image: var(--bg-blue-grad);
}

.headmenu_cap {
    text-align: center;
    position: absolute;
    left: 2rem;
    width: 60%;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white-color);
    transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.headmenu_svg {
    position: absolute;
    right: 2rem;
    width: 2rem;
    transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.headmenu_a:hover .headmenu_cap {
    left: 50%;
    transform: translateX(-50%);
}

.headmenu_a:hover .headmenu_svg {
    scale: 0;
}

.hamburger_set {
    display: none;
    min-height: 36px;
    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-color: #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;
}

.pst_blackheader .hamburger_btn span {
    background: #000;
}

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

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

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

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

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

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

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

/*#endregion HEADER*/


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* -----theme block start------- */
.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;
}

.blue-color {
    color: var(--bg-blue-color);
    font-weight: 700;
}

.sp_break, .tb_break {
    display: none;
}

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

    .tb_break {
        display: block;
    }
}

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

    .sp_break {
        display: block;
    }
}

/* ------block title------- */




/* -----------page content style---------- */
.container {
    width: 100%;
    padding: 0 18rem;
}

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

.s-inner {
    gap: 4rem;
}

.l-inner {
    gap: 6rem;
}

.m-inner {
    gap: 5rem;
}


.block_ttl {
    text-align: center;
}

.block_ttl p {
    font-size: 1.7rem;
    font-family: var(--fontP);
    font-weight: bold;
    line-height: 1.6;
    color: var(--bg-blue-color);
}

.block_ttl h2 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.5;
}

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

    .l-inner {
        gap: 3rem;
    }

    .m-inner {
        gap: 2rem;
    }

    .s-inner {
        gap: 1.5rem;
    }

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

    .block_ttl h2 {
        font-size: 2rem;
    }
}

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

    .l-inner {
        gap: 40px;
    }

    .m-inner {
        gap: 30px;
    }

    .s-inner {
        gap: 20px;
    }


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

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





/* --------section banner------- */
.banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100vh;
}

.banner_img {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
}

.banner_img img {
    flex: 1;
    width: 50%;
}

.banner_content {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    padding: 2rem;
    background-image: linear-gradient(90deg, rgba(0, 193, 214, 0.8) 0%, rgba(0, 140, 214, 0.8) 100%);
    z-index: 2;
}

.banner_row {
    display: flex;
    justify-content: center;
    gap: 1.7rem;
}

.banner_item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 27rem;
    padding: 1.7rem;
    border-radius: 1rem;
    background-color: var(--bg-white-color);
}

.banner_item p {
    font-size: 1.7rem;
    font-family: var(--fontHKG);
    font-weight: bold;
    color: var(--bg-blue900-color);
}

.banner_item h1 {
    font-size: 5.3rem;
    font-family: var(--fontHKG);
    font-weight: bold;
    color: var(--bg-blue-color);
    line-height: 1;
}

.banner_item h1.font-Din {
    font-size: 8rem;
    font-family: var(--fontDIN) !important;
}

.banner_item span {
    font-size: 2.7rem;
    font-family: var(--fontHKG);
    font-weight: bold;
    color: var(--bg-blue-color);
    line-height: 1;
}

.banner_ttl {
    position: relative;
    text-align: center;
    font-size: 7.5rem;
    font-family: var(--fontS);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.5rem;
    padding: 3.3rem 0;
    z-index: 2;
    background-color: var(--bg-white-color);
}

.banner_ttl span {
    font-family: var(--fontS);
    text-decoration: underline;
    text-decoration-color: #33A3DE;
    text-decoration-thickness: 15%;
    line-height: 1;
    font-weight: 600;
}

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

    .banner_row {
        gap: 1rem;
    }

    .banner_item {
        width: 8rem;
        padding: .8rem;
        border-radius: .6rem;
    }

    .banner_item h1.font-Din {
        font-size: 3rem;
    }

    .banner_item h1 {
        font-size: 2rem;
    }

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

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

    .banner_ttl {
        padding: 1rem 0;
        font-size: 3rem;
        line-height: 1.3;
    }
}
@media (max-width: 450px) {
    .banner {
        height: auto;
    }
    .banner_img {
        position: static;
        height: 53vh;
    }
    .banner_content {
        padding: 15px 0;
        flex-direction: column;
        gap: 10px;
    }
    .banner_row {
        gap: 20px;
    }
    .banner_item {
        width: 40%;
        gap: 5px;
    }
    .banner_item h1 {
        font-size: 28px;
    }
    .banner_item h1.font-Din {
        font-size: 40px;
    }
    .banner_item span {
        font-size: 18px;
    }
    .banner_item {
        padding: 10px 0;
    }
    .banner_item p {
        font-size: 12px;
        line-height: 1.2;
    }
    .banner_ttl {
        padding: 10px 0;
        font-size: 32px;
    }
}







/* --------section movie------- */
.movie {
    background-color: #E6F4FB;
}

.movie_content {
    display: flex;
    width: 80%;
    margin: 0 auto;
}

.movie_content iframe {
    width: 100%;
}

.movie_content iframe * {
    margin: 0;
    padding: 0;
}

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

    .movie_content iframe {
        height: 20rem;
    }
}



/* --------section contact------- */
.contact {
    background-image: var(--bg-blue-grad);
}

.contact .block_ttl p,
.contact .block_ttl h2 {
    color: var(--bg-white-color)
}

.contact_txt {
    text-align: center;
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--bg-white-color);
}

.contact_txt span {
    font-weight: bold;
    color: #FFED98;
}

.contact_btn {
    position: relative;
    display: flex;
    align-items: center;
    width: 38rem;
    height: 6.5rem;
    border-radius: .8rem;
    background-image: var(--bg-red-grad);
    margin: 0 auto;
}

.contact_btn span {
    text-align: center;
    position: absolute;
    left: 2.5rem;
    display: block;
    width: 70%;
    font-size: 2rem;
    font-weight: bold;
    color: var(--bg-white-color);
    transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

.contact_btn:hover span {
    left: 50%;
    transform: translateX(-50%);
}

.contact_btn:hover svg {
    scale: 0;
}
@media (max-width: 768px) {
    .contact_txt {
        font-size: .9rem;
    }
    .contact_btn {
        width: 17rem;
        height: 3.7rem;
        border-radius: .3rem;
    }

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

    .contact_btn svg {
        right: 1.5rem;
        width: 1.4rem;
    }
}
@media (max-width: 768px) {
    .contact_txt {
        font-size: 15px;
    }
    .contact_btn {
        width: 230px;
        height: 50px;
        border-radius: 3px;
    }

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

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



/* --------section news------- */
.news .block_ttl {
    text-align: left;
}

.news_inner {
    display: flex;
    gap: 7rem;
}

.news_content {
    flex: 1;
}

.news_list {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    width: 100%;
}

.news_item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.7rem;
    border: 1px solid #EFEFEF;
}

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

.news_info time,
.news_info span {
    font-size: 1.3rem;
    color: var(--bg-blue-color);
}

.news_info span {
    border-radius: .3rem;
    padding: 0 .5rem;
    border: 1px solid var(--bg-blue-color);
}

.news_item p {
    font-size: 1.6rem;
}

@media (max-width: 768px) {
    .news_inner {
        flex-direction: column;
        gap: 2.5rem;
    }
    .news .block_ttl {
        text-align: center;
    }

    .news_list {
        gap: 1rem;
    }

    .news_item {
        gap: .6rem;
        padding: 1rem;
    }

    .news_info time, .news_info span {
        font-size: .7rem;
        border-radius: 3px;
    }

    .news_item p {
        font-size: .85rem;
    }
}

@media (max-width: 450px) {
    .news_inner {
        gap: 30px;
    }
    .news .block_ttl {
        text-align: center;
    }

    .news_list {
        gap: 15px;
    }

    .news_item {
        gap: 10px;
        padding: 15px;
    }

    .news_info time, .news_info span {
        font-size: 12px;
    }

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



/* --------section strength------- */
.strength {
    background-image: linear-gradient(180deg, #EEF8FD 0%, rgba(238, 248, 253, 0) 47.87%);
}

.strength_content {
    display: flex;
    gap: 3.5rem;
}

.strength_item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.7rem;
    padding: 1.7rem;
    background-color: var(--bg-blue-color);
    border-radius: 1rem;
}

.strength_item span {
    font-size: 2rem;
    font-weight: bold;
    color: var(--bg-white-color);
}

.strength_item svg {
    width: 5.5rem;
}

.strength_item p {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5;
    color: var(--bg-white-color);
}

@media (max-width: 768px) {
    .strength_content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .strength_item {
        flex: none;
        width: calc(50% - .5rem);
        padding: 1rem;
        gap: 1rem;
        border-radius: .5rem;
    }
    .strength_item span {
        font-size: 1.2rem;
    }
    .strength_item svg {
        width: 3rem;
    }
    .strength_item p {
        font-size: 1.2rem;
    }
}

@media (max-width: 450px) {
    .strength_content {
        gap: 10px;
    }
    .strength_item {
        flex: none;
        width: calc(50% - 5px);
        padding: 10px;
        gap: 10px;
        border-radius: 8px;
    }
    .strength_item span {
        font-size: 20px;
    }
    .strength_item svg {
        width: 45px;
    }
    .strength_item p {
        font-size: 17px;
    }
}


/* --------section feature------- */
.feature {
    background: linear-gradient(180deg, #EEF8FD 0%, rgba(238, 248, 253, 0) 13.83%);
}

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

.feature_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.5rem;
}

.feature_left {
    flex: 1;
    display: flex;
    background-color: #F7F7F7;
}

.feature_left img {
    width: 100%;
}

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

.feature_txt span {
    font-weight: bold;
    background: var(--bg-blue-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.feature_txt>span {
    font-size: 8rem;
    font-family: var(--fontDIN);
    line-height: .9;
}

.feature_txt h2 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.5;
}

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

@media (max-width: 768px) {
    .feature_content {
        gap: 3rem;
    }
    .feature_item {
        margin: 0 auto;
        width: 70%;
        flex-direction: column;
        gap: 1rem;
    }
    .feature_txt {
        width: 100%;
        flex: none;
        gap: 1rem;
    }
    .feature_txt>span {
        font-size: 3rem;
    }
    .feature_txt h2 {
        font-size: 1.4rem;
    }
    .feature_txt p {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .feature_content {
        gap: 30px;
    }
    .feature_item {
        width: 100%;
        gap: 15px;
    }
    .feature_txt {
        gap: 10px;
    }
    .feature_txt>span {
        font-size: 40px;
    }
    .feature_txt h2 {
        font-size: 24px;
    }
    .feature_txt p {
        font-size: 15px;
    }
}


/* --------section flow------- */
.flow {
    background: linear-gradient(180deg, #EEF8FD 0%, rgba(238, 248, 253, 0) 13.83%);
}

.flow_content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    width: 70%;
    margin: 0 auto;
}

.flow_content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2.1rem;
    transform: translateY(-50%);
    width: 1px;
    height: 81%;
    background-color: var(--bg-blue-color);
    z-index: -1;
}

.flow_item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6rem;
    z-index: 2;
}

.flow_order {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.2rem;
    height: 4.2rem;
    font-size: 2rem;
    font-family: var(--fontP);
    font-weight: 500;
    color: var(--bg-blue-color);
    border: 2px solid var(--bg-blue-color);
    background-color: var(--bg-white-color);
    border-radius: 50%;
    z-index: 10;
}

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

.flow_img,
.flow_txt {
    flex: 1;
}

.flow_img img {
    width: 100%;
}

.flow_txt {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.flow_txt p {
    font-size: 1.6rem;
}
@media (max-width: 768px) {
    .flow_content {
        gap: 2rem;
        width: 100%;
    }

    .flow_content::before {
        height: 79%;
        left: 1.2rem;
    }

    .flow_item {
        gap: 3rem;
    }

    .flow_order {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 1.2rem;
    }

    .flow_right {
        gap: 1rem;
    }

    .flow_txt {
        gap: 1rem;
    }

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

    .flow_txt p {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .flow_content {
        gap: 2.5rem;
    }

    .flow_content::before {
        height: 78%;
        left: 1.65rem;
    }

    .flow_item {
        gap: 4rem;
    }

    .flow_order {
        width: 3.3rem;
        height: 3.3rem;
        font-size: 2rem;
    }

    .flow_right {
        flex-direction: column;
    }

    .flow_txt {
        gap: 1rem;
    }

    .flow_txt h3 {
        font-size: 1.9rem;
    }

    .flow_txt p {
        font-size: 1.5rem;
    }
}

/* --------section faq------- */
.faq {
  padding: 60px 20px;
  background: linear-gradient(180deg, #EEF8FD 0%, rgba(238, 248, 253, 0) 13.83%);
}

.faq_content {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq-item {
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.faq-question {
  font-size: 2.7rem;
  font-weight: bold;
  cursor: pointer;
  padding: 15px 0;
  transition: background-color 0.3s;
}

.faq-answer {
  font-size: 1.6rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 0;
}

.faq-question::after {
  content: '+';
  float: right;
  font-size: 2rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 1.5rem;
  }
  .faq-answer {
    font-size: 1rem;
  }
  .faq_content {
    width: 90%;
    gap: 2rem;
  }
}

/* --------section partner------- */
.partner_des {
    font-size: 1.7rem;
    text-align: center;
}

.partner_content {
    display: flex;
    gap: 2rem;
    overflow: hidden;
}

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

.partner_slider:first-child {
    animation: loopText01 80s -40s linear infinite;
}

.partner_slider:last-child {
    animation: loopText02 80s linear infinite;
}

@keyframes loopText01 {
    0% {
        transform: translate(100%)
    }

    100% {
        transform: translate(-100%)
    }
}

@keyframes loopText02 {
    0% {
        transform: translate(0)
    }

    100% {
        transform: translate(-200%)
    }
}

.partner_item,
.partner_row {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.7rem;
    padding: 1.7rem;
}

.partner_item.two_row {
    flex-direction: row;
}

.partner_row {
    padding: 0;
}

.partner_img {
    display: flex;
    gap: 1.7rem;
}

.partner_img img {
    width: 14rem;
}

.partner_txt {
    white-space: nowrap;
    font-size: 1.5rem;
}

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

    .partner_slider {
        gap: 1rem;
    }

    .partner_item, .partner_row {
        gap: .8rem;
        padding: .8rem;
    }

    .partner_img img {
        width: 8rem;
    }

    .partner_txt {
        font-size: .8rem;
    }
}
@media (max-width: 450px) {
    .partner_des {
        font-size: 15px;
    }

    .partner_slider {
        gap: 1rem;
    }

    .partner_item, .partner_row {
        gap: .8rem;
        padding: .8rem;
    }

    .partner_img img {
        width: 120px;
    }

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



/* --------section profile------- */
.profile {
    background-color: var(--bg-blue-color);
}

.profile .block_ttl h2 {
    text-align: left;
    color: var(--bg-white-color);
}

.profile_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3.3rem 0;
}

.profile_item {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    width: 50%;
}

.profile_item h5 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--bg-white-color);
}

.profile_item p {
    font-size: 1.5rem;
    color: var(--bg-white-color);
}
@media (max-width: 768px) {
    .profile_content {
        gap: 1.4rem;
    }
    .profile_item {
        width: calc(50% - .7rem);
        gap: .8rem;
    }
    .profile_item h5 {
        font-size: 1.2rem;
    }
    .profile_item p {
        font-size: .9rem;
    }
}
@media (max-width: 450px) {
    .profile_content {
        gap: 15px 14px;
    }
    .profile_item {
        width: calc(50% - 7px);
        gap: 8px;
    }
    .profile_item h5 {
        font-size: 16px;
    }
    .profile_item p {
        font-size: 13px;
    }
}

/* ----------footer style--------- */
.footer_inner {
    display: flex;
    flex-direction: column;
    gap: 3.3rem;
    padding: 6rem 0 3.5rem 0;
}

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

.footer_logo {
    display: flex;
    align-items: center;
}

.footer_logo a {
    display: flex;
    width: 31rem;
}

.footer_logo img {
    width: 100%;
}

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

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

.footer_link {
    position: relative;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer_link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--bg-black-color);
    transition: width .3s;
}

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

/* ソーシャルアイコンのスタイル */
.footer_social {
    display: flex;
    gap: 1rem; /* アイコン間のスペース */
}

.social-icon img {
    width: 2.5rem; /* アイコンのサイズ */
    height: 2.5rem;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.1); /* ホバー時にアイコンを少し拡大 */
}

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

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

.footer_gallery {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.footer_gallery img {
    width: 6rem;
}

.footer_gallery img:first-child {
    width: 6.9rem;
}
@media (max-width: 768px) {
    .footer_inner {
        gap: 2rem;
        padding: 4rem 0 1.5rem 0;
    }
    .footer_top {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .footer_logo a {
        width: 13rem;
    }
    .footer_logo p {
        font-size: .9rem;
    }
    .footer_menu {
        gap: 2rem;
    }
    .footer_link {
        font-size: .9rem;
    }
    /* ソーシャルアイコンのレスポンシブ対応 */
    .footer_social {
        gap: 1rem;
        justify-content: center;
        margin-top: 1rem;
    }

    .social-icon img {
        width: 2rem; /* アイコンのサイズを小さく */
        height: 2rem;
    }
    .footer_btm {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .footer_gallery {
        gap: .5rem;
    }
    .footer_gallery img {
        width: 4rem;
    }

    .footer_gallery img:first-child {
        width: 4.4rem;
    }
    .footer_btm p {
        font-size: .7rem;
    }
}
@media (max-width: 450px) {
    .footer_inner {
        gap: 20px;
        padding: 40px 0 20px 0;
    }
    .footer_top {
        gap: 10px;
    }
    .footer_logo a {
        width: 130px;
    }
    .footer_logo p {
        font-size: 13px;
    }
    .footer_menu {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    .footer_link {
        font-size: 14px;
    }
    .footer_btm {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .footer_gallery {
        width: 100%;
        justify-content: space-between;
        gap: 5px;
    }
    .footer_gallery img {
        width: 15%;
    }
    .footer_gallery img:first-child {
        width: 16.5%;
    }
    .footer_btm p {
        font-size: 11px;
    }
    /* モバイル向けソーシャルアイコンサイズ調整 */
    .footer_social {
        gap: 1rem;
        justify-content: center;
    }

    .social-icon img {
        width: 1.8rem;
        height: 1.8rem;
    }
}