@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,video { max-width: 100%; width: 100%; height: auto; display: block; }
header,footer,main,aside,picture { display: block; }


/* iOS Safari tap reset */
body {-webkit-tap-highlight-color: transparent;}





/* root set
--------------------------------------------------------------*/

/* color */
:root {
    --cl-key: #0087DB;
    --cl-txt: #333333;
    --cl-border: #CCCCCC;
    --cl-bg-gr: #F2F8FA;
    --cl-wh: #fff;
    --cl-bk: #000;
}

/* fixheader height */
:root { --header-height: 8rem; }
@media print, screen and (min-width: 640px) {
:root { --header-height: 16rem; }
}

/* font set */
:root {
    /* font: style weight size / line-height family */
    --ff-base: normal 400 1.4rem / 1.6 'Noto Sans JP', sans-serif;
    --ff-base-normal: 400;
    --ff-base-bold: 600;
    --ff-ff01: normal 700 1.4rem / 1.6 "Outfit", sans-serif;;

}
@media print, screen and (min-width: 640px) {
:root {
    /* font: style weight size / line-height family */
    --ff-base: normal 400 1.4rem / 1.85 'Noto Sans JP', sans-serif;
}
}




/*----------------------------------------------------------------------------------------------------------------------------

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; color: var(--cl-txt); font: var(--ff-base); letter-spacing: 0.04rem;}
a { color: var(--cl-txt); outline: none; text-decoration: none;}

@media print, screen and (min-width: 640px) {
html { font-size: calc(100vw / 116); }
body { font-size: 1.6rem; }
a { transition: 0.5s; }
a:hover { opacity: 0.7; }
button:hover { opacity: 0.7; }
}

@media print, screen and (min-width: 1160px) {
html { font-size: 62.5%; }
}



/*----------------------------------------------------------------------------------------------------------------------------

utility & inview set

----------------------------------------------------------------------------------------------------------------------------*/

/* utility - base
---------------------------------------------------- */

/* utility - base responsive */
.u-inner { max-width: 110rem; margin: 0 auto; width: 90%; }
.u-wrapsect { padding: 4rem 0; }
.u-wrapsect:not(._bg) + .u-wrapsect:not(._bg) { padding-top: 0; }
.u-wrapsect._bg { background-color: var(--cl-bg-gr); }
.u-only-pc	{ display: none; }

@media print, screen and (min-width: 640px) {
.u-inner {  }
.u-wrapsect { padding: 10rem 0; }
.u-only-sp	{ display: none !important; }
.u-only-pc	{ display: inherit; }
}


/* utility - base */
.u-ff01 { font: var(--ff-ff01); }
.u-cl-txt { color: var(--cl-txt); }
.u-cl-wh { color: var(--cl-wh); }
.u-cl-key { color: var(--cl-key); }
.u-fw-normal { font-weight: var(--ff-base-normal); }
.u-fw-bold { font-weight: var(--ff-base-bold); }
.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-mt03 { margin-top: 4rem !important; }
.u-mt02-04 { margin-top: 2rem !important; }
.u-mb01 { margin-bottom: 1rem !important; }
.u-mb02 { margin-bottom: 2rem !important; }
.u-mb03 { margin-bottom: 3rem !important; }
.u-mb04 { margin-bottom: 4rem !important; }
.u-fs-ex { font-size: 1.2rem;}

@media print, screen and (min-width: 640px) {
.u-mt02-04 { margin-top: 4rem !important; }
}




/* 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); }




/*----------------------------------------------------------------------------------------------------------------------------

base layout

----------------------------------------------------------------------------------------------------------------------------*/


/* header
--------------------------------------------------------------*/

/* header */
.header { position: fixed; z-index: 100; top: 0; padding: 0 2rem; width: 100%; transition: 0.3s; background-color: var(--cl-wh); }
.header-inner { display: grid; align-items: center; width: 100%; height: var(--header-height);  max-width: 120rem; margin: 0 auto;  }
.header-logo { width: 23.6rem; }
.header-menu-list { display: none;}
.header-right { display: none;}


@media print, screen and (min-width: 640px) {
.header-inner { width: 100%; padding: 0 3rem; }
.header-inner { grid-template-columns: max-content 1fr max-content max-content; gap: 1rem; }
.header-logo { width: 100%; max-width: 40rem; }
.header-menu-list { display: flex; align-items: center; gap: 4rem; margin-top: 2rem;}
.header-menu-item { font-weight: var(--ff-base-bold);}
.header-right { display: block;}
.header-right-logo { display: block; max-width: 20rem; margin: 0 0 0 auto;}
.header-right-btn { display: grid; align-items: center; justify-content:center; width: 25rem; height: 4rem; margin: 2rem 0 0 auto; background-color: #eb0a1e; font-size: 2rem; color: var(--cl-wh); font-weight: var(--ff-base-bold); border-radius: 0.5rem;}
}




/* footer
--------------------------------------------------------------*/

/* footer */
.footer { padding: 4rem 0 2rem; background-color: var(--cl-txt);  }
.finfo-logo { width: 20rem; margin: 0 auto; }
.fnav-list { margin-top: 3rem; column-count: 2; }
.fnav-item { color: var(--cl-wh);}
.fnav-item-link { height: 4rem; display: flex; align-items: center; color: var(--cl-wh); font-size: 1.6rem;}
.foot-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; margin-top: 3rem;}
.foot-bottom-item { display: flex; align-items: center; gap: 1rem;}
.foot-bottom-item + .foot-bottom-item::before { content: "|"; display: block; color: var(--cl-wh); font-size: 1.3rem; }
.foot-bottom-link { display: block; font-size: 1.3rem; color: var(--cl-wh);}
.foot-bottom-copy { width: 100%; margin-top: 1rem; font-size: 1.3rem; text-align: center; color: var(--cl-wh); }

@media print, screen and (min-width: 640px) {
.footer { padding: 5rem 0 3rem; }
.footer .u-inner { display: grid; grid-template-columns: 1fr 1fr; }
.finfo-logo { width: 30rem; margin: 1rem 0 0 0; }
.fnav-list { margin-top: 0; column-count: 2; }
.foot-bottom { grid-column: 1/3; display: grid; grid-template-columns: max-content max-content 1fr; margin-top: 4rem; }
.foot-bottom-item { width: max-content;}
.foot-bottom-copy { width: max-content; margin: 0 0 0 auto; font-size: 1.3rem;   }


}




/* foot-cta
--------------------------------------------------------------*/

.foot-cta { padding: 6rem 0 8rem; background: url(../../assets/images/bg_cta.jpg) no-repeat center center / cover;}
.foot-cta-lead {}
.foot-cta-lead a { display: inline-block; text-decoration: underline;}
.foot-cta-btn { display: grid; align-items: center; grid-template-columns: max-content 1fr max-content; gap: 1rem; max-width: 42rem; height: 6rem; margin: 3rem auto 0; padding: 0 2rem; border-radius: 0.5rem; color: var(--cl-wh); font-weight: var(--ff-base-bold); background-color: #0087DB; text-align: center;}
.foot-cta-btn::before { content: ""; display: block; width: 1.6em; height: 1.6em; background: url(../../assets/images/ico_cta.svg) no-repeat center center / contain;}
.foot-cta-btn::after { content: ""; display: block; width: 1em; height: 1em; background: url(../../assets/images/ar_right.svg) no-repeat center center / contain;}

@media print, screen and (min-width: 640px) {
.foot-cta { padding: 10rem 0 16rem; }
.foot-cta-lead { text-align: center;}
.foot-cta-btn { height: 10rem; margin: 4rem auto 0; padding: 0 4rem; border-radius: 1rem; font-size: 1.8rem; }
.foot-cta-btn::before { width: 3rem; height: 3rem;}
.foot-cta-btn::after { width: 2rem; height: 2rem;}

}



/* 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: transparent; cursor: pointer; width: 8rem; height: 8rem; outline: none; transition:0.5s; z-index: 130; border-radius: 50%; cursor: pointer; }
.spitem-btn::before,
.spitem-btn::after { content: ""; position: absolute; left: 50%; width: 3rem; height: 3px; background-color: var(--cl-txt); transform: translateX(-50%); transition:0.3s; }
.spitem-btn::before { top: 3rem; }
.spitem-btn::after  { bottom: 3rem; }
.spitem-btn-line { position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto; width: 3rem; height: 3px; background-color: var(--cl-txt); 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-txt); 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-btn { display: none;}

}


/* spnav [wrap] */
.spmenu { opacity: 0; visibility: hidden; position: fixed; top: 0; right: -100%; width: 80%; z-index: 101; transition: 0.3s;         box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1); }
.spmenu._spopen { right: 0; opacity: 1; visibility: visible; }
.spmenu-inner { position: relative; width: 100%; height: 100vh; height: 100dvh; padding: var(--header-height) 0; overflow-y: scroll; background-color: var(--cl-wh); z-index: 1;}

@media print, screen and (min-width: 640px) {
.spmenu { top: -100%; right: 0; transition: 0.5s; }
.spmenu._spopen { top: var(--header-height); opacity: 1; visibility: visible; }
.spmenu-inner { height: max-content; padding: 1rem; overflow-y: hidden;}

}


/* spnavMenu */
.spnav { }
.spnav-item { border-bottom: var(--cl-border) 1px solid;}
.spnav-item-link { display: block; padding: 2rem; font-weight: var(--ff-base-bold); font-size: 1.6rem; }
.spnav-logo { display: block; max-width: 10rem; margin: 4rem auto;}








/* main contents
--------------------------------------------------------------*/
.main { min-height: 50vh; }
@media print, screen and (min-width: 640px) {
.main { }
}






/*----------------------------------------------------------------------------------------------------------------------------

component

----------------------------------------------------------------------------------------------------------------------------*/


/* sectitle */
.c-sectitle { margin: 4rem 0 2rem; text-align: center; }
.c-sectitle-sub { position: relative; font-size: 1.6rem; color: var(--cl-key); text-align: center; line-height: 1.3;}
.c-sectitle-sub span { position: relative; z-index: 2;}
.c-sectitle-sub::before { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); content: ""; display: block; width: 10rem; height: 10rem; background: url(../../assets/images/bg_sectitle.svg) no-repeat center center / contain; z-index: 1;}
.c-sectitle-main { position: relative; z-index: 2; margin-top: 0.5rem; font-size: 2.8rem; font-weight: var(--ff-base-bold); line-height: 1.4;}

@media print, screen and (min-width: 640px) {
.c-sectitle { margin: 6rem 0 6rem; }
.c-sectitle-sub { width: max-content; margin: 0 auto; gap: 10rem; font-size: 2.4rem;}
.c-sectitle-sub::before { width: 14.8rem; height: 14.8rem;}
.c-sectitle-main { font-size: 6rem; }

}

.c-sec-lead {}

@media print, screen and (min-width: 640px) {
.c-sec-lead { text-align: center;}

}



/* layout
--------------------------------------------------------------*/

/* c-grid */
.c-grid { display: grid; gap: 1rem; }
.c-grid._grid-s1-1 { grid-template-columns: 1fr 1fr; }
.c-grid._grid-s1-2 { grid-template-columns: 1fr 2fr; }
.c-grid._grid-s1-3 { grid-template-columns: 1fr 3fr; }
.c-grid._grid-s1-1-1 { grid-template-columns: 1fr 1fr 1fr; }

@media print, screen and (min-width: 640px) {
.c-grid { gap: 3rem; }
.c-grid._grid-p1-1 { grid-template-columns: 1fr 1fr; }
.c-grid._grid-p1-2 { grid-template-columns: 1fr 2fr; }
.c-grid._grid-p1-3 { grid-template-columns: 1fr 3fr; }
.c-grid._grid-p2-1 { grid-template-columns: 2fr 1fr; }
.c-grid._grid-p2-3 { grid-template-columns: 2fr 3fr; }
.c-grid._grid-p3-1 { grid-template-columns: 3fr 1fr; }
.c-grid._grid-p3-2 { grid-template-columns: 3fr 2fr; }
.c-grid._grid-p1-1-1 { grid-template-columns: 1fr 1fr 1fr; }
.c-grid._grid-p1-1-1-1 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.c-grid._grid-p1-1-1-1-1 { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
.c-grid._rev > *:first-child { order: 2; }
.c-grid._rev > *:last-child { order: 1; }
.c-grid._rev._grid-p1-2 { grid-template-columns: 2fr 1fr; }
.c-grid._rev._grid-p1-3 { grid-template-columns: 3fr 1fr; }
.c-grid._rev._grid-p2-3 { grid-template-columns: 3fr 2fr; }
.c-grid._rev._grid-p2-1 { grid-template-columns: 1fr 2fr; }
.c-grid._rev._grid-p3-1 { grid-template-columns: 1fr 3fr; }
.c-grid._rev._grid-p3-2 { grid-template-columns: 2fr 3fr; }
}







/*----------------------------------------------------------------------------------------------------------------------------

page unique

----------------------------------------------------------------------------------------------------------------------------*/


/* kv
-------------------------------------------------------------------------*/
.kv { position: relative; margin-top: var(--header-height); background-color:#00B7F7; overflow: hidden;}
.kv::after { position: absolute; bottom: 0; left: 0; content: ""; display: block; width: 100%; height: 10%; background-color: var(--cl-wh); z-index: 1; }
.kv-catch { padding: 3rem 3rem 1rem; }
.kv-movie { position: relative; z-index: 2; margin-left: 3rem; border-radius: 5rem 0 0 5rem; overflow: hidden;}
.kv-movie._youtube { position: relative; width: 100%; aspect-ratio: 16 / 9; }
.kv-movie._youtube iframe { width: 100%; height: 100%; }

@media print, screen and (min-width: 640px) {
.kv::after { height: 18%;}
.kv-inner { display: flex; gap: 10rem; width: 90%; max-width: 142rem; margin: 0 auto; }
.kv-catch { width: 31.69%; max-width: 45.2rem; padding: 4rem 0 0; }
.kv-movie { width: 68.73% !important; max-width: 97rem; margin: 9rem -6.4% 0 0; border-radius: 2rem 0 0 2rem; }

}



/* news
-------------------------------------------------------------------------*/
.news-list { border-bottom: var(--cl-border) 1px solid; transition: max-height 0.5s ease-in-out; overflow: hidden;}
.news-item { padding: 2rem 0; border-top: var(--cl-border) 1px solid;}
.news-item > * { display: block;}
.news-item-date {}
.news-item-title {}
.news-more { width: 100%; height: 5rem; display: grid; align-items: center; grid-template-columns: max-content 1fr max-content; margin-top: 3rem; padding: 0 2rem; color: var(--cl-wh); font-weight: var(--ff-base-bold); background-color: var(--cl-key); border: none; border-radius: 5rem;}
.news-more::before { content: ""; display: block; width: 1em; height: 1em; }
.news-more::after { content: ""; display: block; width: 1em; height: 1em; background: url(../../assets/images/ico_open.svg) no-repeat center center / contain; transition: 0.3s;}

.news-more.is-active::after { transform: rotate(180deg); background-image: url(../../assets/images/ico_close.svg);}

@media print, screen and (min-width: 640px) {
.news-item { display: grid; grid-template-columns: max-content 1fr; gap: 5rem; padding: 3rem 0;}
.news-item-title { line-height: 1.6;}
.news-more { width: 26rem; height: 6.5rem; margin: 4rem auto 0; cursor: pointer; }
}



/* sec01
-------------------------------------------------------------------------*/
#sec01 { padding-bottom: 16rem; background: url(../../assets/images/bg_sec01.svg) no-repeat center bottom / contain;}
.sec01-txt { font-size: 1.6rem; font-weight: var(--ff-base-bold); text-align: center; line-height: 2;}
.sec01-txt span { background:linear-gradient(transparent 60%, #FFF23F 60%);}

@media print, screen and (min-width: 640px) {
#sec01 { padding-bottom: 28rem; background-size: 100rem;}
.sec01-txt { font-size: 2.4rem; }

}


/* sec02
-------------------------------------------------------------------------*/

.sec02-item { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; margin-top: 6rem; padding: 2rem 2rem 0 2rem; background-color: var(--cl-wh); border: none; border-radius: 0 1rem 1rem;}
.sec02-item-num { position: absolute; bottom: 100%; left: 0; width: max-content; padding: 0.5rem 1rem 0.3rem; display: flex; align-items: baseline; gap: 0.3rem; font-size: 2rem; font-weight: var(--ff-base-bold); color: var(--cl-key); background-color: #FFF23F; border-radius: 0.5rem 0.5rem 0 0;}
.sec02-item-num span { font-size: 1.6rem; }
.sec02-item-title { text-align: left; font-size: 1.6rem; line-height: 1.4;}
.sec02-item-btn { grid-column: 1/3; display: grid; align-items: center; grid-template-columns: max-content 1fr max-content; margin: 2rem -2rem 0; padding: 1.5rem; color: var(--cl-wh); background-color: var(--cl-key); border-radius: 0 0 1rem 1rem; }
.sec02-item-btn::before { content: ""; display: block; width: 1em; height: 1em; }
.sec02-item-btn::after { content: ""; display: block; width: 1em; height: 1em; background: url(../../assets/images/ico_open.svg) no-repeat center center / contain;}

@media print, screen and (min-width: 640px) {
.sec02-item { display: block; margin-top: 5rem; padding: 3rem 3rem 0 3rem; cursor: pointer; transition: 0.3s;}
.sec02-item-num { width: 16rem; height: 5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 3.6rem; border-radius: 1rem 1rem 0 0;}
.sec02-item-num span { font-size: 2.4rem; }
.sec02-item-title { min-height: 10rem; font-size: 2.4rem; text-align: center;}
.sec02-item-btn { margin: 3rem -3rem 0; padding: 2rem; }
.sec02-item-pic { max-width: 21.5rem; margin: 1rem auto 0;}
}

.sec02-point { margin-top: 3rem;}
.sec02-point-title { position: relative; padding: 2rem; background-color: var(--cl-wh); font-weight: var(--ff-base-bold); font-size: 1.8rem; text-align: center; border-radius: 1rem;}
.sec02-point-title::after { position: absolute; top: 100%; left: 0; right: 0; margin: 0 auto; content: ""; display: block; width: 2rem; height: 2rem; background-color: var(--cl-wh); clip-path: polygon(50% 100%, 0 0, 100% 0);}
.sec02-point-pic { width: 15rem; margin: 3rem auto 0; }

@media print, screen and (min-width: 640px) {
.sec02-point { display: grid; grid-template-columns: 1fr 23rem; gap: 3rem; align-items: center;}
.sec02-point-title { padding: 2rem 3rem; font-size: 3.6rem; text-align: left; line-height: 1.5;}
.sec02-point-pic { width: 100%; margin: 0; }
.sec02-point-title::after { position: absolute; top: 50%; left: 100%; right: auto; margin: 0; width: 3rem; height: 3rem; clip-path: polygon(0 0, 0 100%, 100% 80%);}

}

.sec02-topics { margin-top: 3rem;}
.sec02-topics-title { display: grid; grid-template-columns: max-content 1fr; align-items: center; gap: 1rem; font-weight: var(--ff-base-bold); font-size: 1.8rem; }
.sec02-topics-title::before { content: ""; display: block; width: 6rem; height: 6rem; background: url(../../assets/images/sec02_topics.svg) no-repeat center center / contain; }
.sec02-topics-title + p { margin: 1rem 0 2rem; }

@media print, screen and (min-width: 640px) {
.sec02-topics { margin-top: 10rem;}
.sec02-topics-title { gap: 2rem; font-size: 3.6rem; }
.sec02-topics-title::before { width: 8rem; height: 6rem; }
.sec02-topics-title + p { margin: 2rem 0 3rem; }
}



/* modal */
.js-modal { visibility: hidden; opacity: 0; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 140; transition: 0.3s; }
.js-modal.is-active { visibility: visible; opacity: 1; }
.modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); cursor: pointer; }
.modal-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 90%; height: 80%; max-width: 126rem;}
.modal-content-inner { width: 100%; height: 100%; max-width: 126rem; background: var(--cl-bg-gr); padding: 2rem; overflow-y: scroll; border-radius: 1rem; }
.modal-close { position: absolute; top: -2.5rem; right: -2.5rem; width: 5rem; height: 5rem; display: grid; align-items: center; justify-content: center; line-height: 1; background-color: var(--cl-key); border-radius: 50%; color: var(--cl-wh); border: none; z-index: 20; cursor: pointer; transition: 0.3s; font-size: 3.8rem; }

.modal-pic { border-radius: 1rem; overflow: hidden;}
.modal-title { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; color: var(--cl-key); font-size: 1.8rem; font-weight: var(--ff-base-bold);}
.modal-title span { display: inline-flex; align-items: center; justify-content: center; width: 4rem; height: 4rem;  background-color: var(--cl-wh); border-radius: 0.5rem; font-size: 1.6rem;}
.modal-catch { margin-top: 1rem; font-size: 1.6rem; font-weight: var(--ff-base-bold);}
.modal-txt { margin-top: 0.5rem;}
#modal01 .modal-content .c-grid { gap: 3rem;}
#modal01 .modal-arr { position: relative; margin-top: 1rem; padding-left: 1.5em; font-weight: var(--ff-base-bold);}
#modal01 .modal-arr span { background:linear-gradient(transparent 60%, #FFF23F 60%);}
#modal01 .modal-arr::before { position: absolute; top: 0.5rem; left: 0; content: ""; display: block; width: 1em; height: 1em; background: url(../../assets/images/ar_modal.svg) no-repeat center center / contain ; }
#modal02 .modal-pic { margin-top: 1rem;}
#modal03 .modal-pic { margin-top: 1rem;}

@media print, screen and (min-width: 640px) {
.modal-content-inner { padding: 8rem; }
.modal-pic { border-radius: 1.8rem; max-width: 68rem; }
.modal-title { gap: 1.5rem; margin-top: 3rem; font-size: 3.2rem; }
.modal-title span { width: 6rem; height: 6rem; border-radius: 1rem; font-size: 3.6rem;}
.modal-catch { margin-top: 2rem; font-size: 2.4rem; line-height: 1.4; }
.modal-txt { line-height: 1.4; }
#modal01 .modal-arr { font-size: 1.8rem;}
#modal01 .modal-arr::before { top: 0.6rem; width: 2rem; height: 2.6rem; }
#modal02 .modal-pic { margin-top: 3rem;}
#modal02 .modal-item + .modal-item { margin-top: 6rem;}
#modal03 .modal-pic { margin-top: 3rem;}
#modal03 .c-grid { align-items: center;}

}







/* sec03
-------------------------------------------------------------------------*/

#sec03 {}
.sec03-pic {}
.sec03-txtbox { padding: 2rem; background-color: var(--cl-bg-gr); border-radius: 1rem;}
.sec03-title { display: grid; grid-template-columns: max-content 1fr; align-items: center; gap: 0.5rem; padding-bottom: 0.5rem; font-size: 1.6rem; font-weight: var(--ff-base-bold); color: var(--cl-key); border-bottom: var(--cl-key) 1px solid;}
.sec03-title::before { content: ""; display: block; width: 2em; height: 2em; background: url(../../assets/images/sec03_title_ico.svg) no-repeat center center / contain;}
.sec03-list { margin-top: 1rem;}
.sec03-item { display: grid; grid-template-columns: max-content 1fr; align-items: baseline; gap: 0.5rem; margin-top: 0.5rem; font-weight: var(--ff-base-bold);}
.sec03-item::before { content: "●"; color: var(--cl-key); font-size: 1.3rem;}

@media print, screen and (min-width: 640px) {
#sec03 .c-grid._grid-p1-2 { grid-template-columns: 30rem 1fr; align-items: center; gap: 4rem;}
#sec03 .c-grid + .c-grid { margin-top: 4rem;}
.sec03-txtbox { padding: 3rem; }
.sec03-title { gap: 1rem; padding-bottom: 0.5rem; font-size: 2.4rem;}
.sec03-title::before { width: 4.4rem; height: 3.2rem; }
.sec03-list { margin-top: 1.5rem;}
.sec03-item { gap: 0.5rem; margin-top: 1rem; font-size: 1.8rem; line-height: 1.6;}
.sec03-item::before { line-height: 1; transform: translate(0,-0.2rem);}

}




/* sec04
-------------------------------------------------------------------------*/
.sec04-list { margin-top: 3rem;}
.sec04-item { padding: 2rem; background-color: var(--cl-bg-gr); border-radius: 1rem; font-weight: var(--ff-base-bold);}
.sec04-bottom { display: grid; gap: 0.5rem; margin-top: 2rem; padding: 2rem; border: var(--cl-border) 1px solid; border-radius: 1rem; font-weight: var(--ff-base-bold);}
.sec04-bottom img { width: 80%; max-width: 29rem;}

@media print, screen and (min-width: 640px) {
.sec04-list { margin-top: 8rem;}
.sec04-item { padding: 3rem; font-size: 1.8rem;}
.sec04-bottom { grid-template-columns: max-content max-content; align-items: center; justify-content: center; gap: 1rem; margin-top: 10rem; padding: 4rem 2rem; font-size: 3.6rem;}
.sec04-bottom img { width: 100%; max-width: 29.2rem;}

}





