@charset "UTF-8";
@import url("../css/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --white: #ffffff;
  --black: #444444;
  --brown: #603911;
  --light-brown: #ad9e89;
  --green: #35d0bb;
  --dark_green: #26bbb4;
  --darker_green: #4d8b78;
  --light-green: #eaf7f5;
  --red: #f54804;
  --orange: #e2943f;
  --beige: #f8f5f1;
  --border: #efebe7;
  --bg_light_green: #f6fbf9;
  --font-NotoSansJP: "Noto Sans JP", sans-serif;
  --font-poppins: "Poppins", sans-serif;
}

.clr-red {
  color: var(--red);
}

.clr-green {
  color: #19b624;
}

.clr-dark_green {
  color: var(--dark_green);
}

.clr-brown {
  color: var(--brown);
}

.bg_white {
  background-color: var(--white);
}

.bg_light_green {
  background-color: var(--bg_light_green);
}

.bg_light_beige {
  background-color: #fcfaf5;
}

/*-------------------------------------------/
    ページ共通要素
/-------------------------------------------*/
/* 表示切替 ----------------------------- */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .pc_none {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .pc_only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
html {
  -webkit-overflow-scrolling: touch;
  font-size: clamp(0.8125rem, 1.1111111111vw, 1rem);
}

@media (max-width: 767px) {
  html {
    font-size: min(100vw / 390 * 16, 1rem);
  }
}
body {
  position: relative;
  font-family: var(--font-NotoSansJP);
  font-size: 1rem;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.5;
  max-width: 100%;
  height: 100%;
  color: var(--black);
  background: var(--beige);
  animation: fade 1s ease forwards;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.9375rem;
  }
}

.wrapper {
  overflow: clip;
}

/*=================================================

		共通設定

==================================================*/
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
}

img,
object,
embed {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a img {
  transition: all 0.3s ease;
  display: block;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.bold,
strong {
  font-weight: 700;
}

/*=================================================

		tel リンク

==================================================*/
a[href*="tel:"] {
  text-decoration: none;
}

.nolink {
  text-decoration: none;
  pointer-events: none;
}

.txtLink {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--dark_green);
}

/*=================================================
		ヘッダー
==================================================*/
/* トグルボタン ------------------------------------*/
.nav-toggle {
  position: fixed;
  z-index: 10;
  transition: 0.3s ease;
  cursor: pointer;
}
.nav-toggle:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1023px) {
  .nav-toggle {
    top: 1.5625rem;
    right: 1.875rem;
    width: 3.75rem;
    height: 3.75rem;
    background: url("../images/nav-toggle_menu.svg");
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 767px) {
  .nav-toggle {
    top: 0.3125rem;
    right: 0.9375rem;
    width: 3.75rem;
    height: 3.75rem;
    background: url("../images/nav-toggle_menu.svg");
    background-size: 100% 100%;
  }
}

@media screen and (max-width: 1023px) {
  .header.open .nav-toggle {
    width: 3.75rem;
    height: 3.75rem;
    background: url(../images/nav-toggle_menu_close.svg);
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 767px) {
  .header.open .nav-toggle {
    width: 3.75rem;
    height: 3.75rem;
  }
}

.header {
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  transition: all 0.4s ease;
  background: var(--beige);
}
.header a,
.header img {
  transition: all 0.4s ease;
}
.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  height: 6.25rem;
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .header .header__inner {
    height: 4.375rem;
    gap: 1.25rem;
    padding: 0 1.25rem;
  }
}
.header .logo a {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--brown);
  letter-spacing: 0.05em;
  display: inline-block;
}
.header .logo a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .header .logo a {
    font-size: 1.25rem;
  }
}
.header #gnav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}
.header #gnav > ul.pc-navigation {
  display: flex;
  justify-content: flex-end;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
.header #gnav > ul.pc-navigation > li {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 1.25rem;
}
.header #gnav > ul.pc-navigation > li .menu-item .txt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}
.header #gnav > ul.pc-navigation > li .menu-item .txt .icon-blank {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../images/common/icon_blank_brown.svg") no-repeat;
  background-size: 100% 100%;
}
.header #gnav > ul.pc-navigation > li:not(:last-child) {
  border-right: 1px solid var(--brown);
}
.header #gnav > ul.pc-navigation > li:hover .menu-item .txt {
  color: var(--dark_green);
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 5%; /* 0.8px */
  text-underline-offset: 25%; /* 4px */
  text-underline-position: from-font;
}
.header #gnav .btn-contact {
  width: 13.75rem;
}
@media screen and (max-width: 1023px) {
  .header #gnav {
    display: none;
  }
}
.header #navigation {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  left: auto;
  width: min(100%, 24.375rem);
  height: auto;
  max-height: 100vh;
  background: var(--beige);
  padding: 0 0 1.25rem;
  transition: 0.3s all ease;
  visibility: hidden;
  top: -100%;
}
@media screen and (max-width: 767px) {
  .header #navigation {
    width: 100%;
  }
}
.header #navigation {
  overflow-y: auto;
  overflow-x: hidden;
  touch-action: pan-y;
  /* IE, Edge用の古い指定（念のため） */
  -ms-overflow-style: none;
  /* Firefox用の指定 */
  scrollbar-width: none;
}
.header #navigation::-webkit-scrollbar {
  display: none;
}
.header #navigation .navgation_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.header #navigation .logo {
  width: 100%;
  height: 4.375rem;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brown);
}
.header #navigation .main-navigation {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  color: var(--brown);
  padding: 0 1.25rem;
}
.header #navigation .main-navigation .menu-item {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  padding: 1.25rem 0.625rem;
  display: flex;
  font-size: 1.125rem;
  border-bottom: 1px solid var(--border);
}
.header #navigation .main-navigation .menu-item .txt {
  flex-grow: 1;
}
.header #navigation .main-navigation .menu-item:after {
  content: "";
  width: 1.1111111111em;
  height: 1.1111111111em;
  background: url("../images/common/icon_arrow_brown.svg") no-repeat;
  background-size: 100% 100%;
  display: inline-block;
  flex-shrink: 0;
  margin-left: auto;
}
.header #navigation .main-navigation .menu-item:hover .txt {
  color: var(--dark_green);
}
.header #navigation .bnr-recruit {
  width: 15.625rem;
  margin: 0 auto;
}
.header #navigation .bnr-recruit img {
  width: 100%;
}
.header #navigation .h-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 0 1.25rem;
}
.header #navigation .h-contact .topTxt {
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
.header #navigation .h-contact .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  color: var(--dark_green);
}
.header #navigation .h-contact .tel .icon {
  width: 2rem;
}
.header #navigation .h-contact .tel .icon svg {
  width: 100%;
}
.header #navigation .h-contact .tel .num {
  font-family: var(--font-poppins);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.2;
}
.header #navigation .h-contact .btmTxt {
  color: var(--brown);
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .header.open #navigation {
    visibility: visible;
    top: 0;
  }
}

/*=================================================
		フッター
==================================================*/
/* フッター */
.footer {
  position: relative;
  background: var(--beige);
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 1.25rem;
  }
}
.footer-wrap {
  padding: 2.5rem 7.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .footer-wrap {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-wrap {
    padding: 1.25rem;
  }
}
.footer .footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-self: stretch;
}
@media screen and (max-width: 1023px) {
  .footer .footer_inner {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
  }
}
.footer .footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  color: var(--brown);
}
.footer .footer-info .logo {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.footer .footer-info .logo span {
  display: block;
  font-size: 0.875rem;
  line-height: 1;
}
.footer .footer-info .info-txt p {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.footer .footer-info .other-link .txt-link {
  font-size: 0.875rem;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.footer .footer-info .other-link .txt-link::after {
  content: ">";
}
.footer .footer-info .other-link .txt-link:hover {
  color: var(--dark_green);
}
@media screen and (max-width: 1023px) {
  .footer .footer-info {
    text-align: center;
  }
}
.footer .f-right {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.footer .f-right .bnr-link {
  width: 21.875rem;
}
.footer .f-right .bnr-link a {
  width: 100%;
  display: block;
}
.footer .f-right .bnr-link a img {
  width: 100%;
}
.footer .f-right .f-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
.footer .f-right .f-contact .topTxt {
  color: var(--brown);
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
.footer .f-right .f-contact .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  color: var(--dark_green);
}
.footer .f-right .f-contact .tel .icon {
  width: 2rem;
  height: 2rem;
}
.footer .f-right .f-contact .tel .icon svg {
  width: 100%;
  height: auto;
}
.footer .f-right .f-contact .tel .num {
  font-family: var(--font-poppins);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.footer .f-right .f-contact .btmTxt {
  color: var(--brown);
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer .f-right {
    width: 100%;
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
  .footer .f-right .bnr-link {
    width: 18.75rem;
  }
  .footer .f-right .f-contact {
    width: 100%;
  }
  .footer .f-right .f-contact .btn-contact {
    width: min(100%, 21.875rem);
    margin: 0 auto;
  }
}
.footer .copyright {
  background: var(--light-brown);
  padding: 0.625rem;
  display: flex;
  justify-content: center;
}
.footer .copyright p {
  color: var(--white);
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .footer .copyright p {
    font-size: 0.75rem;
  }
}

/* ページトップへ */
/*=================================================

		共通

==================================================*/
.btn {
  cursor: pointer;
  transition: 0.3s ease;
}
.btn:hover {
  opacity: 0.8;
}

.btn-contact {
  position: relative;
  display: flex;
  height: 3.125rem;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
  color: var(--white);
  background: var(--dark_green);
  font-size: 0.9375rem;
  padding: 0 3em;
  border-radius: 100vmax;
  border: 1px solid var(--dark_green);
  transition: 0.3s ease;
}
.btn-contact .icon {
  content: "";
  position: absolute;
  right: 1.0666666667em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3333333333em;
  height: 1.3333333333em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--white);
}
.btn-contact .icon svg {
  width: 0.3333333333em;
  height: auto;
}
.btn-contact:hover {
  color: var(--dark_green);
  background: var(--white);
}
.btn-contact:hover .icon {
  color: var(--dark_blue);
  border: 1px solid var(--dark_green);
}

.btn-link {
  position: relative;
  display: flex;
  width: 13.75rem;
  height: 3.125rem;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  color: var(--white);
  background: var(--dark_green);
  font-size: 1rem;
  padding: 0 3em;
  border-radius: 100vmax;
  border: 1px solid var(--dark_green);
  transition: 0.3s ease;
}
.btn-link .icon {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25em;
  height: 1.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--white);
}
.btn-link .icon svg {
  width: 0.3125em;
  height: 0.5625em;
}
.btn-link:hover {
  color: var(--dark_green);
  background: var(--white);
}
.btn-link:hover .icon {
  color: var(--dark_blue);
  border: 1px solid var(--dark_green);
}
@media screen and (max-width: 767px) {
  .btn-link {
    font-size: 0.9375rem;
    height: 2.5rem;
  }
}

.btn-link-white {
  position: relative;
  display: flex;
  width: 13.75rem;
  height: 3.125rem;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  color: var(--brown);
  background: var(--white);
  font-size: 1rem;
  padding: 0 3em;
  border-radius: 100vmax;
  border: 1px solid var(--dark_green);
  transition: 0.3s ease;
}
.btn-link-white .icon {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25em;
  height: 1.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--dark_green);
  border: 1px solid var(--dark_green);
}
.btn-link-white .icon svg {
  width: 0.3125em;
  height: auto;
}
.btn-link-white.h60 {
  height: 3.75rem;
}
.btn-link-white:hover {
  color: var(--white);
  background: var(--dark_green);
}
.btn-link-white:hover .icon {
  color: var(--white);
  border: 1px solid var(--white);
}
@media screen and (max-width: 767px) {
  .btn-link-white {
    width: 18.75rem;
    font-size: 0.9375rem;
  }
}

.btn-link-brown {
  position: relative;
  display: flex;
  width: 9.375rem;
  height: 2.0625rem;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  color: var(--brown);
  background: var(--white);
  font-size: 0.875rem;
  padding: 0 2em;
  border-radius: 100vmax;
  border: 1px solid var(--brown);
  transition: 0.3s ease;
}
.btn-link-brown .icon {
  content: "";
  position: absolute;
  right: 1.0714285714em;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8571428571em;
  height: 0.8571428571em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--brown);
}
.btn-link-brown .icon svg {
  width: 0.2142857143em;
  height: auto;
}
.btn-link-brown:hover {
  color: var(--white);
  background: var(--brown);
}
.btn-link-brown:hover .icon {
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-link-txt {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  transition: 0.3s ease;
}
.btn-link-txt .icon {
  width: 0.75rem;
  height: 0.75rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 50%;
  color: var(--brown);
}
.btn-link-txt .icon svg {
  width: 0.1875rem;
  height: 0.3125rem;
}
.btn-link-txt:hover {
  color: var(--dark_green);
}

.btn-link-map {
  position: relative;
  display: flex;
  width: 11.25rem;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  color: var(--white);
  background: var(--dark_green);
  font-family: var(--font-poppins);
  font-size: 0.875rem;
  padding: 0.25rem 0.625rem;
  border-radius: 100vmax;
  border: 1px solid var(--dark_green);
  transition: 0.3s ease;
}
.btn-link-map .icon {
  content: "";
  position: absolute;
  right: 1.0714285714em;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8571428571em;
  height: 0.8571428571em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--white);
}
.btn-link-map .icon svg {
  width: 0.2142857143em;
  height: 0.3571428571em;
}
.btn-link-map:hover {
  color: var(--dark_green);
  background: var(--white);
}
.btn-link-map:hover .icon {
  color: var(--dark_blue);
  border: 1px solid var(--dark_green);
}
@media screen and (max-width: 767px) {
  .btn-link-map {
    font-size: 0.9375rem;
  }
}

/*=================================================
		01 トップ
==================================================*/
.home {
  width: 100%;
}
.home .ttl-center {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
.home .ttl-center::after {
  content: "";
  width: 11.875rem;
  height: 1px;
  background: var(--brown);
}
@media screen and (max-width: 767px) {
  .home .ttl-center {
    font-size: 1rem;
  }
}
.home .ttl-left {
  position: relative;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--brown);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
.home .ttl-left::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--brown);
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .home .ttl-left {
    font-size: 1rem;
    align-items: center;
  }
}
.home #kv {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 1.875rem;
}
.home #kv .kv-main {
  position: relative;
  width: min(63.8888888889%, 86.25rem);
}
.home #kv .kv-main .image-box {
  width: 100%;
  height: 100%;
  aspect-ratio: 920/520;
  overflow: clip;
}
.home #kv .kv-main .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home #kv .kv-main .copy-box {
  position: absolute;
  top: 5rem;
  left: 5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--brown);
}
.home #kv .kv-main .copy-box .copy-ttl {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.home #kv .kv-main .copy-box p {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.home #kv .info-nav {
  width: min(36.1111111111%, 48.75rem);
  padding: 1.875rem;
}
.home #kv .info-nav ul {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.home #kv .info-nav ul li .list-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background-color: var(--white);
  border-radius: 1.25rem;
  padding: 1.25rem;
  transition: 0.3s ease;
}
.home #kv .info-nav ul li .list-item .icon {
  width: 5rem;
  height: 5rem;
  color: var(--white);
  background: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.home #kv .info-nav ul li .list-item .icon svg {
  width: 3.125rem;
}
.home #kv .info-nav ul li .list-item .link-ttl {
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
.home #kv .info-nav ul li .list-item .arrow {
  width: 1.875rem;
  height: 1.875rem;
  padding: 0.5625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
}
.home #kv .info-nav ul li .list-item:hover {
  color: var(--white);
  background-color: var(--green);
}
.home #kv .info-nav ul li .list-item:hover .icon {
  background: var(--white);
}
.home #kv .info-nav ul li .list-item:hover .icon svg {
  color: var(--green);
}
.home #kv .info-nav ul li .list-item:hover .link-ttl {
  color: var(--white);
}
.home #kv .info-nav ul li .list-item:hover .arrow {
  color: var(--white);
  border: 1px solid var(--white);
}
@media screen and (max-width: 1023px) {
  .home #kv {
    flex-direction: column;
    padding-bottom: 0;
  }
  .home #kv .kv-main {
    width: 100%;
  }
  .home #kv .info-nav {
    width: min(100%, 48.75rem);
    margin: 0 auto;
    padding: 1.25rem;
  }
  .home #kv .info-nav ul {
    gap: 0.625rem;
  }
  .home #kv .info-nav ul li .list-item {
    gap: 0.3125rem;
    border-radius: 1.25rem;
    padding: 1.25rem;
  }
  .home #kv .info-nav ul li .list-item .icon {
    width: 3.125rem;
    height: 3.125rem;
  }
  .home #kv .info-nav ul li .list-item .icon svg {
    width: 1.953125rem;
  }
  .home #kv .info-nav ul li .list-item .link-ttl {
    font-size: 1rem;
  }
  .home #kv .info-nav ul li .list-item .arrow {
    width: 1.25rem;
    height: 1.25rem;
    padding: 0.375rem;
  }
}
@media screen and (max-width: 767px) {
  .home #kv {
    flex-direction: column;
  }
  .home #kv .kv-main {
    width: 100%;
  }
  .home #kv .kv-main .image-box {
    aspect-ratio: 390/298;
  }
  .home #kv .kv-main .copy-box {
    top: 2.5rem;
    left: 2.5rem;
    gap: 0.3125rem;
  }
  .home #kv .kv-main .copy-box .copy-ttl {
    font-size: 1.5rem;
  }
  .home #kv .kv-main .copy-box p {
    font-size: 0.75rem;
  }
  .home #kv .info-nav {
    width: 100%;
    padding: 1.25rem;
  }
  .home #kv .info-nav ul {
    gap: 0.625rem;
  }
  .home #kv .info-nav ul li .list-item {
    gap: 0.3125rem;
    border-radius: 1.25rem;
    padding: 1.25rem;
  }
  .home #kv .info-nav ul li .list-item .icon {
    width: 3.125rem;
    height: 3.125rem;
  }
  .home #kv .info-nav ul li .list-item .icon svg {
    width: 1.953125rem;
  }
  .home #kv .info-nav ul li .list-item .link-ttl {
    font-size: 1rem;
  }
  .home #kv .info-nav ul li .list-item .arrow {
    width: 1.25rem;
    height: 1.25rem;
    padding: 0.375rem;
  }
}
.home #sec01 {
  padding: 1.25rem 1.25rem 1.5rem;
}
.home #sec01 .information-box {
  width: min(100%, 75rem);
  padding: 1.25rem;
  margin: 0 auto;
  background: var(--bg_light_green);
  border: 1px solid var(--green);
  border-radius: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.home #sec01 .information-box .illust-box img {
  width: 7rem;
}
.home #sec01 .information-box .inbox-01 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
.home #sec01 .information-box .inbox-01 .ttl {
  color: var(--green);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.home #sec01 .information-box .inbox-01 p {
  color: var(--brown);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.home #sec01 .information-box .inbox-02 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
}
.home #sec01 .information-box .inbox-02 .item-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3125rem;
}
.home #sec01 .information-box .inbox-02 .item-box .ttl {
  color: var(--brown);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-size: 0.9375rem;
  width: 11.25rem;
  padding: 0.25rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  border-radius: 0.625rem;
  border: 1px solid var(--green);
}
.home #sec01 .information-box .inbox-02 .item-box dl {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  padding-bottom: 0.3125rem;
}
.home #sec01 .information-box .inbox-02 .item-box dl:not(:last-child) {
  border-bottom: 1px dashed var(--green);
}
.home #sec01 .information-box .inbox-02 .item-box dl {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--brown);
}
.home #sec01 .information-box .inbox-03 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.home #sec01 .information-box .inbox-03 .update {
  color: var(--brown);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .home #sec01 .information-box {
    width: min(100%, 48.75rem);
    margin: 0 auto;
    flex-direction: column;
    gap: 0.625rem 2.5rem;
  }
  .home #sec01 .information-box .inbox-01 {
    align-items: center;
  }
  .home #sec01 .information-box .inbox-02 {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .home #sec01 .information-box {
    flex-direction: column;
  }
  .home #sec01 .information-box .illust-box img {
    width: 3.75rem;
  }
  .home #sec01 .information-box .inbox-01 .ttl {
    font-size: 1.25rem;
  }
  .home #sec01 .information-box .inbox-02 .item-box {
    width: 100%;
  }
  .home #sec01 .information-box .inbox-02 .item-box .ttl {
    width: 100%;
  }
  .home #sec01 .information-box .inbox-02 .item-box dl {
    padding: 0 1.25rem 0.3125rem;
  }
  .home #sec01 .information-box .inbox-02 .item-box dl dt {
    flex-shrink: 0;
  }
  .home #sec01 .information-box .inbox-02 .item-box dl dd {
    flex-grow: 1;
  }
}
.home #sec02 {
  padding: 3.125rem 1.25rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .home #sec02 {
    padding: 5rem 0 2.5rem;
  }
}
.home #sec02 .content-inner {
  width: min(100%, 75rem);
  margin: 0 auto;
}
.home #sec02 .layout-01 {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home #sec02 .layout-01 .box-01 {
  width: 43.875rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3.125rem;
  padding-top: 2.5rem;
}
.home #sec02 .layout-01 .box-01 .image-box-01 {
  width: 25rem;
  aspect-ratio: 400/490;
}
.home #sec02 .layout-01 .box-01 .title-box {
  padding: 1.25rem 3.75rem;
  width: 15.625rem;
  display: flex;
  justify-content: flex-end;
}
.home #sec02 .layout-01 .box-01 .title-box .copy-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  color: var(--brown);
}
.home #sec02 .layout-01 .box-01 .title-box .copy-txt span {
  display: block;
}
.home #sec02 .layout-01 .box-02 {
  width: 23.75rem;
}
.home #sec02 .layout-01 .box-02 .image-box-02 {
  width: 23.75rem;
  aspect-ratio: 380/388;
}
.home #sec02 .layout-01 .box-03 {
  width: 43.75rem;
  margin-top: 3.125rem;
}
.home #sec02 .layout-01 .box-03 .text-box {
  width: 100%;
}
.home #sec02 .layout-01 .box-03 .text-box p {
  color: var(--brown);
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.home #sec02 .layout-01 .box-04 {
  position: relative;
  top: -1.5rem;
}
.home #sec02 .layout-01 .box-04 .image-box-03 {
  width: 25rem;
  aspect-ratio: 400/267;
}
@media screen and (max-width: 1023px) {
  .home #sec02 .layout-01 {
    width: min(100%, 48.75rem);
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
  }
  .home #sec02 .layout-01 .box-02 {
    margin-top: 3.125rem;
  }
  .home #sec02 .layout-01 .box-04 {
    margin-top: 1.875rem;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .home #sec02 .layout-01 .box-01 {
    width: min(100%, 24.375rem);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: 2.5rem;
    padding-right: 1.25rem;
  }
  .home #sec02 .layout-01 .box-01 .image-box-01 {
    width: 15.625rem;
    aspect-ratio: 400/490;
  }
  .home #sec02 .layout-01 .box-01 .title-box {
    padding: 0 1.25rem;
    width: -moz-max-content;
    width: max-content;
  }
  .home #sec02 .layout-01 .box-01 .title-box .copy-txt {
    gap: 1rem;
    font-size: 1.125rem;
  }
  .home #sec02 .layout-01 .box-02 {
    width: 15.625rem;
  }
  .home #sec02 .layout-01 .box-02 .image-box-02 {
    width: 15.625rem;
    aspect-ratio: 380/388;
  }
  .home #sec02 .layout-01 .box-03 {
    width: 100%;
    margin-top: 1.25rem;
    padding: 0 1.25rem;
  }
  .home #sec02 .layout-01 .box-03 .text-box {
    width: 100%;
  }
  .home #sec02 .layout-01 .box-03 .text-box p {
    font-size: 1rem;
  }
  .home #sec02 .layout-01 .box-04 {
    position: relative;
    top: 0;
  }
  .home #sec02 .layout-01 .box-04 .image-box-03 {
    width: 21.875rem;
    aspect-ratio: 400/267;
  }
}
.home #sec03 {
  padding: 3.125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .home #sec03 {
    padding: 2.5rem 1.25rem;
  }
}
.home #sec03 .content-inner {
  width: min(100%, 75rem);
  margin: 0 auto;
}
.home #sec03 .layout-01 {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home #sec03 .layout-01 .text-box {
  width: 28.125rem;
}
.home #sec03 .layout-01 .text-box .inner {
  width: 17.6875rem;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}
.home #sec03 .layout-01 .text-box p {
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--brown);
}
.home #sec03 .layout-01 .image-box {
  width: 18.75rem;
  aspect-ratio: 300/445;
}
.home #sec03 .layout-01 .btn-box {
  width: 28.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .home #sec03 .layout-01 {
    width: min(100%, 48.75rem);
    margin: 0 auto;
    gap: 1.25rem;
  }
  .home #sec03 .layout-01 .text-box {
    width: 17.6875rem;
  }
  .home #sec03 .layout-01 .text-box .inner {
    width: 100%;
  }
  .home #sec03 .layout-01 .btn-box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .home #sec03 .layout-01 {
    flex-direction: column;
    align-items: center;
  }
  .home #sec03 .layout-01 .text-box {
    width: 100%;
  }
  .home #sec03 .layout-01 .text-box .inner {
    width: 100%;
    align-items: center;
    gap: 1.25rem;
  }
  .home #sec03 .layout-01 .text-box p {
    font-size: 1rem;
  }
  .home #sec03 .layout-01 .image-box {
    width: 15.625rem;
  }
}
.home #sec04 {
  padding: 3.125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .home #sec04 {
    padding: 2.5rem 1.25rem;
  }
}
.home #sec04 .content-inner {
  width: min(100%, 75rem);
  margin: 0 auto;
}
.home #sec04 .layout-01 {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.home #sec04 .layout-01 .item-box {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background-color: var(--white);
  border-radius: 0.625rem;
  border: 1px solid var(--border);
}
.home #sec04 .layout-01 .item-box .ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--brown);
}
.home #sec04 .layout-01 .item-box .ttl span {
  display: inline-block;
}
.home #sec04 .layout-01 .item-box .ttl span.icon {
  width: 3.125rem;
  height: 3.125rem;
}
.home #sec04 .layout-01 .item-box .ttl span.icon img {
  width: 100%;
}
.home #sec04 .layout-01 .item-box .txt {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .home #sec04 .layout-01 {
    width: min(100%, 48.75rem);
    margin: 2.5rem auto 0;
    flex-wrap: wrap;
  }
  .home #sec04 .layout-01 .item-box {
    flex: auto;
    width: calc(50% - 0.625rem);
  }
}
@media screen and (max-width: 767px) {
  .home #sec04 .layout-01 {
    margin-top: 1.25rem;
  }
  .home #sec04 .layout-01 .item-box {
    width: 100%;
  }
  .home #sec04 .layout-01 .item-box .ttl {
    justify-content: flex-start;
    gap: 0.625rem;
    font-size: 1rem;
  }
  .home #sec04 .layout-01 .item-box .txt {
    font-size: 0.9375rem;
  }
}
.home #sec05 {
  padding: 3.125rem 1.25rem;
}
.home #sec05 .content-inner {
  width: min(100%, 75rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .home #sec05 .content-inner {
    gap: 1.25rem;
  }
}
.home #sec06 {
  padding: 3.125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .home #sec06 {
    padding: 1.25rem;
  }
}
.home #sec06 .content-inner {
  width: min(100%, 75rem);
  margin: 0 auto;
}
.home #sec06 .news-box {
  padding: 1.25rem 2.5rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border, #efebe7);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.home #sec06 .news-box .title-box {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  color: var(--brown);
  flex-shrink: 0;
}
.home #sec06 .news-box .title-box .ttl {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.home #sec06 .news-box .news-list {
  max-width: 56.25rem;
  flex-grow: 1;
}
.home #sec06 .news-box .news-list ul {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--brown);
}
.home #sec06 .news-box .news-list ul li {
  border-bottom: 1px solid var(--border, #efebe7);
}
.home #sec06 .news-box .news-list ul li a {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0.5rem 0;
  transition: 0.3s ease;
}
.home #sec06 .news-box .news-list ul li a .post-date {
  width: 5.25rem;
  flex-shrink: 0;
}
.home #sec06 .news-box .news-list ul li a .post-ttl {
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.home #sec06 .news-box .news-list ul li a .arrow {
  width: 0.75rem;
  height: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home #sec06 .news-box .news-list ul li a .arrow svg {
  width: 0.25rem;
  height: 0.4375rem;
}
.home #sec06 .news-box .news-list ul li a:hover .post-ttl {
  color: var(--dark_green);
}
@media screen and (max-width: 1023px) {
  .home #sec06 .news-box {
    width: min(100%, 48.75rem);
    margin: 0 auto;
    gap: 1.25rem;
  }
  .home #sec06 .news-box .news-list ul li a {
    gap: 0 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .home #sec06 .news-box {
    padding: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
  }
  .home #sec06 .news-box .title-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .home #sec06 .news-box .title-box .ttl {
    font-size: 1rem;
  }
  .home #sec06 .news-box .news-list {
    width: 100%;
  }
  .home #sec06 .news-box .news-list ul {
    font-size: 0.875rem;
  }
  .home #sec06 .news-box .news-list ul li a {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 1.25rem;
    padding: 0.5rem 1.5rem 0.5rem 0;
  }
  .home #sec06 .news-box .news-list ul li a .post-date {
    width: 4.875rem;
    flex-shrink: 0;
  }
  .home #sec06 .news-box .news-list ul li a .post-ttl {
    width: 100%;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
  .home #sec06 .news-box .news-list ul li a .arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateX(-50%);
  }
  .home #sec06 .news-box .news-list ul li a:hover .post-ttl {
    color: var(--dark_green);
  }
}
.home #sec07 {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .home #sec07 {
    padding: 2.5rem 1.25rem;
  }
}
.home #sec07 .content-inner {
  width: min(100%, 75rem);
  margin: 0 auto;
}
.home #sec07 .layout-01 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7.5rem;
}
.home #sec07 .layout-01 .image-box {
  width: 28.125rem;
  aspect-ratio: 450/300;
}
.home #sec07 .layout-01 .text-box {
  width: 37.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  color: var(--brown);
}
.home #sec07 .layout-01 .text-box .copy-txt {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.home #sec07 .layout-01 .text-box .txt {
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .home #sec07 .layout-01 {
    width: min(100%, 48.75rem);
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .home #sec07 .layout-01 .image-box {
    width: min(100%, 28.125rem);
  }
  .home #sec07 .layout-01 .text-box {
    width: 100%;
    align-items: center;
    gap: 1.25rem;
  }
  .home #sec07 .layout-01 .text-box .copy-txt {
    align-self: stretch;
    font-size: 1.25rem;
  }
  .home #sec07 .layout-01 .text-box .txt {
    font-size: 1rem;
  }
}

/*=================================================
		施設紹介　コンテンツ
==================================================*/
.facility-content {
  width: min(100%, 75rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .facility-content {
    gap: 1.25rem;
  }
}

.facility-overview {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
}
.facility-overview .item-box {
  width: calc(50% - 0.625rem);
  padding: 1.25rem 2.5rem;
  background-color: var(--white);
  border-radius: 0.625rem;
  border: 1px solid var(--border);
}
.facility-overview .item-box .image-box {
  width: 100%;
  aspect-ratio: 510/216;
}
.facility-overview .item-box .image-box img {
  width: 100%;
  border-radius: 0.625rem 0.625rem 0 0;
}
.facility-overview .item-box .text-box {
  align-self: stretch;
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.facility-overview .item-box .text-box .ttl {
  align-self: stretch;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--darker_green);
}
.facility-overview .item-box .text-box .room-info {
  align-self: stretch;
  padding: 1.25rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border);
  background: #fefdfb;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.facility-overview .item-box .text-box .room-info .ttl-box {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.facility-overview .item-box .text-box .room-info .ttl-box .status-ttl {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.facility-overview .item-box .text-box .room-info .ttl-box .update {
  font-size: 0.75rem;
  line-height: 1.8;
}
.facility-overview .item-box .text-box .room-info .status-detail {
  align-self: stretch;
  display: flex;
  align-items: start;
  gap: 1.25rem;
}
.facility-overview .item-box .text-box .room-info .status-detail .inbox {
  flex: 1;
  flex-shrink: 0;
  padding-bottom: 0.3125rem;
  border-bottom: 1px dashed var(--black, #444);
}
.facility-overview .item-box .text-box .room-info .status-detail .inbox dl {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.3125rem;
}
.facility-overview .item-box .text-box .room-info .status-detail .inbox dl dt {
  flex-shrink: 0;
}
.facility-overview .item-box .text-box .description {
  align-self: stretch;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .facility-overview {
    width: min(100%, 48.75rem);
    margin: 0 auto;
    flex-direction: column;
  }
  .facility-overview .item-box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .facility-overview {
    margin: 0 auto;
  }
  .facility-overview .item-box {
    padding: 1.25rem;
  }
  .facility-overview .item-box .text-box {
    padding: 1.25rem 0;
    gap: 0.5rem;
  }
  .facility-overview .item-box .text-box .ttl {
    font-size: 1.25rem;
  }
  .facility-overview .item-box .text-box .room-info {
    padding: 1.25rem;
    border-radius: 0.625rem;
    gap: 0.3125rem;
  }
  .facility-overview .item-box .text-box .room-info .ttl-box .status-ttl {
    font-size: 0.875rem;
  }
  .facility-overview .item-box .text-box .room-info .ttl-box .update {
    font-size: 0.75rem;
  }
  .facility-overview .item-box .text-box .room-info .status-detail {
    gap: 1.25rem;
    flex-direction: column;
  }
  .facility-overview .item-box .text-box .room-info .status-detail .inbox {
    width: 100%;
    flex: 1;
    flex-shrink: 0;
  }
  .facility-overview .item-box .text-box .room-info .status-detail .inbox dl {
    font-size: 0.9375rem;
    gap: 0.3125rem;
  }
  .facility-overview .item-box .text-box .description {
    font-size: 0.9375rem;
    align-self: stretch;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}

.facility-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
.facility-contact .contact-box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.25rem 2.5rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border, #efebe7);
  background: #f6fbf9;
}
.facility-contact .contact-box.bg_white {
  background: var(--white);
}
.facility-contact .contact-box .text-box {
  flex-grow: 1;
  padding-right: 1.25rem;
  border-right: 1px dashed var(--darker_green, #4d8b78);
}
.facility-contact .contact-box .text-box .txt {
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.facility-contact .contact-box .text-box .tel {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  color: var(--dark_green);
}
.facility-contact .contact-box .text-box .tel .icon {
  width: 2rem;
  height: 2rem;
}
.facility-contact .contact-box .text-box .tel .icon svg {
  width: 100%;
  height: 100%;
}
.facility-contact .contact-box .text-box .tel .num {
  font-family: var(--font-poppins);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
}
.facility-contact .contact-box .text-box .tel .txt-note {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 500;
}
.facility-contact .contact-box .btn-box {
  flex-shrink: 0;
}
.facility-contact .contact-box .btn-box .btn-contact {
  width: 15.625rem;
}
@media screen and (max-width: 1023px) {
  .facility-contact .contact-box {
    width: min(100%, 48.75rem);
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .facility-contact .contact-box {
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
  }
  .facility-contact .contact-box .text-box {
    flex-grow: 1;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px dashed var(--darker_green, #4d8b78);
  }
  .facility-contact .contact-box .text-box .txt {
    font-size: 0.9375rem;
  }
  .facility-contact .contact-box .text-box .tel {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.3125rem;
    color: var(--dark_green);
  }
  .facility-contact .contact-box .text-box .tel .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .facility-contact .contact-box .text-box .tel .num {
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  .facility-contact .contact-box .text-box .tel .num .txt-note {
    font-size: 1rem;
  }
}
.facility-contact .btmTxt {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/*=================================================
		lower 下層共通
==================================================*/
.lower .kv-lower {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .lower .kv-lower {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 0;
  }
}
.lower .kv-lower .kv-inner {
  width: clamp(31.25rem, 34.7222222222%, 46.875rem);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
}
.lower .kv-lower .kv-inner .breadcrumb {
  padding: 0.46875rem 1.875rem;
  font-size: 0.875rem;
  color: var(--brown);
}
.lower .kv-lower .kv-inner .breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 1em;
}
.lower .kv-lower .kv-inner .breadcrumb ul li a {
  transition: 0.3s ease;
}
.lower .kv-lower .kv-inner .breadcrumb ul li a:hover {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lower .kv-lower .kv-inner .breadcrumb ul li:not(:last-child) {
  display: inline-flex;
  align-items: center;
  gap: 1em;
}
.lower .kv-lower .kv-inner .breadcrumb ul li:not(:last-child)::after {
  content: ">";
}
.lower .kv-lower .kv-inner .page-header {
  position: relative;
  padding-left: 7.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.625rem;
}
.lower .kv-lower .kv-inner .page-header::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  content: "";
  width: 31.25rem;
  aspect-ratio: 500/380;
  background: url("../images/common/bg_page-header.png") left top no-repeat;
  background-size: 100% auto;
  pointer-events: none;
}
.lower .kv-lower .kv-inner .page-header .page-title {
  align-self: stretch;
}
.lower .kv-lower .kv-inner .page-header .page-title h1 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--brown);
}
.lower .kv-lower .kv-inner .page-header .page-title .page-subttl {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: normal;
  color: var(--light-brown);
}
.lower .kv-lower .kv-inner .page-header .page-info {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .lower .kv-lower .kv-inner .page-header {
    padding-left: 3.75rem;
  }
  .lower .kv-lower .kv-inner .page-header::after {
    width: 18.75rem;
  }
  .lower .kv-lower .kv-inner .page-header .page-title h1 {
    font-size: 1.5rem;
  }
  .lower .kv-lower .kv-inner .page-header .page-title .page-subttl {
    font-size: 1.125rem;
  }
  .lower .kv-lower .kv-inner .page-header .page-info {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .lower .kv-lower .kv-inner {
    width: 100%;
  }
  .lower .kv-lower .kv-inner .breadcrumb {
    padding: 0.5625rem 1.25rem;
    font-size: 0.75rem;
  }
  .lower .kv-lower .kv-inner .page-header {
    padding: 1.25rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    align-self: stretch;
  }
  .lower .kv-lower .kv-inner .page-header .page-title {
    text-align: center;
  }
  .lower .kv-lower .kv-inner .page-header .page-title h1 {
    font-size: 1.5rem;
  }
  .lower .kv-lower .kv-inner .page-header .page-title .page-subttl {
    font-size: 1.125rem;
  }
  .lower .kv-lower .kv-inner .page-header .page-info {
    font-size: 0.875rem;
  }
}
.lower .kv-lower:not(:has(.kv-image)) .kv-inner {
  width: 100%;
}
.lower .kv-lower:not(:has(.kv-image)) .kv-inner .page-header {
  height: 9.375rem;
  padding-left: 5rem;
  padding-right: 5rem;
}
.lower .kv-lower:not(:has(.kv-image)) .kv-inner .page-header .page-title {
  text-align: center;
}
.lower .kv-lower .kv-image {
  width: min(62.5%, 84.375rem);
  aspect-ratio: 2/1;
  max-height: 28.125rem;
}
.lower .kv-lower .kv-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .lower .kv-lower .kv-image {
    width: 100%;
  }
}
.lower .content {
  padding: 5rem;
}
@media screen and (max-width: 1023px) {
  .lower .content {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .lower .content {
    padding: 2.5rem 1.25rem;
  }
}
.lower .content .content-inner {
  width: min(100%, 75rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .lower .content .content-inner {
    gap: 1.25rem;
  }
}
.lower .content .layout-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-self: stretch;
}
.lower .content-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--brown);
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.lower .content-title .num {
  font-family: var(--font-poppins);
  font-size: 2.25rem;
  font-weight: 500;
  border-bottom: 1px solid var(--brown);
}
.lower .content-title .ttl {
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .lower .content-title .num {
    font-size: 1.5rem;
  }
  .lower .content-title .ttl {
    font-size: 1.375rem;
  }
}
.lower .content-subTitle {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: flex-start;
  align-items: first baseline;
  color: var(--darker_green);
}
.lower .content-subTitle .small {
  font-size: 1.25rem;
}
.lower .content-subTitle .icon_w40 {
  width: 2.5rem;
  margin-right: 0.625rem;
}
.lower .content-subTitle .icon_w40 img {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .lower .content-subTitle {
    font-size: 1.25rem;
  }
  .lower .content-subTitle .small {
    font-size: 1rem;
  }
}
.lower .read-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  color: var(--brown);
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.lower .read-txt .ttl {
  font-size: 1.5rem;
  font-weight: 700;
}
.lower .read-txt .txt {
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .lower .read-txt .ttl {
    font-size: 1.125rem;
  }
  .lower .read-txt .txt {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .lower .read-txt .txt {
    text-align: left;
  }
}
.lower ul.list-dot {
  align-self: stretch;
}
.lower ul.list-dot li {
  position: relative;
  padding-left: 1em;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.lower ul.list-dot li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/*=================================================
		ご利用案内
==================================================*/
.guide {
  /* 01 ご利用いただける方 */
}
.guide .layout-01 {
  padding: 0 2.5rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.625rem;
  border: 1px solid var(--border, #efebe7);
  background: var(--white, #fff);
}
.guide .layout-01 .box {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  align-self: stretch;
  padding: 1.25rem 0;
  background: var(--white);
}
.guide .layout-01 .box:not(:last-child) {
  border-bottom: 1px solid var(--border, #efebe7);
}
.guide .layout-01 .box .image-box {
  width: 7.5rem;
  aspect-ratio: 120/121;
}
.guide .layout-01 .box .text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
  flex: 1 0 0;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.guide .layout-01 .box .text-box .ttl {
  align-self: stretch;
  color: var(--darker_green);
  font-size: 1.5rem;
  font-weight: 700;
}
.guide .layout-01 .box .remark-box {
  width: 24.375rem;
  padding: 1.25rem 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  background: #f6f8f5;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.guide .layout-01 .box .remark-box .ttl {
  color: var(--dark_green);
  font-size: 1.25rem;
  font-weight: 700;
}
.guide .layout-01 .box .remark-box .txt {
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .guide .layout-01 {
    width: min(100%, 48.75rem);
    align-self: center;
    padding: 0 1.25rem;
  }
  .guide .layout-01 .box {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
  }
  .guide .layout-01 .box .image-box {
    width: 5rem;
    aspect-ratio: 1/1;
  }
  .guide .layout-01 .box .text-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.625rem;
    flex: unet;
    line-height: 1.8;
    letter-spacing: 0.05em;
    align-self: stretch;
  }
  .guide .layout-01 .box .text-box .ttl {
    align-self: stretch;
    font-size: 1.125rem;
    text-align: center;
  }
  .guide .layout-01 .box .text-box .txt {
    font-size: 0.9375rem;
  }
  .guide .layout-01 .box .remark-box {
    width: 100%;
    padding: 1.25rem 0.625rem;
    gap: 0.625rem;
  }
  .guide .layout-01 .box .remark-box .ttl {
    font-size: 1rem;
  }
  .guide .layout-01 .box .remark-box .txt {
    font-size: 0.9375rem;
  }
  .guide .layout-01 .box .remark-box ul {
    font-size: 0.9375rem;
  }
}
.guide .layout-02 {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  align-self: stretch;
}
@media screen and (max-width: 1023px) {
  .guide .layout-02 {
    width: min(100%, 48.75rem);
    margin: 0 auto;
    flex-direction: column;
  }
}
.guide .layout-02 .box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
  padding: 1.25rem 2.5rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border, #efebe7);
  background: #fefdfb;
}
.guide .layout-02 .box .ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--brown);
  align-self: stretch;
}
.guide .layout-02 .box ul.list-check {
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  align-self: stretch;
}
.guide .layout-02 .box ul.list-check li {
  position: relative;
  padding: 0.5555555556em 0 0.5555555556em 2.2777777778em;
  border-bottom: 1px solid var(--border);
}
.guide .layout-02 .box ul.list-check li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 1.7777777778em;
  height: 1.7777777778em;
  background: url("../images/common/icon_check_list.svg") no-repeat;
  background-size: 100% 100%;
}
.guide .layout-02 .box .col2-01 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
}
.guide .layout-02 .box .col2-01 .text-box {
  align-self: stretch;
  flex-grow: 1;
}
.guide .layout-02 .box .col2-01 .image-box {
  flex-shrink: 0;
}
.guide .layout-02 .box .col2-01 .image-box .illust01 {
  width: 6.25rem;
}
.guide .layout-02 .box .col2-02 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-bottom: 1px solid var(--border, #efebe7);
}
.guide .layout-02 .box .col2-02 .image-box {
  flex-shrink: 0;
}
.guide .layout-02 .box .col2-02 .image-box .illust02 {
  width: 8.9375rem;
}
.guide .layout-02 .box .col2-02 .text-box p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.guide .layout-02 .box .col3-01 {
  display: flex;
  align-items: stretch;
  align-self: stretch;
}
.guide .layout-02 .box .col3-01 .item-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0;
}
.guide .layout-02 .box .col3-01 .item-box:not(:last-child) {
  border-right: 1px solid var(--border);
}
.guide .layout-02 .box .col3-01 .item-box .icon {
  width: 3.125rem;
  aspect-ratio: 1/1;
}
.guide .layout-02 .box .col3-01 .item-box .ttl {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .guide .layout-02 .box {
    padding: 1.25rem;
  }
  .guide .layout-02 .box .ttl {
    font-size: 1.125rem;
  }
  .guide .layout-02 .box ul.list-check {
    font-size: 0.9375rem;
  }
  .guide .layout-02 .box ul.list-check li {
    padding: 0.6666666667em 0.6666666667em 0.6666666667em 2.9333333333em;
  }
  .guide .layout-02 .box .col2-02 .text-box p {
    font-size: 0.9375rem;
  }
  .guide .layout-02 .box .col3-01 .item-box .ttl {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .guide .layout-02 .box .col2-01 {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    align-self: stretch;
  }
  .guide .layout-02 .box .col2-01 .image-box .illust01 {
    width: 4.125rem;
  }
  .guide .layout-02 .box .col2-02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 0.625rem;
  }
  .guide .layout-02 .box .col2-02 .image-box .illust02 {
    width: 6.8125rem;
  }
  .guide .layout-02 .box .col2-02 .text-box p {
    font-size: 0.9375rem;
  }
  .guide .layout-02 .box .col3-01 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    align-self: stretch;
  }
  .guide .layout-02 .box .col3-01 .item-box {
    flex: unset;
    width: 50%;
    flex-grow: 1;
    border-bottom: 1px solid var(--border);
  }
  .guide .layout-02 .box .col3-01 .item-box:not(:last-child) {
    border-right: none;
  }
}
.guide {
  /* 02 ご利用料金 */
}
.guide .read-col2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
  color: var(--brown);
}
.guide .read-col2 .ttl-tag {
  display: flex;
  padding: 0.3125rem 1.25rem;
  justify-content: center;
  align-items: center;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 100vmax;
  border: 1px solid var(--brown, #603911);
  background: var(--white, #fff);
}
@media screen and (max-width: 767px) {
  .guide .read-col2 {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
  }
  .guide .read-col2 .txt {
    font-size: 0.9375rem;
  }
}
.guide .layout-03 {
  align-self: stretch;
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  border-radius: 0.625rem;
  border: 1px dashed var(--border, #efebe7);
  background: var(--white, #fff);
}
.guide .layout-03 .ttl {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
.guide .layout-03 .ttl .icon {
  width: 3.125rem;
  aspect-ratio: 1/1;
}
.guide .layout-03 .ttl .txt {
  color: var(--dark_green);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.guide .layout-03 .text-box {
  display: flex;
  padding-left: 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px dashed var(--dark_green);
}
.guide .layout-03 .text-box p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.guide .layout-03 .text-box p.price {
  font-size: 1.125rem;
}
.guide .layout-03 .text-box p.price .txt-price {
  font-family: var(--font-poppins);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .guide .layout-03 {
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    gap: 0.625rem;
  }
  .guide .layout-03 .ttl {
    gap: 0.3125rem;
  }
  .guide .layout-03 .ttl .icon {
    width: 1.875rem;
  }
  .guide .layout-03 .ttl .txt {
    font-size: 1.25rem;
  }
  .guide .layout-03 .text-box {
    padding-left: 0;
    border-top: 1px dashed var(--dark_green);
    border-left: none;
    align-items: center;
    align-self: stretch;
  }
  .guide .layout-03 .text-box p {
    font-size: 0.9375rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
  .guide .layout-03 .text-box p.price {
    font-size: 1.125rem;
  }
  .guide .layout-03 .text-box p.price .txt-price {
    font-size: 1.75rem;
  }
}
.guide .layout-04 {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  align-self: stretch;
}
.guide .layout-04 .box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  border-radius: 0.625rem;
  border: 1px solid var(--border);
}
.guide .layout-04 .box .title-box {
  padding: 0.625rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.625rem 0.625rem 0 0;
  background: #eaf7f5;
}
.guide .layout-04 .box .title-box .ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
.guide .layout-04 .box .title-box .ttl .icon {
  flex-shrink: 0;
}
.guide .layout-04 .box .title-box .ttl .icon img {
  width: 1.5rem;
  aspect-ratio: 1/1;
}
.guide .layout-04 .box .title-box .ttl .txt {
  color: var(--darker_green);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.guide .layout-04 .box .title-box .ttl .txt .txt-en {
  font-family: var(--font-poppins);
  font-weight: 500;
}
.guide .layout-04 .box .text-box {
  padding: 1.25rem 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0 0 0.625rem 0.625rem;
  background: var(--white);
  flex-grow: 1;
}
.guide .layout-04 .box .text-box .price {
  text-align: center;
  color: var(--darker_green);
  line-height: 1;
}
.guide .layout-04 .box .text-box .price .txt-price {
  font-family: var(--font-poppins);
  font-size: 2rem;
  font-weight: 500;
}
.guide .layout-04 .box .text-box .price .txt-small {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .guide .layout-04 {
    gap: 0.625rem;
    flex-direction: column;
    align-items: center;
  }
  .guide .layout-04 .box {
    align-self: stretch;
  }
  .guide .layout-04 .box .title-box .ttl .txt {
    font-size: 1.125rem;
  }
  .guide .layout-04 .box .text-box .price .txt-price {
    font-size: 1.75rem;
  }
  .guide .layout-04 .box .text-box .price .txt-small {
    font-size: 1.125rem;
  }
}
.guide .layout-05 {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 2.5rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border, #efebe7);
  background: var(--white, #fff);
}
.guide .layout-05 .aco-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.guide .layout-05 .aco-title .btn-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: 0.3s ease;
  flex-shrink: 0;
}
.guide .layout-05 .aco-title .btn-trigger::before {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  content: "閉じる";
  flex-shrink: 0;
}
.guide .layout-05 .aco-title .btn-trigger::after {
  content: "";
  width: 2rem;
  height: 1rem;
  background: url("../images/common/icon_arrow.svg") no-repeat;
  background-size: 100% 100%;
}
.guide .layout-05 .aco-title .btn-trigger:hover {
  color: var(--darker_green);
}
.guide .layout-05 .aco-title.is-close .btn-trigger::before {
  content: "開く";
}
.guide .layout-05 .aco-title.is-close .btn-trigger::after {
  content: "";
  width: 2rem;
  height: 1rem;
  background: url("../images/common/icon_arrow.svg") no-repeat;
  background-size: 100% 100%;
  transform: scaleY(-1);
}
.guide .layout-05 .table-box {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .guide .layout-05 {
    padding: 1.25rem;
  }
  .guide .layout-05 .aco-title {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .guide .layout-05 .aco-title .btn-trigger {
    align-self: flex-end;
  }
}
.guide {
  /* 介護保険自己負担額 表 */
}
.guide .table-01 {
  width: 100%;
}
.guide .table-01 .cost-table-wrapper {
  width: 100%;
  /* ヘッダーの設定 */
}
.guide .table-01 .cost-table-wrapper .table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr; /* PCは4列 */
}
.guide .table-01 .cost-table-wrapper .table-header .th {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border, #efebe7);
  background: #eaf7f5;
}
.guide .table-01 .cost-table-wrapper {
  /* データ本体（PC表示：縦流し） */
}
.guide .table-01 .cost-table-wrapper .table-body {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左右に2グループ並べる */
  grid-template-rows: repeat(4, auto); /* 4行分の枠を作成（データ7件なら4行で足りる） */
  grid-auto-flow: column; /* ★上から下に流し込み、溢れたら右列へ */
}
.guide .table-01 .cost-table-wrapper .table-body .row-group {
  display: grid;
  grid-template-columns: 1fr 1fr; /* グループ内は2列（要介護度 | 金額） */
}
.guide .table-01 .cost-table-wrapper .table-body .row-group .td {
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--border, #efebe7);
  background: var(--white, #ffffff);
}
.guide .table-01 .cost-table-wrapper .table-body .row-group .td.ttl {
  font-weight: 500;
}
.guide .table-01 .cost-table-wrapper {
  /* ----------------------------------
     スマホ表示（768px以下）
  ---------------------------------- */
}
@media screen and (max-width: 768px) {
  .guide .table-01 .cost-table-wrapper {
    /* 不要な「右側ヘッダー」と「右下の空欄セット」を消す */
  }
  .guide .table-01 .cost-table-wrapper .sp-none {
    display: none !important;
  }
  .guide .table-01 .cost-table-wrapper .table-header {
    grid-template-columns: 1fr 1fr;
  }
  .guide .table-01 .cost-table-wrapper .table-header .sp-none {
    display: none;
  }
  .guide .table-01 .cost-table-wrapper {
    /* データ本体を普通の1列（縦並び）に戻す */
  }
  .guide .table-01 .cost-table-wrapper .table-body {
    display: block; /* ★Gridの縦流しを解除！ただ上から下へ並ぶだけ */
  }
  .guide .table-01 .cost-table-wrapper .table-body .row-group {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 各行は2列のまま */
  }
  .guide .table-01 .cost-table-wrapper .table-body .row-group .td {
    padding: 0.625rem;
  }
}
.guide .layout-06 {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  align-self: stretch;
}
.guide .layout-06 .box {
  padding: 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-self: stretch;
  gap: 1.25rem;
  flex: 1;
  border-radius: 0.625rem;
  border: 1px solid var(--border, #efebe7);
  background: var(--white, #fff);
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.guide .layout-06 .box .ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  font-size: 1.25rem;
  font-weight: 700;
}
.guide .layout-06 .box .ttl .icon {
  width: 1.875rem;
}
.guide .layout-06 .box .ttl.ttl_01 {
  color: #e2943f;
}
.guide .layout-06 .box .ttl.ttl_02 {
  color: #4d778b;
}
@media screen and (max-width: 767px) {
  .guide .layout-06 {
    flex-direction: column;
    gap: 0.625rem;
  }
  .guide .layout-06 .box {
    padding: 1.25rem;
    gap: 1.25rem;
    font-size: 1rem;
  }
  .guide .layout-06 .box .ttl {
    gap: 0.625rem;
    font-size: 1.125rem;
  }
}
.guide {
  /* 03 ご入居までの流れ */
}
.guide .flow-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 24.0625rem));
  gap: 2.5rem 1rem;
}
.guide .flow-box .box {
  position: relative;
  padding: 1.25rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border, #efebe7);
  background: var(--white, #fff);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.guide .flow-box .box .num {
  position: absolute;
  top: -1.25rem;
  left: -1px;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--darker_green);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-poppins);
  font-size: 1.25rem;
  line-height: 1;
}
.guide .flow-box .box .inbox01 {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-grow: 1;
}
.guide .flow-box .box .inbox01 .icon {
  width: 4.375rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.guide .flow-box .box .inbox01 .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.625rem;
}
.guide .flow-box .box .inbox01 .text-box p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.guide .flow-box .box .inbox01 .text-box .step-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.3125rem;
  align-self: stretch;
  color: var(--darker_green);
  border-bottom: 1px dashed var(--darker_green, #4d8b78);
}
.guide .flow-box .box .inbox02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.625rem;
  border-radius: 0.625rem;
  background: #f6f8f5;
}
.guide .flow-box .box .inbox02 .ttl {
  align-self: stretch;
  color: var(--dark_green);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
.guide .flow-box .box::after {
  position: absolute;
  top: calc(50% - 1rem);
  right: -1.25rem;
  content: "";
  width: 2rem;
  height: 2rem;
  background: url("../images/common/icon_flow_arrow.svg") no-repeat;
  background-size: 100% 100%;
}
@media screen and (min-width: 1024px) {
  .guide .flow-box .box:nth-child(3n)::after,
  .guide .flow-box .box:last-child::after {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .guide .flow-box {
    grid-template-columns: repeat(2, minmax(0, 24.0625rem));
  }
  .guide .flow-box .box:nth-child(2n)::after,
  .guide .flow-box .box:last-child::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .guide .flow-box {
    grid-template-columns: repeat(1, minmax(0, 43.75rem));
  }
  .guide .flow-box .box {
    padding: 1.875rem 1.25rem 1.25rem;
  }
  .guide .flow-box .box .num {
    position: absolute;
    top: -1.25rem;
    left: calc(50% - 1.25rem);
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
  .guide .flow-box .box .inbox01 {
    gap: 0.625rem;
  }
  .guide .flow-box .box .inbox01 .icon {
    width: 3.125rem;
  }
  .guide .flow-box .box .inbox01 .text-box .step-ttl {
    font-size: 1.125rem;
    padding-bottom: 0.3125rem;
  }
  .guide .flow-box .box .inbox02 .ttl {
    font-size: 1rem;
  }
  .guide .flow-box .box::after {
    display: none;
  }
}
.guide {
  /* 04 安心のサポート */
  /* --- スマホ（初期値）：縦1列 --- */
}
.guide .support-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.guide .support-content .row {
  display: grid;
  grid-template-columns: 1fr; /* 常に1列 */
  gap: 1.25rem;
}
.guide .support-content {
  /* --- PC（1024px以上）：列数を変更 --- */
}
@media (min-width: 1024px) {
  .guide .support-content .cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .guide .support-content .cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .guide .support-content .cols-1 {
    grid-template-columns: 1fr;
  }
}
.guide .support-content .box {
  padding: 1.875rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 0.625rem;
  border: 1px solid var(--border, #efebe7);
  background: var(--white, #fff);
}
.guide .support-content .box .inbox01 {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-grow: 1;
}
.guide .support-content .box .inbox01 .icon {
  width: 6.5625rem;
  aspect-ratio: 105/130;
  flex-shrink: 0;
}
.guide .support-content .box .inbox01 .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.625rem;
}
.guide .support-content .box .inbox01 .text-box p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.guide .support-content .box .inbox01 .text-box .ttl {
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 0.625rem;
  align-self: stretch;
  color: var(--darker_green);
  border-bottom: 1px dashed var(--darker_green, #4d8b78);
}
.guide .support-content .box.inbox-col2 {
  padding: 1.25rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
}
.guide .support-content .box.inbox-col2 .inbox02 {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-right: 1.25rem;
  flex-grow: 1;
  border-right: 1px dashed var(--darker_green, #4d8b78);
}
.guide .support-content .box.inbox-col2 .inbox02 .icon {
  width: 4.375rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.guide .support-content .box.inbox-col2 .inbox02 .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.guide .support-content .box.inbox-col2 .inbox02 .text-box p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.guide .support-content .box.inbox-col2 .inbox02 .text-box .ttl {
  font-size: 1.25rem;
  font-weight: 700;
  align-self: stretch;
  color: var(--darker_green);
}
.guide .support-content .box.inbox-col2 .inbox03 {
  width: 28.125rem;
  padding: 0 1.25rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background: #f0f3ea;
}
.guide .support-content .box.inbox-col2 .inbox03 .innerBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.guide .support-content .box.inbox-col2 .inbox03 .topTxt {
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--darker_green);
}
.guide .support-content .box.inbox-col2 .inbox03 .tel {
  font-family: var(--font-poppins);
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  color: var(--darker_green);
}
.guide .support-content .box.inbox-col2 .inbox03 .tel .icon {
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.guide .support-content .box.inbox-col2 .inbox03 .tel .icon svg {
  width: 100%;
}
.guide .support-content .box.inbox-col2 .inbox03 .btmTxt {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .guide .support-content .box.inbox-col2 {
    flex-direction: column;
  }
  .guide .support-content .box.inbox-col2 .inbox02 {
    padding-right: 0;
    padding-bottom: 0.625rem;
    border-right: none;
    border-bottom: 1px dashed var(--darker_green, #4d8b78);
  }
  .guide .support-content .box.inbox-col2 .inbox03 {
    width: 100%;
    padding: 0.5rem 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .guide .support-content .box {
    padding: 1.25rem;
  }
  .guide .support-content .box .inbox01 .icon {
    width: 4.375rem;
  }
  .guide .support-content .box .inbox01 .text-box .ttl {
    font-size: 1.125rem;
  }
  .guide .support-content .box.inbox-col2 .inbox03 {
    width: 100%;
  }
  .guide .support-content .box.inbox-col2 .inbox03 .topTxt {
    text-align: center;
  }
  .guide .support-content .box.inbox-col2 .inbox03 .tel {
    font-size: 1.5rem;
  }
  .guide .support-content .box.inbox-col2 .inbox03 .tel .icon {
    width: 1.625rem;
    height: 1.625rem;
  }
  .guide .support-content .box.inbox-col2 .inbox03 .btmTxt {
    font-size: 0.875rem;
  }
}
.guide {
  /* 05 よくあるご質問 */
}
.guide .faq-content {
  width: min(100%, 50rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.guide .faq-content .faq-item {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.625rem;
  border: 1px solid var(--border, #eaeff4);
  background: var(--white, #fff);
  box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.05);
}
.guide .faq-content .faq-question {
  align-self: stretch;
  cursor: pointer;
}
.guide .faq-content .faq-question .inner {
  display: flex;
  align-items: first baseline;
  gap: 1.25rem;
  align-self: stretch;
}
.guide .faq-content .faq-question .inner::before {
  font-family: var(--font-poppins);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  content: "Q";
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--dark_green);
  background: #d9f8ed;
  border-radius: 50%;
  flex-shrink: 0;
}
.guide .faq-content .faq-question .inner::after {
  content: "";
  width: 2rem;
  height: 1rem;
  background: url("../images/common/icon_faq_arrow.svg") no-repeat;
  background-size: 100% 100%;
  display: inline-block;
  flex-shrink: 0;
  transition: 0.3s ease;
}
.guide .faq-content .faq-question .ttl {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  flex-grow: 1;
}
.guide .faq-content .faq-question.is-open .inner {
  padding-bottom: 0.625rem;
  border-bottom: 1px dashed var(--border, #efebe7);
}
.guide .faq-content .faq-question.is-open .inner::after {
  transform: scaleY(-1);
}
.guide .faq-content .faq-answer {
  display: none;
  align-self: stretch;
}
.guide .faq-content .faq-answer .inner {
  display: flex;
  align-items: first baseline;
  gap: 0.625rem;
  align-self: stretch;
}
.guide .faq-content .faq-answer .inner::before {
  font-family: var(--font-poppins);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  content: "A";
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #afa488;
  background: #f6f4e7;
  border-radius: 50%;
  flex-shrink: 0;
}
.guide .faq-content .faq-answer .txt {
  line-height: 1.8;
  letter-spacing: 0.05em;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .guide .faq-content {
    gap: 0.625rem;
  }
  .guide .faq-content .faq-item {
    padding: 1.25rem 0.625rem;
  }
  .guide .faq-content .faq-question .inner {
    position: relative;
    gap: 0.625rem;
    padding-right: 1em;
  }
  .guide .faq-content .faq-question .inner::before {
    font-size: 1.25rem;
    width: 1.875rem;
    height: 1.875rem;
  }
  .guide .faq-content .faq-question .inner::after {
    position: absolute;
    top: calc(50% - 0.375rem);
    right: -0.3125rem;
    content: "";
    width: 1.5rem;
    height: 0.75rem;
  }
  .guide .faq-content .faq-question .ttl {
    font-size: 1.125rem;
  }
  .guide .faq-content .faq-answer .inner::before {
    font-size: 1.25rem;
    width: 1.875rem;
    height: 1.875rem;
  }
}

/*=================================================
		施設紹介
==================================================*/
.facility p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.facility .f-top-content {
  padding: 5rem 5rem 0;
}
.facility .f-top-content .content-wrapper {
  position: relative;
  width: min(100%, 75rem);
  margin: 0 auto;
}
.facility .f-top-content .image-box-main {
  width: 46.875rem;
  margin: 0 auto 5rem 0;
}
.facility .f-top-content .text-box {
  width: 46.875rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
.facility .f-top-content .text-box .title-box {
  align-self: stretch;
  padding-bottom: 0.625rem;
  border-bottom: 1px dashed var(--light_brown, #8a7057);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.facility .f-top-content .text-box .title-box .facility-ttl {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--brown);
}
.facility .f-top-content .text-box .title-box .tag-box {
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3125rem;
}
.facility .f-top-content .text-box .title-box .tag-box span {
  display: inline-block;
  padding: 0.125rem 2.5rem;
  border-radius: 100vmax;
}
.facility .f-top-content .text-box .title-box .tag-box span.tag01 {
  background-color: var(--green);
}
.facility .f-top-content .text-box .title-box .tag-box span.tag02 {
  background-color: var(--orange);
}
.facility .f-top-content .text-box .title-box .tag-box span.tag03 {
  background-color: var(--brown);
}
.facility .f-top-content .text-box .inner-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
  color: var(--brown);
}
.facility .f-top-content .text-box .inner-box .subttl {
  font-size: 1.5rem;
  font-weight: 700;
  align-self: stretch;
}
.facility .f-top-content .text-box .inner-box .txt {
  font-size: 1.125rem;
}
.facility .f-top-content .image-box-sub {
  position: absolute;
  top: 18.5rem;
  left: 50rem;
  width: 25rem;
}
@media screen and (max-width: 1023px) {
  .facility .f-top-content {
    padding: 2.5rem 0 1.25rem;
  }
  .facility .f-top-content .image-box-main {
    width: min(100%, 46.875rem);
    margin: 0 auto 1.25rem auto;
  }
  .facility .f-top-content .text-box {
    width: min(100%, 46.875rem);
    margin: 0 auto 1.25rem;
    padding: 0 1.25rem;
    gap: 1.25rem;
  }
  .facility .f-top-content .text-box .title-box {
    padding-bottom: 1.25rem;
    flex-direction: column;
    gap: 0.625rem;
  }
  .facility .f-top-content .text-box .title-box .facility-ttl {
    font-size: 1.5rem;
    font-weight: 700;
  }
  .facility .f-top-content .text-box .title-box .tag-box {
    justify-content: center;
  }
  .facility .f-top-content .text-box .inner-box {
    gap: 0.3125rem;
  }
  .facility .f-top-content .text-box .inner-box .subttl {
    font-size: 1.25rem;
  }
  .facility .f-top-content .text-box .inner-box .txt {
    font-size: 1rem;
  }
  .facility .f-top-content .image-box-sub {
    position: static;
    width: 17.5rem;
    margin: 1.75rem auto 0;
  }
}
.facility .content {
  padding: 3.125rem 5rem;
}
@media screen and (max-width: 1023px) {
  .facility .content {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .facility .content {
    padding: 1.25rem;
  }
}
.facility {
  /* 01 施設概要 */
}
.facility .facility-table-wrapper {
  width: min(100%, 62.5rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  align-self: stretch;
  border-radius: 0.625rem;
}
.facility .facility-table-wrapper .row-group {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.facility .facility-table-wrapper .row-group .th {
  width: 14.375rem;
  padding: 1.25rem 1rem 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-self: stretch;
  background: var(--white);
  border: 1px solid var(--border, #efebe7);
  flex-shrink: 0;
}
.facility .facility-table-wrapper .row-group .td {
  padding: 0.625rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  justify-self: stretch;
  background: var(--white);
  border: 1px solid var(--border, #efebe7);
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .facility .facility-table-wrapper .row-group:not(:first-child) {
    margin-top: -1px;
  }
  .facility .facility-table-wrapper .row-group .th {
    border-right: none;
  }
  .facility .facility-table-wrapper .row-group:first-child .th {
    border-top-left-radius: 0.625rem;
  }
  .facility .facility-table-wrapper .row-group:first-child .td {
    border-top-right-radius: 0.625rem;
  }
  .facility .facility-table-wrapper .row-group:last-child .th {
    border-bottom-left-radius: 0.625rem;
  }
  .facility .facility-table-wrapper .row-group:last-child .td {
    border-bottom-right-radius: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .facility .facility-table-wrapper .row-group {
    flex-direction: column;
  }
  .facility .facility-table-wrapper .row-group .th {
    width: 100%;
    padding: 0.625rem;
    border-bottom: none;
  }
  .facility .facility-table-wrapper .row-group .td {
    padding: 0.625rem 1.25rem;
  }
  .facility .facility-table-wrapper .row-group:first-child .th {
    border-radius: 0.625rem 0.625rem 0 0;
  }
  .facility .facility-table-wrapper .row-group:last-child .td {
    border-radius: 0 0 0.625rem 0.625rem;
  }
}
.facility .facility-table-wrapper .ttl {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.facility .facility-table-wrapper .ttl .icon {
  width: 3.125rem;
  height: 3.125rem;
}
.facility .facility-table-wrapper .ttl .icon img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .facility .facility-table-wrapper .ttl {
    font-size: 1rem;
  }
  .facility .facility-table-wrapper .ttl .icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.facility .facility-table-wrapper .inner-col2 {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.facility {
  /* 02 暮らしの様子 */
  /* --- スマホ（初期値）：縦1列 --- */
}
.facility .daily-life-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .facility .daily-life-content {
    gap: 1.25rem;
  }
}
.facility .daily-life-content .row {
  display: grid;
  grid-template-columns: 1fr; /* 常に1列 */
  gap: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .facility .daily-life-content .row {
    gap: 1.25rem;
  }
}
.facility .daily-life-content {
  /* --- PC（1024px以上）：列数を変更 --- */
}
@media (min-width: 1024px) {
  .facility .daily-life-content .cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .facility .daily-life-content .cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .facility .daily-life-content .cols-1 {
    grid-template-columns: 1fr;
  }
}
.facility .daily-life-content .box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 0.625rem;
  border: 1px solid var(--border, #efebe7);
  background: var(--white, #fff);
}
.facility .daily-life-content .box .image-box {
  width: 100%;
  aspect-ratio: 58/31;
  clip-path: inset(0 0 round 0.625rem 0.625rem 0 0);
}
.facility .daily-life-content .box .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.facility .daily-life-content .box .inbox {
  padding: 1.25rem 2.375rem 1.25rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-grow: 1;
}
.facility .daily-life-content .box .inbox .icon {
  width: 5rem;
  height: 5rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.facility .daily-life-content .box .inbox .icon.w60 {
  width: 3.75rem;
  height: 3.75rem;
}
.facility .daily-life-content .box .inbox .text-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
  gap: 0.625rem;
}
.facility .daily-life-content .box .inbox .text-box .ttl {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown);
}
@media screen and (max-width: 1023px) {
  .facility .daily-life-content .box {
    width: min(100%, 36.25rem);
    margin: 0 auto;
  }
  .facility .daily-life-content .box .inbox {
    padding: 0.625rem;
    gap: 0.625rem;
  }
  .facility .daily-life-content .box .inbox .icon {
    width: 3.75rem;
  }
  .facility .daily-life-content .box .inbox .text-box .ttl {
    font-size: 1.25rem;
  }
}

/*=================================================
		採用情報
==================================================*/
.recruit #sec-info .image-box {
  width: min(100%, 62.5rem);
  margin: 0 auto;
}
.recruit p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.recruit .btmTxt {
  font-size: 1.125rem;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .recruit .btmTxt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit .read-txt .txt {
    font-size: 1rem;
  }
}
.recruit {
  /* 01 福利厚生・働く環境 */
}
.recruit .layout-01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.recruit .layout-01 .box {
  padding: 1.875rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.625rem;
  border: 1px solid var(--border, #efebe7);
  background: var(--white, #fff);
}
.recruit .layout-01 .box .icon {
  width: 5rem;
  height: 5rem;
  aspect-ratio: 1/1;
}
.recruit .layout-01 .box .text-box {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.recruit .layout-01 .box .ttl {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: center;
  align-self: stretch;
  padding-bottom: 0.625rem;
  border-bottom: 1px dashed var(--border, #efebe7);
}
@media screen and (max-width: 767px) {
  .recruit .layout-01 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.recruit {
  /* 02 募集要項 */
}
.recruit .table-01 {
  align-self: stretch;
}
.recruit .table-01 .recruitment-table-wrapper {
  width: min(100%, 62.5rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  align-self: stretch;
  border-radius: 0.625rem;
}
.recruit .table-01 .recruitment-table-wrapper .row-group {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.recruit .table-01 .recruitment-table-wrapper .row-group .th {
  width: 14.375rem;
  padding: 1.25rem 1rem 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  align-self: stretch;
  justify-self: stretch;
  background: var(--white);
  border: 1px solid var(--border, #efebe7);
  flex-shrink: 0;
}
.recruit .table-01 .recruitment-table-wrapper .row-group .td {
  padding: 0.625rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  justify-self: stretch;
  background: var(--white);
  border: 1px solid var(--border, #efebe7);
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .recruit .table-01 .recruitment-table-wrapper .row-group:not(:first-child) {
    margin-top: -1px;
  }
  .recruit .table-01 .recruitment-table-wrapper .row-group .th {
    border-right: none;
  }
  .recruit .table-01 .recruitment-table-wrapper .row-group:first-child .th {
    border-radius: 0.625rem 0 0 0;
  }
  .recruit .table-01 .recruitment-table-wrapper .row-group:first-child .td {
    border-radius: 0 0.625rem 0 0;
  }
  .recruit .table-01 .recruitment-table-wrapper .row-group:last-child .th {
    border-radius: 0 0 0 0.625rem;
  }
  .recruit .table-01 .recruitment-table-wrapper .row-group:last-child .td {
    border-radius: 0 0 0.625rem 0;
  }
}
@media screen and (max-width: 767px) {
  .recruit .table-01 .recruitment-table-wrapper .row-group {
    flex-direction: column;
  }
  .recruit .table-01 .recruitment-table-wrapper .row-group .th {
    width: 100%;
    padding: 0.625rem;
    border-bottom: none;
  }
  .recruit .table-01 .recruitment-table-wrapper .row-group .td {
    padding: 0.625rem 1.25rem;
  }
  .recruit .table-01 .recruitment-table-wrapper .row-group:first-child .th {
    border-radius: 0.625rem 0.625rem 0 0;
  }
  .recruit .table-01 .recruitment-table-wrapper .row-group:last-child .td {
    border-radius: 0 0 0.625rem 0.625rem;
  }
}
.recruit .table-01 .ttl {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.recruit .table-01 .ttl .icon {
  width: 3.125rem;
  height: 3.125rem;
}
.recruit .table-01 .ttl .icon img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recruit .table-01 .ttl {
    font-size: 1rem;
  }
  .recruit .table-01 .ttl .icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.recruit {
  /* 03 エントリー */
}
.recruit .layout-02 {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .recruit .layout-02 {
    flex-direction: column;
    align-items: center;
  }
}
.recruit .layout-02 .box {
  flex: 1;
  position: relative;
  padding: 0.625rem 2.5rem 1.25rem 2.5rem;
  border-radius: 0.625rem;
  background: var(--white, #fff);
  display: flex;
}
.recruit .layout-02 .box::before {
  content: "";
  width: 100%;
  height: 3.75rem;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  border-radius: 0.625rem 0.625rem 0 0;
}
.recruit .layout-02 .box.box01 {
  --inbox-Clr: var(--darker_green);
  --inbox-bgClr: #f0f3ea;
  border: 1px solid #9bc9bb;
}
.recruit .layout-02 .box.box01::before {
  background: var(--dark_green, #26bbb4);
}
.recruit .layout-02 .box.box02 {
  --inbox-Clr: #e76543;
  --inbox-bgClr: #fff6f1;
  border: 1px solid #f8af9b;
}
.recruit .layout-02 .box.box02::before {
  background: #ea9780;
}
.recruit .layout-02 .box .inbox {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
}
.recruit .layout-02 .box .inbox .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  padding-bottom: 0.625rem;
  border-bottom: 1px dashed var(--inbox-Clr);
}
.recruit .layout-02 .box .inbox .title-box .icon-box {
  width: 6.25rem;
  height: 6.25rem;
  aspect-ratio: 1/1;
}
.recruit .layout-02 .box .inbox .title-box .ttl {
  align-self: stretch;
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--inbox-Clr);
}
.recruit .layout-02 .box .inbox .inner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
  align-self: stretch;
  flex-grow: 1;
}
.recruit .layout-02 .box .inbox .inner-box .tel-box {
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recruit .layout-02 .box .inbox .inner-box .tel {
  font-family: var(--font-poppins);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  color: var(--darker_green);
}
.recruit .layout-02 .box .inbox .inner-box .tel .icon {
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruit .layout-02 .box .inbox .inner-box .tel .icon svg {
  width: 2.25rem;
  height: 2.25rem;
}
.recruit .layout-02 .box .inbox .inner-box .btn-link.entry {
  font-size: 1.25rem;
  width: min(100%, 29.375rem);
  height: 3.75rem;
  background: #e76543;
  border-color: #e76543;
}
.recruit .layout-02 .box .inbox .inner-box .btn-link.entry:hover {
  color: #e76543;
  background: var(--white);
}
.recruit .layout-02 .box .inbox .inner-box .btn-link.entry:hover .icon {
  border: 1px solid #e76543;
}
.recruit .layout-02 .box .inbox .info-box {
  min-height: 6.25rem;
  background: var(--inbox-bgClr);
  border-radius: 0.625rem;
  align-self: stretch;
  padding: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
.recruit .layout-02 .box .inbox .info-box .icon {
  width: 3.125rem;
  height: 3.125rem;
  flex-shrink: 0;
}
.recruit .layout-02 .box .inbox .info-box p {
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .recruit .layout-02 .box {
    flex: unset;
    width: min(100%, 36.875rem);
    padding: 0.625rem 1.25rem;
  }
  .recruit .layout-02 .box::before {
    height: 3.125rem;
  }
  .recruit .layout-02 .box .inbox {
    gap: 0.625rem;
  }
  .recruit .layout-02 .box .inbox .title-box .icon-box {
    width: 5rem;
    height: 5rem;
  }
  .recruit .layout-02 .box .inbox .title-box .ttl {
    font-size: 1.5rem;
  }
  .recruit .layout-02 .box .inbox .inner-box {
    gap: 0.625rem;
  }
  .recruit .layout-02 .box .inbox .inner-box p {
    font-size: 1rem;
  }
  .recruit .layout-02 .box .inbox .inner-box .tel-box {
    padding: 0;
  }
  .recruit .layout-02 .box .inbox .inner-box .tel {
    font-size: 1.75rem;
  }
  .recruit .layout-02 .box .inbox .inner-box .tel .icon {
    width: 1.875rem;
    height: 1.875rem;
  }
  .recruit .layout-02 .box .inbox .inner-box .tel .icon svg {
    width: 1.375rem;
    height: 1.375rem;
  }
  .recruit .layout-02 .box .inbox .inner-box .btn-link.entry {
    font-size: 1.125rem;
    width: min(100%, 16.875rem);
    height: 3.75rem;
    padding: 0 2em;
  }
  .recruit .layout-02 .box .inbox .info-box {
    min-height: 6.25rem;
    background: var(--inbox-bgClr);
    border-radius: 0.625rem;
    align-self: stretch;
    padding: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
  }
  .recruit .layout-02 .box .inbox .info-box .icon {
    width: 3.125rem;
    height: rem850;
  }
  .recruit .layout-02 .box .inbox .info-box p {
    font-weight: 500;
  }
}
.recruit .layout-03 {
  align-self: stretch;
  padding: 1.25rem;
  display: flex;
  align-items: first baseline;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 0.625rem;
  border: 1px solid #26bbb4;
  background: var(--white, #fff);
}
.recruit .layout-03 .icon {
  width: 3.125rem;
  height: 3.125rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .recruit .layout-03 .icon {
    width: 2.1875rem;
    height: 2.1875rem;
  }
}
.recruit .layout-03 .txt {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .recruit .layout-03 .txt {
    font-size: 1rem;
  }
}

/*=================================================
		news お知らせ
==================================================*/
.news .news-list {
  width: min(100%, 50rem);
}
.news .news-list ul {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--brown);
}
.news .news-list ul li {
  border-bottom: 1px solid var(--border, #efebe7);
}
.news .news-list ul li a {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0.5rem 0;
  transition: 0.3s ease;
}
.news .news-list ul li a .post-date {
  width: 5.25rem;
  flex-shrink: 0;
}
.news .news-list ul li a .post-ttl {
  flex-grow: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.news .news-list ul li a .arrow {
  width: 0.75rem;
  height: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.news .news-list ul li a .arrow svg {
  width: 0.25rem;
  height: 0.4375rem;
}
.news .news-list ul li a:hover .post-ttl {
  color: var(--dark_green);
}
@media screen and (max-width: 767px) {
  .news .news-list ul {
    font-size: 0.875rem;
  }
  .news .news-list ul li a {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 1.25rem;
    padding: 0.5rem 1.5rem 0.5rem 0;
  }
  .news .news-list ul li a .post-date {
    width: 4.875rem;
    flex-shrink: 0;
  }
  .news .news-list ul li a .post-ttl {
    width: 100%;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
  .news .news-list ul li a .arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateX(-50%);
  }
  .news .news-list ul li a:hover .post-ttl {
    color: var(--dark_green);
  }
}
.news .post-single {
  width: min(100%, 56.25rem);
  margin: 0 auto;
}
.news .post-single .post-header {
  margin-bottom: 3.125rem;
}
.news .post-single .post-header .post-meta {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1em;
}
.news .post-single .post-header .post-meta .post-date {
  margin-right: 1em;
}
.news .post-single .post-header .post-title h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--dark_blue);
}
.news .post-single .post-main-box p a {
  color: var(--dark_green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news .post-single .post-main-box p:not(:last-child) {
  margin-bottom: 1.5em;
}
.news .post-single .btn-box {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}

/* ページネーション */
.pagenation ul {
  display: flex;
  justify-content: center;
  margin: 2.5rem auto 0;
  list-style: none;
}
.pagenation ul li a {
  font-size: 1rem;
  font-weight: normal;
  color: #444444;
  min-width: 2.5em;
  height: 2.5em;
  text-align: center;
  letter-spacing: normal;
  line-height: 2.5;
  display: block;
  margin: 0 0.5em;
}
.pagenation ul li a.active {
  font-weight: 500;
  background: var(--beige);
}
.pagenation ul li a.to-list {
  width: auto;
  padding: 0 2em;
}
.pagenation ul li a:hover {
  background: var(--light-green);
}
@media screen and (max-width: 767px) {
  .pagenation ul {
    display: flex;
    justify-content: center;
    margin: 2.5rem auto 0;
  }
  .pagenation ul li a {
    margin: 0 0.3125em;
  }
}

/*=================================================
		contact お問い合わせ
==================================================*/
.contact .content {
  padding: 5rem;
}
@media screen and (max-width: 1023px) {
  .contact .content {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .contact .content {
    padding: 2.5rem 1.25rem;
  }
}
.contact .content .content-inner {
  width: min(100%, 75rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.contact .content .layout-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-self: stretch;
}

/* WPForms　調整用*/
.wpforms-container,
.wpforms-container.wpforms-container-full,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full {
  width: 100%;
}
.wpforms-container .progressbar,
.wpforms-container .wpforms-field .progressbar,
.wpforms-container.wpforms-container-full .progressbar,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar {
  position: relative;
  z-index: 0;
  width: 100%;
}
.wpforms-container .progressbar ul,
.wpforms-container .wpforms-field .progressbar ul,
.wpforms-container.wpforms-container-full .progressbar ul,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul {
  font-size: 1.125rem;
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  margin: 1.875rem auto;
  padding: 0;
  list-style: none !important;
}
.wpforms-container .progressbar ul li,
.wpforms-container .wpforms-field .progressbar ul li,
.wpforms-container.wpforms-container-full .progressbar ul li,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li {
  position: relative;
  flex: 1;
  list-style: none !important;
  padding: 1em;
  text-align: center;
  padding-right: 1.5625rem;
}
.wpforms-container .progressbar ul li::before,
.wpforms-container .wpforms-field .progressbar ul li::before,
.wpforms-container.wpforms-container-full .progressbar ul li::before,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li::before,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li::before,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, calc(100% - 1.5625rem) 0, 100% 50%, calc(100% - 1.5625rem) 100%, 0 100%);
  background: var(--white);
}
.wpforms-container .progressbar ul li::after,
.wpforms-container .wpforms-field .progressbar ul li::after,
.wpforms-container.wpforms-container-full .progressbar ul li::after,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li::after,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li::after,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -2;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  clip-path: polygon(0 0, calc(100% - 1.5625rem) 0, 100% 50%, calc(100% - 1.5625rem) 100%, 0 100%);
  background: var(--black);
}
.wpforms-container .progressbar ul li:last-child::before,
.wpforms-container .wpforms-field .progressbar ul li:last-child::before,
.wpforms-container.wpforms-container-full .progressbar ul li:last-child::before,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li:last-child::before,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li:last-child::before,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li:last-child::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.wpforms-container .progressbar ul li:last-child::after,
.wpforms-container .wpforms-field .progressbar ul li:last-child::after,
.wpforms-container.wpforms-container-full .progressbar ul li:last-child::after,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li:last-child::after,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li:last-child::after,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li:last-child::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.wpforms-container .progressbar ul li.active,
.wpforms-container .wpforms-field .progressbar ul li.active,
.wpforms-container.wpforms-container-full .progressbar ul li.active,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li.active,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li.active,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li.active {
  color: var(--white);
}
.wpforms-container .progressbar ul li.active::before,
.wpforms-container .wpforms-field .progressbar ul li.active::before,
.wpforms-container.wpforms-container-full .progressbar ul li.active::before,
.wpforms-container.wpforms-container-full .wpforms-field .progressbar ul li.active::before,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .progressbar ul li.active::before,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-field .progressbar ul li.active::before {
  background: var(--black);
}
.wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit,
.wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-next,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-submit-container .wpforms-submit,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-next,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-submit-container .wpforms-submit,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-next {
  position: relative;
  letter-spacing: 0.05em;
  min-width: 16.25rem;
  height: auto;
  font-size: 1.25rem;
  line-height: 1;
  display: block;
  border: 1px solid var(--dark_green);
  background-color: var(--dark_green);
  text-align: center;
  color: var(--white);
  border-radius: 100vmax;
  padding: 1rem 1.875rem;
  margin: 1.875rem auto;
  cursor: pointer;
}
.wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit:hover,
.wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-next:hover,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-submit-container .wpforms-submit:hover,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-next:hover,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-submit-container .wpforms-submit:hover,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-next:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit,
  .wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-next,
  .wpforms-container.wpforms-container-full .wpforms-form .wpforms-submit-container .wpforms-submit,
  .wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-next,
  .wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-submit-container .wpforms-submit,
  .wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-next {
    font-size: 1rem;
  }
}
.wpforms-container .wpforms-form .wpforms-field-pagebreak,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak {
  margin: 3.125rem auto;
}
.wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev {
  position: relative;
  letter-spacing: 0.05em;
  min-width: 7.5rem;
  height: auto;
  font-size: 1.25rem;
  line-height: 1;
  display: inline-block;
  border: 1px solid var(--dark_green);
  background-color: #fff;
  text-align: center;
  color: var(--black);
  border-radius: 100vmax;
  padding: 1rem 1.875rem 1rem 3.75rem;
  margin: 0 0.3125rem;
  cursor: pointer;
}
.wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev::after,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev::after,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev::after {
  content: "";
  position: absolute;
  left: 1.5625rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  width: 1.5em;
  height: 1.5em;
  background: url("../images/common/icon_arrow.svg");
  background-size: 100% 100%;
  transition: 0.3s ease all;
}
.wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:active, .wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:focus,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:active,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:focus,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:active,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:focus {
  background: transparent;
  background-color: #fff;
}
.wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:hover,
.wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:hover,
.wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .wpforms-container .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev,
  .wpforms-container.wpforms-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev,
  .wpforms-container.wpforms-container-full .wpforms-confirmation-container-full .wpforms-form .wpforms-field-pagebreak .wpforms-page-prev {
    font-size: 1rem;
  }
}

/* 完了画面 */
div.wpforms-container-full .wpforms-confirmation-container-full,
div[submit-success] > .wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.thanks-message {
  margin: 2.5rem auto;
}
.thanks-message .btn-box {
  width: 100%;
  margin: 2.5rem auto;
  text-align: center;
}
.thanks-message .btn-box .btn-nomal {
  position: relative !important;
  display: inline-flex !important;
  background: var(--dark_green) !important;
  width: 18.75rem !important;
  padding: 1rem 1.875rem !important;
  justify-content: center !important;
  align-items: center !important;
  color: var(--white) !important;
  border: 1px solid var(--dark_green);
  border-radius: 100vmax !important;
  font-size: 1.125rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}
.thanks-message .btn-box .btn-nomal:hover {
  color: var(--dark_green) !important;
  background: var(--white) !important;
}

/*-------------------------------------------------
  アニメーション
-------------------------------------------------*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* iOSのスクロールカクつき・パララックスのチラつきをおさえる */
.parallax,
.parallax-up,
.parallax-right,
.parallax-left,
.parallax-pc,
.blur,
.fadeIn,
.fadeInUp,
.fadeInDown,
.fadeInRight,
.fadeInLeft,
.zoomInDown,
.zoomIn {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform, opacity;
}