@charset "utf-8";
/** ==============================================
共通
============================================== **/

/* -------------------------------
link-misugigroup
-------------------------------- */
.link-misugigroup {
  background: #fff;
  border: solid 2px var(--misugi-blue);
  border-radius: 4px;
  margin-bottom: 20px;
}
.link-misugigroup a {
  display: block;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: var(--misugi-blue);
  font-size: 13px;
  line-height: 1.4;
}

/* -------------------------------
list
-------------------------------- */
.list {
  --gap: 25px;
  gap: var(--gap);
}
.list li {
  align-content: start;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.list li figure {
  margin-bottom: 5px;
}
.list li strong {
  font-size: 1.2em;
  color: var(--c-sub);
  font-weight: bold;
}

@media (max-width: 680px) {
  .list {
    --gap: 15px;
  }
  .list li {
    gap: 5px;
    font-size: 0.95em;
  }
  .list li strong {
    font-size: 1em;
  }
}

/* -------------------------------
dl-tbl
-------------------------------- */
.dl-tbl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.dl-tbl dl {
  display: grid;
  grid-template-columns: 20% auto;
  gap: 2%;
  font-size: 1.1em;
}
.dl-tbl dl > * {
  padding: 10px 20px;
  border-radius: var(--radius);
}
.dl-tbl dl dt {
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: var(--c-sub);
  border: 1px solid var(--c-sub);
}
.dl-tbl dl dd {
  background: var(--bg-sub);
}

@media (max-width: 680px) {
  .dl-tbl {
    gap: 4px;
  }
  .dl-tbl dl {
    gap: 3px;
    font-size: 0.85em;
    line-height: 1.3;
  }
  .dl-tbl dl > * {
    padding: 15px 10px;
  }
}

/* -------------------------------
flow-list
-------------------------------- */
.flow-list {
  --span-width: 100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
.flow-list::before {
  content: "";
  display: block;
  width: calc(var(--span-width) / 2);
  height: 100%;
  border-right: 1px dotted var(--c-sub);
  position: absolute;
  left: 0;
  bottom: 0;
}
.flow-list li {
  display: grid;
  grid-template-columns: var(--span-width) auto;
  gap: 30px;
  position: relative;
}
.flow-list li:last-child {
  background: #fff;
}

.flow-list li span {
  display: grid;
  place-content: center;
  min-height: 2em;
  padding: 2px;
  color: var(--c-sub);
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
  background: var(--bg-sub);
  border: 2px solid var(--c-sub);
  border-radius: var(--radius);
}
.flow-list li p {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding-top: 3px;
}
.flow-list li p .tit {
  font-size: 1.2em;
}

@media (max-width: 680px) {
  .flow-list {
    --span-width: 54px;
    gap: 20px;
  }
  .flow-list li {
    gap: 15px;
  }
  .flow-list li span {
    height: 2em;
    font-size: 0.8em;
    border: 1px solid var(--c-sub);
  }
  .flow-list li p {
    gap: 0;
    padding-top: 0;
    font-size: 0.95em;
    line-height: 1.5;
  }
  .flow-list li p .tit {
    font-size: 1em;
  }
}

/* -------------------------------
toggle-item
-------------------------------- */
.toggle-item + .toggle-item {
  margin-top: -30px;
}
/* アニメーション */
.toggle-item details::details-content {
  transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
  height: 0;
  opacity: 0;
  overflow: clip;
  background-color: #f0f2ff;
}
/* アコーディオンの中身のスタイル（開いている時） */
.toggle-item details[open]::details-content {
  opacity: 1;
}
@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords; /* height:0（数値型） → auto（文字型） のアニメーションを可能にするための指定 */
  }
  .toggle-item details[open]::details-content {
    height: auto;
  }
}
@supports not (interpolate-size: allow-keywords) {
  .toggle-item details[open]::details-content {
    height: 150px;
    overflow-y: scroll; /* 溢れる場合はスクロール可能にする */
  }
}

/* summary */
.toggle-item summary {
  --after: 24px;
  display: grid; /* 初期値の display: list-item 以外を指定したので、デフォルトの三角形アイコンは非表示になる */
  grid-template-columns: 1fr var(--after);
  gap: 6px;
  align-items: center;
  cursor: pointer;
  padding: 10px 1em;
  font-weight: bold;
  color: #fff;
  background: var(--c-sub);
  position: relative;
}
.toggle-item summary::-webkit-details-marker {
  display: none; /* Safari 18.4 未満で表示されるデフォルトの三角形アイコンを消す */
}
.toggle-item summary::before {
  content: "詳しく見る";
  font-size: 0.8em;
  font-weight: normal;
  position: absolute;
  right: var(--after);
  top: 50%;
  translate: -25px -50%;
}
.toggle-item details[open] summary::before {
  content: "閉じる";
}
.toggle-item summary::after {
  content: "";
  width: var(--after);
  aspect-ratio: 1/1;
  -webkit-mask: url(../img/ico-arrow_bf.svg) center / 100% auto no-repeat;
  mask: url(../img/ico-arrow_bf.svg) center / 100% auto no-repeat;
  rotate: 90deg;
  background: currentColor;
  transition: var(--transition);
}
.toggle-item details[open] summary::after {
  transform: rotate(180deg);
}
.toggle-item summary span {
  margin-right: 100px;
}
/* content */
.toggle-item .content {
  padding: 20px 10px;
  background: #fff;
}

@media (max-width: 680px) {
  .toggle-item + .toggle-item {
    margin-top: -27px;
  }
  /* summary */
  .toggle-item summary {
    --after: 24px;
    padding: 10px 0.5em 10px 0.8em;
    font-size: 0.9em;
    line-height: 1.4;
  }
  .toggle-item summary::before {
    display: none;
  }
  .toggle-item summary span {
    margin-right: 0;
  }
  /* content */
  .toggle-item .content {
    padding: 20px 5px 25px;
  }
}

/* -------------------------------
bg:has(.toggle-item)
-------------------------------- */
[class*="bg"] .sec-grid:has(.toggle-item) {
  padding: 30px;
  background: #fff;
}

@media (max-width: 680px) {
  [class*="bg"] .sec-grid:has(.toggle-item) {
    padding: 20px 15px;
  }
}

/* -------------------------------
rtf ※リッチテキスト
-------------------------------- */
.rtf a {
  color: var(--c-link);
  text-decoration: underline;
}
.rtf a:hover {
  text-decoration: none;
}
.rtf strong {
  font-weight: bold;
}

/* -------------------------------
time
-------------------------------- */
.time {
  display: block;
  font-size: 0.8em;
  color: var(--gray_d);
}

/* -------------------------------
ヘッダー
-------------------------------- */
header {
  overflow: hidden;
}

/** ユニバーサル + google検索 + リンク
============================================== **/
header .h-systems {
  width: 100%;
  display: block;
  line-height: 21px;
  background: var(--bg-sub);
}
header .innar {
  display: block;
  max-width: 1200px;
  margin: auto;
}
header .innar:after {
  content: "";
  display: block;
  clear: both;
}

/* ユニバーサル */
header .change {
  float: right;
  display: inline-block;
}
header .change:after {
  content: "";
  display: block;
  clear: both;
}
header .change h3 {
  display: inline-block;
  float: left;
  width: 150px;
  font-size: 12px;
  font-weight: bold;
  line-height: 21px;
  text-align: center;
  padding: 12px 0;
  padding-left: 10px;
  cursor: pointer;
  border-left: solid 1px var(--gray_l);
}
header .change h3:hover {
  opacity: 0.7;
}
header .change h3.c01 {
  background: url(../img/head_ic01.svg) no-repeat left 12px center / 19px auto;
}
header .change h3.c02 {
  background: url(../img/head_ic02.svg) no-repeat left 14px center / 19px auto;
}
header .change h3.c03 {
  background: url(../img/head_ic03.png) no-repeat left 12px center;
  border-right: solid 1px var(--c-main_rgba8);
}

/* 開閉 */
header .change .textArea {
  background: var(--c-point);
  list-style: none;
  float: left;
  padding: 11px 10px;
  height: 23px;
}
header .change .textArea_f {
  list-style: none;
  float: left;
  padding: 9px 10px 12px;
  height: 23px;
}

/* 文字サイズ変更 */
#header #fontController:after {
  content: "";
  display: block;
  clear: both;
}
#fontController {
  width: 152px;
  font-size: 9px;
  line-height: 1.4;
  box-sizing: content-box;
  position: relative;
}
#fontController dt {
  position: absolute;
  margin-right: 5px;
  margin-top: 4px;
  font-weight: bold;
  overflow: hidden;
  height: 13px;
}
#fontController dd {
  position: absolute;
}
#fontController dd a {
  display: block;
  height: 22px;
  font-size: 1px;
  text-indent: -9999px;
  background: url(../img/fontsize-bt.png) no-repeat 0 0 / 95px auto;
}
#fontController dd.small,
#fontController dd.small a {
  display: none;
}
#fontController dl dd.small a:hover,
#fontController dl dd.small a.small-btn-on {
  background-position: 0 bottom;
}
#fontController dd.middle,
#fontController dd.middle a {
  left: 65px;
  padding-right: 0px;
  width: 46px;
  background-position: 0 0;
}
#fontController dl dd.middle a:hover,
#fontController dl dd.middle a.reset-btn-on {
  background-position: 0 bottom;
}
#fontController dd.large,
#fontController dd.large a {
  width: 46px;
  background-position: -49px 0;
  left: 115px;
}
#fontController dl dd.large a:hover,
#fontController dl dd.large a.large-btn-on {
  background-position: -49px bottom;
}

/* 背景色変更 */
#bgcolor {
  width: 132px;
  box-sizing: content-box;
  position: relative;
}
#bgcolor:after {
  content: "";
  display: block;
  clear: both;
}
#bgcolor p {
  font-size: 9px;
  font-weight: bold;
  line-height: 2.2;
  width: 33px;
  position: absolute;
}
#bgcolor ul {
}
#bgcolor li {
  width: 22px;
  height: 22px;
  margin-right: 3px;
  list-style: none;
  position: absolute;
}
#bgcolor li:nth-child(1) {
  left: 42px;
}
#bgcolor li:nth-child(2) {
  left: 68px;
}
#bgcolor li:nth-child(3) {
  left: 94px;
}
#bgcolor li:nth-child(4) {
  left: 119px;
}
#bgcolor li:last-child {
  margin-right: 0;
}
#bgcolor li img {
  width: 100%;
}

/* Google検索 */
#head_search {
  width: 180px;
  display: block;
  position: relative;
}
#head_search input[type="text"] {
  float: left;
}
.gsc-control-cse {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}
input.gsc-input,
.gsc-input-box,
.gsc-input-box-hover,
.gsc-input-box-focus {
  border: none !important;
}
.gsc-search-box-tools .gsc-search-box .gsc-input {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}
table.gsc-search-box {
  margin: 0 !important;
}
table.gsc-search-box td {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}
.gsc-search-button-v2 {
  padding: 6px 10px !important;
}
table.gsc-search-box td.gsib_a {
  padding: 6px 10px !important;
}
.gsib_a {
  padding: 4px 3px 3px 5px !important;
}
#gsc-i-id1 {
  font-size: 12px !important;
}
#gsc-i-id1::placeholder {
  font-size: 12px !important;
}
form.gsc-search-box,
table.gsc-search-box {
  margin-bottom: 0 !important;
}

header .h-link {
  display: inline-block;
  float: right;
  padding-right: 100px;
}
header .h-link:after {
  content: "";
  display: block;
  clear: both;
}
header .h-link li {
  width: 120px;
  display: inline-block;
  float: right;
  font-size: 93%;
  line-height: 21px;
  text-align: center;
}
header .h-link a {
  display: block;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 0;
}
header .h-link a:hover {
  text-decoration: underline;
}
header .h-link li.access_link {
  background: var(--c-main);
}
header .h-link li.group_top {
  background: var(--bg-gray);
}
header .h-link li.group_top a {
  color: var(--misugi-blue);
}
header .h-link li.access_link a {
  color: #fff;
}

/** ロゴ ＋ gnav
============================================== **/
header .h-nav.pc {
  display: block;
}
header .h-nav.sp {
  display: none;
}
header .h-nav:after {
  content: "";
  display: block;
  clear: both;
}
header .h-nav .innar {
  --height: 100px;
  display: block;
  max-width: 1000px;
  width: 95%;
  margin: auto;
}

header .logo {
  float: left;
  max-width: 300px;
  width: 29.9%;
  height: var(--height);
}
header .logo a {
  display: grid;
  place-content: center;
  height: 100%;
}
header .logo img {
  width: 100%;
}

/* nav */
header nav {
  float: right;
  width: 65%;
}
header nav ul.gnav {
  display: flex;
  justify-content: flex-end;
}
header nav ul.gnav li {
  padding: 0 15px;
  border-left: solid 1px var(--gray);
}
header nav ul.gnav li:last-child {
  border-right: solid 1px var(--gray);
}
header nav ul.gnav li a {
  display: grid;
  place-content: center;
  height: var(--height);
  font-size: 0.9rem;
  color: var(--c-sub);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
header nav ul.gnav li a:hover {
  color: var(--c-main);
}
/* fixed */
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
}
header .fixed .innar {
  --height: 80px;
}
#drawer {
  display: none;
}
.menu-sp,
.tel-sp {
  display: none;
}

@media (max-width: 1224px) {
  /* ユニバーサル */
  header .change h3 {
    font-size: 70%;
  }
  header .h-link {
    font-size: 80%;
    padding-right: 0;
  }

  /** ロゴ ＋ gnav
  ============================================== **/
  header .h-nav .innar {
    --height: 80px;
  }

  header .logo {
    width: 26%;
  }
}

@media (max-width: 680px) {
  header {
    width: 100%;
    position: fixed;
    z-index: 10000;
    background: #fff;
  }
  header .h-systems {
    display: none;
  }
  header .h-nav.pc {
    display: none;
  }
  header .h-nav.sp {
    display: block;
    width: 95%;
    margin: auto;
  }
  header .logo {
    width: 45%;
    max-width: 186px;
    float: none;
    position: absolute;
    left: 3%;
    top: 0;
    bottom: 0;
  }
  header nav ul.gnav {
    display: none;
  }
  .menu-sp,
  .tel-sp {
    width: 40px;
    height: 40px;
    margin: 12px 0 12px 5px;
    display: inline-block;
    float: right;
  }
  .menu-sp img,
  .tel-sp img {
    width: 100%;
  }

  /* header + section:first-of-type {
    margin-top: 65px;
  } */
}

/* -------------------------------
スマホ時のドロワーメニュー
-------------------------------- */
@media (max-width: 680px) {
  #wrapper {
    position: relative;
    transition: all 0.2s;
    width: 100%;
    overflow: hidden;
  }
  #wrapper.open {
    transform: translate3d(-280px, 0, 0);
  }
  .open .overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }

  #drawer {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    transition: all 0.2s;
    /* 下から触る */
    background: #fff;
    display: block;
  }
  #drawer h2 {
    width: 90%;
    margin: auto;
    padding: 15px;
    color: var(--misugi-pink);
    font-size: 1.2em;
    font-weight: bold;
  }
  #drawer a {
    text-decoration: none;
    display: block;
  }
  #drawer dl {
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
  }
  #drawer dt {
    background: var(--misugi-pink) url("../img/ico_arrow03.png") no-repeat left 10px center / 14px auto;
    font-size: 90%;
    font-weight: bold;
    border-radius: 4px;
  }
  #drawer dt a {
    padding: 7px 20px 7px 31px;
    color: #fff;
  }
  #drawer dd {
    font-size: 84%;
    border-bottom: dotted 1px #ccc;
    background: url("../img/ico_arrow04.png") no-repeat left top 12px / 4px auto;
  }
  #drawer dd a {
    padding: 5px 10px;
  }
  #drawer .link-misugigroup {
    width: 88%;
    margin: 0 auto 20px;
  }
  #drawer.open {
    transform: translate3d(-280px, 0, 0);
  }
  #drawer a.tel {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    color: var(--misugi-pink);
    font-size: 5.2vw;
    font-weight: bold;
  }
}

/* -------------------------------
フッター
-------------------------------- */
footer {
  border-top: solid 3px var(--misugi-blue);
  background-color: var(--bg-gray);
}
footer .innar {
  max-width: 1000px;
  margin: auto;
  width: 95%;
}
footer .bottom .innar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: solid 1px rgba(16, 1, 108, 0.25);
  padding-top: 30px;
  margin-bottom: 20px;
}

footer .top li.box {
  list-style: none;
  margin: 20px 0;
  width: 30%;
  display: inline-block;
  float: left;
  margin-right: 3%;
}
footer .top li.box:last-child {
  width: 30%;
  margin-right: 0;
}
footer .top > li:last-child {
  margin-right: 0;
}
footer .top .logo {
  width: 90%;
  margin-bottom: 40px;
}
footer .top .logo img {
  width: 100%;
}
footer .top .info dl {
  margin-bottom: 20px;
}
footer .top .info dt {
  margin-bottom: 10px;
}
footer .top li.sitelist {
  width: 32%;
}
footer .top .sitelist dl {
  margin-bottom: 15px;
}
footer .top .sitelist dt {
  background: var(--misugi-pink) url(../img/ico_arrow03.png) no-repeat right 10px center / 16px auto;
  border-radius: 4px;
  margin-bottom: 10px;
}
footer .top .sitelist dt:hover {
  /* background: #ed5194 url(../img/ico_arrow03.png) no-repeat right 10px center / 16px auto; */
  opacity: var(--opacity);
}
footer .top .sitelist dt a {
  display: block;
  padding: 8px 25px 8px 45px;
  padding-left: 45px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}
footer .top .sitelist .s01 dt a {
  background: url(../img/foot_s01.png) no-repeat left 10px center / 24px auto;
}
footer .top .sitelist .s02 dt a {
  background: url(../img/foot_s02.png) no-repeat left 10px center / 24px auto;
}
footer .top .sitelist .s03 dt a {
  background: url(../img/foot_s03.png) no-repeat left 10px center / 24px auto;
}
footer .top .sitelist .s04 dt a {
  background: url(../img/foot_s04.png) no-repeat left 10px center / 24px auto;
}
footer .top .sitelist .s05 dt a {
  background: url(../img/foot_s05.png) no-repeat left 10px center / 24px auto;
}
footer .top .sitelist .s06 dt a {
  background: url(../img/foot_s06.png) no-repeat left 10px center / 24px auto;
}
footer .top .sitelist .s07 dt a {
  background: url(../img/foot_s07.png) no-repeat left 10px center / 24px auto;
}

footer .top .sitelist dd {
  font-size: 12px;
  line-height: 24px;
  background: url(../img/ico_arrow04.png) no-repeat left 8px / 4px auto;
  padding-left: 12px;
}
footer .top .sitelist dd a {
  text-decoration: none;
  display: block;
  font-weight: bold;
}
footer .top .sitelist dd a:hover {
  color: var(--misugi-pink);
}

footer .bottom {
  background: var(--misugi-blue);
  color: #fff;
}

footer .bottom .list {
  padding: 15px 0;
  margin-bottom: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
}
footer .bottom .list li {
  background: url(../img/ico_arrow02.png) no-repeat left center / 12px auto;
  padding-left: 25px;
  list-style: none;
  display: inline-block;
  float: left;
  margin-right: 20px;
}
footer .bottom .list li a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}
footer .bottom .list li a:hover {
  text-decoration: underline;
}
footer .bottom address {
  text-align: center;
  font-style: normal;
  padding-bottom: 20px;
  font-size: 12px;
  line-height: 1.4;
}

footer .top h3 {
  text-align: center;
  color: #40489c;
  margin-bottom: 10px;
}
footer .top iframe {
  width: 97%;
  height: 170px;
  border: solid 5px #fff;
}
.foot-tel {
  display: none;
}

@media (max-width: 680px) {
  footer .top .logo {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  footer .top li.box {
    display: block;
    float: none;
    margin: 20px auto;
    width: auto;
  }
  footer .top li.box:last-child {
    margin: 20px auto;
    width: auto;
  }
  footer .top li.sitelist {
    display: none;
  }
  footer .top .info dd img {
    max-width: 244px;
  }
  footer .bottom .innar h1 {
    margin: auto;
  }
  .foot-tel {
    display: block;
    position: fixed;
    bottom: 0;
    background: #fff3ce;
    border: solid 1px #ecdeb4;
    width: 100%;
    z-index: 90;
  }
  .foot-tel a {
    width: 80%;
    padding: 10px 0;
    display: block;
    max-width: 240px;
    margin: auto;
  }
  .foot-tel a img {
    width: 100%;
  }

  footer .bottom .list {
    width: 100%;
  }
}

/* -------------------------------
page-top
-------------------------------- */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
#page-top a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: block;
}
#page-top a:hover {
  opacity: 0.8;
}
#page-top img {
  width: 100%;
}

@media (max-width: 680px) {
  #page-top {
    bottom: 65px;
    width: 50px;
  }
}

/** ==============================================
TOPページ
============================================== **/
/* -------------------------------
ファーストビュー
-------------------------------- */
#mv {
  position: relative;
  background: url(../img/bg07.gif) repeat;
}
.mv-flx {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* メインビジュアル スライド（slick） */
.single-item {
  display: block;
  max-width: 700px;
  padding-bottom: 50px;
}
.single-item img {
  width: 100%;
  aspect-ratio: 800/600;
  object-fit: cover;
}
.slick-prev:before,
.slick-next:before {
  color: var(--color);
}
.slick-next {
  top: 46%;
  right: 50px;
  z-index: 79;
}
.slick-prev {
  top: 46%;
  left: 0;
  z-index: 80;
}
.slick-dots {
  z-index: 80;
  bottom: 15px;
}
.slick-dots li {
  margin: 0 2px;
}
.slick-dots li button::before {
  font-size: 12px;
}

/* FV基本情報 */
.main_innar {
  width: 340px;
  margin-left: -40px;
  position: relative;
}
.main_innar .info_box {
  padding: 20px;
  line-height: 120%;
  background: #fff;
  border: solid 4px var(--bg-gray);
  border-radius: 3px;
}
.main_innar .info_box .tit {
  font-size: 0.8em;
  text-align: center;
  letter-spacing: 0.06em;
  padding: 8px;
  background: var(--bg-point);
  border-radius: 4px;
  margin-bottom: 10px;
}
/* tel */
.main_innar .info_box .tel-wrap {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2px;
  margin: 15px auto;
  text-align: center;
}
.main_innar .info_box .tel-wrap .tel {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
  color: var(--c-sub);
}
.main_innar .info_box .tel-wrap span {
  font-size: 0.9em;
}
/* table */
.main_innar .info_box table {
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
}
.main_innar .info_box tr:not(:last-child) {
  border-bottom: var(--border);
}
.main_innar .info_box th {
  padding: 2px 7px;
  background: var(--bg-gray);
  vertical-align: middle;
}
.main_innar .info_box td {
  padding: 5px 10px;
  vertical-align: middle;
}
/* btn */
.main_innar .info_box .info-btn-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (max-width: 1224px) {
  #mv {
    margin-top: 65px;
    padding-block: 0 10px;
  }
  .mv-flx {
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
  }

  /* メインビジュアル */
  .single-item {
    max-width: 100%;
  }
  .slick-next {
    right: 0;
  }

  /* FV基本情報 */
  .main_innar {
    width: 90%;
    margin: 20px auto;
  }
}

@media (max-width: 680px) {
  /* FV基本情報 */
  .main_innar {
    margin: 0 auto 20px;
  }
}

/* -------------------------------
TOP-お知らせ
-------------------------------- */
/* news-list */
.news-list {
  border-top: var(--border);
}
.news-list li {
  padding: 0.5em 1em;
  border-bottom: var(--border);
}
.news-list li time {
  margin-bottom: 10px;
  font-size: 0.9em;
}
.news-list li a {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.news-list li a time {
  display: block;
}
.news-list li a .text {
  flex: 1;
}
.news-list li a p {
  color: var(--c-link);
  text-decoration: underline;
  font-size: 1.1em;
}
.news-list li a:hover p {
  text-decoration: none;
}
.news-list li a img {
  width: 20%;
  flex-shrink: 0;
  margin-top: 10px;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.news-list li a:hover img {
  opacity: var(--opacity);
}

/* 関連記事 */
.side-other-post .news-list li a {
  gap: 5%;
  font-size: 0.8em;
  line-height: 1.6;
}
.side-other-post .news-list li time {
  margin-bottom: 0;
}
.side-other-post .news-list li a img {
  width: 30%;
}

@media (max-width: 680px) {
  .news-list li {
    padding: 0.5em 0.2em;
  }

  .news-list li time {
    margin-bottom: 0;
    font-size: 0.8em;
  }
  .news-list li a {
    gap: 10px;
  }
  .news-list li a p {
    font-size: 0.9em;
  }
  .news-list li a img {
    width: max(20%, 120px);
    margin-top: 10px;
  }
}

/* -------------------------------
施設概要
-------------------------------- */
/* fac-text-img */
.fac-text-img .text {
  flex: 1;
}

/* floor-dl */
dl.floor-dl-head dd {
  display: grid;
  place-content: center;
  color: var(--c-sub);
  font-weight: bold;
  text-align: center;
}
dl.floor-dl dt {
  color: var(--c-sub);
  background: #fff;
}
dl.floor-dl dd {
  padding-block: 15px;
  background: none;
}

/* zoom-comment */
.zoom-comment {
  display: grid;
  grid-template-columns: 17px auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1;
}
.zoom-comment::before {
  content: url(../img/ico-zoom.svg);
}
/* zoom-gallery-list */
.zoom-gallery-list li a:hover figure img {
  opacity: 0.9;
}
.zoom-gallery-list li a figure {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.zoom-gallery-list li a figure figcaption {
  line-height: 1.3;
}
/* smartphoto.min.cssを上書き */
.smartphoto {
  background: rgba(0, 0, 0, 0.8) !important;
}
.smartphoto :is(.smartphoto-arrow-left, .smartphoto-arrow-right) {
  background: none;
}

@media (max-width: 680px) {
  /* zoom-comment */
  .zoom-comment {
    font-size: 0.7em;
  }

  /* zoom-gallery-list */
  .zoom-gallery-list li a:hover figure img {
    opacity: 0.9;
  }
  .zoom-gallery-list li a figure {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .zoom-gallery-list li a figure figcaption {
    font-size: 0.75em;
  }
  /* smartphoto.min.cssを上書き */
  .smartphoto {
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 99999 !important;
  }
  .smartphoto :is(.smartphoto-arrow-left, .smartphoto-arrow-right) {
    background: none;
  }
}

/* -------------------------------
8つの取り組み
-------------------------------- */
/* effort-list */
.effort-list {
  align-items: stretch;
}
.effort-list li {
  padding: 30px;
  background: #fff;
}

@media (max-width: 680px) {
  .effort-list li {
    padding: 20px;
  }
}

/* -------------------------------
サービス内容
-------------------------------- */
#service {
  margin-top: 0;
  padding-top: 90px;
}
#service .sec-grid {
  gap: 50px;
}
/* service-item */
.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-item .service-head {
  padding: 10px;
  color: var(--c-main);
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  border: 1px solid var(--c-main);
}

@media (max-width: 680px) {
  #service {
    padding-top: 70px;
  }
}
/* -------------------------------
ご利用案内
-------------------------------- */

/* -------------------------------
スタッフ紹介
-------------------------------- */
/* staff */
.staff figure {
  height: auto;
}
.staff figure img {
  aspect-ratio: revert-layer;
}
.staff .text {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.staff .text .tit {
  display: block;
  color: var(--c-main);
  font-size: 1.2em;
}
.staff .text .staff-name {
  text-align: right;
}

/* staff-content */
.staff-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.staff-content .staff figure {
  width: 40%;
}
.staff-content .staff:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 680px) {
  .staff {
    flex-direction: column-reverse;
    gap: 14px;
    padding-inline: 5%;
  }
  .staff .text {
    gap: 5px;
    font-size: 0.95em;
  }
  .staff .text .tit {
    font-size: 1.1em;
  }
  .staff .text .staff-name {
    font-size: 0.9em;
  }

  /* staff-content */
  .staff-content {
    gap: 30px;
  }
  .staff-content .staff,
  .staff-content .staff:nth-child(even) {
    flex-direction: column;
  }
  .staff-content .staff figure {
    width: 100%;
  }
}

/* -------------------------------
施設での過ごし方
-------------------------------- */
.oneday .flow-list li p {
  font-size: 1.2em;
  color: var(--c-sub);
  font-weight: bold;
}

@media (max-width: 520px) {
  .oneday .flow-list li p {
    font-size: 0.9em;
  }
}

/* -------------------------------
サブコンテンツ
-------------------------------- */
.sec-subcontent {
  background: url(../img/bg01.gif) repeat;
  padding: 40px 0;
}
.sec-subcontent .bx-wrapper {
  width: 1000px;
  margin: auto;
}
.sec-subcontent .bx-wrapper .bx-pager,
.sec-subcontent .bx-wrapper .bx-controls-auto {
  bottom: -20px;
}
.sec-subcontent .bx-wrapper .bx-pager.bx-default-pager a {
  opacity: 0.75;
}
.sec-subcontent li a:hover {
  opacity: 0.8;
}
.sec-subcontent li img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

@media (max-width: 1224px) {
  .sec-subcontent .bx-wrapper {
    width: 95%;
    margin: auto;
  }
}

@media (max-width: 680px) {
  .sec-subcontent {
    padding: 20px 0 32px;
  }
  .sec-subcontent .bx-wrapper {
    width: 95%;
    margin: auto;
  }
}

/* -------------------------------
広報誌
-------------------------------- */
.booklet-list {
  --row: 5;
  --gap-block: 30px;
  --gap: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-block) var(--gap);
}
.booklet-list li {
  width: calc((100% - var(--gap) * calc(var(--row) - 1)) / var(--row));
}
.booklet-list li a {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  color: var(--color);
}
.booklet-list li a strong::after {
  --width: 28px;
  content: "";
  display: block;
  width: var(--width);
  aspect-ratio: 4/3;
  -webkit-mask: url(../img/ico-pdf.svg) center / 100% auto no-repeat;
  mask: url(../img/ico-pdf.svg) center / 100% auto no-repeat;
  background: var(--c-main);
  position: absolute;
  right: 2px;
  top: 50%;
  translate: 0 -50%;
}
.booklet-list li a > *:not(img) {
  margin-inline: 4px;
}
.booklet-list li a img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.booklet-list li a strong {
  margin-top: 5px;
  font-size: 0.88em;
  font-weight: bold;
  position: relative;
}
.booklet-list li a p {
  font-size: 0.8em;
}

@media (max-width: 520px) {
  .booklet-list {
    --row: 2;
    --gap-block: 20px;
    --gap: 12px;
  }
  .booklet-list li a {
    gap: 0;
  }
}

/* -------------------------------
アクセス
-------------------------------- */
.access-text {
  margin-top: -20px;
}
.access-text h4 {
  color: var(--c-main);
  font-weight: bold;
}
.access-text p strong {
  font-weight: bold;
}

/* -------------------------------
お問い合わせ
-------------------------------- */
.cv-wrapper {
  --gap: 2%;
  align-items: flex-start;
}
.cv-wrapper .tel-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  text-align: center;
  line-height: 1;
}
.cv-wrapper .tel-wrapper .tel {
  height: 60px;
  justify-content: center;
  font-size: 1.4em;
  color: #fff;
  font-weight: bold;
  background: var(--c-main);
}
.cv-wrapper .tel-wrapper p {
  font-size: 0.9em;
}
.cv-wrapper [class^="btn_"] {
  margin: 0;
}

@media (max-width: 680px) {
  .cv-wrapper {
    width: 90%;
    margin: 0 auto;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .cv-wrapper .tel-wrapper {
    gap: 10px;
    text-align: center;
    line-height: 1;
  }
  .cv-wrapper .tel-wrapper .tel {
    height: 60px;
    font-size: 1.4em;
  }
  .cv-wrapper .tel-wrapper p {
    font-size: 0.9em;
  }
  .cv-wrapper [class^="btn_"] {
    margin: 0;
  }
}
