@charset "utf-8";

/*
Theme Name:   白樺荘
Description:  白樺荘のテーマ
Author:       ecoru Creative Office
Author URI:   https://ecoru.jp/
*/

@import url("css/top.css");
@import url("css/wp-tag.css");


:root {

  /* color */
  --main-color: #2dad93;
  --sub-color: #8ed2c4;
  --earth-bg-color: #f5f4ec;
  --border-color: #daf3ee;
  --link-color: #3b65a5;

  /* margin & padding */
  --size-xxlarge: clamp(5rem, 4.091rem + 4.55vw, 7.5rem); /* 80px～120px */
  --size-xlarge: clamp(3.75rem, 3.068rem + 3.41vw, 5.625rem); /* 60px～90px */
  --size-large: clamp(3.125rem, 2.67rem + 2.27vw, 4.375rem); /* 50px～70px */
  --size-middle: clamp(1.875rem, 1.42rem + 2.27vw, 3.125rem); /* 30px～50px */
  --size-small: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem); /* 20px～40px */
  --size-xsmall: clamp(0.938rem, 0.597rem + 1.7vw, 1.875rem); /* 15px～30px */
  --size-xxsmall: clamp(0.625rem, 0.398rem + 1.14vw, 1.25rem); /* 10px～20px */
  --size-xxxsmall: clamp(0.313rem, 0.199rem + 0.57vw, 0.625rem); /* 5px～10px */

  /* width */
  --contents-width:  calc(100% - clamp(1.25rem, 0.341rem + 4.55vw, 3.75rem)); /* 100% - (20px～60px) */

  /* font size */
  --font-size-xxlarge: clamp(1.625rem, 1.455rem + 0.85vw, 2.125rem); /* 26px～34px */
  --font-size-xlarge: clamp(1.375rem, 1.193rem + 0.91vw, 1.875rem); /* 22px～30px */
  --font-size-large: clamp(1.25rem, 1.114rem + 0.68vw, 1.625rem); /* 20px～26px */
  --font-size-middle: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem); /* 18px～22px */
  --font-size-small: clamp(1rem, 0.909rem + 0.45vw, 1.25rem); /* 16px～20px */
  --font-size-xsmall: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /* 14px～16px */
  --font-size-xxsmall: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem); /* 12px～14px */
  --font-size-xxxsmall: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem); /* 10px～12px */

  /* font family: */
  --font-kakugo: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", MS PGothic, Montserrat, "M PLUS 1p", sans-serif;
  --font-marugo: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";

}


/*///////////////////////////////////////////////////////////////////////////////////////////////////
default tagu
///////////////////////////////////////////////////////////////////////////////////////////////////*/

html {
  font-size: 16px;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: var(--font-kakugo);
  line-height: 1.5;
  color: #333333;
  background-color: #FFFFFF;
}

h1,h2,h3,h4,h5,h6,ul,li,dl,dt,dd,a,div,span,section,aside,table,th,td {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.txtLink + p {
  margin-top: var(--size-middle);
}

a:link {
  color: var(--link-color);
  -webkit-transition: all .3s;
  transition: all .3s;
}
a:visited {
  color: var(--link-color);
}

#contentsWrap > a:last-of-type {
  margin-top: var(--size-middle);
}

@media screen and (min-width: 769px) {
  a:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}

a.active,
header a[aria-current],
footer a[aria-current] {
  text-decoration: none;
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  ul + p {
    margin-top: 1.5em;
  }
}

figcaption {
  font-size: 0.875em;
}


/*=========================== list ===========================*/

#contentsWrap li > ul,
#contentsWrap li > ol {
  margin: 1em 0;
}

#contentsWrap li {
  margin-bottom: 1em;
}

#contentsWrap ul > br,
#contentsWrap ol > br,
#contentsWrap li + br {
  display: none; /* WYSIWYG */
}

/*--------------------------- ul ---------------------------*/
ul {
  list-style-type: none;
}

#contentsWrap > ul{
  margin: 0 1em;
}

.editor-styles-wrapper ul {
  margin: 2em auto;
}

#contentsWrap ul li,
.editor-styles-wrapper ul li {
  padding-left: 1em;
  margin-bottom: 1em;
  position: relative;
  
}

#contentsWrap ul li::before,
.editor-styles-wrapper ul li::before {
  content: '■';
  color: #CCCCCC;
  font-size: 0.6em;
  position: absolute;
  top: 0.4em;
  left: 0;
}

#contentsWrap ul + p {
  margin-top: 40px;
}

/*--------------------------- ol ---------------------------*/
#contentsWrap ol {
  padding-left: 0;
  counter-reset: section;
}

.editor-styles-wrapper ol {
  margin: 2em auto;
  padding-left: 1em;
  counter-reset: section;
}

#contentsWrap ol li,
.editor-styles-wrapper ol li {
  list-style: none;
  position: relative;
  margin-bottom: 1em;
  padding-left: 1.5em;
}
#contentsWrap ol > li:before,
.editor-styles-wrapper ol > li:before {
  counter-increment: section;
  content: counters(section,"-") ".";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: 500;
}

#contentsWrap ol ol,
.editor-styles-wrapper ol ol {
  margin: 2em 0 !important;
  padding-left: 0;
}

#contentsWrap ol li li,
.editor-styles-wrapper ol li li {
  padding-left: 2.5em;
}

#contentsWrap ol li > ol li:before,
.editor-styles-wrapper ol li > ol li:before {
  content: counters(section,"-") ". ";
  counter-increment: section;
}

#contentsWrap ol li li li,
.editor-styles-wrapper ol li li li {
  padding-left: 3.5em !important;
}


/*=========================== table ===========================*/
.edit-post-visual-editor table,
#contentsWrap table {
  width: 100%;
  border-collapse: collapse;
  clear: both;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--size-xsmall);
}
.edit-post-visual-editor h1 + table,
#contentsWrap h1 + table,
.wp-block-media-text + table {
  margin-top: var(--size-middle);
}

.edit-post-visual-editor table th,
#contentsWrap table th {
  width: 15%;
  white-space: nowrap;
  background-color: #F3F3F3;
  border: 1px solid #CCCCCC;
  padding: 0.6em 0.8em;
  /*padding-top: 6px;
  padding-right: 10px;
  padding-bottom: 6px;
  padding-left: 10px;*/
  font-weight: normal;
}
.edit-post-visual-editor table th + th,
#contentsWrap table th + th {
  width: auto;
}

.edit-post-visual-editor table td,
#contentsWrap table td {
  border: 1px solid #CCCCCC;
  padding: 0.6em 0.8em;
  /*padding-top: 6px;
  padding-right: 10px;
  padding-bottom: 6px;
  padding-left: 10px;*/
  word-break: break-all;
}

ul + .edit-post-visual-editor table,
ul + table,
table + table,
h3 + table,
p + table {
  margin-top: var(--size-small);
}

td p:first-of-type {
  margin-top: 0;
}
td p:last-of-type {
  margin-bottom: 0;
}
td p:last-of-type + br {
  display: none;
}

/*--------------------------- 横長テーブル ---------------------------*/

/* Chrome、Edge用 */
.tableScroll::-webkit-scrollbar {
	height: 10px;
}
.tableScroll::-webkit-scrollbar-track {
	background-color: #EFEFEF;
}

.tableScroll::-webkit-scrollbar-thumb {
	background-color: #CCCCCC;
	border-radius: 5px;
}

.tableScroll {
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 30px;
  position: relative;
}

#contentsWrap .tableScroll table {
  min-width: 700px
}

/* scroll hint ---------------------------*/
.tbScrollHint {
  padding: 1em 1em 0.6em 1em;
  text-align: center;
  background-color: rgba(255,255,255,0.80);
  font-size: 0.75em;
  line-height: 100%;
  border-radius: 0.5em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 0px 7px rgba(0,0,0,0.3);
  box-shadow: 0px 0px 7px rgba(0,0,0,0.3);
}

.tbScrollHint::before {
  content: url("images/common/icon_scroll_hint.png");
}






/*--------------------------- vacant room ---------------------------*/
table.vacantRoomTb td {
  text-align: center;
}

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

  #contentsWrap table:not(.yokoTable) th,
  #contentsWrap table:not(.yokoTable) td {
    display: block;
    width: 100% !important;
  }
  
  #contentsWrap table:not(.yokoTable) td {
    border-top: none;
  }

  #contentsWrap table:not(.yokoTable) td:last-child {
    border-bottom: none;
  }

  #contentsWrap table:not(.yokoTable) tr:last-child td {
    border-bottom: 1px solid #cccccc;
  }








}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
clearfix
///////////////////////////////////////////////////////////////////////////////////////////////////*/

.clearfix:after,
#container:after,
#contents:after,
#ftrWrap:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
template
///////////////////////////////////////////////////////////////////////////////////////////////////*/

#containerWrap {
  overflow: hidden; /* コンテンツのグラデはみだし非表示 */
}

/*=========================== header ===========================*/
#headerWrap {
  position: relative;
}
#headerWrap.pageWrap {
  background-image: url(images/common/img_header.jpg);
  background-position: center 155px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

header {
  width: 100%;
  height: 155px;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.3));
  z-index: 999;
}

@media screen and (max-width: 1200px) {
  #headerWrap.pageWrap {
    background-image: url(images/common/img_header_sp.jpg);
  }
}

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

  #headerWrap.pageWrap {
    background-position: center 50px;
  }

  header {
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
  }

}

#headInner {
  position: relative;
  width: var(--contents-width);
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
}

header h1 {
  width: 318px;
  height: 49px;
  background-image: url(images/common/logo.png);
  background-position: left top;
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: -9999px;
}
header h1 a {
  display: block;
  width: 318px;
  height: 49px;
}


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

  #headInner {
    width: 100%;
    padding-top: 10px;
    position: relative;
  }

  header h1 {
    width: 177px;
    height: 29px;
    margin-left: 10px;
  }

}

/*--------------------------- menu ---------------------------*/
header nav {
  background-color: #ffffff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* main menu ---------------------------*/
header ul#menu-header-main {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
}

header ul#menu-header-main > li {
  width: 14.28%;
  position: relative;
}

header ul#menu-header-main > li > a {
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  border-right: 1pt solid;
  border-image: linear-gradient(to top, #DDDDDD, #FFFFFF) 1;
  color: #000000 !important;
  text-align: center;
  text-decoration: none;
  line-height: 100%;
  padding-top: 10px;
}
header ul#menu-header-main > li:last-child a {
  border-style: none;
}

header ul#menu-header-main > li > a span {
  width: 100%;
  padding-top: 12px;
}

header nav ul#menu-header-main > li > a::before {
  display: block;
  width: 44px;
  height: 30px;
}
header nav ul#menu-header-main > li:nth-of-type(1) > a::before {
  content: url("images/common/hdr_icon_01.svg");
}
header nav ul#menu-header-main > li:nth-of-type(2) > a::before {
  content: url("images/common/hdr_icon_02.svg");
}
header nav ul#menu-header-main > li:nth-of-type(3) > a::before {
  content: url("images/common/hdr_icon_03.svg");
}
header nav ul#menu-header-main > li:nth-of-type(4) > a::before {
  content: url("images/common/hdr_icon_04.svg");
}
header nav ul#menu-header-main > li:nth-of-type(5) > a::before {
  content: url("images/common/hdr_icon_05.svg");
}
header nav ul#menu-header-main > li:nth-of-type(6) > a::before {
  content: url("images/common/hdr_icon_07.svg");
}
header nav ul#menu-header-main > li:nth-of-type(7) > a::before {
  content: url("images/common/hdr_icon_06.svg");
}

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

  header nav {
    background-color: #E6F8F4;
    margin-bottom: 10px;
  }

  header nav ul#menu-header-main { 
    flex-wrap: wrap;
    width: auto;
  }

  header nav ul#menu-header-main > li {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid var(--sub-color);
  }

  header nav ul#menu-header-main li a {
    align-items: center;
    flex-wrap: nowrap;
    padding: 0.2em 0;
    border: none;
    height: auto;
    text-align: left;
  }

  header nav ul#menu-header-main > li > a span {
    padding: 2px 0 2px 5px;
  }

}

/* header main menu sub menu ---------------------------*/
@media screen and (min-width: 921px) {

  ul#menu-header-main li > ul.sub-menu {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);

    visibility: hidden;
    display: block;
  }
  ul#menu-header-main ul.sub-menu li {
    width: 100%;
    transition: .5s;
    white-space: nowrap;
    text-align: left;
    margin-bottom: 1px;
    opacity: 0;
    visibility: hidden;
    position: relative;
  }
  ul#menu-header-main ul.sub-menu li a {
    display: block;
    padding: 0.5em 0.7em;
    background-color: var(--main-color);
    text-decoration: none;
    color: #FFFFFF;
  }
  ul#menu-header-main > li:hover > ul.sub-menu > li {
    opacity: 1;
    visibility: visible;
  }

  ul#menu-header-main ul.sub-menu li a[aria-current],
  ul#menu-header-main ul.sub-menu li a:hover {
    opacity: 1;
    background-color: var(--sub-color);
  }

}

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

  header nav ul#menu-header-main ul.sub-menu li {
    margin-left: 31px;
    padding: 0.2em 0 0.2em 15px;
    position: relative;
  }
  header nav ul#menu-header-main > li > ul.sub-menu > li::before {
    content: '■';
    font-size: 10px;
    color: var(--sub-color);
    position: absolute;
    top: 0.8em;
    left: 0;
  }

  header nav ul#menu-header-main ul.sub-menu li a,
  header nav ul#menu-header-main ul.sub-menu li a:visited {
    color: #000000;
    text-decoration: none;
  }

}

/* header main menu sub menu of sub menu */
@media screen and (min-width: 921px) {

  ul#menu-header-main li > ul.sub-menu li > ul.sub-menu {
    position: absolute;
    top: 0;
    right: -1px;
    transform: translateX(100%);
    visibility: hidden;
    display: block;
  }
  ul#menu-header-main > li > ul.sub-menu > li:hover > ul.sub-menu li {
    opacity: 1;
    visibility: visible;
  }

}

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

  header nav ul#menu-header-main ul.sub-menu li ul.sub-menu li {
    margin-left: 0;
    padding-left: 1.5em;
  }
  header nav ul#menu-header-main > li > ul.sub-menu > li > ul.sub-menu > li::before {
    content: '―';
    font-weight: bold;
    color: var(--sub-color);
    position: absolute;
    top: 0.2em;
    left: 0;
  }

}

/* sp contact button ---------------------------*/
#headerSpContact {
  display: none;
}

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

  #headerSpContact {
    width: 51px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 50px;
    border-left: 1px solid var(--main-color);
  }

  #headerSpContact img {
    width: 26px;
    height: auto;
  }

}

@media screen and (max-width: 300px) {
  #headerSpContact {
    display: none;
  }
}

/* menu button ---------------------------*/
header input#menuCheck,
header input[type="checkbox"] + label.spMenuBtn,
header input[type="checkbox"] + label.spMenuBtn:before,
header input[type="checkbox"] + label.spMenuBtn:after {
  display: none;
}

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

  header input[type="checkbox"] + label.spMenuBtn {
    display: block;
  }
  
  header input[type="checkbox"] + label.spMenuBtn {
    display: inline-block;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
  }

  .spMenuBtn {
    height: 50px;
    width: 50px;
    position: relative;
    z-index: 999;
    cursor: pointer;
    background-color: var(--main-color);
  }

  .spMenuBtn span,
  .spMenuBtn span:before,
  .spMenuBtn span:after {
    content: '';
    display: block;
    height: 4px;
    width: 30px;
    border-radius: 3px;
    background: #FFFFFF;
    transition: 0.4s;
    position: absolute;
    top: 23px;
    left: 10px;
  }

  .spMenuBtn span:before {
    top: auto;
    bottom: 11px;
    left: 0;
  }

  .spMenuBtn span:after {
    top: 11px;
    bottom: auto;
    left: 0;
  }

  #menuCheck:checked ~ .spMenuBtn {
    position: fixed;
  }

  /*アイコンクリックで真ん中の線を透明*/
  #menuCheck:checked ~ .spMenuBtn span {
    background: rgba(255, 255, 255, 0);
  }

  /*アイコンクリックで×印（上下の線を回転）*/
  #menuCheck:checked ~ .spMenuBtn span::before {
  bottom: 0;
  transform: rotate(45deg);
  }

  #menuCheck:checked ~ .spMenuBtn span::after {
    top: 0;
    transform: rotate(-45deg);
  }

}

/* menu content ---------------------------*/
#hdrMenuContent {
  margin-top: 15px;
}

#hdrMenuContent ul li.current_page_item > a {
  opacity: 0.6;
}

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

  #hdrMenuContent {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100%; /*メニューを画面外へ*/
    z-index: 990;
    background-color: #E6F8F4;
    transition: 0.4s;
    font-size: 112.5%;
    padding: 15px 0 35px;
    margin-top: 0;
    overflow-y: auto;
    box-sizing: border-box;
  }

  /*ハンバーガーメニュークリックでメニューを表示*/
  #menuCheck:checked ~ #hdrMenuContent {
    left: 0;
  }

}

/* header sub menu ---------------------------*/
ul#menu-header_sub_menu {
  display: inline-block;
  position: absolute;
  top: 78px;
  right: 0;
}

ul#menu-header_sub_menu li {
  display: inline-block;
  margin-left: 20px;
  padding-left: 15px;
  position: relative;
}
ul#menu-header_sub_menu li::before {
  content: '■';
  font-size: 10px;
  color: var(--sub-color);
  position: absolute;
  top: 0.2em;
  left: 0;
}

ul#menu-header_sub_menu li a {
  text-decoration: none;
  color: #000000;
}

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

  ul#menu-header_sub_menu {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    margin: 1em 0 30px;
  }

  ul#menu-header_sub_menu li {
    display: block;
    margin-bottom: 10px;
  }

}

/* header contact ---------------------------*/
ul#headerContact {
  display: flex;
  align-items: center;
  position: absolute;
  top: 22px;
  right: 0;
  line-height: 100%;
}

ul#headerContact li:first-child {
  display: flex;
  align-items: center;
  font-size: 1.38rem;
  margin-top: 0.2em;
  margin-right: 20px;
  color: #000000;
  line-height: 100%;
}

ul#headerContact li img {
  width: 16px;
  height: auto;
  margin-top: -0.2em;
  margin-right: 10px;
}

ul#headerContact li:last-child a {
  display: inline-block;
  background-color: var(--main-color);
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 1.2em;
}

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

  ul#headerContact {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    margin-left: 20px;
  }

  ul#headerContact li:first-child {
    margin-bottom: 20px;
  }
  
  ul#headerContact li:last-child a {
    width: 11.5rem;
    text-align: center;
  }

}

/*--------------------------- main image ---------------------------*/
#headerWrap > ul {
  width: 100%;
  padding-top: 155px;
}

#headerWrap > ul li {
  position: relative;
}

#headerWrap > ul img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 920px) {
  #headerWrap > ul {
    padding-top: 50px;
  }
}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
footer
///////////////////////////////////////////////////////////////////////////////////////////////////*/

/*=========================== footer ===========================*/
footer {
  color: #000000;
  background-color: var(--earth-bg-color);
}

#ftrWrap {
  /*width: min(94%, 1200px);*/
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  /*padding-top: var(--size-middle);*/
  padding: var(--size-middle) clamp(1.563rem, 0.893rem + 2.14vw, 2.5rem) 0 clamp(1.563rem, 0.893rem + 2.14vw, 2.5rem); /* 25～40px：500～1200px */
  position: relative;
}

#ftrWrap a:link {
  color: #000000;
  text-decoration: none;
}
#ftrWrap a:visited {
  color: #000000;
}

#ftrWrap a:hover {
  opacity: 0.6;
}

/*--------------------------- footer navi ---------------------------*/
#ftrNavWrap {
  width: calc(100% - 348px);
  float: left; /* 必要（削除不可） */
  padding-bottom: 9em;
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
}

#ftrNavWrap div:last-child {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 3em;
  border-top: 1px solid #dbd9c9;
  padding-top: 20px;
  margin: var(--size-xsmall) 0 0 0;
  order: 5;
  grid-column: 1 / span 4;
}

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

  #ftrNavWrap {
    width: 100%;
    float: none;
    padding-bottom: var(--size-small);
  }

  #ftrNavWrap div:last-child {
    width: 100%;
    position: relative;
    bottom: 0;
  }

}

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

  #ftrNavWrap {
    gap: 0;
  }

  .menu-footer-01-container {
    order: 1;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding-right: var(--size-large);
  }
  .menu-footer-02-container {
    order: 3;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    padding-right: var(--size-large);
  }
  .menu-footer-03-container {
    order: 2;
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .menu-footer-04-container {
    order: 4;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  #ftrNavWrap li br {
    display: none;
  }
  
  /* ホームリンクの位置調整 */
  #menu-footer-04 {
    display: flex;
    flex-wrap: wrap;
  }
  #menu-footer-04 li {
    width: 100%;
  }
  #menu-footer-04 li:nth-of-type(1) {
    order: 6;
  }

}

@media screen and (max-width: 700px) {
  #ftrNavWrap li br {
    display: block;
  }
}

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

@media screen and (max-width: 400px) {
  #ftrNavWrap li br {
    display: none;
  }
}

#ftrNavWrap ul li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 0.5em;
}

#ftrNavWrap ul li::before {
  font-family: "Font Awesome 5 Free";
  content: '\f138';
  font-weight: 900;
  color: var(--main-color);
  font-size: 1em;
  position: absolute;
  top: -1px;
  left: 0;
}

#ftrNavWrap ul li ul {
  margin-top: 0.5em;
}

#ftrNavWrap ul li ul li {
  padding-left: 1em;
  /*background-image: url(/images/tmp/ftr_icon_list.png);
  background-position: left 0.55em;
  background-size: 5px auto;
  background-repeat: no-repeat;*/
}
#ftrNavWrap ul li ul li::before {
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 900;
  color: var(--main-color);
  font-size: 70%;
  position: absolute;
  top: 0.4em;
  left: 0;
}

#ftrNavWrap div:last-child ul {
  margin-right: 0;
  text-align: right;
}

#ftrNavWrap div:last-child ul li {
  display: inline-block;
  margin-left: 20px;
}

@media screen and (max-width: 480px) {
  
  #ftrNavWrap div:last-child ul {
    text-align: left;
  }
  #ftrNavWrap div:last-child ul li {
    margin-left: 0;
  }

}

/*--------------------------- footer info ---------------------------*/
#ftrInfoWrap {
  display: block;
  width: 318px;
  float: right;
  position: relative;
  color: #000000;
}

@media screen and (max-width: 1150px) {
  #ftrInfoWrap {
    float: none;
    width: 100%;
    margin-bottom: var(--size-small);
  }
}

@media screen and (max-width: 480px) {
  #ftrInfoWrap {
    margin-left: -10px;
  }
}

#ftrInfoWrap ul {
  margin-bottom: 10px;
}

#ftrInfoWrap ul li:nth-of-type(1) img {
  width: 100%;
  height: auto;
}

#ftrInfoWrap ul li:nth-of-type(2) {
  display: flex;
  align-items: center;
  font-size: 1.375rem;
  margin: 10px 20px 0 60px;
  line-height: 100%;
}

#ftrInfoWrap ul li:nth-of-type(2) img {
  width: 16px;
  height: auto;
  margin-right: 10px;
}

#ftrInfoWrap ul li:nth-of-type(3) {
  text-align: center;
  font-size: 1.125rem;
  padding: 0.3em 1em 0 0;
}

#ftrInfoWrap address {
  font-style: normal;  
  margin-left: 60px;
}

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

  #ftrInfoWrap ul li:nth-of-type(1) img {
    width: 50%;
    max-width: 318px;
    min-width: 220px;
  }

  #ftrInfoWrap ul li:nth-of-type(3) {
    margin-left: 60px;
    text-align: left;
  }

}

@media screen and (max-width: 700px) {
  #ftrInfoWrap ul li:nth-of-type(2),
  #ftrInfoWrap ul li:nth-of-type(3),
  #ftrInfoWrap address {
    margin-left: 8.57vw;
  }
}

@media screen and (max-width: 480px) {
  #ftrInfoWrap ul li:nth-of-type(2),
  #ftrInfoWrap ul li:nth-of-type(3),
  #ftrInfoWrap address {
    margin-left: 13px;
  }
}

/*--------------------------- copyright ---------------------------*/
#ftrCopyWrap {
  text-align: center;
  font-size: 75%;
  color: #FFFFFF;
  padding: 1em 15px 0.8em 15px;
  background-color: var(--main-color);
}

/*--------------------------- page top button ---------------------------*/
#pageTop {
  width: 46px;
  height: 46px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

#pageTop a {
  width: 46px;
  height: 46px;
  display: block;
  background-image: url(images/common/b_pagetop.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: cover;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  opacity: 0.8;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  #pageTop {
    right: 15px;
    bottom: 15px;
  }
}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
contents
///////////////////////////////////////////////////////////////////////////////////////////////////*/

/*=========================== pankuzu navi ===========================*/
#breadcrumbs {
  width: var(--contents-width);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: #000000;
  background-color: rgba(255,255,255,0.60);
  padding: 0.5rem var(--size-xsmall);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  font-size: var(--font-size-xsmall);
}
#breadcrumbs a:link,
#breadcrumbs a:visited {
  text-decoration: none;
  color: #2183d6;
}

span.pankuzuHomeIcon {
  display: inline-block;
  padding-left: 1.5em;
  position: relative;
}

span.pankuzuHomeIcon::before {
  display: block;
  content: '';
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(images/common/icon_pankuzu.png);
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
}


/*=========================== background shadow ===========================*/
#contentsGradeWrap {
  width: 100%;
  /*padding-top: clamp(31.25rem, 14.338rem + 29.41vw, 37.5rem);*/ /* max 1260px:600px、min 920px:500px */
  padding-top: clamp(25rem, 8.088rem + 29.41vw, 31.25rem); /* max 1260px:500px、min 920px:400px */
  background-image: url(images/common/contents_gradient.png);
  background-repeat: repeat-x;
  background-position: center bottom;
}

@media screen and (max-width: 920px) {
  #contentsGradeWrap {
    padding-top: 32vw;
  }
}

@media screen and (max-width: 500px) {
  #contentsGradeWrap {
    padding-top: clamp(7.5rem, 1.944rem + 27.78vw, 10.625rem); /* max 500px:170px、min 320px:120px */
  }
}

#contentsGrade {
  display: block;
  width: var(--contents-width);
  max-width: 1200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.15), -3px -3px 6px rgba(0, 0, 0, 0.15);
  position: relative;
}

#contentsGrade::after {
  content: '';
  width: calc(100vw);
  height: 200px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(images/common/contents_gradient.png);
  background-repeat: repeat-x;
  background-position: center top;
}

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

  #contentsGrade {
    height: 150px;
  }
  #contentsGrade::after {
    height: 150px;
    background-size: contain;
  }

}


/*=========================== container ===========================*/
#container {
  width: var(--contents-width);
  max-width: 1200px;
  margin: -200px auto 0;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 500px) {
  #container {
    margin: -150px auto 0;
  }
}

/*--------------------------- main title ---------------------------*/
#container h2#mainTitle {
  width: 100%;
  background-color: #f5f4ec;
}

#container h2#mainTitle span {
  display: inline-block;
  font-size: var(--font-size-xlarge);
  font-weight: normal;
  color: #FFFFFF;
  background-color: #2dad93;
  padding: calc(var(--size-xxxsmall) + 0.1em) var(--size-xsmall);
}

/*--------------------------- contents wrap ---------------------------*/
#contentsWrap {
  width: 100%;
  max-width: 1200px;
  min-height: 200px;
  margin: 0 auto;
  padding: var(--size-large) var(--size-xlarge) var(--size-xlarge);
  position: relative;
}

@media screen and (max-width: 1260px) {
  #contentsWrap {
    padding: var(--size-middle) clamp(0.938rem, -0.233rem + 5.85vw, 4.375rem) var(--size-xlarge); /* 15px～70px */
  }
}


/*=========================== title ===========================*/
#contentsWrap h1,
#contentsWrap h2,
#contentsWrap h3,
#contentsWrap h4 {
  color: #000000;
  font-family: var(--font-marugo);
  font-weight: normal;
}

#contentsWrap > h1:first-child,
#contentsWrap > h2:first-child,
#contentsWrap > h3:first-child,
#contentsWrap > h4:first-child,
#contentsWrap > h5:first-child,
#contentsWrap > h6:first-child {
  margin-top: 0;
}

/*--------------------------- h1 ---------------------------*/
#contentsWrap > h1 {
  margin: var(--size-xlarge) 0 var(--size-small) 0;
  font-size: var(--font-size-xxlarge);
  display: flex;
  align-items: stretch;
  gap: 0.5em;
}

#contentsWrap > h1::before {
  content: '';
  width: 7px;
  border-radius: 3.5px;
  background-color: var(--main-color);
}

/*--------------------------- h2 ---------------------------*/
#contentsWrap > h2 {
  margin: var(--size-large) 0 var(--size-small) 0;
  font-size: var(--font-size-xlarge);
  border-bottom: 2px solid #DDDDDD;
  position: relative;
}

#contentsWrap > h2::before {
  content: '';
  width: 2em;
  height: 2px;
  line-height: 100%;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -2px;
}

/*--------------------------- h3 ---------------------------*/
#contentsWrap > h3 {
  margin: var(--size-large) 0 var(--size-small) 0;
  padding-bottom: 10px;
  font-size: var(--font-size-large);
  display: flex;
  align-items: stretch;
  gap: 0.5em;
  border-bottom: 1px dashed #DDDDDD;
}

#contentsWrap > h3::before {
  content: '';
  width: 7px;
  border-radius: 3.5px;
  background-color: #bbe2da;
}

/*--------------------------- h4 ---------------------------*/
#contentsWrap > h4 {
  margin: var(--size-middle) 0 var(--size-xsmall) 0;
  font-size: var(--font-size-middle);
  display: flex;
  align-items: center;
  gap: 0.4em;
}

#contentsWrap > h4::before {
  content: '';
  width: 0.7em;
  height: 0.7em;
  border-radius: 0.7em;
  border: 3px solid var(--sub-color);
  margin-bottom: 0.1em;
}

/*--------------------------- h5 ---------------------------*/
#contentsWrap > h5 {
  margin: var(--size-small) 0 var(--size-xxxsmall) 0;
  font-size: 1rem;
  font-weight: bold;
}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
archive
///////////////////////////////////////////////////////////////////////////////////////////////////*/

/*=========================== archive list ===========================*/
ul.archiveListWrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--size-small);
  margin: 0 !important;
}
ul.archiveListWrap.column4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

ul.archiveListWrap li {
  /*width: calc(100% - calc(var(--size-small) / 2));*/
  border: 1px solid #DDDDDD;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  background: none;
}

ul.archiveListWrap li::before {
  display: none;
}

ul.archiveListWrap li img {
  width: auto;
  height: 100%;
}

@media screen and (max-width: 1060px) {
  ul.archiveListWrap,
  ul.archiveListWrap.column4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  ul.archiveListWrap,
  ul.archiveListWrap.column4 {
    grid-template-columns: 1fr;
  }
}

ul.archiveListWrap a {
  display: block;
  color: #333333;
  text-decoration: none;
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}
ul.archiveListWrap a:visited {
  color: #333333;
}

.archiveListImg {
  width: 100%;
  padding-top: 75%;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  margin-bottom: 10px;
  background-repeat: no-repeat;
  border: 6px solid #FFFFFF;
  border-radius: 10px;
}

.archiveListDate {
  font-size: 87.5%;
  padding: 0 10px;
  text-align: right;
}

#contentsWrap ul.archiveListWrap h3 {
  font-size: 112.5%;
  margin-top: 0;
  margin-bottom: 15px;
  padding: 0 10px;
  font-family: var(--font-kakugo) !important;
}

.archiveListWrap + .txtLink {
  margin-top: 0 !important;
}


/*=========================== pager ===========================*/
/*.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 100%;
  margin-bottom: 50px;
}

.dlLst01 + .pager {
  margin-top: 50px;
}

.pager div {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.pager a {
  display: inline-block;
  border: 1px solid #177BA4;
  padding-top: 0.6em;
  padding-right: 0.7em;
  padding-left: 0.7em;
  padding-bottom: 0.5em;
  margin-left: 5px;
  margin-right: 5px;
  text-decoration: none;
}

.pager .first {
  margin-right: 5px;
  padding: 0;
}

.pager .last {
  margin-left: 5px;
  padding: 0;
}
.pager .first a,
.pager .last a {
  padding-right: 0.4em;
  padding-left: 0.4em;
  margin-left: 0;
  margin-right: 0;
}

.pager .no-link {
  display: inline-block;
  border: 1px solid #DDDDDD;
  padding-top: 0.6em;
  padding-right: 0.7em;
  padding-left: 0.7em;
  padding-bottom: 0.5em;
  margin-left: 5px;
  margin-right: 5px;
  text-decoration: none;
  color: #CCCCCC;
}

.pager .no-link.current {
  background-color: #177BA4;
  color: #FFFFFF;
  border: 1px solid #177BA4;
  padding-top: 0.6em;
  padding-right: 0.7em;
  padding-left: 0.7em;
  padding-bottom: 0.5em;
  margin-left: 5px;
  margin-right: 5px;
  line-height: 100%;
}

.first,
.prev .no-link,
.last,
.next .no-link{
  display: none;
}*/

/*--------------------------- archive pagenation ---------------------------*/
.pagination {
  text-align: center;
}

.nav-links .page-numbers {
  list-style-type: none !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a.page-numbers ,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
  width: 2.2rem;
  height: 2.2rem;
  text-align: center;
  line-height: 2.2rem;
  color: var(--main-color);
  margin-right: 0.5rem;
  font-size: 0.875rem;
  font-weight: bold;
  border: 1px solid var(--main-color);
  text-decoration: none;
  font-family: Helvetica Neue, Helvetica, Arial;
}

.nav-links .page-numbers.dots {
  border: none;
  margin: 0 0 0 -0.5rem;
  line-height: 100%;
  display: flex;
  align-items: flex-end;
}

ul.page-numbers {
  margin-top: var(--size-middle);
}
ul.page-numbers li {
  padding-left: 0 !important;
}
ul.page-numbers li::before {
  display: none;
}

ul.page-numbers li:last-child a {
  margin-right: 0;
}

.nav-links a.page-numbers:hover {
  color: var(--main-color);
  background-color: var(--sub-color);
  border-color: var(--main-color);
}

.nav-links .current {
  background: var(--main-color);
  color: #FFFFFF;
  padding: 0;
}

/* 前への「＜」、次への「＞」 */
.nav-links a.prev,
.nav-links a.next {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  position: relative;
}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
common parts
///////////////////////////////////////////////////////////////////////////////////////////////////*/

/*=========================== text link ===========================*/
a.txtLink,
p.txtLink a {
  display: inline-block;
  padding-left: 1.5em;
  position: relative;
}

a.txtLink::before,
p.txtLink a::before {
  font-family: "Font Awesome 5 Free";
  content: '\f138';
  font-weight: 900;
  color: var(--main-color);
  font-size: 1em;
  position: absolute;
  top: -1px;
  left: 0;
}


/*=========================== button ===========================*/
.commonBtn {
  text-align: center;
}

.wp-block-button {
  margin-top: var(--size-middle) !important;
}

.commonBtn a,
a.wp-block-button__link,
.wp-block-button__link {
  display: inline-block;
  text-align: center;
  font-size: 1.25rem;
  line-height: 100%;
  background-color: var(--main-color) !important;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 2em;
  padding-right: 1.5em;
  position: relative;
  border-radius: 1.5em;
}

.commonBtn a::after,
a.wp-block-button__link::after {
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  font-weight: 600;
  color: rgba(255,255,255,1.00);
  margin-left:0.5em;
  font-size: 1.2rem;
}

.commonBtn a:link,
a.wp-block-button__link:link {
  color: #FFFFFF;
  text-decoration: none;
}
.commonBtn a:visited,
a.wp-block-button__link:visited {
  color: #FFFFFF;
}


/*=========================== date ===========================*/
.update {
  text-align: right;
  margin-bottom: var(--size-small);
}

h1 + .update {
  margin-top:  calc(var(--size-small) * -1);
  padding-top: 10px; 
}


/*=========================== slick ===========================*/
.sliderBox {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

#contentsWrap .sliderMain {
  width: 100%;
  background-color: #EEEEEE;
  margin-bottom: 1px;
  margin-left: 0;
}

.sliderMain li {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

.sliderMain li::before {
  display: none;
}

.sliderMain a {
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #FFFFFF;
  pointer-events: none;
}
.sliderMain a:visited {
  color: #FFFFFF;
}

.sliderMain img {
  width: auto;
  height: 100%;
}

.sliderMain .caption {
  width: 100%;
  margin: 0;
  padding: 0.5em;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(45,173,147,0.7);
  text-align: center;
}

.slick-track {
  margin-left: 0 !important;
}
#contentsWrap .sliderThumb {
  width: 100%;
  background-color: #DDDDDD;
  margin-left: 0;
}

.sliderThumb li {
  /*width: 100px !important;
  height: 100px !important;*/
  overflow: hidden;
  border-right: 1px solid #FFFFFF;
  margin: 0 !important;
  padding-left: 0 !important;
}

.sliderThumb li a {
  display: block;
  aspect-ratio: 1 / 1;
  background-size: cover;
}

.sliderThumb li::before {
  display: none;
}

.sliderThumb li img {
  width: auto;
  height: 100px;
  margin-left: auto;
  margin-right: auto;

}


/*=========================== common inquiry area ===========================*/
.inquiryBoxWrap {
  max-width: 700px;
  margin: var(--size-middle) auto 0 auto;
  padding: var(--size-xsmall);
  border: 2px solid var(--sub-color);
  border-radius: var(--size-xxsmall);
  text-align: center;
}

.wp-block-buttons + .inquiryBoxWrap {
  margin-top: var(--size-large);
}

.inquiryBoxWrap h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--size-xsmall);
  font-size: var(--font-size-large);
  transform: rotate(0.1deg);
}

@media screen and (max-width: 600px) {
  .inquiryBoxWrap h2 {
    font-size: var(--font-size-middle);
  }
}

.inquiryBoxWrap h2 img {
  width: auto;
  height: 1.6em;
  margin-right: 0.3em;
}

.inquiryBoxTxt {
  display: inline-block;
  text-align: left;
}

.inquiryBoxTel {
  font-size: var(--font-size-xxlarge);
  color: var(--main-color);
  padding: var(--size-xsmall) 0 0.2em 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiryBoxTel img {
  width: auto;
  height: 1em;
  margin-right: 0.3em;
}

.inquiryBoxName {
  text-align: center;
}

.inquiryBoxTxt + .inquiryBoxName {
  margin-top: 1.5em;
}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
information
///////////////////////////////////////////////////////////////////////////////////////////////////*/

/*=========================== news list ===========================*/
dl.infoList {
  margin: var(--size-xxxsmall) 0 var(--size-middle) 0;
}

dl.infoList dt {
  float: left;
  width: 14em;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0.3em;
  clear: both;
  box-sizing: border-box;
  position: relative;
}
dl.infoList dd {
  padding-left: 11.4em;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 0.3em;
  box-sizing: border-box;
  border-bottom: 1px dotted #bfbfbf;
}

dl.infoList dt span {
  width: 8em;
  display: inline-block;
  font-size: 0.75rem;
  text-align: center;
  line-height: 100%;
  padding-top: 0.45em;
  padding-bottom: 0.3em;
  border-radius: 4px;
  position: absolute;
  top: 1.3em;
  left: 9.5em;
}

dl.infoList .info,
dl.infoList .other {
  color: #FFFFFF;
  background-color: var(--main-color);
}
dl.infoList .important {
  color: #FFFFFF;
  background-color: #d5609d;
}
dl.infoList .noChk {
  color: #FFFFFF;
  background-color: #999999;
}

dl.infoList a {
  text-decoration: none;
}

.infoMoreBtn {
  text-align: right;
}

.infoMoreBtn a {
  display: inline-block;
  text-align: center;
  color: #FFFFFF;
  background-color: #555555;
  padding-top: 0;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 0;
  border-radius: 1em;
  text-decoration: none;
}

.infoMoreBtn span::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: '\f054';
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.7rem;
  line-height: 100%;
  margin-left: 7px;
}


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

  dl.infoList {
    margin-bottom: 15px;
  }

  dl.infoList dt {
    float: none;
    padding-top: 15px;
    padding-bottom: 0;
    padding-left: 0;
  }
  dl.infoList dd {
    padding-left: 0;
    padding-top: 3px;
    padding-bottom: 10px;
    padding-right: 0;
  }

  dl.infoList dt span {
    position: absolute;
    top: 1.2em;
    left: 8.8em;
  }

}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
faq
///////////////////////////////////////////////////////////////////////////////////////////////////*/
dl.faqList {
  padding-top: var(--size-middle);
}

p + dl.faqList {
  padding-top: var(--size-small);
}

dl.faqList dt {
  display: flex;
  cursor: pointer;
  padding-right: 3em;
  margin-bottom: var(--size-xsmall);
  position: relative;
}
dl.faqList dt.qOpen {
  border-bottom: none;
}

dl.faqList dt .faqQTitle {
  line-height: 100%;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--main-color);
  padding-left: 0.3rem;
  padding-right: 1rem;
}

dl.faqList dt::before {
  content: '●';
  color: #BBBBBB;
  font-size: 3em;
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: normal;
  line-height: 100%;
  position: absolute;
  top: -0.3em;
  right: 0;
}
dl.faqList dt::after {
  content: '+';
  color: #FFFFFF;
  font-size: 1.2em;
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: normal;
  line-height: 100%;
  position: absolute;
  top: 0.15em;
  right: 0.45em;
  transition: 0.5s;
}
dl.faqList dt.qOpen::after {
  transform: rotate(45deg);
  transition: 0.5s;
}

dl.faqList dd {
  display: none;
  width: calc(100% - 5em);
  background: var(--earth-bg-color);
  padding: var(--size-xsmall);
  margin-top: 15px; /* 吹き出しの三角分 */
  margin-right: auto;
  margin-left: auto;
  margin-bottom: var(--size-small);
  border-radius: var(--size-xxsmall);
  position: relative;
}

dl.faqList dd.aOpend {
  display: flex !important;
}

dl.faqList dd .faqATitle {
  line-height: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  padding-right: 0.7rem;
  margin-left: -10px;
  color: #8C7D49;
}

dl.faqList dd:after {
  content: "";
  position: absolute;
  top: -15px;
  left: 3em;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent var(--earth-bg-color) transparent;
  border-width: 0 15px 15px 15px;
}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
access
///////////////////////////////////////////////////////////////////////////////////////////////////*/

/*=========================== access map area ===========================*/
.mapArea {
  width: 100%;
  border: 5px solid #FFFFFF;
  border-radius: 10px;
}
.mapArea iframe {
  width: 100% !important;
  height: clamp(18.75rem, 14.205rem + 22.73vw, 31.25rem) !important; /* 300～500px：320～1200px */
  filter: grayscale(.4);
  vertical-align: bottom;
}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
gallery
///////////////////////////////////////////////////////////////////////////////////////////////////*/

/*=========================== gallery list ===========================*/
.post-type-archive-gallery ul.archiveListWrap,
.tax-gallery-category ul.archiveListWrap {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: var(--size-xsmall);
}

.post-type-archive-gallery ul.archiveListWrap .archiveListImg,
.tax-gallery-category ul.archiveListWra .archiveListImg {
  margin-bottom: 0;
}

.post-type-archive-gallery ul.archiveListWrap .archiveListDate,
.tax-gallery-category ul.archiveListWra .archiveListDate {
  padding-bottom: 0.2em;
}

@media screen and (max-width: 1100px) {
  .post-type-archive-gallery ul.archiveListWrap,
  .tax-gallery-category ul.archiveListWrap {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 800px) {
  .post-type-archive-gallery ul.archiveListWrap,
  .tax-gallery-category ul.archiveListWrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 580px) {
  .post-type-archive-gallery ul.archiveListWrap,
  .tax-gallery-category ul.archiveListWrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 370px) {
  .post-type-archive-gallery ul.archiveListWrap,
  .tax-gallery-category ul.archiveListWrap {
    grid-template-columns: 1fr;
  }
}

.post-type-archive-gallery ul.archiveListWrap + .txtLink,
.tax-gallery-category ul.archiveListWrap + .txtLink {
  margin-top: var(--size-small) !important;
}

/*ul.galleryList {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--size-small);
  margin: 0 0 var(--size-middle) 0 !important;
}

p + ul.galleryList {
  margin-top: var(--size-middle) !important;
}

ul.galleryList li {
  border: 1px solid #DDDDDD;
  padding: 0 0 0.5em 0 !important;
}

@media screen and (max-width: 768px) {
  ul.galleryList {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  ul.galleryList {
    grid-template-columns: 1fr;
  }
}

ul.galleryList li::before {
  display: none;
}

ul.galleryList a:visited {
  color: #333333;
}

ul.galleryList a {
  display: block;
  width: 100%;
  padding-top: 75%;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  margin-bottom: 0.5em;
  background-repeat: no-repeat;
  border: 6px solid #FFFFFF;
  border-radius: 10px;
}

ul.galleryList span {
  display: block;
  padding: 0.2em 10px;
}

.galleryListDate {
  margin-bottom: var(--size-xxsmall);
}*/



/*///////////////////////////////////////////////////////////////////////////////////////////////////
service
///////////////////////////////////////////////////////////////////////////////////////////////////*/

/*=========================== contents card ===========================*/
#serviceTopBtnWrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: var(--size-small);
}

#serviceTopBtnWrap .serviceTopBtnInner {
	padding: var(--size-middle) 20px 20px;
	background-color: #FFFFFF;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: column;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.15), -3px -3px 10px rgba(0,0,0,0.15);
}

#serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(1),
#serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(2),
#serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(3) {
  width: calc(33.33% - calc(var(--size-small) * 2 / 3));
}

#serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(4),
#serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(5) {
  width: calc(50% - calc(var(--size-small) / 2) );
}

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

  #serviceTopBtnWrap .serviceTopBtnInner {
    padding: var(--size-small) 20px var(--size-middle) 20px;
  }

  #serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(1),
  #serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(2),
  #serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(3),
  #serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(4) {
    width: calc(50% - calc(var(--size-small) / 2) );
  }

  #serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(5) {
    width: 100%;
  }

}

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

  #serviceTopBtnWrap .serviceTopBtnInner {
    width: 100% !important;
    padding: var(--size-small) 20px 20px;
  }

}

#serviceTopBtnWrap .serviceTopBtnInner h2 {
	font-size: var(--font-size-middle) !important;
	color: var(--main-color);
	font-family: var(--font-marugo);
  font-weight: bold;
	margin-bottom: var(--size-xsmall);
	text-align: center;
}

#serviceTopBtnWrap .serviceTopBtnInner br {
  display: none;
}

#serviceTopBtnWrap .serviceTopBtnInner p {
  margin: 0.5em clamp(0rem, -0.893rem + 2.86vw, 1.25rem) 2em; /* clamp 500px～1200px：0～20px */
}

#serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(4) p,
#serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(5) p {
  margin: 0.5em clamp(0rem, -1.116rem + 3.57vw, 1.563rem) 2em; /* clamp 500px～1200px：0～25px */
}

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

  #serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(1) h2,
  #serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(2) h2,
  #serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(5) h2 {
    line-height: 3em;
  }

  #serviceTopBtnWrap .serviceTopBtnInner h2 br {
    display: block;
  }

  #serviceTopBtnWrap .serviceTopBtnInner p {
    margin: 0.5em clamp(0rem, -0.893rem + 2.86vw, 1.25rem) 2em !important; /* clamp 500px～1200px：0～20px */
  }

}

@media screen and (max-width: 880px) {
  #serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(5) p {
    text-align: center;
  }
}

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

  #serviceTopBtnWrap .serviceTopBtnInner p {
    margin: 0.5em clamp(0rem, -1.364rem + 6.82vw, 3.75rem) 2em !important; /* clamp 320px～1200px：0～60px */
  }

  #serviceTopBtnWrap .serviceTopBtnInner:nth-of-type(5) p {
    text-align: left;
  }

}

#serviceTopBtnWrap .serviceTopBtnInner div {
  text-align: center;
}

#serviceTopBtnWrap .serviceTopBtnInner div {
	text-align: center;
}

#serviceTopBtnWrap .serviceTopBtnInner div img {
	width: 114px;
	height: auto;
}

#serviceTopBtnWrap .serviceTopBtnList {
	flex-grow: 1;
	margin-bottom: 20px;
}

#serviceTopBtnWrap .serviceTopBtnList ul {
	display: inline-block;
}

#serviceTopBtnWrap .serviceTopBtnList ul li {
	padding-left: 1.5em;
	position: relative;
  margin-bottom: 0.5em;
	text-align: left;
	color: #000000;
}
#serviceTopBtnWrap .serviceTopBtnList ul li:last-child {
	margin-bottom: 0;
}

#serviceTopBtnWrap .serviceTopBtnList ul li::before {
  font-family: "Font Awesome 5 Free";
  content: '\f138';
  font-weight: 900;
	color: var(--main-color);
	font-size: 1em;
	position: absolute;
	top: -1px;
	left: 0;
}

#serviceTopBtnWrap .serviceTopBtnList ul li a:link,
#serviceTopBtnWrap .serviceTopBtnList ul li a:visited {
  text-decoration: none;
  color: #000000;
}


/*=========================== service flow list ===========================*/
#contentsWrap ol.serviceFlowWrap {
  counter-reset: list;
  list-style-type: none;
  padding: 0px !important;
  padding-left: calc(1em + 4px) !important;
  margin-top: var(--size-middle);
}
  
#contentsWrap ol.serviceFlowWrap > li {
  padding: 0 0 var(--size-xsmall) 2.2em;
  margin-bottom: 0;
  position: relative;
  border-left: 4px solid var(--border-color);
}

#contentsWrap ol.serviceFlowWrap > li:last-child {
  border: none;
  padding-bottom: 0;
}

#contentsWrap ol.serviceFlowWrap > li::before{
  display: block;
  counter-increment: list;
  content: counter(list);
  width: 2em;
  height: 2em;
  font-size: 1.3em;
  line-height: 2em;
  background-color: var(--main-color);
  text-align: center;
  color: #FFFFFF;
  position: absolute;
  top: -0.4em;
  left: calc(-1em - 2px);
  border-radius: 50%;
}
#contentsWrap ol.serviceFlowWrap > li:last-child::before {
  left: calc(-1em + 2px);
}

#contentsWrap ol.serviceFlowWrap > li h3 {
  width: 100%;
  font-weight: bold !important;
  margin-bottom: var(--size-xxsmall);
}

.serviceFlowInner {
  display: flex;
  gap: var(--size-xsmall);
}

.serviceFlowInner p:first-child {
  margin-top: 0;
}

.serviceFlowInner > div:nth-of-type(1) img {
  width: 250px;
  height: auto;
  border-radius: 6px;
}

@media screen and (max-width: 860px) {
  .serviceFlowInner > div:nth-of-type(1) img {
    width: 29.1vw;
    min-width: 150px;
  }
}

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

  .serviceFlowInner {
    flex-wrap: wrap;
  }

  .serviceFlowInner > div:nth-of-type(1) img {
    width: 100%;
  }

}


/*=========================== service schedule list ===========================*/
ul.serviceScheduleWrap {
  list-style-type: none;
  padding: 0px;
  margin-left: 3em !important;
}
  
ul.serviceScheduleWrap > li {
  padding: 0 0 var(--size-xsmall) 4.2em !important;
  margin: 0 !important;
  position: relative;
  border-left: 4px solid var(--border-color);
}


@media screen and (max-width: 500px) {
  ul.serviceScheduleWrap > li {
    padding: 2.5em 0 var(--size-xsmall) 1em !important;
  }
}

ul.serviceScheduleWrap > li:last-child {
  border: none;
  padding-bottom: 0 !important;
}

ul.serviceScheduleWrap > li::before{
  display: none !important;
}

.serviceScheduleTime {
  width: 6em;
  padding: 0.2em 1em;
  border-radius: 1em;
  background-color: var(--main-color);
  color: #FFFFFF;
  text-align: center;
  position: absolute;
  top: -0.1em;
  left: calc(-3em - 2px);
}

ul.serviceScheduleWrap > li:last-child .serviceScheduleTime {
  left: calc(-3em + 2px);
}

ul.serviceScheduleWrap > li h3 {
  width: 100%;
  font-weight: bold !important;
  margin-bottom: var(--size-xxsmall);
}

.serviceScheduleInner {
  display: flex;
  gap: var(--size-xsmall);
}

.serviceScheduleInner p:first-child {
  margin-top: 0;
}

.serviceScheduleInner > div:nth-of-type(1) img {
  width: 250px;
  height: auto;
  border-radius: 6px;
}

@media screen and (max-width: 860px) {
  .serviceScheduleInner > div:nth-of-type(1) img {
    width: 29.1vw;
    min-width: 150px;
  }
}

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

  .serviceScheduleInner {
    flex-wrap: wrap;
  }

  .serviceScheduleInner > div:nth-of-type(1) img {
    width: 100%;
  }

}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
form
///////////////////////////////////////////////////////////////////////////////////////////////////*/

/*=========================== form list ===========================*/
dl#formLst {
  width: 100%;
  margin-top: 40px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}

dl#formLst dt {
  width: 14em;
  padding-top: 1.6em;
  padding-bottom: 1em;
  padding-right: 0;
  padding-left: 0;
  margin: 0px;
  border-bottom: 1px solid #DEDEDE;
  font-weight: normal;
  box-sizing: border-box;
}

dl#formLst dd {
  width: calc(100% - 14em);
  padding-top: 1.5em;
  padding-bottom: 1em;
  padding-right: 0;
  margin: 0;
  border-bottom: 1px solid #DEDEDE;
  box-sizing: border-box;
}

#formLst .formMust,
#formLst .formNoMust {
  color: #FFFFFF;
  font-size: 68.8%;
  padding-top: 0.4em;
  padding-right: 0.3em;
  padding-left: 0.3em;
  padding-bottom: 0.3em;
  line-height: 100%;
  margin-top: 0px;
  margin-right: 0.7em;
  margin-bottom: 0.2em;
  margin-left: 0px;
  border-radius: 2px;
  vertical-align: middle;
  display: inline-block;
}
#formLst .formMust {
  background-color: #A91605;
}
#formLst .formNoMust {
  background-color: #999999;
}

#formLst .formBoxMgn {
  margin-bottom: 5px;
}

#formLst input,
#formLst select,
#formLst textarea {
  border-color: #BBBBBB;
  border-width: 1px;
  border-style: solid;
  padding-top: 0.4em;
  padding-right: 0.5em;
  padding-left: 0.5em;
  padding-bottom: 0.4em;
  margin-bottom: 0.5em;
  font-size: 100%;
  box-sizing: border-box;
  height: auto;
}

#formLst select {
  color: #444444 !important;
  margin-right: 5px;
}

.wpcf7 input::placeholder {
  color: #999999;
}


/*--------------------------- form size ---------------------------*/
#formLst .formWidth01 {
  width: 80%;
}
#formLst .formWidth02 {
  width: 50%;
}
#formLst .formWidth03 {
  width: 18%;
}
#formLst .formWidth04 {
  width: 25%;
}
#formLst .formWidth05 {
  width: 4em;
}

/*--------------------------- form button ---------------------------*/
#formBtnArea {
  width: 100%;
  text-align: center;
}

#formBtnArea input.wpcf7-submit,
#formBtnArea input.wpcf7c-btn-confirm,
#formBtnArea input.wpcf7c-btn-back {
  display: inline-block;
  width: 260px;
  height: 52px;
  text-align: center;
  background-color: var(--main-color);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-size: 112.5%;
  border-radius: 5px;
  border-style: none;
  color: #FFFFFF;
  margin-left: 10px;
  margin-right: 10px;
  vertical-align: middle;
  overflow:visible;
  font-family: inherit;
  outline: none;
}

#formBtnArea input.wpcf7-submit {
  width: 200px;
  opacity: 0.6;
}

#formBtnArea input.wpcf7c-btn-back {
  width: 200px;
  background-color: #666666;
}

#formBtnArea label {
  font-weight: normal;
}

.wpcf7-spinner {
  display: block !important;
}

span.wpcf7-not-valid-tip {
  color: #C00003;
}
div.wpcf7 form.invalid .wpcf7-response-output {
  padding: 20px;
  border: 1px solid #C00003;
  color: #C00003;
  text-align: center;
}

div.wpcf7 form.sent .wpcf7-response-output {
  padding: 20px;
  border: 2px solid #177BA4;
  color: #555555;
  text-align: center;
}

div.wpcf7 form .wpcf7-not-valid {
  background-color: rgba(254,232,232,1.00) !important;
}

div.wpcf7 form .wpcf7c-conf {
  background-color: rgb(232, 240, 254) !important;
}

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

  dl#formLst {
    margin-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 30px;
    flex-direction: column;
  }
  dl#formLst dt {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 0px;
    border: none;
  }

  dl#formLst dd {
    width: 100%;
    padding-left: 0em;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #formLst .formBoxMgn {
    margin-bottom: 5px;
  }

  #formLst input,
  #formLst select,
  #formLst textarea {
    margin-bottom: 0.8em;
  }
  #formLst select {
    margin-right: 0px;
  }

  /* form size ----------*/
  #formLst .formWidth01,
  #formLst .formWidth02 {
    width: 100%;
  }
  #formLst .formWidth03 {
    width: 50%;
  }
  #formLst .formWidth04 {
    width: 60%;
  }

  /* form button ----------*/
  #formBtnArea input.wpcf7c-btn-confirm {
    width: 80%;
  }
  #formBtnArea input.wpcf7-submit {
    width: 80%;
    max-width: 300px;
  }

}

.formPrivacyLink {
  font-size: var(--font-size-xxsmall);
}


/*--------------------------- reCAPCHA ---------------------------*/
#recapcha {
  font-size: 0.6875rem;
  text-align: center;
}
.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (max-width: 420px) {
  #recapcha {
    text-align: left;
  }
}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
floor map
///////////////////////////////////////////////////////////////////////////////////////////////////*/

/*=========================== floor map list ===========================*/
.floorMapList li::before {
  display: none;
  padding-left: 0;
}

ul.floorMapList {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: var(--size-xxsmall);
  margin: var(--size-large) 0 var(--size-middle) 0 !important;
}

@media screen and (max-width: 1100px) {
  ul.floorMapList {
    grid-template-columns: auto auto auto;
  }
}

@media screen and (max-width: 800px) {
  ul.floorMapList {
    grid-template-columns: auto auto;
  }
}

ul.floorMapList li {
  display: flex;
  align-items: flex-start;
  padding-left: 0 !important;
}

.floorMapList span {
  display: inline-block;
  width: 2em;
  background-color: var(--main-color);
  color: #FFFFFF;
  margin: -0.3em 0.5em 0 0;
  padding: 0.3em 0;
  text-align: center;
  border-radius: 4px;
}



/*///////////////////////////////////////////////////////////////////////////////////////////////////
recruit
///////////////////////////////////////////////////////////////////////////////////////////////////*/

/*=========================== recruit list box ===========================*/
.recruitBoxWrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-middle);
  padding-top: var(--size-xxxsmall);
}

.recruitEntryCardWrap {
  width: calc(50% - calc(var(--size-middle) / 2));
  padding: var(--size-xsmall);
  border: 2px solid var(--main-color);
  border-radius: 0.8em;
}

@media screen and (max-width: 1000px) {
  .recruitBoxWrap {
    justify-content: center;
  }
  .recruitEntryCardWrap {
    width: 90%;
  }
}

@media screen and (max-width: 700px) {
  .recruitEntryCardWrap {
    width: 100%;
  }
}

.recruitEntryCardDate {
  margin-bottom: 1em;
}

.recruitEntryCardWrap h3 {
  display: inline-block;
  margin-bottom: 1em;
  padding-left: 1.4em;
  font-size: var(--font-size-middle);
  font-weight: bold !important;
  color: var(--main-color) !important;
  transform: rotate(0.1deg);
  /*line-height: 100%;*/
  position: relative;
}

.recruitEntryCardWrap h3::before {
  font-family: "Font Awesome 5 Free";
  content: '\f007';
  font-weight: 900;
  color: var(--main-color);
  font-size: 1em;
  /*margin-right: 0.4em;*/
  position: absolute;
  top: 0;
  left: 0;
}

.recruitEntryCardWrap a {
  display: block;
  position: relative;
  padding-left: 1.5em;
}

.recruitEntryCardWrap a::before {
  font-family: "Font Awesome 5 Free";
  content: '\f138';
  font-weight: 900;
  color: var(--main-color);
  position: absolute;
  top: -1px;
  left: 0;
}
/*.recruitEntryCardJobStyle {
  font-size: 1.125rem;
}

.recruitEntryCardSalary {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  font-size: var(--font-size-small);
  margin: 0.7em 0;
}
.recruitEntryCardSalary span {
  padding: 0.15em 0.5em;
  font-size: 0.7em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-shrink: 1;
  border: 2px solid #CCCCCC;
  border-radius: 3px;
}*/


/*=========================== recruit inquiry box ===========================*/

.recruitInquiryWrap {
  margin-top: var(--size-large);
  padding: 0 var(--size-xsmall);
}

.recruitInquiryWrap h3 {
  display: flex;
  margin: 0 calc(var(--size-xsmall) * -1) var(--size-xsmall) calc(var(--size-xsmall) * -1);
  padding-bottom: 0.5em;
  font-size: var(--font-size-large);
  transform: rotate(0.1deg);
  border-bottom: 1px dashed #CCCCCC;
}

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

  .recruitInquiryWrap {
    padding: 0;
  }

  .recruitInquiryWrap h3 {
    font-size: var(--font-size-middle);
    margin-left: 0;
    margin-right: 0;
  }

}

.recruitInquiryWrap h3 img {
  width: auto;
  height: 1.6em;
  margin-right: 0.3em;
}

.recruitInquiryTxt {
  display: inline-block;
  text-align: left;
}

.recruitInquiryTel {
  font-size: var(--font-size-xxlarge);
  color: var(--main-color);
  padding: var(--size-xsmall) 0 0.2em 0;
  display: flex;
  align-items: center;
}

.recruitInquiryTel img {
  width: auto;
  height: 1em;
  margin-right: 0.3em;
}







/**/