@charset "UTF-8";
/*
* 基本カスタマイズCSS
*
*/


/*
* タグ再設定
*/
* {
  min-width: 0;
  min-height: 0;
}
html {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
}
body {
  margin: 0;
  padding: 0;
  text-align: justify;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}
ul, li {
  list-style: none;
}
a { color: inherit; }
a:hover {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}
p {
  font-size: 16px;
}
::placeholder { color: #909090 !important; }
:-ms-input-placeholder { color: #909090 !important; }
::-ms-input-placeholder { color: #909090 !important; }

/* リンク強調 */
a.linkEmp {
  color: #354F8B !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
}


/*
* レイアウト
*/
@media screen and (min-width:993px){
  .sp { display: none !important; }
}

.primaryWrap {
  margin: 0;
  padding: 100px 0 0 0;
  min-height: calc(100vh - 9rem);
  overflow: hidden;
}
.secondaryWrap {
  margin: 0;
  padding: 0;
}
.inner1440 {
  width: calc(100% - 40px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}
.inner1280 {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}
.inner1200 {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.inner1080 {
  width: calc(100% - 40px);
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
}
.inner1000 {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
.inner960 {
  width: calc(100% - 40px);
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}
.fixWrap {
  margin: 0;
  padding: 0;
}
.scrollStop {
  overflow: hidden;
}
/* モーダル */
.modal.fade {
  transition-duration: 0.8s;
}
.modal.in {
  transition-duration: 0.8s;
}


/*
* 共通要素
*/
.wd10 { width: 10% !important; }
.wd20 { width: 20% !important; }
.wd30 { width: 30% !important; }
.wd40 { width: 40% !important; }
.wd50 { width: 50% !important; }
.wd60 { width: 60% !important; }
.wd70 { width: 70% !important; }
.wd80 { width: 80% !important; }
.wd90 { width: 90% !important; }
.wd100 { width: 100% !important; }
/* フォント */
.fNotoSans {
  font-family: 'Noto Sans JP', sans-serif;
}
.fKiwi {
  font-family: 'Kiwi Maru', serif;
}
/* 文字揃い */
.c { text-align: center; }
.l { text-align: left; }
.r { text-align: right; }
.nowrap { white-space: nowrap; }
/* 色 */
.cFontBlue { color: #2678C0; }
.cBackBlue { background-color: #2678C0; }
.cFontLightBlue { color: #E0F1F6; }
.cBackLightBlue { background-color: #E0F1F6; }


/*
* loader
*/
/*
#pageloading-wrap {
   background: #FFE5D5;
   width: 100%;
   height: 100%;
   position: fixed;
   top: 0;
   left: 0;
   text-align: center;
   display: table;
   z-index: 99999;
}
#pageloading-icon {
   display: table-cell;
   vertical-align: middle;
}
*/


/*
* ブラインド
*/
#blind {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-blend-mode: screen;
  background-color: rgba(0,0,0,0.4);
  z-index: 80000;
}
#blind.on { display: block; }


/*
* ヘッダー
*/
header#siteHeader {
  position: fixed;
  width: 100%;
  height: 100px;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  z-index: 90000;
}
header#siteHeader .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin: 0;
  padding: 0 40px;
}
/* ロゴ */
header#siteHeader .logo {
  display: flex;
  align-items: center;
  width: 17.7%;
  height: auto;
  margin: 0;
  padding: 0;
}
header#siteHeader .logo a {
  display: flex;
  align-items: center;
}
header#siteHeader .logo img {
  width: 100%;
  max-width: 340px;
  height: auto;
}
/* リンク */
header#siteHeader ul.linkWrap {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  line-height: 1;
}
header#siteHeader ul.linkWrap li {
  margin: 0;
  padding: 0;
}
header#siteHeader ul.linkWrap li a {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 8px 0.5em;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
header#siteHeader ul.linkWrap li a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: calc(50%);
  width: 4em;
  border-bottom: #E56718 4px solid;
  transform-origin: left;
  transform: translateX(-50%) scaleX(0);
  transition-duration: 0.6s;
}
header#siteHeader ul.linkWrap li a:hover:after {
  content: "";
  transform: translateX(-50%) scaleX(1);
}
/* ボタン */
header#siteHeader ul.buttonWrap {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 28%;
  margin: 0;
  padding: 0;
}
header#siteHeader ul.buttonWrap li.recruit {
  width: 100%;
  max-width: 220px;
  min-width: 90px;
  height: 54px;
  margin: 0;
  padding: 0 5px;
}
header#siteHeader ul.buttonWrap li.contact {
  width: 100%;
  max-width: 220px;
  min-width: 200px;
  height: 54px;
  margin: 0;
  padding: 0 5px;
}
header#siteHeader ul.buttonWrap li.recruit a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  margin: 0;
  padding: 8px 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  background-color: #E56718;
  border-radius: 9999px;
}
header#siteHeader ul.buttonWrap li.recruit a:hover {
  background-color: #FF6200;
  opacity: 1;
}
header#siteHeader ul.buttonWrap li.contact a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  margin: 0;
  padding: 8px 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  background-color: #366C8E;
  border-radius: 9999px;
}
header#siteHeader ul.buttonWrap li.contact a:hover {
  background-color: #1E8ACE;
  opacity: 1;
}
header#siteHeader li.recruit a.linkEmp,
header#siteHeader li.contact a.linkEmp {
  color: #FFFFFF !important;
  border: #354F8B 2px solid !important;
}
header#siteHeader ul.buttonWrap li.contact a small {
  display: inline-block;
  margin-bottom: 5px;
}
/* 強調トグル */
header#siteHeader .emp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 80px;
  min-width: 50px;
}
header#siteHeader .empLabel {
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: -0.8px;
}
header#siteHeader .empToggle[type=checkbox] {
	display: none;
}
header#siteHeader .empToggle + label {
	position: relative;
  display: block;
	width: 50px;
	height: 28px;
	text-align: left;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: -0.8px;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	border: 1px solid transparent;
	transition: 0.3s ease-out;
	transition-property: background, box-shadow;
	-webkit-tap-highlight-color: transparent;
	        tap-highlight-color: transparent;
	border: 1px solid transparent; /* 反転モード用 */
  background: rgba(0,0,0,0.075);
	border-radius: 15px;
  cursor: pointer;
}
header#siteHeader .empToggle + label:before,
header#siteHeader .empToggle + label:after {
	position: absolute;
	content: '';
	transition: 0.3s cubic-bezier(.15,.85,.5,1.5);
	transition-property: background, left;
	box-sizing: border-box;
}
header#siteHeader .empToggle + label:after {
	display: inline-block;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	background: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
	border-radius: 100%;
	border: 1px solid transparent; /* 反転モード用 */
}
header#siteHeader .empToggle + label:before {

}
header#siteHeader .empToggle:focus + label {
	outline: 1px dotted;
	background: rgba(0,0,0,0.25);
}
header#siteHeader .empToggle[type=checkbox]:hover + label:after {

}
header#siteHeader .empBut:hover,
header#siteHeader .empToggle[type=checkbox]:hover + header#siteHeader .empBut {
	background: rgba(0,0,0,0.5);
	transition-duration: 0.1s;
}
header#siteHeader .empToggle[type=checkbox]:checked + label,
header#siteHeader .empToggle[type=checkbox]:checked:hover + header#siteHeader .empBut {
	background-color: #F6662A;
}
header#siteHeader .empToggle[type=checkbox]:checked + label:after {
	left: calc(100% - 24px);
}
header#siteHeader .empBut:hover {
	background: rgba(0,0,0,0.5);
	transition-duration: 0.1s;
}
/* トグル */
header#siteHeader ul.buttonWrap li.toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
}
header#siteHeader ul.buttonWrap li.toggle a img {
  object-fit: contain;
  width: 30px;
  height: 30px;
}

@media screen and (max-width:1279px){
  /* ロゴ */
  header#siteHeader .logo {
    width: 30%;
  }
  /* リンク */
  header#siteHeader ul.linkWrap {
    display: none;
  }
  /* ボタン */
  header#siteHeader ul.buttonWrap {
    width: 50%;
  }
  /* トグル */
  header#siteHeader ul.buttonWrap li.toggle {
    display: flex;
  }
}

/*
* 開閉メニュー
*/
#drawerMenu {
  position: fixed;
  top: 100px;
  left: calc(100vw - 450px);
  transform: translateX(100%);
  transition:ease .3s;
  display: none;
  align-items: center;
  width: 450px;
  height: calc(100vh - 100px);
  margin: 0;
  padding: 0 20px;
  overflow: scroll;
  background-color: #F7F7F7;
  z-index: 85000;
}
#drawerMenu.open {
  transform: translateX(calc(100% - 450px));
}
#drawerMenu ul.linkWrap {
  width: 100%;
  height: auto;
  margin: 20px 0;
  padding: 0;
  color: inherit;
}
#drawerMenu ul.linkWrap li {
  position: relative;
  margin: 0 0 -1px 0;
  padding: 0;
  border-top: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
}
#drawerMenu ul.linkWrap li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 16px;
  background-image: url(../img/arrowBlack01R.svg);
  background-size: contain;
  pointer-events: none;
}
#drawerMenu ul.linkWrap li a {
  display: block;
  margin: 0;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
/* ボタン */
#drawerMenu ul.buttonWrap {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0 40px 0;
  padding: 0;
}
#drawerMenu ul.buttonWrap li {
  width: 100%;
  padding: 5px 0;
}
#drawerMenu ul.buttonWrap li.recruit a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 8px 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  background-color: #E56718;
  border-radius: 9999px;
}
#drawerMenu ul.buttonWrap li.contact a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 8px 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  background-color: #366C8E;
  border-radius: 9999px;
}
#drawerMenu li.recruit a.linkEmp,
#drawerMenu li.contact a.linkEmp {
  color: #FFFFFF !important;
  border: #354F8B 2px solid !important;
}
#drawerMenu ul.buttonWrap li.contact a small {
  display: inline-block;
  margin-bottom: 5px;
}
/* 強調トグル */
#drawerMenu li.emp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  border: #CCCCCC 1px solid;
  border-radius: 9999px;
}
#drawerMenu .empToggle[type=checkbox] {
  display: none;
}
#drawerMenu .empToggle + label {
  position: relative;
  width: 50px;
  height: 28px;
  background: rgba(0,0,0,0.075);
  border-radius: 15px;
  text-align: left;
  cursor: pointer;
  display: block;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  border: 1px solid transparent;
  transition: 0.3s ease-out;
  transition-property: background, box-shadow;
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  border: 1px solid transparent; /* 反転モード用 */
}
#drawerMenu .empToggle + label:before,
#drawerMenu .empToggle + label:after {
  position: absolute;
  content: '';
  transition: 0.3s cubic-bezier(.15,.85,.5,1.5);
  transition-property: background, left;
  box-sizing: border-box;
}
#drawerMenu .empToggle + label:after {
  display: inline-block;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 100%;
  border: 1px solid transparent; /* 反転モード用 */
}
#drawerMenu .empToggle + label:before {

}
#drawerMenu .empToggle:focus + label {
  outline: 1px dotted;
  background: rgba(0,0,0,0.25);
}
#drawerMenu .empToggle[type=checkbox]:hover + label:after {

}
#drawerMenu .empBut:hover,
#drawerMenu .empToggle[type=checkbox]:hover + #drawerMenu .empBut {
  background: rgba(0,0,0,0.5);
  transition-duration: 0.1s;
}
#drawerMenu .empToggle[type=checkbox]:checked + label,
#drawerMenu .empToggle[type=checkbox]:checked:hover + #drawerMenu .empBut {
  background-color: #F6662A;
}
#drawerMenu .empToggle[type=checkbox]:checked + label:after {
  left: calc(100% - 24px);
}
#drawerMenu .empBut:hover {
  background: rgba(0,0,0,0.5);
  transition-duration: 0.1s;
}
/* 閉じる */
#drawerMenu a.closeMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
#drawerMenu a.closeMenu img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

@media screen and (max-width:1460px){
  #drawerMenu {
    display: block;
  }
}




/*
* フッター
*/
footer#siteFooter {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  background-color: #433C37;
}
footer#siteFooter .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  padding: 50px 0;
}
/* プロフィール */
footer#siteFooter .prof {
  display: flex;
  flex-direction: column;
  width: 400px;
  margin: 0;
  padding: 0;
}
footer#siteFooter .prof h3 {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
footer#siteFooter .prof h3 img {
  display: block;
  width: 100%;
  max-width: 370px;
  height: auto;
}
footer#siteFooter .prof p.addr {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
footer#siteFooter .prof p.addr a.map {
  display: inline-block;
  margin: 0;
  padding: 2px 3px;
  color: #E56718;
  font-size: 10px;
  line-height: 1;
  background-color: #FFFFFF;
  border-radius: 3px;
}
/* サイトマップ */
footer#siteFooter ul.sitemap {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
footer#siteFooter ul.sitemap li {
  margin: 0;
  padding: 0 0 0 2em;
}
footer#siteFooter ul.sitemap li a {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
footer#siteFooter ul.sitemap li a.linkEmp {
  color: #FFFFFF !important;
}
/* コピーライト */
footer#siteFooter .copyright {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: right;
  color: #FFFFFF;
  font-size: 12px;
}


/*
* ページヘッダー
*/
.pageHeader {
  position: relative;
  width: 100%;
  height: 350px;
  margin: 0 auto 160px auto;
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.pageHeader h2 {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 80px 0;
  color: #E56718;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.1em;
  background-color: #FFFFFF;
  border-radius: 40px;
}
.pageHeader h2::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 10px;
  border-top: #E56718 2px solid;
  border-bottom: #E56718 2px solid;
}
.pageHeader p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.2em;
}


/*
* セクションヘッダー
*/
.artHead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 60px auto;
  padding: 0;
  text-align: center;
}
.artHead h4 {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 24px;
  font-weight: 300;
}
.artHead h3 {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #E56718;
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 0.1em;
}
/* クロ */
.artHead.black h3 {
  color: #433C37;
}




/*
* 見出し
*/
h3.artTitle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 40px auto;
  padding: 0 0 0 40px;
}
h3.artTitle strong {
  margin: 0;
  padding: 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
h3.artTitle strong::after {
  content: "|";
  margin: 0;
  padding: 0 25px;
  font-size: 30px;
  font-weight: 300;
}
h3.artTitle span {
  margin: 0;
  padding: 0;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.1em;
}
h3.artTitle::before {
  content: "";
  position: absolute;
  top: 0;
  left:0;
  width: 24px;
  height: 100%;
  background-color: #FFC800;
  border-radius: 9999px;
}
/* 電話番号 */
h3.artTitle a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: 300;
}
h3.artTitle a img {
  width: 33px;
  height: 33px;
  margin: 0 10px 0 0;
}


/*
* リンクアニメーション
*/
a.animeLink {
  position: relative;
  display: block;
}
a.animeLink::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50%);
  width: 100%;
  border-bottom: #E56718 4px solid;
  transform-origin: left;
  transform: translateX(-50%) scaleX(0);
  transition-duration: 0.6s;
}
a.animeLink:hover:after {
  content: "";
  transform: translateX(-50%) scaleX(1);
}


/*
* 追従ボタン
*/
#folowingButton img {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 25vw;
  margin: 0;
  transition-duration: 0.5s;
}
#folowingButton a:hover {
  opacity: 1;
}
#folowingButton a:hover img {
  opacity: 1;
  transform: scale(1.05);
}


/*
* サイトマップ モーダル
*/
#modalSitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  z-index: 99000;
}
#modalSitemap .modalFlame {
  display: flex;
  align-items: stretch;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
}
/* 写真 */
#modalSitemap .pict {
  flex: 1;
}
#modalSitemap .pict img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/* テキスト */
#modalSitemap .text {
  flex: 2.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: scroll;
}
#modalSitemap .wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
#modalSitemap .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 4vw 0;
  padding: 0 0 0 4vw;
}
/* ロゴ */
#modalSitemap a.logo {
  display: flex;
  align-items: flex-end;
  height: auto;
  margin: 0;
  padding: 0;
}
#modalSitemap a.logo img {
  width: 10vw;
  height: auto;
}
#modalSitemap a.logo h1 {
  margin: 0 0 0 0.5vw;
  padding: 0;
  font-size: 1.7vw;
  font-weight: 500;
  letter-spacing: 0.1em;
}
/* ボタン */
#modalSitemap .modalClose {
  width: 20vw;
}
/* サイトマップ */
#modalSitemap ul.sitemap {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  margin: 0 0 4vw 0;
  padding: 0 3vw 0 4vw;
  color: #E56718;
}
#modalSitemap ul.sitemap li {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0 2vw 0 0;
  padding: 0;
}
#modalSitemap ul.sitemap li h3 {
  position: relative;
  margin: 0 0 15px 0;
  padding: 0;
  font-size: 0.9vw;
  font-weight: 800;
}
#modalSitemap ul.sitemap li h3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  border-top: #E56718 2px solid;
  z-index: 1;
}
#modalSitemap ul.sitemap li a {
  position: relative;
  margin: 0;
  padding: 0 0.2vw 0 0;
  font-size: 0.9vw;
  background-color: #FFFFFF;
  z-index: 2;
}
/* 施設一覧 */
#modalSitemap ul.facMap {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  width: 100%;
  max-width: none;
  margin: 0 0 4vw 0;
  padding: 0 3vw 0 4vw;
  color: #E56718;
}
#modalSitemap ul.facMap li {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0 2vw 0 0;
  padding: 0;
}
#modalSitemap ul.facMap li h4 {
  position: relative;
  margin: 0 0 15px 0;
  padding: 0;
  font-size: 0.9vw;
  font-weight: 800;
}
#modalSitemap ul.facMap li h4 > span {
  position: relative;
  margin: 0;
  padding: 0 0.2vw 0 0;
  font-size: 0.9vw;
  background-color: #FFFFFF;
  z-index: 2;
}
#modalSitemap ul.facMap li h4::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  border-top: #E56718 2px solid;
  z-index: 1;
}
#modalSitemap ul.facMap li > a,
#modalSitemap ul.facMap li > span {
  position: relative;
  margin: 0;
  padding: 0 0.2vw 0 0;
  font-size: 0.9vw;
  background-color: #FFFFFF;
  z-index: 2;
}
#modalSitemap ul.facMap h4:nth-child(n+2) {
  margin-top: 2vw;
}


/*
* パンくず
*/
#pankuzu {
  margin: 0 0 0 0;
  padding: 1rem 0;
  background-color: #F7F7F7;
}
#pankuzu ul { text-align: left;}
#pankuzu li {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #555555;
  font-size: 0.8rem;
}
#pankuzu li:after {
  content: " > "
}
#pankuzu li:last-child:after {
  content: "";
}
#pankuzu li i {
  margin-right: 0.2rem;
  color: #777777;
}


/*
* ページネーション
*/
.pagination.pc {
  margin: 50px auto;
  padding: 0;
}
.pagination.pc .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #E56718;
  font-size: 20px;
  font-weight: 600;
}
/* arrow */
.pagination.pc .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 70px;
  margin: 0;
  padding: 0;
  border: #E56718 1px solid;
  border-radius: 9999px;
  cursor: pointer;
}
.pagination.pc .prev img {
  display: inline-block;
  margin-right: 10px;
}
.pagination.pc .next img {
  display: inline-block;
  margin-left: 10px;
}
/* ページ */
.pagination.pc .pageNumbers {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.pagination.pc .pageNumbers .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 70px;
  margin: 0 5px;
  padding: 0;
  border: #E56718 1px solid;
  border-radius: 9999px;
}
/* ボタン無効化 */
.pagination.pc span.arrow {
  opacity: 0.3;
  cursor: default;
}
.pagination.pc span.current {
  color: #FFFFFF;
  background-color: #E56718;
  cursor: default;
}


/*
* 基本form - 編集
*/
.baseForm input[type='text'],
.baseForm input[type='number'],
.baseForm input[type='tel'],
.baseForm input[type='email'],
.baseForm input[type='password'],
.baseForm input[type='file'],
.baseForm input[type='checkbox'],
.baseForm select,
.baseForm textarea {
  width: 100%;
	margin: 0;
	padding: 1.2rem;
	font-size: 1.4rem;
	background-color: #FFFFFF;
	border: #979797 1px solid;
	border-radius: 0.6rem;
}
.baseForm input[type='file'] {
  background: none;
}
.baseForm textarea { line-height: 150%; }
.baseForm ::placeholder { color: #555555; }
.baseForm input:focus,
.baseForm select:focus {
	outline: 0;
	box-shadow: 0 0 0.3em 0em #2678C0 inset;
}
.baseForm input[type='checkbox']:focus {
  box-shadow: none;
}
/* select */
.baseForm select {
  display: block;
	margin: 0;
	padding: 1.2rem 6rem 1.2rem 1.2rem;
	font-size: 1.4rem;
	background: none;
	border: #979797 1px solid;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.6rem;
}
.baseForm .selectArrow {
  position: relative;
  display: inline-block;
  z-index: 80000;
}
.baseForm .selectArrow::after {
  content:"";
	position: absolute;
  right: 2rem;
  top: calc(50% - 5px);
  transform: translateY(-50%) rotate(45deg);
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: #979797 1px solid;
  border-right: #979797 1px solid;
  z-index: 80001;
  pointer-events: none;
}
/* checkbox */
.baseForm input[type='checkbox'] {
  appearance: none;
  outline: none;
  display: block;
  position: relative;
  text-align: center;
  cursor: pointer;
  width: 24px;
  height: 24px;
  margin: 0 10px 0 0;
  padding: 0;
  border: none;
}
.baseForm input[type='checkbox']::before {
  display: block;
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border: solid 2px #CCCCCC;
  border-radius: 3px;
}
.baseForm input[type='checkbox']:checked::before {
  background-color: #2678C0;
}
.baseForm input[type='checkbox']::after {
  display: block;
  content: '';
  position: absolute;
  left: 8px;
  top: 3px;
  width: 8px;
  height: 14px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
}
.baseForm input[type='checkbox']:checked::after {
  opacity: 1;
}
/* checkbox水平 */
.baseForm .checkHrz {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.baseForm .checkHrz label {
  display: flex;
  align-items: center;
  width: 20%;
}


/*
* MW WP Form
*/
.formWrap {
  margin: 0 0 6rem 0;
  padding: 0;
  background-color: #FFFFFF;
}
.formWrap dl {
  margin: 0 0 -1px 0;
  padding: 0;
  font-size: 0;
  border: #D9D9D9 1px solid;
}
.formWrap dt {
  position: relative;
  margin: 0;
  padding: 0 2rem;
  vertical-align: top;
  font-size: 2rem;
  line-height: 150%;
  background-color: #E0F1F6;
}
.formWrap dt.require::after {
  content: "必須";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
  margin: 0;
  padding: 0.4rem 1rem;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 100%;
  background-color: #2678C0;
}
.formWrap dd {
  margin: 0;
  padding: 1.5rem 2rem;
  font-size: 0;
}
.formWrap .mw_wp_form_confirm dd { padding: 1rem; }
.formWrap dd.colTwo { padding: 1.5rem 0; }
.formWrap dd.colOne { padding: 0.5rem 2rem; }
.formWrap dd .half {
  display: inline-block;
  width: 50%;
  margin: 0;
  padding: 0 2rem;
}
.formWrap dd .full {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem 0;
}
.formWrap dd span.text {
  display: inline-block;
  margin: 0;
  padding: 0 1rem;
  white-space: nowrap;
  font-size: 1.4rem;
  line-height: 100%;
}
.formWrap span.error { font-size: 1.6rem; }

.formWrap input[type='text'],
.formWrap input[type='tel'],
.formWrap input[type='file'],
.formWrap textarea,
.formWrap select {
  width: 100%;
  margin: 0;
  padding: 1.2rem;
  font-size: 1.4rem;
  font-weight: 300;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: #ACACAC 1px solid;
  border-radius: 3px;
  line-height: 150%;
}
.formWrap select {
  width: auto;
  -webkit-appearance:none;
  appearance:none;
}
.formWrap .selectArrow {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.formWrap .selectArrow::after {
  content:"";
  display:block;
  width:10px;
  height:10px;
  position:absolute;
  right: 1.5rem;
  top: calc(50% - 7px);
  border-bottom:#333 2px solid;
  border-right:#333 2px solid;
  transform:rotate(45deg);
}
.formWrap input[type='file'] {
  border: none;
}
.formWrap input[type='checkbox'],
.formWrap input[type='radio'] {
  width: 1.7rem;
  height: 1.7rem;
  margin: 0.2rem 0.5rem 0 0;
  padding: 0;
}
.formWrap dd span.mwform-radio-field {
  display: inline-block;
  min-width: 10em;
  max-width: 100%;
  margin: 0 !important;
  padding: 0.5rem 0;
  white-space: nowrap;
  font-size: 1.4rem;
  line-height: 100%;
}
.formWrap dd span.mwform-radio-field label {
  display: flex;
  align-items: center;
}
.formWrap ::placeholder{ color: #9da1a5; font-weight: 400; }
/* 住所 */
.formWrap input#zip {
  width: 10em;
}
/* プライバシーポリシー */
.formWrap .pp {
  margin: 6rem 0 0 0;
  padding: 2rem;
  text-align: center;
  font-size: 1.4rem;
  background-color: #F2F2F2;
  border: #D9D9D9 1px solid;
}
.formWrap .pp a {
  color: #0081FF;
  text-decoration: underline;
}
.formWrap .pp .mwform-checkbox-field-text { display: none; }
/* ボタン */
.formWrap .buttonWrap {
  margin: 6rem 0 0 0;
  padding: 0;
  text-align: center;
}
.formWrap .buttonWrap input:hover { opacity: 0.6; }
.mw_wp_form_input .formWrap input.buttonSubmit {
  display: inline-block;
  width: 30rem;
  margin: 0 1rem;
  padding: 1rem 0;
  color: #FFFFFF;
  font-size: 2.0rem;
  font-weight: 500;
  background-color: #659DCE;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
.mw_wp_form_confirm .formWrap input.buttonSubmit {
  display: inline-block;
  width: 30rem;
  margin: 0 1rem;
  padding: 1rem 0;
  color: #FFFFFF;
  font-size: 2.0rem;
  font-weight: 500;
  background-color: #659DCE;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
.mw_wp_form_confirm .formWrap input.buttonReturn {
  display: inline-block;
  width: 30rem;
  margin: 0 1rem;
  padding: 1rem 0;
  color: #666666;
  font-size: 2.0rem;
  font-weight: 500;
  background-color: #F2F2F2;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
/* 確認画面 */
.mw_wp_form_confirm .formWrap dd {
  padding: 3rem;
  font-size: 1.4rem;
}
.mw_wp_form_confirm .formWrap dd .half {
  width: auto;
  padding: 0 2rem 0 0;
}
.mw_wp_form_confirm .formWrap dd .half span { padding: 0 2rem; }
.mw_wp_form_confirm .formWrap dd .full { padding: 0; }
.mw_wp_form_confirm .formWrap .selectArrow::after { display: none; }
/* 非表示設定*/
.formWrap .hide { display: none !important; }
.mw_wp_form_input .formWrap .onlyConfirm { display: none !important; }
.mw_wp_form_confirm .formWrap .onlyFirst { display: none !important; }
/* Datepicker補正 */
.ui-datepicker select.ui-datepicker-month {
  width: auto !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
  padding: 0 0 0.5rem 0 !important;
  vertical-align: middle !important;
  line-height: 0;
  border-radius: 3px;
}
.ui-datepicker select.ui-datepicker-year {
  width: auto !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
  padding: 0.25rem 0 0.25rem 0 !important;
  vertical-align: middle !important;
  border-radius: 3px;
}


/*
* お知らせリスト
*/
ul.infoList {
  margin: 0 auto;
  padding: 0;
}
ul.infoList li {
  position: relative;
  margin: 0;
  padding: 0;
}
ul.infoList li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(-50%) translateY(-50%);
  width: 9px;
  height: 18px;
  background-image: url(../img/arrowBlack01R.svg);
  background-size: cover;
  pointer-events: none;
}
ul.infoList li a.cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -1px 0 0 0;
  padding: 20px 0;
  border-top: #333333 1px dotted;
  border-bottom: #333333 1px dotted;
}
ul.infoList li span {
  margin: 0;
  padding: 0 20px 0 0;
  font-size: 14px;
  font-weight: 300;
}
ul.infoList li p {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 24px;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
ul.infoList li h4 {
  flex: 1;
  margin: 0;
  padding: 0 0 0 20px;
  font-size: 14px;
  font-weight: 300;
}



/*
* 施設一覧ブロック
*/
#blockFacList {
  margin: 0;
  padding: 80px 0 100px 0;
}
#blockFacList h3 {
  position: relative;
  margin: 0 0 100px 0;
  padding: 0;
  text-align: center;
}
#blockFacList h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  border-top: #707070 1px solid;
  z-index: -1;
}
#blockFacList h3 strong {
  display: inline-block;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background-color: #FFFFFF;
}
#blockFacList ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  margin: 0 auto;
  padding: 0;
}
#blockFacList ul li {
  display: flex;
  flex-direction: column;
  width: 33.33%;
  margin: 0;
  padding: 0 10px;
}
#blockFacList ul li h4 {
  margin: 0 0 15px 0;
  padding: 0;
  color: #E56718;
  font-size: 18px;
  font-weight: 600;
}
#blockFacList ul li h4:nth-child(n+2) {
  margin-top: 30px;
}
#blockFacList ul li .cell {
  margin: 0;
  padding: 0;
  font-size: 14px;
}


/*
* 採用情報リンク
*/
#blockRecLink {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  margin: 0;
  padding: 0;
}
#blockRecLink .text {
  position: relative;
  width: 33.33%;
  margin: 0 2px;
  padding: 14vw 0 0 0;
  background-color: #FFC800;
}
#blockRecLink .text .parts {
  position: absolute;
  top: -5vw;
  left: 50%;
  transform: translateX(-50%);
  width: 25vw;
  height: auto;
}
#blockRecLink .text p {
  display: block;
  margin: 0 auto 2vw auto;
  padding: 0 5vw;
  font-size: 1.2vw;
  font-weight: 300;
}
#blockRecLink .text img.button {
  display: block;
  width: 24vw;
  margin: 0 auto;
  padding: 0;
}
#blockRecLink .pict {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 33.33%;
  margin: 0;
  padding: 0;
}
#blockRecLink .pict img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}










/****************************************************************/








/*
* スマホ用
*/

@media screen and (max-width:993px){


  /*
  * タグ再設定
  */
  html { }
  body {
    font-size: 13px;
  }
  p {
    font-size: 13px;
  }


  /*
  * レイアウト
  */
  .pc { display: none !important; }

  .primaryWrap {
    margin: 0;
    padding: 60px 0 0 0;
    min-height: calc(100vh - 60px);
  }
  .secondaryWrap {
    margin: 0;
    padding: 0;
  }
  .inner1440 {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
  }
  .inner1280 {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
  }
  .inner1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .inner1080 {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
  }
  .inner960 {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
  }
  .fixWrap {
    margin: 0;
    padding: 0;
  }
  .scrollStop {
    overflow: hidden;
  }
  /* モーダル */
  .modal.fade {
    transition-duration: 0.8s;
  }
  .modal.in {
    transition-duration: 0.8s;
  }




  /*
  * ヘッダー
  */
  header#siteHeader {
    height: 60px;
  }
  header#siteHeader .wrap {
    height: 100%;
    padding: 0 20px;
  }
  /* ロゴ */
  header#siteHeader .logo {
    width: 70%;
    max-width: 359px;
    max-height: 40px;
  }
  /* トグル */
  header#siteHeader ul.buttonWrap li.toggle {
    display: flex;
  }
  header#siteHeader ul.buttonWrap li.toggle a img {
    object-fit: contain;
    width: 30px;
    height: 30px;
  }



  /*
  * 開閉メニュー
  */
  #drawerMenu {
    position: fixed;
    top: 60px;
    left: 0;
    transform: translateX(100%);
    transition:ease .3s;
    display: block;
    align-items: center;
    width: 100vw;
    height: calc(100vh - 60px);
    margin: 0;
    padding: 0 20px;
    overflow: scroll;
    background-color: #F7F7F7;
    z-index: 85000;
  }
  #drawerMenu.open {
    transform: none;
  }
  #drawerMenu ul.linkWrap {
    width: 100%;
    height: auto;
    margin: 20px 0;
    padding: 0;
    color: inherit;
  }
  #drawerMenu ul.linkWrap li {
    position: relative;
    margin: 0 0 -1px 0;
    padding: 0;
    border-top: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
  }
  #drawerMenu ul.linkWrap li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 16px;
    background-image: url(../img/arrowBlack01R.svg);
    background-size: contain;
    pointer-events: none;
  }
  #drawerMenu ul.linkWrap li a {
    display: block;
    margin: 0;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  /* ボタン */
  #drawerMenu ul.buttonWrap {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 40px 0;
    padding: 0;
  }
  #drawerMenu ul.buttonWrap li {
    width: 100%;
    padding: 5px 0;
  }
  #drawerMenu ul.buttonWrap li.recruit a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 8px 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    background-color: #E56718;
    border-radius: 9999px;
  }
  #drawerMenu ul.buttonWrap li.contact a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 8px 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.1em;
    background-color: #366C8E;
    border-radius: 9999px;
  }
  #drawerMenu li.recruit a.linkEmp,
  #drawerMenu li.contact a.linkEmp {
    color: #FFFFFF !important;
    border: #354F8B 2px solid !important;
  }
  #drawerMenu ul.buttonWrap li.contact a small {
    display: inline-block;
    margin-bottom: 5px;
  }
  /* 強調トグル */
  #drawerMenu li.emp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border: #CCCCCC 1px solid;
    border-radius: 9999px;
  }
  #drawerMenu .empToggle[type=checkbox] {
  	display: none;
  }
  #drawerMenu .empToggle + label {
  	position: relative;
  	width: 50px;
  	height: 28px;
  	background: rgba(0,0,0,0.075);
  	border-radius: 15px;
  	text-align: left;
  	cursor: pointer;
  	display: block;
  	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  	box-sizing: border-box;
  	border: 1px solid transparent;
  	transition: 0.3s ease-out;
  	transition-property: background, box-shadow;
  	-webkit-tap-highlight-color: transparent;
  	        tap-highlight-color: transparent;
  	border: 1px solid transparent; /* 反転モード用 */
  }
  #drawerMenu .empToggle + label:before,
  #drawerMenu .empToggle + label:after {
  	position: absolute;
  	content: '';
  	transition: 0.3s cubic-bezier(.15,.85,.5,1.5);
  	transition-property: background, left;
  	box-sizing: border-box;
  }
  #drawerMenu .empToggle + label:after {
  	display: inline-block;
  	top: 3px;
  	left: 3px;
  	width: 20px;
  	height: 20px;
  	background: #fff;
  	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  	border-radius: 100%;
  	border: 1px solid transparent; /* 反転モード用 */
  }
  #drawerMenu .empToggle + label:before {

  }
  #drawerMenu .empToggle:focus + label {
  	outline: 1px dotted;
  	background: rgba(0,0,0,0.25);
  }
  #drawerMenu .empToggle[type=checkbox]:hover + label:after {

  }
  #drawerMenu .empBut:hover,
  #drawerMenu .empToggle[type=checkbox]:hover + #drawerMenu .empBut {
  	background: rgba(0,0,0,0.5);
  	transition-duration: 0.1s;
  }
  #drawerMenu .empToggle[type=checkbox]:checked + label,
  #drawerMenu .empToggle[type=checkbox]:checked:hover + #drawerMenu .empBut {
  	background-color: #F6662A;
  }
  #drawerMenu .empToggle[type=checkbox]:checked + label:after {
  	left: calc(100% - 24px);
  }
  #drawerMenu .empBut:hover {
  	background: rgba(0,0,0,0.5);
  	transition-duration: 0.1s;
  }
  /* 閉じる */
  #drawerMenu a.closeMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  #drawerMenu a.closeMenu img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }


  /*
  * フッター
  */
  footer#siteFooter {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    background-color: #433C37;
  }
  footer#siteFooter .wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0 auto;
    padding: 20px 0;
  }
  /* プロフィール */
  footer#siteFooter .prof {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0 0 20px 0;
    padding: 0;
  }
  footer#siteFooter .prof h3 {
    margin: 0 0 5px 0;
    padding: 0;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
  footer#siteFooter .prof h3 img {
    display: block;
    width: 80%;
    max-width: 80%;
    height: auto;
    margin: 0 auto;
  }
  footer#siteFooter .prof p.addr {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
  footer#siteFooter .prof p.addr a.map {
    display: inline-block;
    margin: 0;
    padding: 2px 3px;
    color: #E56718;
    font-size: 10px;
    line-height: 1;
    background-color: #FFFFFF;
    border-radius: 3px;
  }
  /* サイトマップ */
  footer#siteFooter ul.sitemap {
    order: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
    padding: 0;
  }
  footer#siteFooter ul.sitemap li {
    margin: 0;
    padding: 0;
  }
  footer#siteFooter ul.sitemap li a {
    display: block;
    margin: 0;
    padding: 5px 0;
    font-size: 13px;
  }
  /* コピーライト */
  footer#siteFooter .copyright {
    order: 3;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #FFFFFF;
    font-size: 12px;
  }



  /*
  * ページヘッダー
  */
  .pageHeader {
    position: relative;
    width: 100%;
    height: 18vw;
    margin: 0 auto 10vw auto;
    padding: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .pageHeader h2 {
    position: absolute;
    bottom: -10vw;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90vw;
    margin: 0 auto;
    padding: 6vw 0;
    color: #E56718;
    font-size: 5vw;
    font-weight: 300;
    letter-spacing: 0.1em;
    background-color: #FFFFFF;
    border-radius: 5vw;
  }
  .pageHeader h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 10px;
    border-top: #E56718 2px solid;
    border-bottom: #E56718 2px solid;
  }
  .pageHeader p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.2em;
  }


  /*
  * セクションヘッダー
  */
  .artHead {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px auto;
    padding: 0;
    text-align: center;
  }
  .artHead h4 {
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    color: #E56718;
    font-size: 20px;
    font-weight: 600;
    border-bottom: #FFC800 3px solid;
  }
  .artHead h3 {
    display: inline-block;
    margin: 0;
    padding: 0 10px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
  }


  /*
  * 見出し
  */
  h3.artTitle {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px 40px 20px;
    padding: 0 0 0 20px;
  }
  h3.artTitle strong {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.2em;
  }
  h3.artTitle span {
    display: none;
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.1em;
  }
  h3.artTitle span::before {
    content: "|";
    margin: 0;
    padding: 0 25px;
  }
  h3.artTitle::before {
    content: "";
    position: absolute;
    top: 0;
    left:0;
    width: 12px;
    height: 100%;
    background-color: #FFC800;
    border-radius: 9999px;
  }
  /* リンク */
  h3.artTitle a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 300;
  }
  h3.artTitle a img {
    width: 22px;
    height: 22px;
    margin: 0 10px 0 0;
  }


  /*
  * リンクアニメーション
  */
  a.animeLink {
    position: relative;
  }
  a.animeLink::after {
    display: none;
  }
  a.animeLink:hover:after {
    display: none;
  }


  /*
  * 追従ボタン
  */
  #folowingButton {
    position: fixed;
    bottom: -2.3vw;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 90vw;
    margin: 0;
    transition-duration: 0.5s;
  }
  #folowingButton img {
    position: static;
    transition-duration: 0.5s;
    display: block;
    width: 100%;
    margin: 0;
  }
  #folowingButton a {
    display: flex;
    align-items: flex-end;
  }
  #folowingButton a.inquiry {
    width: 40.5%;
  }
  #folowingButton a.recruit {
    width: 59.5%;
  }
  #folowingButton a:hover {
    opacity: 1;
  }
  #folowingButton a:hover img {
    opacity: 1;
    transform: scale(1.05);
  }


  /*
  * サイトマップ モーダル
  */
  #modalSitemap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    z-index: 99000;
  }
  #modalSitemap .modalFlame {
    display: flex;
    align-items: stretch;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
  }
  /* 写真 */
  #modalSitemap .pict {
    display: none;
  }
  /* テキスト */
  #modalSitemap .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30vw;
    overflow-y: scroll;
  }
  #modalSitemap .wrap {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #modalSitemap .header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 5vw 0 0 5vw;
    background-color: #FFFFFF;
    z-index: 10;
  }
  /* ロゴ */
  #modalSitemap a.logo {
    display: flex;
    align-items: flex-end;
    height: auto;
    margin: 0;
    padding: 0;
  }
  #modalSitemap a.logo img {
    width: 12vw;
    height: auto;
  }
  #modalSitemap a.logo h1 {
    margin: 0 0 0 1vw;
    padding: 0;
    font-size: 3vw;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  /* ボタン */
  #modalSitemap .modalClose {
    width: 40vw;
  }
  /* サイトマップ */
  #modalSitemap ul.sitemap {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    margin: 0 0 10vw 0;
    padding: 0 5vw;
    color: #E56718;
    z-index: 1;
  }
  #modalSitemap ul.sitemap li {
    flex: 1;
    display: flex;
    width: 100%;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }
  #modalSitemap ul.sitemap li h3 {
    position: relative;
    margin: 0 0 15px 0;
    padding: 0;
    font-size: 4vw;
    font-weight: 600;
  }
  #modalSitemap ul.sitemap li h3::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    border-top: #E56718 2px solid;
    z-index: 1;
  }
  #modalSitemap ul.sitemap li a {
    position: relative;
    margin: 0;
    padding: 0 1vw 0 0;
    font-size: 4vw;
    background-color: #FFFFFF;
    z-index: 2;
  }
  /* 施設一覧 */
  #modalSitemap ul.facMap {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    margin: 0 0 10vw 0;
    padding: 0 5vw;
    color: #E56718;
    z-index: 1;
  }
  #modalSitemap ul.facMap li {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 10vw 0;
    padding: 0;
  }
  #modalSitemap ul.facMap li h4 {
    position: relative;
    margin: 0 0 5vw 0;
    padding: 0;
    font-size: 4vw;
    font-weight: 600;
  }
  #modalSitemap ul.facMap li h4 > span {
    position: relative;
    margin: 0;
    padding: 0 1vw 0 0;
    font-size: 4vw;
    background-color: #FFFFFF;
    z-index: 2;
  }
  #modalSitemap ul.facMap li h4::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    border-top: #E56718 2px solid;
    z-index: 1;
  }
  #modalSitemap ul.facMap li > a,
  #modalSitemap ul.facMap li > span {
    position: relative;
    margin: 0;
    padding: 0 1vw 0 0;
    font-size: 4vw;
    background-color: #FFFFFF;
    z-index: 2;
  }
  #modalSitemap ul.facMap h4:nth-child(n+2) {
    margin-top: 10vw;
  }


  /*
  * パンくず
  */
  #pankuzu {
    margin: 0 0 0 0;
    padding: 2vw;
    background-color: #F7F7F7;
  }
  #pankuzu ul { text-align: left;}
  #pankuzu li {
    display: inline-block;
    margin: 0;
    padding: 0;
    color: #555555;
    font-size: 2.0vw;
  }
  #pankuzu li:after {
    content: " > "
  }
  #pankuzu li:last-child:after {
    content: "";
  }
  #pankuzu li i {
    margin-right: 0.2rem;
    color: #777777;
  }


  /*
  * ページネーション
  */
  .pagination.sp {
    margin: 8vw 0;
    padding: 0 20px;
  }
  .pagination.sp .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  /* BACK */
  .pagination.sp .prev {
    position: relative;
    width: 5em;
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 5vw;
    cursor: pointer;
  }
  /* NEXT */
  .pagination.sp .next {
    position: relative;
    width: 5em;
    margin: 0;
    padding: 0;
    text-align: right;
    font-size: 5vw;
    cursor: pointer;
  }
  /* ページ */
  .pagination.sp .pageNumbers {
    flex: 1;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 5vw;
  }
  .pagination.sp .pageNumbers .num {
    margin: 0;
    padding: 0;
  }
  .pagination.sp .pageNumbers .num::after {
    content: "|";
    padding: 0 0.5em;
  }
  .pagination.sp .pageNumbers .num:last-child::after {
    content: "";
    padding: 0;
  }
  /* ボタン無効化 */
  .pagination.sp span.arrow {
    color: #CCCCCC;
    cursor: default;
  }
  .pagination.sp span.arrow::after {
    opacity: 0.3;
  }
  .pagination.sp span.current {
    color: #CCCCCC;
    cursor: default;
  }


  /*
  * 基本form - 編集
  */
  .baseForm input[type='text'],
  .baseForm input[type='number'],
  .baseForm input[type='tel'],
  .baseForm input[type='email'],
  .baseForm input[type='password'],
  .baseForm input[type='file'],
  .baseForm input[type='checkbox'],
  .baseForm select,
  .baseForm textarea {
    width: 100%;
  	margin: 0;
  	padding: 2vw;
  	font-size: 3.5vw;
  	background-color: #FFFFFF;
  	border: #979797 1px solid;
  	border-radius: 2vw;
  }
  .baseForm input[type='file'] {
    background: none;
  }
  .baseForm textarea { line-height: 150%; }
  .baseForm ::placeholder { color: #555555; }
  .baseForm input:focus,
  .baseForm select:focus {
  	outline: 0;
  	box-shadow: 0 0 0.3em 0em #2678C0 inset;
  }
  .baseForm input[type='checkbox']:focus {
    box-shadow: none;
  }
  /* select */
  .baseForm select {
    display: block;
  	margin: 0;
  	padding: 2vw 10vw 2vw 2vw;
  	font-size: 1.4rem;
  	background: none;
  	border: #979797 1px solid;
  	-webkit-appearance: none;
  	-moz-appearance: none;
  	appearance: none;
  	border-radius: 0.6rem;
  }
  .baseForm .selectArrow {
    position: relative;
    display: block;
    z-index: 80000;
  }
  .baseForm .selectArrow::after {
    content:"";
  	position: absolute;
    right: 5vw;
    top: calc(50% - 0.8vw);
    transform: translateY(-50%) rotate(45deg);
    display: block;
    width: 3vw;
    height: 3vw;
    border-bottom: #979797 1px solid;
    border-right: #979797 1px solid;
    z-index: 80001;
    pointer-events: none;
  }
  /* checkbox */
  .baseForm input[type='checkbox'] {
    appearance: none;
    outline: none;
    display: block;
    position: relative;
    text-align: center;
    cursor: pointer;
    width: 24px;
    height: 24px;
    margin: 0 10px 0 0;
    padding: 0;
    border: none;
  }
  .baseForm input[type='checkbox']::before {
    display: block;
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border: solid 2px #CCCCCC;
    border-radius: 3px;
  }
  .baseForm input[type='checkbox']:checked::before {
    background-color: #2678C0;
  }
  .baseForm input[type='checkbox']::after {
    display: block;
    content: '';
    position: absolute;
    left: 8px;
    top: 3px;
    width: 8px;
    height: 14px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    opacity: 0;
  }
  .baseForm input[type='checkbox']:checked::after {
    opacity: 1;
  }
  /* checkbox水平 */
  .baseForm .checkHrz {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }
  .baseForm .checkHrz label {
    display: flex;
    align-items: center;
    width: 50%;
  }


  /*
  * お知らせリスト
  */
  ul.infoList {
    margin: 0 auto;
    padding: 0 20px;
  }
  ul.infoList li {
    position: relative;
    margin: 0;
    padding: 0;
  }
  ul.infoList li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateX(-50%) translateY(-50%);
    width: 9px;
    height: 18px;
    background-image: url(../img/arrowBlack01R.svg);
    background-size: cover;
    pointer-events: none;
  }
  ul.infoList li a.cell {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin: -1px 0 0 0;
    padding: 20px 0;
    border-top: #333333 1px dotted;
    border-bottom: #333333 1px dotted;
  }
  ul.infoList li span {
    margin: 0;
    padding: 0 20px 0 0;
    font-size: 14px;
    font-weight: 300;
  }
  ul.infoList li p {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 24px;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
  }
  ul.infoList li h4 {
    flex: none;
    width: 100%;
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
  }


  /*
  * 施設一覧ブロック
  */
  #blockFacList {
    margin: 0;
    padding: 80px 20px 40px 20px;
  }
  #blockFacList h3 {
    position: relative;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  #blockFacList h3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 0;
    border-top: #707070 1px solid;
    z-index: -1;
  }
  #blockFacList h3 strong {
    display: inline-block;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0;
    background-color: #FFFFFF;
  }
  #blockFacList ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    margin: 0 auto;
    padding: 0;
  }
  #blockFacList ul li {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #blockFacList ul li h4 {
    margin: 30px 0 15px 0;
    padding: 0;
    color: #E56718;
    font-size: 16px;
    font-weight: 600;
  }
  #blockFacList ul li h4:nth-child(n+2) {
    margin-top: 30px;
  }
  #blockFacList ul li a {
    margin: 0;
    padding: 0;
    font-size: 14px;
  }


  /*
  * 採用情報リンク
  */
  #blockRecLink {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-around;
    margin: 0;
    padding: 0;
  }
  #blockRecLink .text {
    order: 2;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 35vw 0 10vw 0;
    background-color: #FFC800;
  }
  #blockRecLink .text .parts {
    position: absolute;
    top: -15vw;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: auto;
  }
  #blockRecLink .text p {
    display: block;
    margin: 0 auto 2vw auto;
    padding: 0 10vw;
    font-size: 3.5vw;
    font-weight: 300;
  }
  #blockRecLink .text img.button {
    display: block;
    width: 60vw;
    margin: 0 auto;
    padding: 0;
  }
  #blockRecLink .pict {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 50%;
    margin: 0;
    padding: 0;
  }
  #blockRecLink .pict img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }








}
