@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; font-weight: normal; }
img { max-width: 100%; height: auto; display: block; }
header,footer,main,aside,picture { display: block; }

button[type="submit"],
input[type="submit"] {
/* ブラウザデフォルトのスタイルをリセット */
appearance: none;
/* 背景色をリセット */
background: none;
/* 枠線をリセット */
border: none;
font: inherit; /* 親要素のフォントスタイルを継承 */
color: inherit; /* 親要素のテキストカラーを継承 */
}


/* iOS Safari tap reset */
body {-webkit-tap-highlight-color: transparent;}

input,
textarea,
select {font-size: 1.6rem;}



/* print set
--------------------------------------------------------------*/
@media print{
html { width: 1280px; }
.header { position: relative !important; }/* fixheader clear */
}


/* root set
--------------------------------------------------------------*/

/* color */
:root {
    --cl-key01: #F69500;
    --cl-key02: #F65F00;
    --cl-key03: #934E1B;
    --cl-txt: #333;
    --cl-wh: #fff;
    --cl-error: #E30000;
    --cl-bg: #FFFDF2;
    --cl-bg-sub: #F0F9FD;
    --cl-bg-wh: #fff;
    --cl-boder: #989898;
}

/* fixheader height */
:root { --header-height: 6rem; }
@media print, screen and (min-width: 640px) {
:root { --header-height: 13rem; }
}

/* font set */
:root {
    /* font: style weight size / line-height family */
    --ff-base: normal 500 1.4rem / 1.6 "Zen Maru Gothic", sans-serif;
    --ff01f: ;
    --ff01w: ;
}




/*----------------------------------------------------------------------------------------------------------------------------

base set

----------------------------------------------------------------------------------------------------------------------------*/
html { font-size:calc(100vw / 37.5); scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
html:has( body._fixed) { overflow: hidden;}
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); font: var(--ff-base); overflow-x: hidden; }
a { color: var(--cl-txt); outline:none; text-decoration:none; }
a[href^="tel:"] { pointer-events:auto;}
.page-wrapper { overflow-x: hidden; }

@media print, screen and (min-width: 640px) {
html { font-size: calc(100vw / 128); }
body { font-size: 1.6rem; }
.page-wrapper { overflow-x: visible; }
a[href^="tel:"] { pointer-events:none;}
}

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



/*----------------------------------------------------------------------------------------------------------------------------

utility

----------------------------------------------------------------------------------------------------------------------------*/

/* utility - base
---------------------------------------------------- */

/* utility - base responsive */
.u-inner { max-width: 100rem; margin: 0 auto; width: 90%; }
.u-inner._lg { max-width: 120rem;}
.u-inner._min { max-width: 80rem;}
.u-only-pc { display: none; }

@media print, screen and (min-width: 640px) {
.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; }

.u-pagetop { display: inline-block; position: absolute; right: 5rem; margin-top: -10rem;}

/*----------------------------------------------------------------------------------------------------------------------------

base layout

----------------------------------------------------------------------------------------------------------------------------*/

/* body
--------------------------------------------------------------*/
body._fixed { overflow: hidden;}



/* header
--------------------------------------------------------------*/

/* header */
.header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height); display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem; margin: 0 auto; z-index: 20; background: var(--cl-bg); transition: box-shadow 0.3s ease;}

.header.is-scrolled { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); }

.header-logo { width: 10.5rem;}
.header-logo-link { display: block;}
.header-logo-pic { width: 11.8rem; }
.header-nav { display: none; }

@media print, screen and (min-width: 640px) {
.header { position: fixed; top: 0; left: 50%; transform: translateX(-50%); padding: 1rem 3rem;}
.header-logo { width: 21.5rem;}
.header-logo-link { display: block; width: 100%; }
.header-nav { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem;}
.header-navlist { display: flex; align-items: center; flex-direction: row; height:4.4rem;}
.header-navlist-item { text-align: center;  border-right: 4px dotted var(--cl-key02); padding: 0 2rem; height: 100%; }
.header-navlist-item:first-child { border-left: 4px dotted var(--cl-key02);}
.header-navlist-item .font-sm { font-size: 1.2rem; line-height: 1em;}
.header-navlist-item a { font-size: 1.6rem; line-height: 1em; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end;}
.header-navlist-sub { font-size: 1.2rem; color: var(--cl-key02);}
.header-nav-contact { max-width: 40rem; width: 100%; white-space: nowrap;}
.header-nav-contact .contactlink { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 0.5rem 1rem; border-radius: 1.5rem; background-color: var(--cl-key01); color: var(--cl-wh); }
.header-nav-contact .contactlink-num { display: flex; flex-direction: row; align-items: center; gap: 0.5rem; font-size: 3.1rem; line-height: 1.25em; font-weight: 600;}
.header-nav-contact .contactlink-num img { width: 2.5rem; height: auto;}
.header-nav-contact .contactlink-txt {font-size: 1.4rem; line-height: 1em;}
}







/* footer
--------------------------------------------------------------*/

/* footer */
.footer { background: var(--cl-bg-wh); padding: 3rem 0 6.5rem;}
.footer-wrap { }
.footer-info { margin-bottom: 1.5rem; text-align: center;}
.footer-info-logo { width: 16.8rem; margin: 1.5rem auto; }
.footer-info-txt { font-size: 1.4rem;color: var(--cl-txt);}
.footer-copy { font-size: 1.2rem; margin-top: 1rem; color: var(--cl-txt);}

.footer-facility {}
.footer-facility + .footer-facility { margin-top: 2rem;}
.footer-facility-name { color: var(--cl-key02); font-weight: 600; font-size: 1.8rem;}
.footer-facility-info { }



.footer-policy { font-size: 1.4rem; text-decoration: underline; color: var(--cl-txt); text-align: center;}
.footer-policy:hover { text-decoration: none;}

.fmenu {}
.fmenu-list { display: flex; flex-direction: column;}
.fmenu-list-item {}
.fmenu-list-item a { color: var(--cl-txt); font-size: 1.4rem;}

.tellink { color: var(--cl-txt);}



@media print, screen and (min-width: 640px) {
.footer { padding: 6rem 4rem 2rem;}
.footer-wrap { }
.footer-info { margin-bottom: 5rem;}
.footer-info-logo { width: 18.3rem;}
.footer-copy { font-size: 1.4rem; margin-top: 2rem; text-align: center;}

.fmenu {}
.fmenu-list { flex-direction: row; justify-content: center;}
.fmenu-list-item { border-right: 4px dotted var(--cl-key02); padding: 0 2rem;}
.fmenu-list-item:first-child { border-left: 4px dotted var(--cl-key02);}
.fmenu-list-item a { color: var(--cl-txt);}

.sns { margin: 2rem 0 0;}
}


/* spitem
--------------------------------------------------------------*/

/* spitem
--------------------------------------------------------------*/

/* spnav-btn */
.spitem-btn { position: fixed; top: 0; right: 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; border: none; background-color:var(--cl-key01); cursor: pointer; width: 6rem; height: 6rem; border-radius: 0; outline: none; transition:0.5s; z-index: 130; cursor: pointer;}
.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; color: var(--cl-wh);}

._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: 2rem 2rem; overflow-y: scroll; background-color: var(--cl-key01);}



/* spnavMenu */
.spnav {  }
.spnav-item { font-size: 1.6rem; font-weight: 600; letter-spacing: 0.18em; text-align: center; }
.spnav-item a { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1rem; width: 100%; padding: 1rem 0; border-bottom: 3px dotted var(--cl-wh); color: var(--cl-wh); }




/* footnav */

.footnav { position: fixed; left: 0; bottom: 0; width: 100%; z-index: 100;}
.contactlink { display: flex; flex-direction: column; align-items: center; padding: 1rem; background-color: var(--cl-key01); color: var(--cl-wh); }
.contactlink-num { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 0.5rem; font-size: 2rem; font-weight: 600; line-height: 1.25em; width: 100%;}
.contactlink-txt {font-size: 1.4rem; line-height: 1em;}

@media print, screen and (min-width: 640px) {
.contactlink { flex-direction: row;}
.contactlink-txt {font-size: 1.6rem; line-height: 1.5em;}
.contactlink-num { width: auto;}
}


/* main contents
--------------------------------------------------------------*/
.main { min-height: 50vh;}
@media print, screen and (min-width: 640px) {
.main { }
}





/*----------------------------------------------------------------------------------------------------------------------------

component

----------------------------------------------------------------------------------------------------------------------------*/


/* c-modal
--------------------------------------------------------------*/

/* c-modal */
.c-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; opacity: 0; visibility: hidden; transition: 0.2s; z-index: 200;background-color: rgba(0,0,0,0.5);  }
.c-modal-body { position: absolute; top: 50%; left: 50%; width: calc(100% - 4rem); padding: 5rem 2rem 2rem; background-color: var(--cl-wh); transform: translate(-50%,-45%); transition: 0.5s; border-radius: 1rem; }
.c-modal-contents { overflow-y: scroll; max-height: 70vh; }
._view.c-modal { opacity: 1; visibility: visible !important; }
._view .c-modal-body { transform: translate(-50%,-50%); }
@media print, screen and (min-width: 640px) {
.c-modal-body { padding: 10rem 8rem 8rem; max-width: 117rem; }
}



.c-modal-close { position: absolute; top: 1rem; right: 1rem; -webkit-appearance: none; -moz-appearance: none; appearance: none; border: none; width: 3rem; height: 3rem; outline: none; border-radius: 100%; }
.c-modal-close::before,
.c-modal-close::after { content: ""; position: absolute; left: 50%; width: 2rem; height: 2px; background-color: var(--cl-key01); transform: translateX(-50%); }
.c-modal-close::before { top: calc(50% - 1px); transform: translateX(-50%) rotate(45deg); }
.c-modal-close::after  { bottom: calc(50% - 1px); transform: translateX(-50%) rotate(-45deg); }

@media print, screen and (min-width: 640px) {

.c-modal-close { top: 2rem; right: 2rem; }
.c-modal-close::before,
.c-modal-close::after { width: 3rem; }

}



/* title
--------------------------------------------------------------*/
.pagettl { position: relative; width: 100%; margin-top: var(--header-height);}
.pagettl-ttl { position: absolute; width: 100%; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); text-align: center;}
.pagettl-ttl-en { color: var(--cl-key03); font-size: 1.4rem;}
.pagettl-ttl-jp { color: var(--cl-key03); font-size: 2rem;}
.pagettl._lg { background: url(/assets/images/matsuyoshi/pagettl.jpg) no-repeat center center; background-size: cover; height: 18rem; border-radius: 2rem; position: relative;}
.pagettl._lg::after { content: ""; display: block; position: absolute; background: url(/assets/images/deco_pagettl.png) no-repeat bottom center; background-size: contain; width: 98vw; height: 10rem; bottom: -2rem; left: 50%; transform: translateX(-50%); z-index: 1;}
.pagettl._lg .pagettl-ttl-jp , .pagettl._lg .pagettl-ttl-en { color: var(--cl-wh);}

@media print, screen and (min-width: 640px) {
.pagettl { }
.pagettl._notfound { padding-top: var(--header-height);}
.pagettl-ttl { }
.pagettl-ttl-en { font-size: 2.6rem;}
.pagettl-ttl-jp { font-size: 4rem;}
.pagettl._lg { height: 35rem;}
.pagettl._lg::after { height: 30rem; bottom: -16rem; left: 50%;}
}




/* c-sec
--------------------------------------------------------------*/
.c-sec { padding: 6rem 0;}
.c-sec._bg { background-color: var(--cl-bg-sub);}
.c-sec._cloud { background: url(/assets/images/bg_cloud.png) no-repeat center top;}
.c-sec-ttl { text-align: center; font-size: 2.2rem; font-weight: 700; color: var(--cl-key01); margin-bottom: 2rem;}
.c-sec-ttl-jp { font-size: 2rem; color: var(--cl-txt); display: inline-block; border-bottom: 4px dotted var(--cl-key01);}
.c-sec-ttl-en { font-size: 1.2rem;}
.c-sec-catchtxt { font-size: 1.6rem; line-height: 1.8em; color: var(--cl-txt); margin-bottom: 2rem; text-align: center;}
.c-sec-leadtxt { font-size: 1.4rem; line-height: 1.8em; color: var(--cl-txt); margin-bottom: 2rem; text-align: center;}
.c-sec-line { margin: 0 auto;}
.c-sec-line img { margin: 0 auto;}
.c-sec-txt { margin-bottom: 4rem; text-align: center;}
@media print, screen and (min-width: 640px) {
.c-sec { padding: 13rem 0;}
.c-sec-ttl { font-size: 4.3rem; margin-bottom: 4rem; position: relative; z-index: 1;}
.c-sec-ttl-jp { font-size: 2.8rem;}
.c-sec-ttl-en { font-size: 1.4rem;}
.c-sec-catchtxt { font-size: 1.8rem; margin-bottom: 4rem;}
.c-sec-leadtxt { font-size: 1.6rem; margin-bottom: 5rem;}
.c-sec-line { margin: 0 auto;}
.c-sec-line img { margin: 0 auto;}
}

.c-sec-ttl._ico { position: relative;}
.c-sec-ttl._ico::before { content: ""; display: inline-block; background: url(/assets/images/ico_logo.svg) no-repeat center; width: 4rem; height: 4rem; background-size: contain; position: absolute; top: -1.5rem; left: 50%; transform: translateX(-50%);}
.c-sec-ttl-jp._wh { color: var(--cl-wh);}
.c-sec-catchtxt._wh { color: var(--cl-wh);}
.c-sec-leadtxt._wh { color: var(--cl-wh);}
.c-sec-ttl-jp._noneline { border: none;}

.c-sec._deco::after { content: ""; display: block; width: 100%; height: 28rem; background: url(/assets/images/foot_deco.png) no-repeat center center; margin: -14rem auto 0; background-size: contain;}


/* c-content
--------------------------------------------------------------*/
.c-content { margin-bottom: 2rem;}
.c-content-ttl { margin: 0 auto 2rem;}
.c-content-ttl._center { text-align: center;}
.c-content-subttl { font-size: 1.6rem; color: var(--cl-key01); margin-bottom: 0.5rem;}
.c-content-lead { font-size: 1.6rem; text-align: left; margin-bottom: 4rem;}
.c-content-ttl > span { font-size: 1.8rem; display: inline-block; border-bottom: 3px dotted var(--cl-key01);}
.c-content-txt { }
.c-content-txt + .c-content-txt { margin-top: 2rem;}
.c-content-txt._center { text-align: center;}
@media print, screen and (min-width: 640px) {
.c-content { margin-bottom: 4rem;}
.c-content-ttl { margin: 0 auto 4rem;}
.c-content-ttl._center { }
.c-content-subttl { font-size: 1.8rem; margin-bottom: 1rem;}
.c-content-lead { font-size: 1.8rem; margin-bottom: 4rem;}
.c-content-ttl > span { font-size: 2.2rem; border-bottom: 5px dotted var(--cl-key01);}
.c-content-txt { }
}

.bgblock { background-color: var(--cl-wh); border-radius: 2rem; padding: 2rem ;  margin: 0 auto 4rem;}

@media print, screen and (min-width: 640px) {
.bgblock { border-radius: 4rem; padding: 8rem;}
}



/* c-colbox
--------------------------------------------------------------*/
.c-colbox {}
.c-colbox-item { display: flex; flex-direction: column; background-color: var(--cl-wh); border-radius: 2rem; overflow: hidden;}
.c-colbox-img { width: 100%; }
.c-colbox-img img { width: 100%;}
.c-colbox-txt { width: 100%; padding: 2rem;}
.c-colbox-txt-ttl { font-size: 1.8rem; font-weight: 600; color: var(--cl-key01); margin-bottom: 1rem;}
.c-colbox-txt-p { }

.c-colbox-item._rev {}
.c-colbox-item._rev .c-colbox-img {}

.c-colbox-item + .c-colbox-item { margin-top: 2rem;}

@media print, screen and (min-width: 640px) {
.c-colbox-item { flex-direction: row;}
.c-colbox-img { width: calc(100% / 2); }
.c-colbox-txt { width: calc(100% / 2); padding: 4rem;}
.c-colbox-txt-ttl { font-size: 2rem;}

.c-colbox-item._rev { flex-direction: row-reverse;}

.c-colbox-item + .c-colbox-item { margin-top: 4rem;}
}



/* contentlist
--------------------------------------------------------------*/
.contentlist {}
.contentlist-item { display: flex; flex-direction: column; align-items: flex-start; padding: 1rem; border-bottom: 1px dotted var(--cl-boder);}
.contentlist-item:first-child { padding-top: 0;}
.contentlist-ttl { font-size: 1.4rem; color: var(--cl-key02);}
.contentlist-txt { font-size: 1.4rem;}
@media print, screen and (min-width: 640px) {
.contentlist {}
.contentlist-item { flex-direction: row; align-items: center; padding: 1.5rem;}
.contentlist-item:first-child {}
.contentlist-ttl { font-size: 1.4rem; width: 15%;}
.contentlist-txt { font-size: 1.6rem; width: 85%;}
}



/* sec-round
--------------------------------------------------------------*/
.sec-round { background-color: var(--cl-wh); position: relative; margin-top: 9rem; padding-top: 0;}
.sec-round::before { display: inline-block; content: ""; position: absolute; width: 100%; height: 12rem; top: -12rem; background: url(/assets/images/bg_round_bl.svg) no-repeat center bottom; background-size: 100%; }
.sec-round::after { display: inline-block; content: ""; background: url(/assets/images/ico_sun.png) no-repeat center bottom; background-size: 50%; width: 50%; height: 9rem; position: absolute; top: -9rem; left: 50%; transform: translateX(-50%);}

.sec-round.floormap { background-color: var(--cl-wh); padding-bottom: 20rem; margin-top: 0;}
.sec-round.floormap::before { background: url(/assets/images/bg_round_wh.svg) no-repeat center bottom; background-size: 100%; }
.sec-round.floormap::after { background: url(/assets/images/deco_secfloormap.png) no-repeat center bottom; background-size: contain; width: 100%; height: 8rem; top: -4rem;}

.sec-round.faq { margin-top: 0;} 
.sec-round.faq::before { background: url(/assets/images/bg_round_bl.svg) no-repeat center bottom; background-size: 100%; }
.sec-round.faq:after { background: url(/assets/images/deco_faq.png) no-repeat center bottom; background-size: 50%; width: 18rem; height: 15.3rem; top: -16rem;} 

.sec-round.message {}
.sec-round.message::before { background: url(/assets/images/bg_round_wh.svg) no-repeat center bottom; background-size: 100%; }
.sec-round.message:after { background: url(/assets/images/recruit/ico_01.png) no-repeat center bottom; background-size: 50%; width: 17rem; height: 8rem; top: -8rem;} 

.sec-round.recruit-info { background-color: var(--cl-bg-sub); margin-top: 8rem;}
.sec-round.recruit-info::before { background: url(/assets/images/bg_round_bl.svg) no-repeat center bottom; background-size: 100%; }
.sec-round.recruit-info:after { background: url(/assets/images/recruit/ico_03.png) no-repeat center bottom; background-size: 50%; width: 15rem; height: 10rem; top: -10rem;} 

@media print, screen and (min-width: 640px) {
.sec-round { margin-top: 12rem; }
.sec-round::after { background-size: contain; width: 100%; height: 11rem; top: -15rem;}

.sec-round.floormap { margin-top: 8rem;}
.sec-round.floormap::after { width: 100%; height: 21.5rem; top: -15rem;}

.sec-round.message:after { width: 37rem; height: 17rem; top: -18rem;} 

.sec-round.recruit-info { margin-top: 18rem;}
.sec-round.recruit-info:after { width: 20rem; height: 13rem; top: -13rem;} 
}



/* btn
--------------------------------------------------------------*/
.c-btn { display: flex; justify-content: center;}
.c-btn a , .c-btn .link { display: inline-block; background-color: var(--cl-key01); color: var(--cl-wh); border: 2px solid #fff; font-size: 1.4rem; text-align: center; padding: 0.6rem 2rem; margin: 0 auto; border-radius: 4rem;}
@media print, screen and (min-width: 640px) {
.c-btn a { font-size: 1.6rem; text-align: center; padding: 1rem 3rem;}
}



/* form
--------------------------------------------------------------*/
.form { margin-top: 3rem;}
.form-list { display: flex; flex-direction: column;}
.form-list + .form-list { margin-top: 2rem;}
.form-list dt { width: auto;}
.form-list dd { width: 100%;}
.form-disc { font-size: 1.2rem; color: var(--cl-txt); margin: 0.5rem 0 0.5rem;}

.addresswrap { }
.addresswrap input + input { margin-top: 1rem;}
.addresswrap .zip { width: 10em;}
.addresswrap .zipbox p { display: flex; align-items: center; gap: 0.5rem;}
.form-address {}
.form-address .p-street-address { margin-bottom: 1rem;}

.form-check { text-align: center; margin-top: 1rem;}
.contact-submit input { font-size: 1.8rem;}


.errTitle { font-size: 1.6rem; color: var(--cl-error); text-align: center; margin: 2rem auto;}
.error { font-size: 1.4rem; color: var(--cl-error); margin-bottom: 2rem; text-align: center;}
.error li { }
.required { color: var(--cl-key01);}

.formblock { background-color: var(--cl-wh); border-radius: 2rem; padding: 2rem ; margin: 4rem auto;}

.fill { }
.fill  { border-radius: 1rem; padding: 1rem; width: 100%; border: 1px solid var(--cl-boder);}
.page-contactconfirm .fill { border: none; padding: 0 1rem;}

.formpolicy { text-align: center; margin: 2rem;}
.formpolicy-link { text-decoration: underline; color: var(--cl-key01);}
.formpolicy-link:hover { text-decoration: none;}

.form-btn { margin-top: 2rem;}

@media print, screen and (min-width: 640px) {
.form-list { flex-direction: row;}
.form-list dt { width: 25%; margin-left: 1rem;}
.form-list dd { width: calc(75% - 1rem);}
.formblock { border-radius: 4rem; padding: 8rem; margin: 0 auto;}

}


/* news
--------------------------------------------------------------*/
.news {}
.newslist { display: flex; gap: 1rem; flex-wrap: wrap;}
.newslist-item { width: calc((100% - 1rem) / 2);}
.newslist-link { width: 100%; display: block; background-color: var(--cl-bg-wh); border-radius: 2rem; overflow: hidden; border: 2px solid #fff;}
.newslist-box { }
.newslist-thum { width: 100%; position: relative;}
.newslist-thum img { object-fit: cover; object-position: 50% 50%; aspect-ratio: 7 / 5;}
.newslist-info { padding: 1rem;}
.newslist-date { font-size: 1.2rem;}
.newslist-ttl { line-height: 1.5em;}
.newslist-tag { position: absolute; bottom: 1rem; right: 1rem; background-color: var(--cl-key02); color: var(--cl-wh); font-size: 1.2rem; padding: 0.25rem 0.5rem; border-radius: 0.8rem;}

.news-catbtn { display: flex; gap: 2rem; justify-content: center; margin-bottom: 2rem;}
.news-catbtn {}

.pagination { margin: 4rem auto;}
.nav-links { display: flex; gap: 4rem; justify-content: center; align-items: center;}
.page-numbers { font-size: 1.6rem; color: var(--cl-txt); }
.page-numbers.current { background-color: var(--cl-key01); color: var(--cl-wh); border-radius: 50%; display: flex ; width: 4rem; height: 4rem; justify-content: center; align-items: center;}

.prev.page-numbers { width: 0; height: 0; border-style: solid; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-right: 10px solid #333333; border-left: 0;}
.next.page-numbers { width: 0; height: 0; border-style: solid; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 10px solid #333333; border-right: 0;}


.newsarticle {}
.newsarticle p { }

.news-cap { display: flex; gap: 1rem; margin-bottom: 1rem;}
.news-date { font-size: 1.4rem;}
.news-cat { background-color: var(--cl-key02); color: var(--cl-wh); font-size: 1.2rem; border-radius: 0.8rem; padding: 0.25rem 1rem;}
.news-title { font-size: 2rem; font-weight: 600; margin-bottom: 1rem;}
.newsblock img { border-radius: 1.6rem;}
.newsblock img + img , .newsblock img + p , .newsblock p + img , .newsarticle p + p { margin-top: 2rem;}

@media print, screen and (min-width: 640px) {
.newslist { gap: 2rem;}
.newslist-item { width: calc((100% - 6rem) / 4);}
.newslist-info { padding: 1.5rem;}
.news-cap { margin-bottom: 2rem;}
.newslist-date { font-size: 1.4rem;}
.news-title { font-size: 3rem; margin-bottom: 2rem;}

.news-catbtn { margin-bottom: 4rem;}
}
.nav-links.detail { margin-top: 3rem;}

/* facilitylist
--------------------------------------------------------------*/
.facilitylist { display: flex; flex-direction: column; gap: 6rem; margin-top: 4rem;}
.facilitylist-item { width: 100%; position: relative;}
.facilitylist-item::before { content: ""; display: inline-block; position: absolute; top: -2rem; left: 50%; transform: translateX(-50%); width: 5rem; height: 4rem; background: url(/assets/images/ico_matsuyoshi.svg) no-repeat center; background-size: contain;}
.facilitylist-item-top { background-color: var(--cl-bg-wh); padding: 2rem; border-radius: 1.6rem 1.6rem 0 0;}
.facilitylist-ttl { font-size: 2rem; font-weight: 600; text-align: center;}
.facilitylist-txt { margin-top: 2rem;}
.facilitylist-img { border-radius: 0 0 1.6rem 1.6rem; overflow: hidden;}
.facilitylist-item-btm .c-btn { margin-top: -2rem;}

@media print, screen and (min-width: 640px) {
.facilitylist { flex-direction: row; gap: 3rem; margin-top: 0;}
.facilitylist-item { width: calc(100% / 2);}
.facilitylist-item::before { width: 7.3rem; height: 5rem;}
.facilitylist-item-top { padding: 4rem;}
}



/* utility
--------------------------------------------------------------*/
.u-contentwrap { background-color: var(--cl-wh); border-radius: 2rem; padding: 2rem;}
.u-contentwrap + .u-contentwrap { margin-top: 4rem;}
@media print, screen and (min-width: 640px) {
.u-contentwrap { border-radius: 4rem; padding: 4rem;}
}

/*----------------------------------------------------------------------------------------------------------------------------

page unique

----------------------------------------------------------------------------------------------------------------------------*/


/* kv
--------------------------------------------------------------*/
.kv {}
.kv-wrap { position: relative;}
.kv-txt { position: absolute; left: 50%; transform: translateX(-50%); bottom: -7rem; width: 100%;}
.kv-txt img { margin: 0 auto;}
.kv-img {margin: 0 auto;}
.kv-img img {margin: 0 auto;}

@media print, screen and (min-width: 640px) {
.kv { }
.kv-txt { bottom: -12rem;}
}




/* page-home
--------------------------------------------------------------*/
.top-about { background-color: var(--cl-bg-wh); position: relative; padding: 0;}
.top-about::before { content: ""; display: block; position: absolute; top: -9rem; width: 100%; height: 9rem; background: url(/assets/images/bg_about_top.png) no-repeat center; background-size: cover;}
.top-about::after { content: ""; display: block; position: absolute; bottom: -10rem; width: 100%; height: 10rem; background: url(/assets/images/bg_about_btm.png) no-repeat center;background-size: cover;}
.top-about .c-sec-ttl { position: relative; z-index: 10;}
.top-about .c-sec-catchtxt { position: relative; z-index: 10;}


.top-facility { margin-top: 8rem;}
.top-facility .c-btn { margin-top: -2rem;}


.top-staff { background-color:var(--cl-wh) ;}
.top-staff-txt { font-size: 1.8rem; color: var(--cl-key02); text-align: center;}


.top-recruit .u-inner { background: url(/assets/images/bg_recruit.jpg) no-repeat center; background-size: cover; border-radius: 2rem; border: 2px solid #fff;}
.top-recruit .c-sec-ttl-jp { margin-top: 4rem;}
.top-recruit .c-btn { margin-bottom: -2rem;}


#top-news { margin-bottom: 8rem; padding-top: 3rem;}


.top-office {}
.contentlist + .c-content-subttl { margin-top: 2rem;}
p + .contentlist { margin-top: 2rem;}

.office-content { background-color: var(--cl-wh); padding: 2rem; border-radius: 2rem;}
.office-content-item { }


@media print, screen and (min-width: 640px) {
.top-about::before { top: -20rem; height: 38rem;}
.top-about::after { bottom: -38rem; height: 38rem;}

.top-facility { margin-top: 40rem;}

.top-staff { background: url(/assets/images/bg_topstaff.png) no-repeat center; background-size: contain; margin: 8rem 0;}
.top-staff-txt { font-size: 2rem;}

#top-news { margin-bottom: 16rem; padding-top: 6rem;}

.contentlist + .c-content-subttl { margin-top: 4rem;}
p + .contentlist { margin-top: 4rem;}

.office-content { padding: 4rem;}
.office-content-item { }

}




/* page-contact
--------------------------------------------------------------*/
.page-contact .c-sec-line { margin: 4rem auto;}
.page-contact .c-btn { margin: 2rem auto 4rem;}

.page-contact .pagettl._lg { background: url(/assets/images/contact/pagettl.jpg) no-repeat center center; background-size: cover; } 

.cta-info { margin-bottom: 2rem;}
.cta-info-item {}
.cta-info-txt { font-size: 1.6rem; font-weight: 600; text-align: center;}
.cta-info-num { font-size: 3.5rem; font-weight: 600; color: var(--cl-key02); display: flex; justify-content: center; gap: 1rem;}
.cta-info-time { text-align: center;}

@media print, screen and (min-width: 640px) {
.cta-info { margin-bottom: 4rem;}
.cta-info-txt { font-size: 2.4rem;}
.cta-info-num { font-size: 7.3rem;}
}

.wpcf7-form-control.wpcf7-submit { display: block; text-align: center;}
.wpcf7-spinner { display: none !important;}

/* page-recruit
--------------------------------------------------------------*/
.page-recruit .pagettl._lg { background: url(/assets/images/recruit/pagettl.jpg) no-repeat center center; background-size: cover; } 

.message { background-image: url(/assets/images/recruit/ico_02.png); background-repeat: no-repeat; background-position: bottom center; background-size: auto;}
.message-pic { border-radius: 2rem; overflow: hidden; margin-bottom: 4rem;}


.c-sec.voice { background-color: var(--cl-wh); }

.recruit-info { }
.recruit-infobox { background-color: var(--cl-bg-wh); padding: 2rem; border-radius: 2rem; margin-bottom: 4rem;}
.recruit-infobox .contentlist .contentlist-item { align-items: flex-start;}

.voice-box { }
.voice-box + .voice-box { margin-top: 4rem;}
.voice-box-img { position: relative; width: 100%;}
.voice-box-img img { border-radius: 2rem;}
.voice-box-img::after { content: ""; display: inline-block; width: 23rem; height: 11.2rem; background: url(/assets/images/recruit/cloud01.png) no-repeat center center; background-size: contain; position: absolute; bottom: -4rem; left: -1rem;}
.voice-box-info { width: 100%; padding-top: 2rem;}
.voice-box-ttl { margin-bottom: 2rem;}
.voice-box-ttl-cat { font-size: 2rem; font-weight: 600;}
.voice-box-ttl-year { font-size: 1.6rem;}
.voice-box-txt {}

.voice-box._rev { flex-direction: row-reverse;}
.voice-box._rev .voice-box-img::after { content: ""; display: inline-block; background: url(/assets/images/recruit/cloud02.png) no-repeat center center; background-size: contain; bottom: -4rem; left: auto; right: -1rem;}
.voice-box._rev .voice-box-info { padding-right: 0rem; padding-left: 0;}

@media print, screen and (min-width: 640px) {
.recruit-infobox { padding: 6rem; margin-bottom: 4rem;}

.voice-box { display: flex;}
.voice-box + .voice-box { margin-top: 8rem;}
.voice-box-img { width: calc(100% / 2);}
.voice-box-info { width: calc(100% / 2); padding-left: 3rem; padding-top: 0;}
.voice-box-img::after { width: 31.2rem; bottom: -2rem; left: -5rem;}
.voice-box._rev .voice-box-img::after { bottom: -2rem; left: auto; right: -5rem;}
.voice-box._rev .voice-box-info { padding-right: 3rem;}
}


/* page-facility
--------------------------------------------------------------*/
.page-facility { }
.page-facility .c-sec.news .c-btn { margin-top: 4rem;}


.page-matsuyoshi .pagettl._lg { background: url(/assets/images/matsuyoshi/pagettl.jpg) no-repeat center center; background-size: cover; }
.page-joshu .pagettl._lg { background: url(/assets/images/joshu/pagettl.png) no-repeat center center; background-size: cover; }

.facilityinfo { display: flex; flex-wrap: wrap; gap: 1.5rem;}
.facilityinfo-item { width: calc((100% - 1.5rem) / 2);}
.facilityinfo-ttl { font-size: 1.6rem; text-align: center;}
.facilityinfo-img { border-radius: 1.6rem; width: 100%;}

.office-content._min { max-width: 80rem; margin: auto;}

.c-sec.facility-pic { padding-top: 0;}
.facility-map { margin-top: 1rem;}
.facility-map iframe { }

.floormapcontent { }
.floormapcontent-item { }
.floormapcontent-item + .floormapcontent-item { margin-top: 3rem;}
.floormapcontent-ttl { font-size: 2rem; font-weight: 600; color: var(--cl-key02);}
.floormapcontent-txt { margin-top: 1rem;}

.faqbox { background-color: var(--cl-wh); padding: 2rem; border-radius: 2rem;}
.faq-list {}
.faq-list-item { border-bottom: 1px dotted var(--cl-boder); padding-bottom: 2rem;}
.faq-list-item + .faq-list-item { padding-top: 2rem;}
.faq-list-item:last-child { border-bottom: none; padding-bottom: 0;}
.faq-list-q { margin-bottom: 1rem; display: flex; gap: 1rem; align-items: center;}
.faq-list-qicon { width: 5rem; height: 4.2rem;}
.faq-list-qicon img { width: 100%; height: auto;}
.faq-list-qtxt { font-size: 1.6rem; font-weight: 600; width: calc(100% - 5rem);}
.faq-list-a { margin-top: 1rem;}
.faq-list-atxt { }


.flowbox { background-color: var(--cl-wh); padding: 2rem; border-radius: 2rem;}
.flow-list {}
.flow-list-item { }
.flow-list-ttl { display: flex; gap: 1rem; align-items: center;}
.flow-list-num { width: 4rem; height: 4rem; border-radius: 50%; background-color: var(--cl-key01); color: var(--cl-wh); font-size: 2rem; font-weight: 600; display: flex; justify-content: center; align-items: center;}
.flow-list-numtxt { font-size: 1.8rem; font-weight: 600;}
.flow-list-txt { padding: 1rem 0 1rem 5rem; position: relative; min-height: 8rem;}
.flow-list-txt::after { content: ""; display: inline-block; width: 4rem; height: 6rem; background: url(/assets/images/dotline.svg) no-repeat top center; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.flow-list-item:last-child .flow-list-txt::after { display: none;}

@media print, screen and (min-width: 640px) {
.facilityinfo { gap: 3rem;}
.facilityinfo-item { width: calc((100% - 6rem) / 3);}
.floormapcontent-item + .floormapcontent-item { margin-top: 6rem;}
.facilityinfo-ttl { font-size: 1.8rem;}
.facilityinfo-img { }

.faqbox { padding: 6rem;} 

.flowbox { padding: 6rem;}
.flow-list-numtxt { font-size: 2rem;}
}


/* page-news
--------------------------------------------------------------*/
.page-news {}
.page-news .pagettl { height: 0rem;}
.page-news .c-sec.news { padding-top: 6rem;}
@media print, screen and (min-width: 640px) {
.page-news .pagettl { height: 15rem;}
.page-news .c-sec.news { }
}



/* 404
--------------------------------------------------------------*/
.page-404 .c-pagettl { background: var(--cl-bg-grn) url(/assets/images/bg_404_ttl.png) no-repeat top right; background-size: cover; }
.page-404 .c-sec { text-align: center;}
.c-sec.result .c-btn { margin-top: 2rem;}


/* page-privacy
--------------------------------------------------------------*/

/* page-sub調整
--------------------------------------------------------------*/
.page-privacy , .page-contact-result , .page-entry-result {}
.page-privacy .pagettl , .page-contact-result .pagettl , .page-entry-result .pagettl { height: 0rem;}
@media print, screen and (min-width: 640px) {
.page-privacy .pagettl , .page-contact-result .pagettl , .page-entry-result .pagettl { height: 15rem;}
}


#wpadminbar { position: fixed; z-index: 100000 !important; }
