@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, summary {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* common */
*, *::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.pc {
  display: initial !important;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: initial !important;
  }
}
:root {
  --primary: #8CA154;
  --accent: #E0AC00;
  --accent-pale: #EDCE69;
  --text: #585A56;
  --text-pale: #898989;
  --disabled: #B5B5B5;
  --footer: #96CDE2;
  --footer-dark: #74B3CC;
  --bg-dark: #ececec;
  --bg: #F7F7F7;
  --bg-base: #F8F6EA;
  --line: #56B268;
  --white: #fff;
  --black: #000;
  --secondary: #96cde2;
  --secondary-dark: #74B3CC;
}

:root {
  --fs-page-title: clamp(2.25rem, 1.2065217391rem + 2.6086956522vw, 3rem);
  --fs-section-heading: clamp(1.5rem, 0.8043478261rem + 1.7391304348vw, 2rem);
  --fs-subsection-heading: clamp(1.25rem, 0.5543478261rem + 1.7391304348vw, 1.75rem);
  --fs-card-heading: clamp(1.125rem, 0.777173913rem + 0.8695652174vw, 1.375rem);
  --fs-inline-heading: clamp(1rem, 0.8260869565rem + 0.4347826087vw, 1.125rem);
  --fs-lead: clamp(1rem, 0.652173913rem + 0.8695652174vw, 1.25rem);
  --fs-body: clamp(0.875rem, 0.7010869565rem + 0.4347826087vw, 1rem);
  --fs-note: clamp(0.75rem, 0.5760869565rem + 0.4347826087vw, 0.875rem);
  --fs-small: clamp(0.625rem, 0.4510869565rem + 0.4347826087vw, 0.75rem);
}

.page-title {
  font-size: clamp(1.75rem, 0.7065217391rem + 2.6086956522vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
}

.post-title {
  font-size: clamp(1.75rem, 0.7065217391rem + 2.6086956522vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--text);
}

.section-heading {
  font-size: clamp(1.5rem, 0.9782608696rem + 1.3043478261vw, 1.875rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
}

.parts-heading {
  font-size: clamp(1.25rem, 0.7282608696rem + 1.3043478261vw, 1.625rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
}

.post-heading {
  font-size: clamp(1.25rem, 0.7282608696rem + 1.3043478261vw, 1.625rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--primary);
}

.card-heading {
  font-size: clamp(1.125rem, 0.9510869565rem + 0.4347826087vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
}

.lead {
  font-size: clamp(1.125rem, 0.9510869565rem + 0.4347826087vw, 1.25rem);
  line-height: 1.8;
}

.text-l {
  font-size: clamp(1rem, 0.8260869565rem + 0.4347826087vw, 1.125rem);
  line-height: 1.8;
}

.text {
  font-size: clamp(0.875rem, 0.7010869565rem + 0.4347826087vw, 1rem);
  line-height: 1.85;
}

.note {
  font-size: clamp(0.75rem, 0.5760869565rem + 0.4347826087vw, 0.875rem);
  line-height: 1.6;
}

.text-s {
  font-size: clamp(0.625rem, 0.4510869565rem + 0.4347826087vw, 0.75rem);
  line-height: 1.3;
}

.c-primary {
  color: var(--primary);
}

.c-accent {
  color: var(--accent);
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.kome {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}
.kome::before {
  content: "※";
}

.header {
  --h-height: 60px;
  width: 100%;
  height: 130px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: var(--white);
}
@media (max-width: 767px) {
  .header {
    height: var(--h-height);
  }
}
.header .header-copy {
  padding: 10px 3%;
  line-height: 1;
  font-size: 0.625rem;
  font-weight: 400;
  color: var(--text-pale);
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .header .header-copy {
    display: none;
  }
}
.header .site-logo {
  width: 200px;
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .header .site-logo {
    width: 90px;
    top: 13px;
  }
}
.header .site-logo a {
  color: var(--text);
}
.header .contactlist {
  display: none;
}
@media (max-width: 767px) {
  .header .contactlist {
    display: block;
  }
  .header .contactlist > li {
    border-bottom: 1px solid #DDEAED;
    padding: 15px;
    text-align: center;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
  }
  .header .contactlist > li strong {
    font-size: 0.935rem;
    font-weight: 700;
  }
  .header .contactlist > li span {
    display: block;
    font-size: 1.125rem;
    font-weight: 400;
  }
  .header .contactlist > li span a {
    color: var(--white);
    text-decoration: underline;
  }
}
.header .more {
  display: none;
}
@media (max-width: 767px) {
  .header .more {
    display: block;
    margin-top: 20px;
    text-align: center;
    background: var(--white);
  }
  .header .more > a {
    height: 54px;
    display: grid;
    place-items: center;
    position: relative;
    color: var(--secondary-dark);
  }
  .header .more > a::before {
    content: "";
    width: 20px;
    aspect-ratio: 1;
    background: url(../images/icon-header-contact.webp) no-repeat center/contain;
    position: absolute;
    left: 15px;
    top: calc(50% - 10px);
  }
}

@media (max-width: 767px) {
  .gnav {
    position: absolute;
    top: var(--h-height);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--h-height));
    background: var(--secondary-dark);
    padding: 0 5%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease-out;
  }
  .gnav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.gnav > ul {
  width: min(1000px, 90%);
  margin-top: 30px;
  margin-inline: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .gnav > ul {
    margin: 0;
    width: 100%;
  }
}
.gnav > ul > li {
  display: inline-block;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .gnav > ul > li {
    display: block;
  }
}
.gnav > ul > li > a {
  color: var(--text);
  font-weight: 400;
}
@media (max-width: 767px) {
  .gnav > ul > li > a {
    display: block;
    border-bottom: 1px solid #ddeaed;
    padding: 15px;
    text-align: center;
    font-size: 0.935rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.6;
  }
}
.gnav > ul > li > a span {
  display: block;
  padding-top: 10px;
  font-size: 9px;
  color: var(--secondary);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media (max-width: 767px) {
  .gnav > ul > li > a span {
    display: none;
  }
}
.gnav > ul > li:nth-of-type(2) {
  margin: 0 160px 0 40px;
}
@media (max-width: 767px) {
  .gnav > ul > li:nth-of-type(2) {
    margin: 0;
  }
}
.gnav > ul > li:nth-of-type(3) {
  margin: 0 40px 0 160px;
}
@media (max-width: 767px) {
  .gnav > ul > li:nth-of-type(3) {
    margin: 0;
  }
}

.toggle {
  display: none;
}
@media (max-width: 767px) {
  .toggle {
    position: absolute;
    top: 39%;
    right: 19px;
    transform: translateY(-50%);
    width: 30px;
    aspect-ratio: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  .toggle span {
    width: 100%;
    height: 1px;
    background: var(--secondary-dark);
    border-radius: 1px;
    position: relative;
    transition: all 0.3s ease-out;
  }
  .toggle span::before, .toggle span::after {
    content: "";
    width: 100%;
    height: 1px;
    border-radius: 1px;
    background: var(--secondary-dark);
    position: absolute;
    transition: all 0.3s ease-out;
  }
  .toggle span::before {
    top: -8px;
    left: 0;
  }
  .toggle span::after {
    top: 8px;
    left: 0;
  }
  .toggle.is-active span {
    height: 0;
  }
  .toggle.is-active span::before, .toggle.is-active span::after {
    top: initial;
  }
  .toggle.is-active span::before {
    transform: rotate(45deg);
  }
  .toggle.is-active span::after {
    transform: rotate(-45deg);
  }
  .toggle::after {
    content: "MENU";
    position: absolute;
    bottom: -1.1em;
    font-size: 7px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: var(--secondary-dark);
  }
}

.consultation {
  background: var(--bg-base);
}

.consultation__inner {
  padding: 110px 0 100px 0;
  width: min(580px, 94%);
  margin: auto;
}
@media (max-width: 767px) {
  .consultation__inner {
    padding: 69px 0 53px;
  }
}
.consultation__inner .consultation__title {
  text-align: center;
  font-weight: bold;
  color: #8CA154;
  font-size: clamp(1.25rem, 0.3804347826rem + 2.1739130435vw, 1.875rem);
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 43px;
}

.consultation__btn {
  display: block;
  padding: 24px 0;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.14);
  background-color: var(--accent);
  color: var(--white);
}
.consultation__btn:hover {
  opacity: 0.7;
}

.f-contact {
  background: var(--footer);
  padding: 80px 0;
}
@media (max-width: 767px) {
  .f-contact {
    padding: 40px 0;
  }
}
.f-contact h6 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: clamp(0.9375rem, 0.1548913043rem + 1.9565217391vw, 1.5rem);
  color: var(--white);
  text-align: center;
}
.f-contact h6 span {
  font-size: clamp(0.625rem, 0.3641304348rem + 0.652173913vw, 0.8125rem);
}
.f-contact .contactlist {
  width: min(1200px, 90%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .f-contact .contactlist {
    grid-template-columns: 1fr;
  }
}
.f-contact .contactlist > li {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: clamp(0.8125rem, 0.6385869565rem + 0.4347826087vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .f-contact .contactlist > li {
    padding: 15px 0;
  }
}
.f-contact .contactlist > li:not(:first-of-type) {
  border-left: 1px solid #DDEAED;
}
@media (max-width: 767px) {
  .f-contact .contactlist > li:not(:first-of-type) {
    border-left: none;
    border-top: 1px solid #DDEAED;
  }
}
.f-contact .contactlist > li strong {
  font-size: clamp(0.75rem, 0.5760869565rem + 0.4347826087vw, 0.875rem);
  font-weight: 700;
}
.f-contact .contactlist > li span {
  font-size: clamp(1rem, 0.8260869565rem + 0.4347826087vw, 1.125rem);
  font-weight: 700;
}
.f-contact .contactlist > li span a {
  color: var(--white);
}
.f-contact .f-more {
  display: block;
  width: 260px;
  margin-inline: auto;
  text-align: center;
  background: var(--white);
}
@media (max-width: 767px) {
  .f-contact .f-more {
    width: 90%;
  }
}
.f-contact .f-more > a {
  height: 46px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--secondary-dark);
}
.f-contact .f-more > a::before {
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background: url(../images/icon-header-contact.webp) no-repeat center/contain;
  position: absolute;
  left: 15px;
  top: calc(50% - 10px);
}

.footer .footLinks.pcFlex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 0 30px;
  width: min(1200px, 90%);
  margin-inline: auto;
  gap: 1rem;
}
.footer .footLinks.pcFlex > li {
  width: 360px;
}
.footer .footLinks.pcFlex > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-flow: column;
  border-radius: 100px;
  color: var(--text);
  font-weight: 400;
  background: #fff;
  border: 1px #74B3CC solid;
  height: 73px;
  font-size: 16px;
  text-align: center;
  line-height: 1.3;
}
.footer .footLinks.pcFlex > li > a:hover {
  opacity: 0.7;
}
.footer .footLinks.pcFlex > li > a::after {
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #74B3CC;
  width: 22px;
  height: 22px;
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 19px;
  margin: auto;
}
.footer .footLinks.pcFlex > li > a span {
  display: block;
  font-size: 13px;
}
.footer .sipsRelate {
  margin: 0 auto 50px;
  width: min(700px, 90%);
}
.footer .sipsRelate a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 15px 10px;
  border: 1px solid #74B3CC;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}
@media (max-width: 767px) {
  .footer .sipsRelate a {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
.footer .sipsRelate a:hover {
  opacity: 0.7;
}
.footer .sipsRelate a img {
  height: 30px;
  margin: 0 5px;
}
.footer .copyright {
  width: 100%;
  display: block;
  background: #74B3CC;
  padding: clamp(10px, 1.8181818182vw, 20px) 3%;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1.8;
}
.footer .copyright a {
  color: var(--white);
}

.list-normal > li {
  position: relative;
  padding-left: 1em;
}
.list-normal > li::before {
  content: "";
  width: 1em;
  height: 1lh;
  background: radial-gradient(var(--text) 0.2em, transparent 0.2em) no-repeat center/1em 1em;
  position: absolute;
  inset: 0;
}

.list-counter {
  counter-reset: list-counter;
}
.list-counter > li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 1em;
}
.list-counter > li::before {
  content: counter(list-counter) ". ";
  position: absolute;
  inset: 0;
}

.link-text {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.btn-pdf1,
.btn-pdf2 {
  text-align: center;
  line-height: 1.4;
  padding: 0.5em 1.25em;
  border-radius: 100px;
  background: var(--accent);
  color: var(--white);
  letter-spacing: 0;
  font-size: clamp(1rem, 0.8260869565rem + 0.4347826087vw, 1.125rem);
  border: 1px solid var(--accent);
}
.btn-pdf1 span,
.btn-pdf2 span {
  font-size: clamp(0.75rem, 0.5760869565rem + 0.4347826087vw, 0.875rem);
  display: block;
}

.btn-pdf2 {
  background: var(--white);
  color: var(--accent);
}

.btn-submit {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  padding: 0.5em 1em;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  letter-spacing: 0.25em;
}
.btn-submit span {
  padding-left: 2em;
  position: relative;
}
.btn-submit span::before {
  content: "";
  width: 1.5em;
  aspect-ratio: 1;
  -webkit-mask: url(../images/search.svg) no-repeat center/contain;
          mask: url(../images/search.svg) no-repeat center/contain;
  background: var(--white);
  position: absolute;
  top: calc(50% - 0.75em);
  left: 0.25em;
}

.btn-reset {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  color: var(--white);
  padding: 0.5em 1em;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  background: var(--disabled);
  text-align: center;
}

.btn-back {
  width: 220px;
  display: block;
  color: var(--white);
  padding: 0.5em 1em;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 99px;
  transition: all 0.3s ease-out;
  background: var(--disabled);
  text-align: center;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.sec {
  container-type: inline-size;
  padding: clamp(48px, 7.2727272727vw, 80px) 0;
}
.sec .container {
  width: min(1100px, 88%);
  margin-inline: auto;
}

.bg-base {
  background: var(--bg-base);
}

.bg {
  background: var(--bg);
}

.fullwide {
  width: 100cqi;
  margin-inline: calc(50% - 50cqi);
}

.w960 {
  width: min(960px, 100%);
  margin-inline: auto;
}

.w800 {
  width: min(800px, 100%);
  margin-inline: auto;
}

.w640 {
  width: min(640px, 100%);
  margin-inline: auto;
}

.grid {
  display: grid;
}
.grid.grid21 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .grid.grid21 {
    grid-template-columns: 1fr;
  }
}
.grid.grid31 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .grid.grid31 {
    grid-template-columns: 1fr;
  }
}
.grid.grid41 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .grid.grid41 {
    grid-template-columns: 1fr;
  }
}
.grid.grid42 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .grid.grid42 {
    grid-template-columns: 1fr 1fr;
  }
}
.grid.grid12fr {
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 767px) {
  .grid.grid12fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid13fr {
  grid-template-columns: 1fr 3fr;
}
@media (max-width: 767px) {
  .grid.grid13fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid21fr {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 767px) {
  .grid.grid21fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid31fr {
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 767px) {
  .grid.grid31fr {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}

.jc-center {
  justify-content: center;
}

.jc-right {
  justify-content: flex-end;
}

.al-center {
  align-items: center;
}

.al-start {
  align-items: flex-start;
}

.flex1 {
  flex: 1;
}

.gap48 {
  gap: clamp(16px, 4.3636363636vw, 48px);
}

.gap32 {
  gap: clamp(16px, 2.9090909091vw, 32px);
}

.gap24 {
  gap: clamp(16px, 2.1818181818vw, 24px);
}

.gap16 {
  gap: clamp(8px, 1.4545454545vw, 16px);
}

.gap8 {
  gap: 8px;
}

.mt96 {
  margin-top: clamp(64px, 8.7272727273vw, 96px);
}

.mt80 {
  margin-top: clamp(56px, 7.2727272727vw, 80px);
}

.mt64 {
  margin-top: clamp(40px, 5.8181818182vw, 64px);
}

.mt48 {
  margin-top: clamp(36px, 4.3636363636vw, 48px);
}

.mt40 {
  margin-top: clamp(32px, 3.6363636364vw, 40px);
}

.mt32 {
  margin-top: clamp(24px, 2.9090909091vw, 32px);
}

.mt24 {
  margin-top: clamp(16px, 2.1818181818vw, 24px);
}

.mt16 {
  margin-top: clamp(12px, 1.4545454545vw, 16px);
}

.mt8 {
  margin-top: 8px;
}

.mt4 {
  margin-top: 4px;
}

.tab-primary {
  display: flex;
  justify-content: flex-start;
  gap: clamp(4px, 1.4545454545vw, 16px);
  border-bottom: 1px solid var(--accent);
}
.tab-primary > li {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 104px;
  display: grid;
  place-items: center;
  background: var(--disabled);
  padding: 0.5em;
  border-radius: 8px 8px 0 0;
  text-align: center;
  color: var(--white);
  cursor: pointer;
}
.tab-primary > li.is-active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.tab-content > li {
  padding: 1em;
  display: none;
}
.tab-content > li.is-active {
  display: block;
}

.js-accordion {
  cursor: pointer;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-out;
}
.accordion-content.open {
  grid-template-rows: 1fr;
}
.accordion-content > div {
  overflow: hidden;
}

.facility-card {
  border-radius: 16px;
  background: var(--white);
  transition: all 0.3s ease-out;
}
.facility-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.facility-card:hover figure img {
  transform: scale(1.05);
}
.facility-card a {
  color: var(--text);
}
.facility-card figure {
  width: 100%;
  aspect-ratio: 576/384;
  overflow: hidden;
  position: relative;
  border-radius: 16px 16px 0 0;
}
.facility-card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-out;
}
.facility-card .text-box {
  padding: clamp(16px, 3.6363636364vw, 40px) clamp(16px, 2.9090909091vw, 32px);
}
.facility-card .text-box .description {
  padding: 0.5em 1em;
  background: var(--bg-base);
  font-size: clamp(0.875rem, 0.527173913rem + 0.8695652174vw, 1.125rem);
  font-weight: 700;
  line-height: 1.7;
  color: var(--accent);
  border-radius: 8px;
}
.facility-card .text-box .detail-table {
  width: 100%;
}
.facility-card .text-box .detail-table tr {
  border-bottom: 1px dotted var(--primary);
}
.facility-card .text-box .detail-table tr th, .facility-card .text-box .detail-table tr td {
  padding: 1em 0;
  text-align: left;
  line-height: 1.5;
}
.facility-card .text-box .detail-table tr th {
  width: 5em;
}
.facility-card .text-box .link-text-arrow {
  margin-top: 16px;
  text-align: right;
}
.facility-card .text-box .link-text-arrow span {
  position: relative;
  font-size: 0.875rem;
  font-weight: 700;
  padding-right: 1.5em;
}
.facility-card .text-box .link-text-arrow span::after {
  content: "";
  width: 1em;
  aspect-ratio: 1;
  -webkit-mask: url(../images/arrow-next.svg) no-repeat center/contain;
          mask: url(../images/arrow-next.svg) no-repeat center/contain;
  background: var(--text);
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
}

.availability {
  position: absolute;
  top: clamp(8px, 1.4545454545vw, 16px);
  left: clamp(8px, 1.4545454545vw, 16px);
  z-index: 1;
}
.availability .available,
.availability .unavailable {
  display: block;
  width: 80px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 0.75rem;
  line-height: 1;
  color: var(--accent);
  border: 1px solid var(--accent);
  background: var(--white);
}
.availability .unavailable {
  color: var(--white);
  background: var(--accent);
}

.meta-info-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.meta-info-wrap span {
  background: var(--white);
  font-size: clamp(0.75rem, 0.5760869565rem + 0.4347826087vw, 0.875rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-pale);
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 4px;
  border: 1px solid var(--text-pale);
  border-radius: 4px;
}

.aioseo-breadcrumbs a, .aioseo-breadcrumbs span {
  font-size: clamp(0.625rem, 0.4510869565rem + 0.4347826087vw, 0.75rem);
  color: var(--text);
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(60px, 11.8181818182vw, 130px);
}
html.lock {
  overflow: hidden;
}

body {
  font-feature-settings: "palt";
  font-size: clamp(0.875rem, 0.7010869565rem + 0.4347826087vw, 1rem);
  letter-spacing: 0.05em;
  line-height: 1.15;
  font-optical-sizing: auto;
  color: var(--text);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  padding-top: 130px;
}
@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
  body:has(.main-lower) {
    padding-bottom: 68px;
  }
}

.chara-title {
  position: relative;
  padding-right: clamp(100px, 16.3636363636vw, 180px);
}
@media (max-width: 767px) {
  .chara-title {
    padding-right: 0;
  }
}
.chara-title::after {
  content: "";
  width: clamp(80px, 14.5454545455vw, 160px);
  aspect-ratio: 4/5;
  background: url(../images/illust-lemon-chan1.webp) no-repeat center/contain;
  position: absolute;
  bottom: 0%;
  right: 0;
}
@media (max-width: 767px) {
  .chara-title::after {
    bottom: 102%;
  }
}

.search-area {
  background: var(--bg);
  border-radius: 16px;
  position: relative;
}
.search-area::before {
  content: "";
  width: clamp(90px, 14.5454545455vw, 160px);
  aspect-ratio: 1;
  background: url(../images/illust-lemon-chan2.webp) no-repeat center/contain;
  position: absolute;
  right: -2vw;
  bottom: -2vw;
}
.search-area form {
  padding: clamp(32px, 4.3636363636vw, 48px) 32px;
}

.search-heading {
  background: var(--white);
  padding: 0.25em 1em;
  border-left: 4px solid var(--primary);
  font-size: 1rem;
}

.area-search {
  display: grid;
  grid-template-columns: 3.5em 1fr;
  padding-top: 1rem;
}
.area-search .text-l {
  line-height: 1.5;
}

.i-flex {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.check-btn {
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: var(--white);
  padding: 0.25em 1em;
  color: var(--disabled);
  font-size: 1rem;
  border: 1px solid var(--disabled);
  border-radius: 8px;
  cursor: pointer;
}
.check-btn input[type=checkbox] {
  display: none;
}
.check-btn:has(input[type=checkbox]:checked) {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.hero {
  width: min(1100px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  box-shadow: -1000px 0 var(--bg-base), 1000px 0 var(--bg-base);
}
@media (max-width: 767px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }
}
.hero .container {
  width: min(1100px, 88%);
  margin-inline: auto;
}
.hero .hero-img {
  position: relative;
}
.hero .hero-img img {
  width: 100%;
}

.sns-wrap {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.sns-wrap a {
  display: block;
  width: clamp(24px, 2.9090909091vw, 32px);
  aspect-ratio: 1;
}
.sns-wrap a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-list-wrap {
  margin-top: 16px;
  padding: clamp(16px, 2.9090909091vw, 32px);
  background: var(--white);
  border-radius: 8px;
}

.news-list > li {
  border-bottom: 1px dotted var(--primary);
}
.news-list > li a {
  color: var(--text);
  padding: 8px 0;
  display: block;
}

.available-box {
  border: 1px solid var(--text-pale);
  padding: clamp(16px, 2.9090909091vw, 32px);
  background: var(--white);
  border-radius: 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}

.facility-info-wrap dt {
  background: var(--bg-base);
  padding: 0.5em;
}
.facility-info-wrap dd {
  padding: 0.5em;
}

.map {
  width: 100%;
  aspect-ratio: 16/9;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pdf-list-accordion {
  display: flex;
  flex-direction: column-reverse;
}
.pdf-list-accordion .question {
  height: 28px;
  position: relative;
}
.pdf-list-accordion .question::before {
  content: "過去のPDFはこちら +";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.pdf-list-accordion .question.active::before {
  content: "閉じる -";
}
.pdf-list-accordion .accordion-content > div {
  min-height: 1.5lh;
  height: 100%;
  padding-bottom: 1em;
}
.pdf-list-accordion .question {
  background: var(--bg-dark);
  color: var(--text-pale);
  font-size: clamp(0.75rem, 0.5760869565rem + 0.4347826087vw, 0.875rem);
  line-height: 1;
  padding: 0.5em;
  text-align: center;
  border-radius: 8px;
}

.pdf-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4545454545vw, 16px);
}
.pdf-list.row {
  flex-direction: row;
}
.pdf-list.row > li {
  flex: 1;
}
.pdf-list > li > a {
  font-size: clamp(0.875rem, 0.7010869565rem + 0.4347826087vw, 1rem);
  color: var(--text);
  padding-left: 1.5em;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.pdf-list > li > a::before {
  content: "";
  width: 1.25em;
  aspect-ratio: 1;
  -webkit-mask: url(../images/arrow-next.svg) no-repeat center/contain;
          mask: url(../images/arrow-next.svg) no-repeat center/contain;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: calc(50% - 0.625em);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.1818181818vw, 24px);
}
.faq-list .faq-content {
  display: flex;
  flex-direction: column;
}
.faq-list .faq-content dt {
  padding: 1em 0.5em;
  padding-left: 2.25em;
  border-radius: 8px;
  background: var(--white);
  position: relative;
  font-size: clamp(0.875rem, 0.7010869565rem + 0.4347826087vw, 1rem);
  line-height: 1.4;
}
.faq-list .faq-content dt::before {
  content: "Q";
  font-size: 1.5em;
  color: var(--primary);
  position: absolute;
  left: 0.5em;
  top: 0.25em;
}
.faq-list .faq-content dt::after {
  content: "＋";
  transition: all 0.3s ease-out;
  position: absolute;
  right: 0.5em;
}
.faq-list .faq-content dt.active::after {
  transform: rotate(45deg);
}
.faq-list .faq-content dd > div {
  padding-left: 1em;
}
.faq-list .faq-content dd p {
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.7010869565rem + 0.4347826087vw, 1rem);
  position: relative;
  padding-left: 1.5em;
}
.faq-list .faq-content dd p::before {
  content: "A";
  font-size: 1.5em;
  color: var(--accent);
  position: absolute;
  left: 0;
  top: -0.25em;
}
.faq-list .faq-content dd.open {
  margin-top: 1em;
}

.chara-feature,
.chara-reserve,
.chara-gallery {
  position: relative;
}
.chara-feature::before,
.chara-reserve::before,
.chara-gallery::before {
  content: "";
  width: 200px;
  aspect-ratio: 1;
  background: url(../images/illust-lemon-chan4.webp) no-repeat center/contain;
  position: absolute;
  right: -16px;
  top: -120px;
}
@media (max-width: 767px) {
  .chara-feature::before,
.chara-reserve::before,
.chara-gallery::before {
    width: 120px;
    top: -72px;
  }
}

.chara-reserve::before {
  background-image: url(../images/illust-lemon-chan5.webp);
}

.chara-gallery::before {
  background-image: url(../images/illust-lemon-chan6.webp);
}

.main-lower .sec .container {
  width: min(800px, 88%);
  margin-inline: auto;
}

.gallery-slide .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-content {
  padding-bottom: clamp(32px, 4.3636363636vw, 48px);
  border-bottom: 1px solid var(--text-pale);
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  font-weight: 700;
  margin: 2em 0 1em;
  line-height: 1.4;
}
.post-content p {
  margin: 1em 0;
  line-height: 1.8;
}
.post-content a {
  color: var(--primary);
  text-decoration: underline;
}

.facility-cta-wrap {
  position: fixed;
  right: 0;
  bottom: 40px;
  width: 110px;
  display: flex;
  flex-direction: column;
  z-index: 90;
}
.facility-cta-wrap a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1em 0.5em;
  font-size: 0.875rem;
  color: var(--white);
}
.facility-cta-wrap a > span {
  padding-top: 1.7em;
  position: relative;
}
.facility-cta-wrap a > span::before {
  content: "";
  width: 1.5em;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.facility-cta-wrap a.cta-tel {
  background: var(--footer-dark);
}
.facility-cta-wrap a.cta-tel span::before {
  background: url(../images/icon-phone.svg) no-repeat center/contain;
}
.facility-cta-wrap a.cta-reserve {
  background: var(--accent);
}
.facility-cta-wrap a.cta-reserve span::before {
  background: url(../images/icon-mail.svg) no-repeat center/contain;
}
.facility-cta-wrap a.cta-line {
  background: var(--line);
}
.facility-cta-wrap a.cta-line span::before {
  background: url(../images/icon-line.svg) no-repeat center/contain;
}
@media (max-width: 767px) {
  .facility-cta-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    bottom: 0;
    border-top: 1px solid var(--white);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  }
  .facility-cta-wrap a {
    writing-mode: initial;
  }
}

.breadcrumb {
  display: inline-flex;
  gap: 0.25em;
  margin-bottom: clamp(24px, 4.3636363636vw, 48px);
}
.breadcrumb span, .breadcrumb a {
  font-size: clamp(0.625rem, 0.4510869565rem + 0.4347826087vw, 0.75rem);
  line-height: 1;
}
.breadcrumb a {
  color: var(--primary);
}

.post-meta {
  display: flex;
  gap: 0.5rem;
}

.post-category {
  font-size: clamp(0.625rem, 0.4510869565rem + 0.4347826087vw, 0.75rem);
  background: var(--accent);
  color: var(--white);
  padding: 2px 8px 4px;
  border-radius: 99px;
}
/*# sourceMappingURL=style.css.map */