@charset "utf-8";

/*----------------------------------------------------------------------------------------------------------------------------

reset & root set

----------------------------------------------------------------------------------------------------------------------------*/

/* reset
--------------------------------------------------------------*/

*,*::before,*::after { box-sizing: border-box; }
ul,ol { margin: 0; padding: 0; list-style: none; }
body,h1,h2,h3,h4,h5,p,figure,blockquote,dl,dd { margin: 0; font-size: inherit; }
img { max-width: 100%; height: auto; display: block; }
header,footer,main,aside,picture { display: block; }

/* form parts reset */
textarea { font: inherit; appearance: none; }
select { border: none; outline: none; font-weight: inherit; }
button,input[type="submit"],input[type="button"] { border-radius: 0; appearance: button; border: none; outline: none; cursor: pointer; }
input[type="submit"]:focus,input[type="button"]:focus { outline-offset: -2px;}
input[type="submit"]::-webkit-search-decoration,input[type="button"]::-webkit-search-decoration { display: none;}

/* iOS Safari tap reset */
body {-webkit-tap-highlight-color: transparent;}



/* print set
--------------------------------------------------------------*/
@media print{
html { width: 1280px; }
.header { position: relative !important; }/* fixheader clear */
}


/* root set
--------------------------------------------------------------*/

/* color */
:root {
    --cl-key01: #007FFF;
    --cl-txt: #333;
    --cl-border: #CCC;
    --cl-bg: #D7E7F7;
    --cl-bg-body: #F5FAFF;
    --cl-wh: #fff;
    --cl-bk: #000;
    --cl-yw: #F0FC0D;
    --cl-error: #E30000;
    --cl-footer-bg: #007FFF;
    --cl-linkbtn-txt: #fff;
    --cl-linkbtn-bg: #007FFF;
}

/* fixheader height */
:root { --header-height: 6rem; }
@media print, screen and (min-width: 640px) {
:root { --header-height: 9rem; }
}

/* font set */
:root {
    /* font: style weight size / line-height family */
    --ff-base: normal 700 1.4rem / 1.6 'Noto Sans JP', sans-serif;
    --ff01f: "Josefin Sans", sans-serif;
    --ff01w: 700;
}






/*----------------------------------------------------------------------------------------------------------------------------

base set

----------------------------------------------------------------------------------------------------------------------------*/
html { font-size:calc(100vw / 37.5); scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { min-height: 100vh; text-rendering: optimizeSpeed; -webkit-text-size-adjust:100%; text-size-adjust: 100%; color: var(--cl-txt); background-color: var(--cl-bg-body); font: var(--ff-base); }
body._fixed { height: 100%; overflow: hidden; }
a { color: var(--cl-txt); outline:none; text-decoration:none; }

@media print, screen and (min-width: 640px) {
html { font-size: calc(100vw / 128); }
body { font-size: 1.6rem; line-height: 2; }
}

@media print, screen and (min-width: 1280px) {
html { font-size:62.5%; }
body { font-size: 1.6rem; }
a { transition: 0.5s; }
a:hover { opacity: 0.7; }
button:hover { opacity: 0.7; }
}


/* form set */
input:not([type=radio],[type=checkbox]),
select,
textarea { padding:0 0.75rem; color: var(--cl-txt); background-color:var(--cl-wh); border:var(--cl-border) 1px solid; width:100%; font-size: 1.6rem; height: 4rem; font-family: inherit; }
textarea { padding:1.0rem 1.25rem; min-height:20rem; }
button { cursor: pointer; padding: 0; background: none; color: var(--cl-txt); width: 100%; font-size: inherit; }
input::placeholder,
textarea::placeholder { color:var(--cl-txtl); font-size: 0.8em; }
label { display: inline-block; width: fit-content; }
label:hover { cursor: pointer; }

@media print, screen and (min-width: 640px) {
input:not([type=radio],[type=checkbox]),
select,
textarea { height: 5rem; padding: 1rem 1.25rem; }
select:hover { cursor: pointer; }
}



/*----------------------------------------------------------------------------------------------------------------------------

utility & inview set

----------------------------------------------------------------------------------------------------------------------------*/

/* utility - base
---------------------------------------------------- */

/* utility - base responsive */
.u-inner { max-width: 110rem; margin: 0 auto; width: 90%; }
.u-wrapsect { padding: 4rem 0; }
.u-wrapblck { padding: 2rem 0; }
.u-only-pc	{ display: none; }

@media print, screen and (min-width: 640px) {
.u-inner { }
.u-inner._min { max-width: 82rem; }
.u-wrapsect { padding: 8rem 0; }
.u-wrapblck { padding: 4rem 0; }
.u-only-sp	{ display: none !important; }
.u-only-pc	{ display: inherit; }
}


/* utility - base */
.u-ff01 { font-family: var(--ff01f); font-weight: var(--ff01w); }
.u-cl-txt { color: var(--cl-txt); }
.u-cl-wh { color: var(--cl-wh); }
.u-cl-key01 { color: var(--cl-key01); }
.u-cl-key02 { color: var(--cl-key02); }
.u-iframebox { position:relative; padding-bottom:56.25%; height:0; }
.u-iframebox iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.u-w30 { width: 30% !important; }
.u-w50 { width: 50% !important; }
.u-mt01 { margin-top: 1rem !important; }
.u-mt02 { margin-top: 2rem !important; }
.u-mt03 { margin-top: 3rem !important; }
.u-mb01 { margin-bottom: 1rem !important; }
.u-mb02 { margin-bottom: 2rem !important; }
.u-mb03 { margin-bottom: 3rem !important; }


/* utility - linkbtn */
.u-linkbtn { display: grid; grid-template-columns: 1fr auto 1fr; column-gap: 0.5em; align-items: center; padding: 0 1em; color: var(--cl-linkbtn-txt); background-color: var(--cl-linkbtn-bg); border-radius: 10rem; width: 25rem; height: 6rem; font-size: inherit; font-weight: inherit; font-family: inherit; }
.u-linkbtn::before { content: ""; }
.u-linkbtn::after { content: ""; }

@media print, screen and (min-width: 640px) {
}




/* iv-animation
---------------------------------------------------- */
.iv-fade { opacity:0; transition: 0.8s; }
.iv-fade._view { opacity:1; }
.iv-up_fade { opacity:0; transform:translate(0, 6rem); transition: 0.8s; }
.iv-up_fade._view { opacity:1; transform:translate(0, 0); }
.iv-left_fade			{ opacity:0; -webkit-transform: translate(-40px, 0); transform:translate(-40px, 0); transition: 1s; }
.iv-left_fade._view		{ opacity:1; -webkit-transform: translate(0, 0); transform:translate(0, 0); }
.iv-right_fade			{ opacity:0; -webkit-transform: translate(40px, 0); transform:translate(40px, 0); transition: 1s; }
.iv-right_fade._view		{ opacity:1; -webkit-transform: translate(0, 0); transform:translate(0, 0); }
.iv-zoomIn_fade			{ opacity:0; -webkit-transform:scale(0, 0); transform:scale(0, 0); transition: 0.2s; }
.iv-zoomIn_fade._view		{ opacity:1; -webkit-transform:scale(1, 1); transform:scale(1, 1);  }

.iv-bounceIn			{ opacity:0; }
.iv-bounceIn._view		{ animation-name:iv-bounceIn; animation-duration:0.75s; animation-fill-mode:both; }
@keyframes iv-bounceIn {
from, 20%, 40%, 60%, 80%, to { animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); }
0%		{ opacity: 0; transform: scale3d(.3, .3, .3); }
20% 	{ transform: scale3d(1.1, 1.1, 1.1); }
40% 	{ transform: scale3d(.9, .9, .9); }
60% 	{ opacity: 1; transform: scale3d(1.03, 1.03, 1.03); }
80% 	{ transform: scale3d(.97, .97, .97); }
to		{ opacity: 1; transform: scale3d(1, 1, 1); }
}


/* animation
---------------------------------------------------- */
.bg-deco {animation: floating-x 7.2s ease-in-out infinite alternate-reverse;}
.deco-target {animation: floating-y 1.8s ease-in-out infinite alternate-reverse;}
@keyframes floating-x {
0% {transform: translateX(-5%);}
100% {transform: translateX(5%);}
}
@keyframes floating-y {
0% {transform: translateY(-10%);}
100% {transform: translateY(10%);}
}

.anime_bounce { -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all  0.3s ease; cursor: pointer; animation: bounce 2s ease-in-out forwards; animation-iteration-count: infinite;}
@keyframes bounce {
0% { transform: scale(1); -webkit-transform: scale(1);}
50% {transform: scale(1.1); -webkit-transform: scale(1.1);}
}

.anime_bounce_rev { -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all  0.3s ease; cursor: pointer; animation: bounce_rev 2s ease-in-out forwards; animation-iteration-count: infinite;}
@keyframes bounce_rev {
0% { transform: scale(1); -webkit-transform: scale(1);}
50% { transform: scale(0.95); -webkit-transform: scale(0.9);}
}

/* animation時間差
---------------------------------------------------- */
.delayScroll .box{ opacity: 0; }
.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
from { opacity: 0; transform: translateY(100px);}
to { opacity: 1; transform: translateY(0);}
}

/*----------------------------------------------------------------------------------------------------------------------------

base layout

----------------------------------------------------------------------------------------------------------------------------*/


/* header
--------------------------------------------------------------*/

/* header */
.header { position: fixed; top: 0; width: 100%; height: var(--header-height); z-index: 10; background-color: var(--cl-wh); font-weight: 700; display: grid; grid-template-columns: 11.8rem auto; }
.header-logo { width: 100%; align-self: center; margin-left: 2rem; }
.header-nav { display: none; }
.header-contact { display: none; }

@media print, screen and (min-width: 640px) {
.header { display: grid; grid-template-columns: 18rem auto 25rem; gap: 2.5rem; }
.header-logo { margin-left: 3rem; }
.header-nav { display: block; }
.header-nav-gnav { display: flex; }
.header-contact { display: grid; }
.header-contact-link { display: grid; place-content: center; color: var(--cl-wh); font-size: 3rem; line-height: 1; letter-spacing: 0.04em; background: linear-gradient(90deg, rgba(0, 211, 161, 1) 0%, rgba(0, 127, 255, 1) 50%, rgba(0, 109, 84, 1) 51%, rgba(0, 65, 132, 1) 100%) 1% center / 202% auto; }
.header-contact-link:hover { background-position: right; opacity: 1; }
.header-contact-link-inner { display: flex; overflow: hidden; height: 6rem; margin-bottom: -3rem;}
.header-contact-link-inner span { display: block; transform: translate(0, 105%); transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;}
.header-contact-link-inner.-visible span {transform: translate(0, 0);}
.header-contact-link-inner span:nth-child(2) {transition-delay: 0.06s;}
.header-contact-link-inner span:nth-child(3) {transition-delay: 0.12s;}
.header-contact-link-inner span:nth-child(4) {transition-delay: 0.18s;}
.header-contact-link-inner span:nth-child(5) {transition-delay: 0.24s;}
}


/* gnav */
@media print, screen and (min-width: 640px) {
.gnav { display: flex; justify-content: flex-end; gap: 1rem; }
.gnav-item { }
.gnav-item-link { display: flex; align-items: center; height: var(--header-height); padding: 0 2.5rem; }
.gnav-item-link:hover { color: var(--cl-key01); }
}





/* footer
--------------------------------------------------------------*/

/* footer */
.footer { background-color: var(--cl-footer-bg); color: var(--cl-wh); padding: 7rem 0 3rem; }
.finfo {}
.finfo-logo { width: 20rem; margin: 0 auto; }
.finfo-address { margin: 2rem; line-height: 2; }
.fcopy { font-size: 1.0rem; text-align: center; margin-top: 6rem; color: var(--cl-txtl); }

@media print, screen and (min-width: 640px) {
.footer { padding: 8rem 0; }
.finfo-logo { width: 26rem; margin: 0; }
.finfo-address { margin: 3rem 0 0; }
.fcopy { font-size: 1.2rem; text-align: right; margin-top: -2em; }

}




/* spitem
--------------------------------------------------------------*/

/* _spopen changes */
@media print, screen and  (max-width: 1023px) {
body._spopen { height: 100%; overflow: hidden; }
}


/* spnav-btn */
.spitem-btn { position: fixed; top: 0; right: 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; border: none; background-color:var(--cl-base); cursor: pointer; width: 6rem; height: 6rem; border-radius: 0rem; outline: none; transition:0.5s; z-index: 130; cursor: pointer; background: linear-gradient(180deg, rgba(0, 211, 161, 1) 0%, rgba(0, 127, 255, 1) 100%, rgba(0, 109, 84, 1) 51%, rgba(0, 65, 132, 1) 100%) 1% center / 202% auto;}
.spitem-btn::before,
.spitem-btn::after { content: ""; position: absolute; left: 50%; width: 2.2rem; height: 3px; background-color: var(--cl-wh); transform: translateX(-50%); transition:0.3s; }
.spitem-btn::before { top: 2.2rem; }
.spitem-btn::after  { bottom: 2.1rem; }
.spitem-btn-line { position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto; width: 2.2rem; height: 3px; background-color: var(--cl-wh); transition: 0.3s; overflow: hidden; }

._close.spitem-btn { }
._close.spitem-btn::before,
._close.spitem-btn::after { content: ""; position: absolute; left: 50%; background-color:var(--cl-wh); transform: translateX(-50%); transition:0.3s; }
._close.spitem-btn::before { top: 50%; transform: translate(-50%,-50%) rotate(45deg) ; left: 50%; }
._close.spitem-btn::after  { bottom: auto; top: 50%; transform: translate(-50%,-50%) rotate(-45deg); left: 50%;}
._close.spitem-btn .spitem-btn-line { display: none; }

@media print, screen and (min-width: 640px) {
.spitem { display: none; }
.spitem-btn { display: none; }
}


/* spnav [wrap] */
.spmenu { opacity: 0; visibility: hidden; position: fixed; top: var(--header-height); right: 0; width: 100%; z-index: 100; transition: 0.3s; }
.spmenu._spopen { opacity: 1; visibility: visible; }
.spmenu-inner { width: 100%; height: calc(100vh - var(--header-height)); padding: 2.5rem 4rem 0; overflow-y: scroll; background-color: var(--cl-bg);}


/* spnavMenu */
.spnav {  }
.spnav-item { font-size: 1.6rem; font-weight: bold;}
.spnav-item:last-child {  }
.spnav-item-link { display: grid; grid-template-columns: 1fr 1em; padding: 2.5rem 1.5rem; line-height: 1; }
.spnav-item-link::after { }


.btn-entry-sp { background: linear-gradient(90deg, rgba(0, 211, 161, 1) 0%, rgba(0, 127, 255, 1) 50%, rgba(0, 109, 84, 1) 51%, rgba(0, 65, 132, 1) 100%) 1% center / 202% auto; text-align: center; margin-top: 2.5rem;}
.btn-entry-sp a { display: inline-block; line-height: 1em; color: var(--cl-wh); font-size: 2.4rem; font-weight: bold; padding: 2.8rem;}




/* main contents
--------------------------------------------------------------*/
.main { min-height: 50vh; padding: var(--header-height) 0 7rem; }
@media print, screen and (min-width: 640px) {
.main { padding-bottom: 14rem; }
}








/*----------------------------------------------------------------------------------------------------------------------------

component

----------------------------------------------------------------------------------------------------------------------------*/



/* title
--------------------------------------------------------------*/

/* title - section */
.c-secttitle { margin-bottom: 2rem; }
.c-secttitle-sub { font-size: 1.6rem; color: var(--cl-key01); }
.c-secttitle-main { font-size: 2.4rem; line-height: 1.3; }
@media print, screen and (min-width: 640px) {
.c-secttitle-sub { font-size: 2.4rem; display: inline-block;}
.c-secttitle-main { font-size: 4.0rem; line-height: 1.6; }
}

.u-title-pj { font-size: 1.8rem; color: var(--cl-key01); line-height: 1.3; }
@media print, screen and (min-width: 640px) {
.u-title-pj { font-size: 2.4rem; }
}


/* title - utility */
.u-title-xl { font-size: 2.2em; line-height: 1.3; }
.u-title-lg { font-size: 1.8em; line-height: 1.3; }
.u-title-md { font-size: 1.5em; line-height: 1.3; }
.u-title-sm { font-size: 1.2em; line-height: 1.3; }
@media print, screen and (min-width: 640px) {
.u-title-xl { font-size: 3.2em; }
.u-title-lg { font-size: 2.6em; }
.u-title-md { font-size: 2.0em; }
.u-title-sm { font-size: 1.4em; }
}






/* table
--------------------------------------------------------------*/

/* c-grtb */
.c-grtb { }
.c-grtb-item { display: grid; padding: 1.5rem 0; border-top: var(--cl-border) 1px solid; }
.c-grtb-item > * + * { margin-top: 0.5rem; }
.c-grtb._grtb-s1-2-p1-2 > * { grid-template-columns: 1fr 2fr; }
.c-grtb._grtb-s1-2-p1-2 .c-grtb-item > * + * { margin-top: 0; }
@media print, screen and (min-width: 640px) {
.c-grtb-item { padding: 3rem 0; grid-template-columns: 18rem 1fr; }
.c-grtb-item > * + * { margin: 0; }

.c-grtb._grtb-s0-p1-2 > * { grid-template-columns: 1fr 2fr; }
.c-grtb._grtb-s0-p1-3 > * { grid-template-columns: 1fr 3fr; }
}

















/* layout
--------------------------------------------------------------*/

/* c-grid */
.c-grid { display: grid; gap: 1rem; }
.c-grid._gtcs1-1 { grid-template-columns: 1fr 1fr; }
.c-grid._gtcs1-2 { grid-template-columns: 1fr 2fr; }
.c-grid._gtcs1-3 { grid-template-columns: 1fr 3fr; }

@media print, screen and (min-width: 640px) {
.c-grid { gap: 6rem; }
.c-grid._gtcp1-1 { grid-template-columns: 1fr 1fr; }
.c-grid._gtcp1-2 { grid-template-columns: 1fr 2fr; }
.c-grid._gtcp1-3 { grid-template-columns: 1fr 3fr; }
.c-grid._gtcp2-1 { grid-template-columns: 2fr 1fr; }
.c-grid._gtcp2-3 { grid-template-columns: 2fr 3fr; }
.c-grid._gtcp3-1 { grid-template-columns: 3fr 1fr; }
.c-grid._gtcp3-2 { grid-template-columns: 3fr 2fr; }
.c-grid._gtcp1-1-1 { grid-template-columns: 1fr 1fr 1fr; }
.c-grid._gtcp1-1-1-1 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.c-grid._rev > *:first-child { order: 2; }
.c-grid._rev > *:last-child { order: 1; }
.c-grid._rev._gtcp1-2 { grid-template-columns: 2fr 1fr; }
.c-grid._rev._gtcp1-3 { grid-template-columns: 3fr 1fr; }
.c-grid._rev._gtcp2-3 { grid-template-columns: 3fr 2fr; }
.c-grid._rev._gtcp2-1 { grid-template-columns: 1fr 2fr; }
.c-grid._rev._gtcp3-1 { grid-template-columns: 1fr 3fr; }
.c-grid._rev._gtcp3-2 { grid-template-columns: 2fr 3fr; }
}


/* mgbox */
.c-mgbox {}
.c-mgbox > *:not(:first-child) { margin-top: 1rem; }

@media print, screen and (min-width: 640px) {
.c-mgbox._mgp1 > *:not(:first-child) { margin-top: 1rem; }
.c-mgbox._mgp2 > *:not(:first-child) { margin-top: 2rem; }
.c-mgbox._mgp3 > *:not(:first-child) { margin-top: 3rem; }
.c-mgbox._mgp4 > *:not(:first-child) { margin-top: 4rem; }
}






/* modal
--------------------------------------------------------------*/
.c-modal { opacity: 0; visibility: hidden; position: fixed; top: 0; left: 0; z-index: 999; width: 100%; height: 100%; display: grid; place-content: center; }
.c-modal._view { opacity: 1; visibility: visible; }
.c-modal-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); }
.c-modal-body { opacity: 0; transition: 0.5s; margin: auto; width: 90%; min-width: 30rem; min-height: 30vh; padding: 2rem; border: var(--cl-key01) 4px solid; background-color: var(--cl-wh); border-radius: 1rem; overflow: hidden; }
.c-modal._view .c-modal-body { position: relative; opacity: 1; }
.c-modal-close { margin-left: auto; width: 2.4rem; height: 2.4rem; background: url(/assets/images/home/modal_close.svg) no-repeat center center / contain; }
@media print, screen and (min-width: 640px) {
.c-modal-body { padding: 3rem; max-width: 160rem; max-height: 90vh; border-width: 6px;  }
.c-modal-bg { cursor: pointer; }
.c-modal-close { cursor: pointer; width: 6rem; height: 6rem; }
}





/* policy group
--------------------------------------------------------------*/

/* c-policybox */
.c-policybox { padding: 2.5em 0; border-bottom: var(--cl-border) 1px solid; }
.c-policybox-title { font-weight: 700; }
.c-policybox-txt { margin-top: 0.8em; }
._noborder.c-policybox { border-bottom: none; }



/* form group
--------------------------------------------------------------*/

/* required - utility */
.u-req,
.u-reqno { font-size: 0.8em; color: var(--cl-wh); padding: 0 0.5em; border-radius: 0.3em; margin-right: 0.5em; }
.u-req { background-color: var(--cl-error); }
.u-reqno { background-color: var(--cl-txtl); }


/* c-error - sukaiform */
.c-error { background-color: var(--cl-bg-gr); padding: 2rem; margin-bottom: 2rem; border-radius: 0.5em; }
.c-error-title {}
.c-error-list { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5em; }
.c-error-item { padding: 0 1rem; font-size: 0.8em; color: var(--cl-error); border: var(--cl-error) 1px solid; background-color: var(--cl-wh); border-radius: 0.5em; }

@media print, screen and (min-width: 640px) {
.c-error { padding: 3rem; margin-bottom: 3rem; }
}


/* c-formthanks */
.c-formthanks { }
.c-formthanks-title { text-align: center; }
.c-formthanks-title::before { content: ""; display: block; margin: auto; width: 2em; height: 2em; mask: url(/assets/images/common/ico_mail.svg) no-repeat center center / contain; background-color: var(--cl-bg-gr); }
.c-formthanks-txt { font-style: 1.2em; font-weight: 700; margin-top: 2em; }
.c-formthanks-ex { font-size: 0.8em; margin-top: 1em; }
.c-formthanks-notice { border: var(--cl-border) 1px solid; padding: 1em; margin-top: 1em; }
.c-formthanks-btn { margin: 3em auto; display: flex; justify-content: center; }

@media print, screen and (min-width: 640px) {
.c-formthanks { }
.c-formthanks-txt { text-align: center; margin-top: 4em; }
.c-formthanks-ex { text-align: center; }
.c-formthanks-notice { padding: 3em; text-align: center; margin: 3em auto 0; width: fit-content; }
.c-formthanks-btn { margin: 4em auto; }
}







/*----------------------------------------------------------------------------------------------------------------------------

page unique

----------------------------------------------------------------------------------------------------------------------------*/



/* kv
--------------------------------------------------------------*/

.kv { position: relative; }
.kv-catch { position: absolute; z-index: 1; display: grid; height: 12rem; align-items: center; padding-left: 3rem; font-size: 3.2rem; line-height: 1; letter-spacing: 0.04em; color: var(--cl-wh); background: url(/assets/images/home/kv_catchbg.svg) no-repeat left top / 20rem; }
.kv-movie { position: relative; overflow: hidden; width: 100%; height: 51.8rem; }
.kv-movie-video { position: absolute; top: 50%; left: 50%; translate: -50% -50%; width: 320%; }

@media print, screen and (min-width: 640px) {
.kv-catch { font-size: 5.6rem; letter-spacing: 0.03em; height: 22rem; background-size: 36.8rem; }
.kv-movie { height: 70rem; }
.kv-movie-video {width: 120%; }

}


/* about
--------------------------------------------------------------*/
.about { position: relative; padding-top: 20rem; }
.about-wrap {}
.about-title { margin: 0 auto; width: 28.4rem; height: 24.4rem; background: url(/assets/images/home/about_titlebg.svg) no-repeat center center / contain; }
.about-title-sub { padding-top: 6.5rem; color: var(--cl-wh); text-align: center; }
.about-title-main { font-size: 3.2rem; line-height: 1.4; color: var(--cl-wh); text-align: center; }
.about-body { display: grid; grid-template-columns: 1fr 2rem 1fr; margin-top: 4.6rem; }
.about-body-x {  padding-top: 3.6rem; }
.about-card {}
.about-card-title { display: grid; place-content: center; width: 12.6rem; height: 10.5rem; text-align: center; color: var(--cl-key01); margin: auto; background: url(/assets/images/common/bg_hexagon.svg) no-repeat center center / contain; }
.about-card-sub { color: var(--cl-bg); text-align: center; margin-top: 1rem; line-height: 1.25; }
.about-txt { margin-top: 4rem; }

.about .bg-deco { position: absolute; left: calc( 50% - 16.75rem); top: 4%; width: 33.5rem; height: 17.5rem; z-index: -1;}

@media print, screen and (min-width: 640px) {
.about { padding-top: 14rem; }
.about-wrap { display: grid; grid-template-columns: 1fr 54rem; grid-template-rows: 30rem 1fr; }
.about-title { grid-area: 1 / 1 / 3 / 2; width: 56.6rem; height: 49rem; translate: -14rem 0; padding-left: 14rem; }
.about-title-sub { padding-top: 14rem; text-align-last: left; }
.about-title-main { margin-top: 0.5rem; font-size: 5.4rem; text-align-last: left; }
.about-body { grid-area: 1 / 2 / 3 / 3; margin-top: 6rem; }
.about-body-x {  padding-top: 6.4rem; }
.about-card-title { width: 20.2rem; height: 16.8rem; }
.about-card-sub { font-size: 2.4rem; margin-top: 2rem; }
.about-txt { grid-area: 2 / 2 / 3 / 3; margin-top: 6rem; }
}



/* voice
--------------------------------------------------------------*/
.voice { position: relative; padding-top: 7rem; }
.voice-title { display: grid; grid-template-columns: 9.5rem 1fr; }
.voice-title-sub { position: relative; margin: 3rem 0 0 1.5rem; }
.voice-title-sub::after { content: ""; position: absolute; top: -2em; left: -1em; width: 8rem; height: 8rem; background: url(/assets/images/common/bg_hexagon.svg) no-repeat center center / contain; z-index: -1; rotate: -10deg; }
.voice-title-main { position: relative;}

.voice .bg-deco.bg-deco-l { position: absolute; left: -15%; top: 35%; width: 27rem; height: 24.165rem; z-index: -1;}
.voice .bg-deco { position: absolute; right: 5%; top: 35%; width: 23.8rem; height: 24.4rem;}

@media print, screen and (min-width: 640px) {
.voice { padding-top: 17rem; }
.voice-title { display: block; }

.voice-title-sub { margin: 0; }
.voice-title-sub::after { width: 13rem; height: 13rem; }

.voice .bg-deco.bg-deco-l { position: absolute; left: 5%; top: 0%; width: 38.2rem; height: 34.2rem;}
}




.voice .swiper { position: relative;}
.voice .swiper-container { width: 100%;}
.voice .pick-wrapper { margin-top: 6rem;}
.voice .pick-wrapper .article-box { display: flex; align-items: flex-end; padding-top: 8rem; padding-bottom: 8rem;}
.voice .pick-wrapper article { width: 100%;}
.voice .swiper-slide { width: 100%; margin: 0 ;transition: 0.8s;}
.voice .swiper-slide-active { margin-top: 0;}
/*
.voice .swiper-slide-active::after { position: absolute; top: -7rem; left: calc(50% - 12.2rem); content: ""; display: inline-block; width: 24.4rem; height: 9.27rem; background-repeat: no-repeat; background-position: center; background-size: contain;}
.voice .post01.swiper-slide-active::after { background-image: url(/assets/images/home/bubble_post01_sp.svg);}
.voice .post02.swiper-slide-active::after { background-image: url(/assets/images/home/bubble_post02_sp.svg);}
.voice .post03.swiper-slide-active::after { background-image: url(/assets/images/home/bubble_post03_sp.svg);}
.voice .post04.swiper-slide-active::after { background-image: url(/assets/images/home/bubble_post04_sp.svg);}
.voice .post05.swiper-slide-active::after { background-image: url(/assets/images/home/bubble_post05_sp.svg);}
.voice .post06.swiper-slide-active::after { background-image: url(/assets/images/home/bubble_post06_sp.svg);}
.voice .post-txt { display: none;}
*/
.voice .swiper-slide .post-txt { display: block; width: 100%; position: absolute; left: 50%; transform: translate(-50%, 0%); bottom: -8rem; color: var(--cl-key01); font-size: 1.8rem; font-weight: bold; line-height: 1.5; text-align: center;}
/* pagenavi */

.slider-nav { margin-right: auto; display: flex; justify-content: space-between; align-items: center; gap: 2rem; width: 100%; position: absolute; top: 50%; transform: translateY(-50%); z-index: 1;}

.pick-wrapper.swiper .swiper-button-prev,
.pick-wrapper.swiper .swiper-button-next { position: static; width: 4.6rem; height: 4.6rem; margin: 0;}
.pick-wrapper.swiper .swiper-button-prev::after,
.pick-wrapper.swiper .swiper-button-next::after { content: ""; display: block; width: 100%; height: 100%; background: url(/assets/images/common/slider_ar.svg) no-repeat center / contain;}
.pick-wrapper.swiper .swiper-button-next::after { transform: rotate(180deg);}
.pick-wrapper.swiper .slider-nav-pagination { position: static; width: auto;}

.swiper-pagination.swiper-pagination-progressbar.swiper-pagination-horizontal { position: static; margin-left: auto; left: auto; top: auto; max-width: 13.8rem; background: var(--cl-bg); height: 5px;}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill { background: var(--cl-key01) !important;}




@media print, screen and (min-width: 640px) {
.voice .swiper { position: relative;}
.voice .swiper-container { width: 100%; height: 40rem; display: flex; align-items: flex-end;}
.voice .pick-wrapper { }
.voice .pick-wrapper .article-box { display: flex; align-items: flex-end; padding-top: 0; padding-bottom: 0;}
.voice .pick-wrapper .swiper-slide { width: 27.4rem; margin-right: 3rem; height: 22.6rem;}
.voice .swiper-slide a { width: 100%; }
.voice .pick-wrapper .swiper-slide-active { width: 48.4rem !important; height: 40rem ; position: relative; overflow: visible;}

.voice .swiper-slide-active::after { top: 3.8rem; left: auto; right: -50%; content: ""; display: inline-block; width: 37.2rem; height: 16.3rem; background-repeat: no-repeat; background-position: center; background-size: contain; position: absolute;}
.voice .post01.swiper-slide-active::after { background-image: url(/assets/images/home/bubble_post01.svg);}
.voice .post02.swiper-slide-active::after { background-image: url(/assets/images/home/bubble_post02.svg);}
.voice .post03.swiper-slide-active::after { background-image: url(/assets/images/home/bubble_post03.svg);}
.voice .post04.swiper-slide-active::after { background-image: url(/assets/images/home/bubble_post04.svg);}
.voice .post05.swiper-slide-active::after { background-image: url(/assets/images/home/bubble_post05.svg);}
.voice .post06.swiper-slide-active::after { background-image: url(/assets/images/home/bubble_post06.svg);}


.voice .swiper-slide .post-txt { font-size: 2.4rem; font-weight: bold; bottom: -9rem; display: none;}
.voice .swiper-slide-active .post-txt { display: block;}

/* pagenavi */

.slider-nav { margin-right: auto; margin-top: 4.5rem; margin-bottom: 2rem; display: flex; justify-content: flex-end; align-items: center; gap: 2rem; width: 100%; position: static;}

.pick-wrapper.swiper .swiper-button-prev,
.pick-wrapper.swiper .swiper-button-next { width: 4rem; height: 4rem;}
}





/* feature
--------------------------------------------------------------*/
.feature { padding-top: 7rem; position: relative;}
.feature-title { text-align: center; }
.feature-title-sub {}
.feature-title-main {}
.feature-box { margin-top: 5rem; }
.feature-box-title { display: grid; grid-template-columns: 6.5rem 1fr; align-items: center; margin-top: 1rem; }
.feature-box-title-sub { position: relative; font-size: 3.2rem; color: var(--cl-key01); padding: 1.8rem 1.5rem 1.2rem; line-height: 1; }
.feature-box-title-sub::after { content: ""; position: absolute; top: 0; left: 0; width: 3.5rem; height: 3.5rem; background: url(/assets/images/common/bg_hexagon.svg) no-repeat center center / contain; z-index: -1; }
.feature-box-title-main {}
.feature-box-txt { line-height: 1.6; }
.feature-box-pic { margin-top: 2rem; border-radius: 1rem; }

.feature .deco-l { position: absolute; top: 0%; left: -10%; width: 14.9rem; height: 9.2rem; z-index: -1;}
.feature .deco-r { position: absolute; top: 3%; right: 3%; width: 6.6rem; height: 4rem; z-index: -1;}

@media print, screen and (min-width: 640px) {
.feature { padding-top: 14rem; }
.feature-box { display: grid; grid-template-columns: 51rem 53rem; grid-template-rows: auto 1fr; gap: 0 6rem; }
.feature-box-title { display: block; grid-area: 1 / 1 / 2 / 2; }
.feature-box-title-sub { font-size: 5.4rem; padding: 0; }
.feature-box-title-sub::after { top: -3rem; left: -3rem; width: 6rem; height: 6rem; }
.feature-box-txt { grid-area: 2 / 1 / 3 / 2; line-height: 2; margin-top: 2rem; }
.feature-box-pic { grid-area: 1 / 2 / 3 / 3; margin: 0; }

.feature .deco-l { position: absolute; top: 2%; left: 3%; width: 34.2rem; height: 20.8rem; z-index: -1;}
.feature .deco-r { position: absolute; top: 8%; right: 3%; width: 16.0rem; height: 9.6rem; z-index: -1;}
}











/* system
--------------------------------------------------------------*/
.system { padding-top: 7rem; position: relative;}
.system-title { text-align: center; }
.system-title-sub {}
.system-title-main {}
.system-grid {}
.system-card { position: relative; margin-top: 8rem; padding: 2rem; background-color: var(--cl-wh); border-radius: 1rem; }
.system-card-title { position: absolute; top: -5.25rem; left: calc(50% - 6.3rem); display: grid; place-content: center; width: 12.6rem; height: 10.5rem; text-align: center; mask: url(/assets/images/common/bg_hexagon.svg) no-repeat center center / contain; }
.system-card-txt { padding-top: 5.25rem; }
.system-card-pic { margin: 2rem auto 0; width: 8.5rem; }
.system-card-lank { margin: 2rem -2rem -2rem; background-color: var(--cl-yw); padding: 2rem; border-radius: 0 0 1rem 1rem; }
.systemlank { }
.systemlank:not(:first-child) { margin-top: 2rem; }
.systemlank-title { color: var(--cl-key01); }
.systemlank-detail { display: flex; justify-content: space-between; background: url(/assets/images/home/system_income_ar.svg) no-repeat center center / 1.3rem; }
.systemlank-income { font-size: 1.4rem; margin-top: 0.5rem; }
.systemlank-income span { font-size: 3.6rem; margin: 0 0.1em; line-height: 1; }

.system-card:nth-child(1) .system-card-title { background-color: #C7EDE4; }
.system-card:nth-child(2) .system-card-title { background-color: #D7E7F7; }
.system-card:nth-child(3) .system-card-title { background-color: #F0FC0D; }

.system .deco-l { position: absolute; top: 3%; left: 4%; width: 6.6rem; height: 4rem; z-index: -1;}
.system .deco-r { position: absolute; top: 3%; right: 4%; width: 6.6rem; height: 4rem; z-index: -1;}

@media print, screen and (min-width: 640px) {
.system { padding-top: 14rem; }

.system-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; margin-top: 18rem; }

.system-card { margin-top: 0; padding: 2.5rem; }
.system-card-title { top: -8.4rem; left: calc(50% - 10.1rem); width: 20.2rem; height: 16.8rem; }
.system-card-txt { padding-top: 8.4rem; }
.system-card-pic { width: 13.6rem; }

.system-card-lank { margin: 2.5rem -2.5rem -2.5rem; padding: 2.5rem; }

.system-card:nth-child(2) .system-card-pic { margin-top: 5rem; }

.system .deco-l { position: absolute; top: 15%; left: 10%; width: 16.0rem; height: 9.6rem; z-index: -1;}
.system .deco-r { position: absolute; top: 15%; right: 10%; width: 16.0rem; height: 9.6rem; z-index: -1;}

}










/* member
--------------------------------------------------------------*/
.member { margin-top: 7rem; padding: 7rem 0; background: url(/assets/images/home/member_bg.webp) no-repeat center center / cover; position: relative; }
.member-title { text-align: center; }
.member-title-sub {}
.member-title-main { color: var(--cl-wh); }
.member-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.member-card { display: block; }
.member-card-pic { transition: 0.5s;}
.member-card-txt { position: relative; margin-top: 3rem; padding: 1.5rem 0; font-size: 1rem; text-align: center; background-color: var(--cl-wh); border-radius: 1rem; }
.member-card-txt::before { content: ""; position: absolute; top: -1.5rem; left: 50%; translate: -50% 0; width: 1.5rem; height: 1.5rem; background: url(/assets/images/home/ico_speech.svg) no-repeat center center / contain; }

.member .deco-l { position: absolute; top: 5%; left: 4%; width: 6.8rem; height: 4rem; z-index: -1;}
.member .deco-r { position: absolute; top: 5%; right: 4%; width: 6.6rem; height: 4rem; z-index: -1;}

@media print, screen and (min-width: 640px) {
.member { margin-top: 14rem; padding: 10rem 0; }
.member-grid { grid-template-columns: 1fr 1fr 1fr; gap: 10rem 3.5rem; margin-top: 9rem; }
.member-card:hover .member-card-pic { filter: drop-shadow(0 1rem 0 var(--cl-yw)); translate: 0 -1rem;}
.member-card-txt { margin: 4.4rem 1rem 0; padding: 2rem 0; font-size: 1.4rem; }
.member-card-txt::before { top: -2.4rem; width: 2.4rem; height: 2.4rem; }

.member .deco-l { position: absolute; top: 10%; left: 10%; width: 15.4rem; height: 9.2rem; z-index: -1;}
.member .deco-r { position: absolute; top: 10%; right: 10%; width: 15.4rem; height: 9.2rem; z-index: -1;}

}








/* infographics
--------------------------------------------------------------*/
.infographics { padding-top: 7rem; position: relative; }
.infographics-title { text-align: center; }
.infographics-title-sub {}
.infographics-title-main {}
.infographics-grid { display: grid; grid-template-columns: 15.8rem 15.8rem; gap: 1.9rem; margin-top: 3rem; }
.infographics-grid-item {}

.infographics .deco-l { position: absolute; top: 5%; left: 4%; width: 6.6rem; height: 4rem; z-index: -1;}
.infographics .deco-r { position: absolute; top: 5%; right: 4%; width: 6.6rem; height: 4rem; z-index: -1;}

@media print, screen and (min-width: 640px) {
.infographics { padding-top: 14rem; }
.infographics-grid { margin-top: 6rem; grid-template-columns: 35rem 35rem 35rem; gap: 2.5rem; }

.infographics .deco-l { position: absolute; top: 10%; left: 10%; width: 16rem; height: 9.6rem; z-index: -1;}
.infographics .deco-r { position: absolute; top: 10%; right: 10%; width: 16rem; height: 9.6rem; z-index: -1;}

}









/* message
--------------------------------------------------------------*/
.message { padding: 9rem 0 7rem; position: relative; }
.message-title { text-align: center; }
.message-title-sub { position: relative; }
.message-title-sub::after { content: ""; position: absolute; top: -1rem; left: 50%; width: 8rem; height: 8rem; background: url(/assets/images/common/bg_hexagon.svg) no-repeat center center / contain; z-index: -1; rotate: -10deg; translate: -50% 0; }
.message-title-main {}
.message-box { margin-top: 3rem; }
.message-box-txt {}
.message-box-name { margin-top: 2rem; }
.message-box-name span { margin-left: 1em; font-size: 1.8rem; }
.message-pic { margin: 3rem -2rem 0 0; }



@media print, screen and (min-width: 640px) {
.message { padding: 16rem 0 14rem; }
.message-title { text-align: left; }
.message-title-sub::after { left: -3rem; width: 13rem; height: 13rem; translate: 0; }
.message-box { max-width: 51rem; }
.message-box-name span { font-size: 2.4rem; }
.message-pic { position: absolute; top: 16rem; right: 0; max-width: 50%; margin: 0; }
.message-pic img { object-fit: cover; width: 100%; height: 46rem; border-radius: 1rem 0 0 1rem; }
}






/* entry
--------------------------------------------------------------*/
.entry { padding: 10rem 0 7rem; background-color: var(--cl-bg); position: relative; }
.entry-title { text-align: center; }
.entry-title-sub {}
.entry-title-main {}
.entry-body { padding: 3rem 2rem; border-radius: 1rem; }
.entry-body-notice {}
.entry-body-notice-ex { color: var(--cl-error); font-size: 1.2rem; margin-top: 1rem; }
.entryform { margin-top: 2rem; }
.entryform .c-grtb-item { padding: 2rem 0; }
.entryform .c-grtb-item > * + * { margin-top: 1rem; }

.entryform label + label { display: block; margin-top: 1rem; }
.entryform-req { color: var(--cl-error); margin-left: 0.5em; }
.entryform-tel input {}
.entryform-ymd input { width: 9rem; }
.entryform-ymd br + input { margin-top: 1rem; }


.entryform-droparea { border: var(--cl-border) 1px solid; height: 7rem; display: grid; place-content: center; }
.entryform-droparea-txt { padding-left: 3rem; line-height: 1.2; background: url(/assets/images/home/ico_file.svg) no-repeat left center / 2.2rem; }
.entryform-droparea-txt-attach { color: var(--cl-key01); }
.entryform-droparea-ex { font-size: 1.2rem; text-align: right; }
.entryform-btn { margin: 1rem auto 0; }

.entry .deco-l { position: absolute; top: 6%; left: 5%; width: 4.2rem; height: 4.2rem; z-index: -1;}
.entry .deco-c { position: absolute; top: 5%; left: calc(50% - 4.4305rem); width: 8.861rem; height: 7.384rem; z-index: -1;}
.entry .deco-r { position: absolute; top: 6%; right: 5%; width: 4.2rem; height: 4.2rem; z-index: -1;}

@media print, screen and (min-width: 640px) {
.entry { padding: 16rem 0 10rem; }
.entry-body { margin-top: 6rem; padding: 10rem; }
.entry-body-notice-ex { font-size: 1.4rem; }
.entryform { margin-top: 4rem; }
.entryform .c-grtb-item { padding: 2.5rem 0; align-items: center; }
.entryform .c-grtb-item > * + * { margin-top: 0; }
.entryform label + label { display: inline; margin: 0 0 0 5rem; }

.entryform-tel input { width: 30rem; }
.entryform-ymd input { width: 12.5rem; }
.entryform-ymd br + input { margin-top: 0; }


.entryform-droparea { height: 8rem; }
.entryform-droparea-txt { padding: 2rem 0 2rem 3rem; }
.entryform-droparea-ex { font-size: 1.4rem; }
.entryform-btn { margin: 5rem auto 0; }

.entry .deco-l { position: absolute; top: 10%; left: 10%; width: 8.4rem; height: 8.4rem; z-index: -1;}
.entry .deco-c { position: absolute; top: 8%; left: calc(50% - 6rem); width: 12rem; height: 10rem; z-index: -1;}
.entry .deco-r { position: absolute; top: 10%; right: 10%; width: 8.4rem; height: 8.4rem; z-index: -1;}

}







/* company
--------------------------------------------------------------*/
.company { padding-top: 17rem; }
.company-grid {}
.company-title { text-align: center; }
.company-title-sub {}
.company-title-main {}
.company .u-iframebox { padding-bottom: 59%; }

.company .bg-deco { position: absolute; left: 5%; top: 6%; width: 14.7rem; height: 15rem; z-index: -1;}

@media print, screen and (min-width: 640px) {
.company { padding-top: 17rem; }
.company-grid { display: grid; grid-template-columns: 39rem 71rem; }
.company-title { text-align: left; }
.company .u-iframebox { padding-bottom: 38%; }

.company .bg-deco { position: absolute; left: 2%; top: 6%; width: 25.4rem; height: 26rem; z-index: -1;}

}



/* pmodal
--------------------------------------------------------------*/
.pmodal { overflow-y: scroll; height: 80vh; }
.pmodal-body { }
.pmodal-title { color: var(--cl-key01); font-size: 2.4rem; }
.pmodal-title span { font-size: 1.4rem; margin-left: 1em; }
.pmodal-tags { display: flex; gap: 1rem; }
.pmodal-tag { padding: 0.5rem 0.8rem; line-height: 1; background-color: var(--cl-yw); }
.pmodal-pic { width: 19rem; margin: 6rem auto 7rem; position: relative;}
.pmodal-pic::before { content: ""; display: inline-block; background: url(/assets/images/home/bg_parts_modal_l.png) no-repeat center; width: 4rem; height: 4rem; position: absolute; left: -10%; bottom: -10%; background-size: contain;}
.pmodal-pic::after { content: ""; display: inline-block; background: url(/assets/images/home/bg_parts_modal_r.png) no-repeat center; width: 5.27rem; height: 4.82rem; position: absolute; right: -10%; top: -10%; background-size: contain;}
.pmodal-tbox {}
.pmodal-tbox:not(:first-child) .pmodal-tbox-list-title { margin-top: 3rem; }
.pmodal-tbox-list {}
.pmodal-tbox-list-title { position: relative; z-index: 2; padding: 1.5rem 1em; }
.pmodal-tbox-list-title { margin-top: 3rem;}
.pmodal-tbox-list-title::after { content: ""; position: absolute; top: 0; left: 0; width: 6.2rem; height: 5.2rem; background: url(/assets/images/common/bg_hexagon.svg) no-repeat center center / contain; z-index: -1; }
.pmodal-tbox-list-detail { margin-top: 1.5rem; }

@media print, screen and (min-width: 640px) {
.pmodal { height: 90vh; }
.pmodal-body { height: 100%; display: grid; grid-template-columns: 44.2rem 1fr; padding: 0 6rem 6rem; }
.pmodal-title { font-size: 4rem; }
.pmodal-title span { font-size: 1.8rem; }
.pmodal-tag { padding: 0.5rem 1.6rem; }
.pmodal-pic { width: 35.8rem; margin: 4rem 0 0; }

.pmodal-pic::before { content: ""; display: inline-block; background: url(/assets/images/home/bg_parts_modal_l.png) no-repeat center; width: 7.4rem; height: 7.4rem; position: absolute; left: -10%; bottom: -10%;}
.pmodal-pic::after { content: ""; display: inline-block; background: url(/assets/images/home/bg_parts_modal_r.png) no-repeat center; width: 9.8rem; height: 9rem; position: absolute; right: -10%; top: -10%;}


}
















































