@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.plan-diagnosis-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.plan-diagnosis-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .plan-diagnosis-modal {
    padding: 1.2rem;
  }
}

.plan-diagnosis-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.plan-diagnosis-modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 64rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  background: #263a6c;
  border-radius: 2rem;
  padding: 2.4rem;
}
@media (max-width: 767px) {
  .plan-diagnosis-modal__inner {
    max-width: 100%;
    max-height: calc(100vh - 2.4rem);
    padding: 1.2rem;
    border-radius: 1.2rem;
  }
}

.plan-diagnosis-modal__close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #263a6c;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 767px) {
  .plan-diagnosis-modal__close {
    top: 1rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
    font-size: 2.4rem;
  }
}

.plan-diagnosis {
  background: #ececec;
  border-radius: 2rem;
  padding: 7rem 5.2rem 5rem;
}
@media (max-width: 767px) {
  .plan-diagnosis {
    padding: 4rem 2rem 3rem;
    border-radius: 1.6rem;
  }
}

.plan-diagnosis__question-head {
  text-align: center;
}

.plan-diagnosis__q-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: #263a6c;
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}
.plan-diagnosis__q-badge::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  bottom: 0.3rem;
  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1.8rem solid #263a6c;
  transform: rotate(35deg);
}
@media (max-width: 767px) {
  .plan-diagnosis__q-badge::after {
    right: -0.6rem;
    bottom: -0.2rem;
  }
}
@media (max-width: 767px) {
  .plan-diagnosis__q-badge {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}

.plan-diagnosis__question {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.45;
  color: #263a6c;
}
.plan-diagnosis__question em {
  font-style: normal;
  color: #c2a400;
}
@media (max-width: 767px) {
  .plan-diagnosis__question {
    font-size: 2rem;
  }
}

.plan-diagnosis__choices {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
@media (max-width: 767px) {
  .plan-diagnosis__choices {
    margin-top: 2rem;
  }
}

.plan-diagnosis__choice {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  min-height: 10rem;
  padding: 2.4rem 3rem;
  border: 0.2rem solid #8f8f8f;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.15);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.plan-diagnosis__choice.is-selected {
  background: #8d97b0;
  border-color: #8d97b0;
  color: #fff;
}
@media (max-width: 767px) {
  .plan-diagnosis__choice {
    min-height: 6.6rem;
    padding: 1.8rem 2rem;
    border-radius: 1.4rem;
  }
}

.plan-diagnosis__choice-icon {
  position: relative;
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  border: 0.2rem solid #8f8f8f;
  border-radius: 50%;
  background: #fff;
}
.plan-diagnosis__choice.is-selected .plan-diagnosis__choice-icon {
  background: #263a6c;
  border-color: #263a6c;
}
.plan-diagnosis__choice.is-selected .plan-diagnosis__choice-icon::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.7rem;
  width: 1.6rem;
  height: 0.9rem;
  border-left: 0.4rem solid #fff;
  border-bottom: 0.4rem solid #fff;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .plan-diagnosis__choice.is-selected .plan-diagnosis__choice-icon::after {
    left: 0.15rem;
    top: 0.3rem;
    width: 1.3rem;
    height: 0.7rem;
    border-left: 0.3rem solid #fff;
    border-bottom: 0.3rem solid #fff;
  }
}
@media (max-width: 767px) {
  .plan-diagnosis__choice-icon {
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
  }
}

.plan-diagnosis__choice-text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.45;
  color: #333;
}
.plan-diagnosis__choice-text small {
  display: block;
  font-size: 0.8em;
  font-weight: 700;
  color: #333;
}
@media (max-width: 767px) {
  .plan-diagnosis__choice-text {
    font-size: 1.4rem;
  }
}

.plan-diagnosis__actions {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .plan-diagnosis__actions {
    margin-top: 2rem;
  }
}

.plan-diagnosis__btn {
  flex: 1 1 0;
  height: 6rem;
  border: 0;
  border-radius: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 767px) {
  .plan-diagnosis__btn {
    height: 4rem;
    border-radius: 1.2rem;
    font-size: 1.6rem;
  }
}

.plan-diagnosis__btn--back {
  background: #d3d3d3;
  color: #666;
}
.plan-diagnosis__btn--back:disabled {
  opacity: 0.5;
  cursor: default;
}

.plan-diagnosis__btn--next {
  background: #263a6c;
  color: #fff;
}
.plan-diagnosis__btn--next:disabled {
  opacity: 0.5;
  cursor: default;
}

.plan-diagnosis__result-head {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  color: #263a6c;
  text-align: center;
}
@media (max-width: 767px) {
  .plan-diagnosis__result-head {
    font-size: 3.4rem;
  }
}

.plan-diagnosis__result-lead {
  position: relative;
  max-width: 40rem;
  margin: 4rem auto 3rem;
  padding: 1.6rem 2rem;
  border-radius: 999px;
  background: #263a6c;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.plan-diagnosis__result-lead span {
  color: #fff100;
  font-size: 1em;
}
.plan-diagnosis__result-lead::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  border-top: 1.2rem solid #263a6c;
}
@media (max-width: 767px) {
  .plan-diagnosis__result-lead {
    margin: 2.8rem auto 2rem;
    font-size: 1.8rem;
  }
}

.plan-diagnosis__result {
  --pd-accent: #e6815d;
  --pd-note: #d94c43;
}

.plan-diagnosis__result-card {
  --pd-accent: #e6815d;
  --pd-note: #d94c43;
}

.plan-diagnosis__result-body {
  padding: 0;
}

.plan-diagnosis__result-img img {
  display: block;
  width: 100%;
  height: auto;
}

.plan-diagnosis__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin-top: 0;
  padding: 2rem;
  border: 0;
  background: var(--pd-accent);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.plan-diagnosis__detail span {
  font-size: 1em;
}
.plan-diagnosis__detail:hover {
  opacity: 0.9;
}
@media (max-width: 767px) {
  .plan-diagnosis__detail {
    font-size: 2rem;
  }
}

.plan-diagnosis__detail-plus {
  font-size: 1.2em;
  line-height: 1;
}

.plan-diagnosis__notes-wrap {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.plan-diagnosis__notes {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.plan-diagnosis__notes li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
}
.plan-diagnosis__notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--pd-note);
}
@media (max-width: 767px) {
  .plan-diagnosis__notes li {
    padding-left: 2.2rem;
    font-size: 1.6rem;
  }
}

.plan-diagnosis__result-actions {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 767px) {
  .plan-diagnosis__result-actions {
    margin-top: 2rem;
  }
}

.plan-diagnosis__contact,
.plan-diagnosis__retry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 6rem;
  border-radius: 1.2rem;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .plan-diagnosis__contact,
  .plan-diagnosis__retry {
    min-height: 5rem;
    font-size: 1.6rem;
  }
}

.plan-diagnosis__contact {
  position: relative;
  border: 0;
  background: #263a6c;
  color: #fff;
}
.plan-diagnosis__contact::after {
  content: "▶";
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
}

.plan-diagnosis__retry {
  border: 0.2rem solid #7d8aa5;
  background: #fff;
  color: #263a6c;
}

body.is-plan-diagnosis-open {
  overflow: hidden;
}

/* リセットCSS
===================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, 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 {
  border: 0;
  font: inherit;
  font-size: 0.7142857143vw;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, 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 {
    font-size: 2.5445292621vw;
  }
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

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

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* 基本設定
===================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-weight: 400;
  color: #434343;
}

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

.note-show {
  display: none;
}
@media (max-width: 1440px) {
  .note-show {
    display: block;
  }
}

.note-hide {
  display: block;
}
@media (max-width: 1440px) {
  .note-hide {
    display: none;
  }
}

.tab-show {
  display: none;
}
@media (max-width: 1024px) {
  .tab-show {
    display: block;
  }
}

.tab-hide {
  display: block;
}
@media (max-width: 1024px) {
  .tab-hide {
    display: none;
  }
}

.sp-show {
  display: none;
}
@media (max-width: 767px) {
  .sp-show {
    display: block;
  }
}

.sp-hide {
  display: block;
}
@media (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}

img.sp-hide, span.sp-hide {
  display: inline;
}
@media (max-width: 767px) {
  img.sp-hide, span.sp-hide {
    display: none;
  }
}

img:not([src$=".svg"]) {
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding-left: 6rem;
}
@media (max-width: 767px) {
  header {
    padding-left: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: 2rem;
  }
}
header .head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .head-inner .logo {
  transition: all 0.3s;
}
header .head-inner .logo:hover {
  opacity: 0.7;
}
header .head-inner .logo img {
  width: 12.8rem;
}
@media (max-width: 767px) {
  header .head-inner .logo img {
    width: 9rem;
  }
}
header .head-inner .hamburger {
  width: 48px;
  height: 48px;
  background-color: #B0B600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 0.6rem;
  position: relative;
  z-index: 101;
}
header .head-inner .hamburger span {
  height: 1px;
  width: 24px;
  background-color: white;
  display: block;
  transition: all 0.3s;
}
header .head-inner .hamburger .sp1 {
  margin-bottom: 8px;
}
header .head-inner .hamburger .sp3 {
  margin-top: 8px;
}
header .head-inner .hamburger.active .sp1 {
  transform: rotate(45deg);
  margin-bottom: -10px;
}
header .head-inner .hamburger.active .sp2 {
  opacity: 0;
}
header .head-inner .hamburger.active .sp3 {
  transform: rotate(-45deg);
}
header .head-inner .head-right {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  header .head-inner .head-right {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s;
    flex-direction: column;
    padding-top: 10rem;
  }
  header .head-inner .head-right.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
header .head-inner .head-right ul {
  display: flex;
  gap: 0.4rem;
  border-radius: 99px;
  background-color: #f9f9f9;
  margin-right: 1.6rem;
  margin-top: 1.8rem;
}
@media (max-width: 767px) {
  header .head-inner .head-right ul {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    background-color: transparent;
    margin-bottom: 5rem;
  }
}
header .head-inner .head-right ul li a {
  display: block;
  padding: 0.8rem 2.4rem;
  border-radius: 99px;
  transition: all 0.3s;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1em;
  color: #434343;
}
header .head-inner .head-right ul li a:hover {
  background-color: #B0B600;
  color: white;
}
header .head-inner .head-right .head-btn {
  background: linear-gradient(83deg, #B0B600 1.53%, #699E1A 100%);
  padding-top: 4.9rem;
  padding-bottom: 3.5rem;
  padding-left: 2.8rem;
  padding-right: 2.8rem;
  display: flex;
  border-bottom-left-radius: 1.2rem;
}
@media (max-width: 767px) {
  header .head-inner .head-right .head-btn {
    padding: 2rem 3rem;
    border-radius: 0;
  }
}
header .head-inner .head-right .head-btn a {
  font-size: 1.6rem;
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
header .head-inner .head-right .head-btn a:hover {
  opacity: 0.7;
}
header .head-inner .head-right .head-btn .btn1 img {
  width: 1.2rem;
}
header .head-inner .head-right .head-btn .btn2 {
  border-left: 2px dotted #6c8400;
  padding-left: 2rem;
  margin-left: 2rem;
}
header .head-inner .head-right .head-btn .btn2 img {
  width: 1.5rem;
}

.side-cta {
  position: fixed;
  right: 0;
  top: calc(50vh - 8rem);
  width: 8rem;
  z-index: 99;
  background-color: #B0B600;
  border-radius: 12px 0 0 12px;
}
@media (max-width: 767px) {
  .side-cta {
    width: 64px;
    top: 21.2rem;
    position: static;
    width: unset;
    border-radius: 0;
    background-color: transparent;
  }
}
.side-cta .wrap {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .side-cta .wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.side-cta .wrap .a1 {
  border-bottom: 2px dotted #6c8400;
}
.side-cta .wrap .a1 img {
  width: 1.82rem;
}
@media (max-width: 767px) {
  .side-cta .wrap .a1 {
    border: 1px solid #6c8400;
    margin-right: 5px;
  }
}
.side-cta .wrap a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.6rem;
  color: white;
  font-weight: 700;
  height: 8rem;
  text-align: center;
  justify-content: center;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .side-cta .wrap a {
    font-size: 10px;
    border: 1px solid #6c8400;
    height: 48px;
    color: #6c8400;
    flex-direction: row;
    padding-left: 10px;
    padding-right: 10px;
    gap: 3px;
    margin-right: 5px;
    border-radius: 7px;
    min-width: 77px;
    background-color: #fff;
  }
}
.side-cta .wrap a:hover {
  opacity: 0.7;
}
.side-cta .wrap a img {
  margin-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .side-cta .wrap a img {
    margin-bottom: 0rem;
  }
}
.side-cta .wrap .a1 {
  padding-top: 0.3rem;
}
@media (max-width: 767px) {
  .side-cta .wrap .a1 {
    padding-top: 0;
  }
}
.side-cta .wrap .a2 img {
  width: 2.1rem;
  margin-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .side-cta .wrap .a2 img {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .side-cta .wrap {
    display: flex;
  }
}

@media (max-width: 767px) {
  .wrap2 {
    display: flex;
  }
}

.bottom-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s;
}
.bottom-banner img {
  width: 26.5rem;
}
.bottom-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .bottom-banner img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .fv {
    margin-top: 9.6rem;
  }
}

.bn {
  padding-top: 10rem;
  padding-bottom: 10rem;
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .bn {
    padding-top: 4rem;
    padding-bottom: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.bn a {
  transition: all 0.3s;
}
.bn a:hover {
  opacity: 0.7;
}

.sec-head {
  padding-left: 6rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .sec-head {
    padding-left: 2rem;
    margin-bottom: 3.6rem;
    padding-right: 2rem;
  }
}
.sec-head .sec-en {
  color: #B0B600;
  font-weight: 500;
  font-size: 1.4rem;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .sec-head .sec-en {
    padding-bottom: 1.6rem;
    font-size: 1.2rem;
    border-bottom: 2px dotted #B0B600;
  }
}
.sec-head .wrap {
  display: flex;
  align-items: flex-end;
}
.sec-head .wrap h2 {
  padding-top: 1rem;
  border-top: 3px dotted #B0B600;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.32em;
}
@media (max-width: 767px) {
  .sec-head .wrap h2 {
    padding-top: 1.2rem;
    font-size: 2.4rem;
    border: none;
  }
}
.sec-head .wrap img {
  height: 4rem;
  width: auto;
  margin-left: 2rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .sec-head .wrap img {
    height: 2.5rem;
    width: auto;
    margin-left: 1.2rem;
  }
}

.venue {
  padding-top: 2rem;
}
.venue a {
  transition: all 0.3s;
}
.venue a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .venue {
    padding-top: 6rem;
    background: linear-gradient(180deg, #F9F9F9 90%, rgba(249, 249, 249, 0) 100%);
  }
}
.venue .inner-inner {
  padding-left: 11.4rem;
  padding-right: 11.2rem;
  background: linear-gradient(180deg, #F9F9F9 90%, rgba(249, 249, 249, 0) 100%);
  padding-top: 5.7rem;
  padding-bottom: 11.2rem;
}
@media (max-width: 767px) {
  .venue .inner-inner {
    padding-top: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 6rem;
  }
}
.venue .swiper-controller {
  display: flex;
  gap: 4rem;
  justify-content: flex-end;
  align-items: center;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .venue .swiper-controller {
    gap: 2rem;
    margin-top: 0;
  }
}
.venue .swiper-controller .swiper-pagination, .venue .swiper-controller .swiper-pagination2 {
  position: static;
  width: auto;
  display: flex;
  justify-content: center;
  border-radius: 100px;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 767px) {
  .venue .swiper-controller .swiper-pagination, .venue .swiper-controller .swiper-pagination2 {
    box-shadow: 0 0 12px 0 rgba(67, 67, 67, 0.4);
  }
}
.venue .swiper-controller .swiper-pagination .swiper-pagination-bullet, .venue .swiper-controller .swiper-pagination2 .swiper-pagination-bullet {
  margin: 0 !important;
  width: 6rem;
  height: 0.4rem;
  border-radius: 100px;
  background-color: transparent;
}
.venue .swiper-controller .swiper-pagination .swiper-pagination-bullet-active, .venue .swiper-controller .swiper-pagination2 .swiper-pagination-bullet-active {
  background-color: #B0B600;
}
@media (max-width: 767px) {
  .venue .swiper-controller .swiper-pagination .swiper-pagination-bullet, .venue .swiper-controller .swiper-pagination2 .swiper-pagination-bullet {
    height: 0.2rem;
  }
}
.venue .swiper-controller .swiper-btn-next img, .venue .swiper-controller .swiper-btn-prev img, .venue .swiper-controller .swiper-btn-next2 img, .venue .swiper-controller .swiper-btn-prev2 img {
  width: 6.6rem;
}
@media (max-width: 767px) {
  .venue .swiper-controller .swiper-btn-next img, .venue .swiper-controller .swiper-btn-prev img, .venue .swiper-controller .swiper-btn-next2 img, .venue .swiper-controller .swiper-btn-prev2 img {
    width: 4rem;
  }
}
.venue .swiper-controller .swiper-btn-prev, .venue .swiper-controller .swiper-btn-prev2 {
  transition: all 0.3s;
  cursor: pointer;
}
.venue .swiper-controller .swiper-btn-prev:hover, .venue .swiper-controller .swiper-btn-prev2:hover {
  opacity: 0.7;
}
.venue .swiper-controller .swiper-btn-prev.swiper-button-disabled, .venue .swiper-controller .swiper-btn-prev2.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.venue .swiper-controller .swiper-btn-next, .venue .swiper-controller .swiper-btn-next2 {
  transition: all 0.3s;
  cursor: pointer;
}
.venue .swiper-controller .swiper-btn-next:hover, .venue .swiper-controller .swiper-btn-next2:hover {
  opacity: 0.7;
}
.venue .swiper-controller .swiper-btn-next.swiper-button-disabled, .venue .swiper-controller .swiper-btn-next2.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.venue .swiper-wrapper .swiper-slide:nth-child(2n) {
  padding-top: 4rem;
}
@media (max-width: 767px) {
  .venue .swiper-wrapper .swiper-slide:nth-child(2n) {
    padding-top: 0;
  }
}
.venue .swiper-wrapper .venue-body {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .venue .swiper-wrapper .venue-body {
    min-height: 13rem;
    padding-bottom: 1rem;
  }
}
.venue .swiper-wrapper .venue-body h3 {
  font-size: 2.4rem;
  color: #B0B600;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .venue .swiper-wrapper .venue-body h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
}
.venue .swiper-wrapper .venue-body p {
  padding-left: 2.4rem;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.4em;
  letter-spacing: 0.04em;
  color: #434343;
}
@media (max-width: 767px) {
  .venue .swiper-wrapper .venue-body p {
    padding-left: 2rem;
    font-size: 1.2rem;
  }
}
.venue .swiper-wrapper .venue-body p::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(../../img/v-location.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0.3rem;
}
@media (max-width: 767px) {
  .venue .swiper-wrapper .venue-body p::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.venue .swiper-wrapper .venue-body .venue-add {
  margin-bottom: 0.8rem;
}
.venue .swiper-wrapper .venue-body .venue-tel::before {
  background-image: url(../../img/v-tel.svg);
}

.why {
  border-radius: 0 40px 0 0;
  background: #F0F6E9;
  padding-top: 12rem;
  padding-bottom: 16rem;
  position: relative;
}
.why a {
  transition: all 0.3s;
}
.why a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .why {
    border-radius: 0;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .why .sec-head .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .why .sec-head .wrap img {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 0.8rem;
  }
}
.why::after {
  content: "";
  width: 100%;
  height: 16rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .why::after {
    height: 6rem;
  }
}
.why ul {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .why ul {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.why ul li {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  align-items: center;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 2px dotted #B0B600;
}
.why ul li:first-child {
  padding-top: 0;
}
@media (max-width: 767px) {
  .why ul li {
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 2rem;
  }
  .why ul li:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.why ul li .why-img-wrap img {
  width: 56.8rem;
}
@media (max-width: 767px) {
  .why ul li .why-img-wrap img {
    width: 100%;
  }
}
.why ul li .why-txt {
  width: calc(100% - 50.8rem);
}
@media (max-width: 767px) {
  .why ul li .why-txt {
    width: 100%;
  }
  .why ul li .why-txt .wrap {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.why ul li .why-txt .why-num {
  margin-bottom: 3.2rem;
}
.why ul li .why-txt .why-num img {
  height: 3.6rem;
  width: auto;
}
@media (max-width: 767px) {
  .why ul li .why-txt .why-num {
    margin-bottom: 0;
  }
  .why ul li .why-txt .why-num img {
    height: 2rem;
    margin-right: 0.8rem;
  }
}
.why ul li .why-txt h3 {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 4rem;
  color: #B0B600;
}
@media (max-width: 767px) {
  .why ul li .why-txt h3 {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
}
.why ul li .why-txt .why-desc {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .why ul li .why-txt .why-desc {
    font-size: 1.4rem;
    line-height: 1.6em;
    font-weight: 400;
  }
}

.sec-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 11.2rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .sec-link {
    padding-right: 2rem;
    margin-top: 2rem;
  }
}
.sec-link a {
  font-size: 20px;
  color: #B0B600;
  font-weight: 700;
  letter-spacing: 0.04em;
  gap: 4rem;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .sec-link a {
    gap: 1.2rem;
    font-size: 1.4rem;
  }
}
.sec-link a img {
  width: 6.6rem;
}
@media (max-width: 767px) {
  .sec-link a img {
    width: 4rem;
  }
}

.scene {
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .scene {
    padding-bottom: 4rem;
  }
}
.scene .swiper .swiper-wrapper {
  align-items: flex-end;
}
.scene .swiper .scene-item:nth-child(odd) {
  padding-top: 14rem;
}
.scene .swiper .scene-item:nth-child(even) {
  padding-bottom: 6rem;
}
.scene .swiper .scene-item img {
  border-radius: 12px 0 12px 0;
}
.scene .swiper-controller {
  display: flex;
  gap: 4rem;
  justify-content: flex-end;
  align-items: center;
  margin-top: 4rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .scene .swiper-controller {
    gap: 2rem;
    margin-top: 0;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.scene .swiper-pagination3 {
  position: static;
  display: flex;
  border-radius: 100px;
  overflow: hidden;
  background-color: #fff;
  margin-top: 4rem;
  width: auto !important;
  box-shadow: 0 0 16px 0 rgba(67, 67, 67, 0.16);
}
@media (max-width: 767px) {
  .scene .swiper-pagination3 {
    justify-content: flex-end;
  }
}
.scene .swiper-pagination3 .swiper-pagination-bullet {
  margin: 0 !important;
  width: 6rem;
  height: 0.4rem;
  border-radius: 100px;
  background-color: transparent;
}
.scene .swiper-pagination3 .swiper-pagination-bullet-active {
  background-color: #B0B600;
}
@media (max-width: 767px) {
  .scene .swiper-pagination3 .swiper-pagination-bullet {
    height: 0.2rem;
  }
}

.plan {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url(../../img/plan-bg.webp);
  background-size: cover;
}
.plan a {
  transition: all 0.3s;
}
.plan a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .plan {
    background-image: url(../../img/plan-bg-sp.webp);
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .plan .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .plan .wrap img {
    margin-left: 0;
    margin-top: 0.8rem;
  }
}
.plan .plan-list {
  display: flex;
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 767px) {
  .plan .plan-list {
    flex-direction: column;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.voice {
  padding-top: 12rem;
  padding-bottom: 12rem;
  background: #FFFCE9;
}
.voice a {
  transition: all 0.3s;
}
.voice a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .voice {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .voice .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .voice .wrap img {
    margin-left: 0;
    margin-top: 0.8rem;
  }
}
.voice .voice-list {
  display: flex;
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  justify-content: space-between;
  gap: 4rem;
}
@media (max-width: 767px) {
  .voice .voice-list .voice-img {
    width: 26rem;
    display: block;
    margin: auto;
  }
}
.voice .voice-list .voice-item {
  width: calc(33.3333% - 2.666667rem);
}
@media (max-width: 767px) {
  .voice .voice-list .voice-item {
    width: 100%;
  }
}
.voice .voice-list .voice-img {
  border-radius: 4rem 4rem 0 4rem;
  aspect-ratio: 346/271;
  object-fit: cover;
}
.voice .voice-list .voice-body {
  padding-top: 2rem;
}
.voice .voice-list .voice-body .voice-date {
  font-family: "Roboto", sans-serif;
  color: #969696;
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.voice .voice-list .voice-body h3 {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
  color: #434343;
}
.voice .voice-list .voice-body .event-meta {
  display: flex;
  margin-top: 2rem;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.voice .voice-list .voice-body .event-meta span {
  display: flex;
  padding: 0.8rem 1.1rem;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 3px;
}
.voice .voice-list .voice-body .event-meta .cat {
  color: white;
  background-color: #B0B600;
}
.voice .voice-list .voice-body .event-meta .facility {
  color: #969696;
  border: 1px solid #969696;
}
.voice .voice-list .voice-body .voice-txt {
  line-height: 1.6em;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  color: #434343;
}
@media (max-width: 767px) {
  .voice .voice-list .voice-body .voice-txt {
    margin-bottom: 1.2rem;
  }
}
.voice .voice-list .voice-body img {
  display: block;
  margin-left: auto;
  width: 6.6rem;
}
@media (max-width: 767px) {
  .voice .voice-list .voice-body img {
    width: 4rem;
  }
}
@media (max-width: 767px) {
  .voice .voice-list {
    flex-direction: column;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.bn-web2 {
  position: relative;
}
.bn-web2::after {
  content: "";
  width: 105rem;
  height: 30.6rem;
  border-radius: 0 0 0 40px;
  opacity: 0.1;
  background: #B0B600;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .bn-web2::after {
    display: none;
  }
}

.bn-check a, .bn-money a {
  transition: all 0.3s;
}
.bn-check a:hover, .bn-money a:hover {
  opacity: 0.7;
}

.support {
  padding-top: 12rem;
  padding-bottom: 12rem;
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  position: relative;
}
.support a {
  transition: all 0.3s;
}
.support a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .support {
    padding-top: 0rem;
    padding-bottom: 6rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.support::after {
  content: "";
  border-radius: 0 40px 0 0;
  opacity: 0.1;
  background: #699E1A;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 105rem;
  height: 30.6rem;
  z-index: -1;
}
@media (max-width: 767px) {
  .support::after {
    display: none;
  }
}
.support ul {
  display: flex;
  gap: 4rem;
}
@media (max-width: 767px) {
  .support ul {
    flex-direction: column;
  }
}
.support ul li {
  border-radius: 40px 0;
  width: 100%;
  background: #f9f9f9;
  box-shadow: 16px 16px 8px 0 rgba(169, 169, 169, 0.16);
  display: flex;
  justify-content: center;
}
.support ul li .img-wrapper {
  height: 22.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .support ul li .img-wrapper {
    height: auto;
  }
}
.support ul li a {
  padding-top: 5.2rem;
  padding-bottom: 6rem;
  padding-left: 6rem;
  padding-right: 6rem;
  width: 100%;
}
@media (max-width: 767px) {
  .support ul li a {
    padding-top: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 4rem;
  }
}
.support ul li a .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5rem;
}
@media (max-width: 767px) {
  .support ul li a .wrap {
    padding-top: 2rem;
    display: block;
  }
}
.support ul li a .wrap img {
  width: 6.6rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .support ul li a .wrap img {
    width: 4rem;
    margin-top: 1.6rem;
    display: block;
    margin-left: auto;
  }
}
.support ul li a .support-body h2 {
  font-size: 2.8rem;
  line-height: 1.4em;
  font-weight: bold;
  margin-bottom: 1.6rem;
  letter-spacing: 0.04em;
  color: #B0B600;
}
@media (max-width: 767px) {
  .support ul li a .support-body h2 {
    font-size: 2rem;
  }
}
.support ul li a .support-body p {
  font-size: 1.6rem;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  color: #434343;
}
.support ul .support-item1 img {
  width: 17.1rem;
}
@media (max-width: 767px) {
  .support ul .support-item1 img {
    width: 11.4rem;
  }
}
.support ul .support-item2 img {
  width: 40.9rem;
}
@media (max-width: 767px) {
  .support ul .support-item2 img {
    width: 27.3rem;
  }
}

.event {
  padding-top: 8rem;
  padding-bottom: 12rem;
  background: #f9f9f9;
  position: relative;
}
.event a {
  transition: all 0.3s;
}
.event a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .event {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .event .sec-head .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .event .sec-head .wrap img {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 0.8rem;
  }
}
.event::after {
  content: "";
  width: 100rem;
  height: 46.2rem;
  background-image: url(../../img/event-bg.webp);
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
}
@media (max-width: 767px) {
  .event::after {
    width: 100%;
    height: 18.1rem;
    background-image: url(../../img/event-bg-sp.webp);
  }
}
.event .inner {
  position: relative;
  z-index: 2;
}
.event .swiper-btn-next4 img, .event .swiper-btn-prev4 img {
  width: 6.6rem;
}
@media (max-width: 767px) {
  .event .swiper-btn-next4 img, .event .swiper-btn-prev4 img {
    width: 4rem;
  }
}
.event .swiper {
  padding-left: 17rem;
}
.event .sp-article {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .event .event-item {
    margin-bottom: 2rem;
  }
}
.event .event-item .event-img {
  border-radius: 4rem 0 4rem 0;
}
@media (max-width: 767px) {
  .event .event-item .event-img {
    display: block;
    width: 26rem;
    margin: auto;
  }
}
.event .event-item:nth-child(odd) {
  padding-top: 9.2rem;
}
@media (max-width: 767px) {
  .event .event-item:nth-child(odd) {
    padding-top: 0;
  }
}
.event .event-item .event-meta {
  display: flex;
  margin-top: 2rem;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}
.event .event-item .event-meta span {
  display: flex;
  padding: 0.8rem 1.1rem;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 3px;
}
.event .event-item .event-meta .cat {
  color: white;
  background-color: #B0B600;
}
.event .event-item .event-meta .facility {
  color: #969696;
  border: 1px solid #969696;
}
.event .event-item h3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  color: #434343;
  margin-bottom: 1.6rem;
}
.event .event-item .event-txt {
  font-size: 1.6rem;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  color: #434343;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .event .event-item .event-txt {
    margin-bottom: 1.2rem;
  }
}
.event .event-item img {
  display: block;
}
.event .event-item .icon {
  display: block;
  margin-left: auto;
  width: 6.6rem;
}
@media (max-width: 767px) {
  .event .event-item .icon {
    width: 4rem;
  }
}
.event .swiper-controller {
  display: flex;
  gap: 4rem;
  justify-content: flex-end;
  align-items: center;
  margin-top: 4rem;
  margin-right: 11.2rem;
}
@media (max-width: 767px) {
  .event .swiper-controller {
    display: none;
  }
}
.event .swiper-pagination4 {
  position: static;
  width: auto !important;
  display: flex;
  justify-content: center;
  border-radius: 100px;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 767px) {
  .event .swiper-pagination4 {
    box-shadow: 0 0 12px 0 rgba(67, 67, 67, 0.4);
  }
}
.event .swiper-pagination4 .swiper-pagination-bullet {
  margin: 0 !important;
  width: 6rem;
  height: 0.4rem;
  border-radius: 100px;
  background-color: transparent;
}
.event .swiper-pagination4 .swiper-pagination-bullet-active {
  background-color: #B0B600;
}
@media (max-width: 767px) {
  .event .swiper-pagination4 .swiper-pagination-bullet {
    height: 0.2rem;
  }
}
.event .swiper-btn-prev4 {
  transition: all 0.3s;
  cursor: pointer;
}
.event .swiper-btn-prev4:hover {
  opacity: 0.7;
}
.event .swiper-btn-prev4.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.event .swiper-btn-next4 {
  transition: all 0.3s;
  cursor: pointer;
}
.event .swiper-btn-next4:hover {
  opacity: 0.7;
}
.event .swiper-btn-next4.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.recruit {
  padding-top: 12rem;
  padding-bottom: 12rem;
  padding-left: 14rem;
  padding-right: 14rem;
}
@media (max-width: 767px) {
  .recruit {
    padding-top: 6rem;
    padding-bottom: 6rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .recruit .sec-head .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .recruit .sec-head .wrap img {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 0.8rem;
  }
}
.recruit .recruit-link {
  transition: all 0.3s;
  filter: drop-shadow(16px 16px 8px rgba(169, 169, 169, 0.16));
}
.recruit .recruit-link:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .recruit .recruit-link {
    filter: drop-shadow(8px 8px 8px rgba(169, 169, 169, 0.16));
  }
}

.news {
  padding-top: 8rem;
  padding-bottom: 12rem;
  background: #f9f9f9;
  position: relative;
}
.news a {
  transition: all 0.3s;
}
.news a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .news {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .news .sec-head .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .news .sec-head .wrap img {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 0.8rem;
  }
}
.news::after {
  content: "";
  width: 100rem;
  height: 46.2rem;
  background-image: url(../../img/event-bg.webp);
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left bottom;
}
@media (max-width: 767px) {
  .news::after {
    width: 100%;
    height: 18.1rem;
    background-image: url(../../img/event-bg-sp.webp);
  }
}
.news .inner {
  position: relative;
  z-index: 2;
}
.news .swiper-btn-next4 img, .news .swiper-btn-prev4 img {
  width: 6.6rem;
}
@media (max-width: 767px) {
  .news .swiper-btn-next4 img, .news .swiper-btn-prev4 img {
    width: 4rem;
  }
}
.news .swiper {
  padding-left: 17rem;
}
.news .sp-article {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .news .event-item {
    margin-bottom: 2rem;
  }
}
.news .event-item .event-img {
  border-radius: 4rem 0 4rem 0;
}
@media (max-width: 767px) {
  .news .event-item .event-img {
    display: block;
    width: 26rem;
    margin: auto;
  }
}
.news .event-item:nth-child(odd) {
  padding-top: 9.2rem;
}
@media (max-width: 767px) {
  .news .event-item:nth-child(odd) {
    padding-top: 0;
  }
}
.news .event-item .event-meta {
  display: flex;
  margin-top: 2rem;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}
.news .event-item .event-meta span {
  display: flex;
  padding: 0.8rem 1.1rem;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 3px;
}
.news .event-item .event-meta .cat {
  color: white;
  background-color: #B0B600;
}
.news .event-item .event-meta .facility {
  color: #969696;
  border: 1px solid #969696;
}
.news .event-item h3 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  color: #434343;
  margin-bottom: 1.6rem;
}
.news .event-item .event-txt {
  font-size: 1.6rem;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  color: #434343;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .news .event-item .event-txt {
    margin-bottom: 1.2rem;
  }
}
.news .event-item img {
  display: block;
}
.news .event-item .icon {
  display: block;
  margin-left: auto;
  width: 6.6rem;
}
@media (max-width: 767px) {
  .news .event-item .icon {
    width: 4rem;
  }
}
.news .swiper-controller {
  display: flex;
  gap: 4rem;
  justify-content: flex-end;
  align-items: center;
  margin-top: 4rem;
  margin-right: 11.2rem;
}
@media (max-width: 767px) {
  .news .swiper-controller {
    display: none;
  }
}
.news .swiper-pagination5 {
  position: static;
  width: auto !important;
  display: flex;
  justify-content: center;
  border-radius: 100px;
  overflow: hidden;
  background-color: #fff;
}
@media (max-width: 767px) {
  .news .swiper-pagination5 {
    box-shadow: 0 0 12px 0 rgba(67, 67, 67, 0.4);
  }
}
.news .swiper-pagination5 .swiper-pagination-bullet {
  margin: 0 !important;
  width: 6rem;
  height: 0.4rem;
  border-radius: 100px;
  background-color: transparent;
}
.news .swiper-pagination5 .swiper-pagination-bullet-active {
  background-color: #B0B600;
}
@media (max-width: 767px) {
  .news .swiper-pagination5 .swiper-pagination-bullet {
    height: 0.2rem;
  }
}
.news .swiper-btn-prev5 {
  transition: all 0.3s;
  cursor: pointer;
}
.news .swiper-btn-prev5:hover {
  opacity: 0.7;
}
.news .swiper-btn-prev5.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.news .swiper-btn-next5 {
  transition: all 0.3s;
  cursor: pointer;
}
.news .swiper-btn-next5:hover {
  opacity: 0.7;
}
.news .swiper-btn-next5.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.cta {
  background-image: url(../../img/cta-bg.webp);
  background-size: cover;
  padding: 5.6rem;
}
.cta a {
  transition: all 0.3s;
}
.cta a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .cta {
    background-image: url(../../img/cta-bg-sp.webp);
    padding: 2rem;
  }
}
.cta .cta-in {
  position: relative;
  padding-top: 6.4rem;
  padding-bottom: 10rem;
  padding-left: 5.6rem;
  padding-right: 5.6rem;
}
@media (max-width: 767px) {
  .cta .cta-in {
    padding: 3.2rem 2rem;
  }
}
.cta .cta-in .border {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.cta .cta-in .cta-head {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .cta .cta-in .cta-head {
    margin-bottom: 2rem;
  }
}
.cta .cta-in .cta-head h2 {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .cta .cta-in .cta-head h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.32em;
  }
}
.cta .cta-in .cta-head p {
  text-align: center;
  color: white;
  font-size: 2rem;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .cta .cta-in .cta-head p {
    font-size: 1.4rem;
    line-height: 1.6em;
  }
}
.cta .cta-in .cta-btns {
  display: flex;
  gap: 4rem;
}
@media (max-width: 767px) {
  .cta .cta-in .cta-btns {
    flex-direction: column;
    gap: 0.8rem;
  }
}

footer {
  background-image: url(../../img/footer-bg.webp);
  background-size: cover;
  padding: 6rem;
  padding-top: 8rem;
}
footer a {
  transition: all 0.3s;
}
footer a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  footer {
    background-image: url(../../img/footer-bg-sp.webp);
    padding: 4rem 2rem;
  }
}
footer .foot-in .foot-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(176, 182, 0, 0.5);
}
@media (max-width: 767px) {
  footer .foot-in .foot-top {
    flex-direction: column;
    border: none;
    padding-bottom: 3rem;
  }
  footer .foot-in .foot-top .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.2rem;
  }
  footer .foot-in .foot-top .wrap img {
    width: 3.2rem;
    transition: all 0.3s;
  }
  footer .foot-in .foot-top .wrap img.active {
    transform: rotate(180deg);
  }
}
footer .foot-in .foot-top .logo img {
  width: 14.8rem;
}
@media (max-width: 767px) {
  footer .foot-in .foot-top .logo img {
    width: 12.8rem;
  }
}
footer .foot-in .foot-top .foot-nav {
  display: flex;
  gap: 4.8rem;
}
@media (max-width: 767px) {
  footer .foot-in .foot-top .foot-nav {
    flex-direction: column;
    gap: 2rem;
  }
}
footer .foot-in .foot-top .foot-nav .foot-col .foot-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 5.2rem;
}
@media (max-width: 767px) {
  footer .foot-in .foot-top .foot-nav .foot-col .foot-ttl {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.6rem;
  }
}
footer .foot-in .foot-top .foot-nav .foot-col ul {
  border-left: 3px dotted #B0B600;
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  footer .foot-in .foot-top .foot-nav .foot-col ul {
    border-bottom: 3px dotted #B0B600;
    border-left: none;
    padding-left: 0;
    align-items: center;
    gap: 0.8rem;
  }
}
footer .foot-in .foot-top .foot-nav .foot-col ul li a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #434343;
}
@media (max-width: 767px) {
  footer .foot-in .foot-top .foot-nav .foot-col ul li a {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  footer .foot-in .foot-top .nav-wrap {
    display: none;
  }
}
footer .foot-in .foot-btm {
  display: flex;
  justify-content: space-between;
  padding-top: 6rem;
}
@media (max-width: 767px) {
  footer .foot-in .foot-btm {
    padding-top: 0;
    flex-direction: column;
  }
}
footer .foot-in .foot-btm .copy {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #969696;
}
@media (max-width: 767px) {
  footer .foot-in .foot-btm .copy {
    text-align: center;
    line-height: 1.2em;
  }
}
footer .foot-in .foot-btm ul {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  footer .foot-in .foot-btm ul {
    justify-content: center;
    gap: 1.4rem;
    margin-top: 4rem;
  }
}
footer .foot-in .foot-btm ul img {
  width: 3.2rem;
}

.kaso-fv {
  padding-top: 22rem;
  position: relative;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .kaso-fv {
    padding-top: 11rem;
    padding-bottom: 6rem;
  }
}
.kaso-fv .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 69rem;
  height: auto;
}
@media (max-width: 767px) {
  .kaso-fv .bg {
    display: none;
  }
}
.kaso-fv .inner {
  position: relative;
  z-index: 2;
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .kaso-fv .inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.kaso-fv .inner .page-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kaso-fv .inner .page-head h2 {
  text-align: center;
  font-size: 4.4rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 3px dotted #B0B600;
}
@media (max-width: 767px) {
  .kaso-fv .inner .page-head h2 {
    font-size: 2.4rem;
  }
}
.kaso-fv .inner .page-head p {
  font-size: 1.6rem;
  line-height: 1.8em;
  letter-spacing: 0.04em;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .kaso-fv .inner .page-head p {
    margin-bottom: 3.2rem;
    text-align: center;
  }
}

.mem-plan {
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .mem-plan {
    padding-bottom: 6rem;
  }
}
.mem-plan .sec-sub {
  padding-top: 4rem;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.6em;
}
@media (max-width: 767px) {
  .mem-plan .sec-sub {
    padding-top: 2rem;
  }
}
.mem-plan .mem-plan-box {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .mem-plan .mem-plan-box {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.mem-plan .mem-plan-box a {
  transition: all 0.3s;
}
.mem-plan .mem-plan-box a:hover {
  opacity: 0.7;
}
.mem-plan .mem-plan-box p {
  text-align: center;
  color: #B0B600;
  font-weight: bold;
  line-height: 1.2em;
  letter-spacing: 0.04em;
  font-size: 2.8rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .mem-plan .mem-plan-box p {
    margin-bottom: 3rem;
    font-size: 1.6rem;
  }
}

.benefit {
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .benefit {
    padding-bottom: 6rem;
  }
}
.benefit ul {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .benefit ul {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.benefit ul li {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  align-items: center;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 2px dotted #B0B600;
}
.benefit ul li:first-child {
  padding-top: 0;
}
@media (min-width: 768px) {
  .benefit ul li:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 767px) {
  .benefit ul li {
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 2rem;
  }
}
.benefit ul li .benefit-img img {
  width: 56.8rem;
}
@media (max-width: 767px) {
  .benefit ul li .benefit-img img {
    width: 100%;
  }
}
.benefit ul li .benefit-txt {
  width: calc(100% - 50.8rem);
}
@media (max-width: 767px) {
  .benefit ul li .benefit-txt {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .benefit ul li .benefit-txt .wrap {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.benefit ul li .benefit-txt .benefit-num {
  margin-bottom: 3.2rem;
}
.benefit ul li .benefit-txt .benefit-num img {
  height: 3.6rem;
  width: auto;
}
@media (max-width: 767px) {
  .benefit ul li .benefit-txt .benefit-num {
    margin-bottom: 0;
  }
  .benefit ul li .benefit-txt .benefit-num img {
    height: 2rem;
    margin-right: 0.8rem;
  }
}
.benefit ul li .benefit-txt h3 {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4rem;
  color: #B0B600;
  white-space: nowrap;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .benefit ul li .benefit-txt h3 {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
}
.benefit .benefit-btn {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .benefit .benefit-btn {
    margin-top: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.benefit .benefit-btn a {
  padding: 2.4rem 12rem;
  color: white;
  background-color: #B0B600;
  border-radius: 6px;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .benefit .benefit-btn a {
    padding: 2rem;
    width: 100%;
    text-align: center;
  }
}
.benefit .benefit-btn a:hover {
  opacity: 0.7;
}

.reason .sec-head {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .reason .sec-head {
    margin-bottom: 3.2rem;
  }
}
.reason .sec-sub {
  padding-top: 4rem;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.6em;
}
@media (max-width: 767px) {
  .reason .sec-sub {
    padding-top: 2rem;
  }
}
.reason .inner {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .reason .inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.reason .reason-accounting {
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .reason .reason-accounting {
    padding-bottom: 6rem;
  }
}
.reason .reason-accounting-top {
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .reason .reason-accounting-top {
    padding-bottom: 3.2rem;
  }
}
.reason .reason-accounting-top img {
  margin-bottom: 4rem;
}
.reason .reason-accounting-top p {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #B0B600;
}
@media (max-width: 767px) {
  .reason .reason-accounting-top p {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.reason .acc-box {
  display: flex;
  gap: 3.8rem;
}
@media (max-width: 767px) {
  .reason .acc-box {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.reason .acc-box .acc-item h3 {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .reason .acc-box .acc-item h3 {
    font-size: 2rem;
  }
}
.reason .acc-box .acc-item h3 span {
  font-size: inherit;
  color: inherit;
}
.reason .acc-box .acc-item h3 img {
  width: 1.6rem;
}
@media (max-width: 767px) {
  .reason .acc-box .acc-item h3 img {
    width: 1.2rem;
  }
}
.reason .acc-box .acc-item h3.ttl1 {
  color: #B0B600;
  font-size: 3.2rem;
}
@media (max-width: 767px) {
  .reason .acc-box .acc-item h3.ttl1 {
    font-size: 2rem;
  }
}
.reason .acc-box .acc-item .acc-img {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .reason .acc-box .acc-item .acc-img {
    margin-bottom: 2rem;
  }
}
.reason .acc-box .acc-item .acc-body h4 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #B0B600;
  line-height: 1.4em;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .reason .acc-box .acc-item .acc-body h4 {
    font-size: 2rem;
  }
}
.reason .acc-box .acc-item .acc-body p {
  font-size: 1.6rem;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .reason .acc-box .acc-item .acc-body p {
    font-size: 1.4rem;
  }
}

.reason-list {
  border-radius: 0 40px 0 0;
  background: #F4F6E9;
  padding-top: 18rem;
  padding-bottom: 16rem;
  position: relative;
  overflow: hidden;
}
.reason-list::after {
  content: "";
  width: 100%;
  height: 16rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  position: absolute;
  left: 0;
  bottom: -7rem;
}
@media (max-width: 767px) {
  .reason-list::after {
    height: 6rem;
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .reason-list {
    padding-top: 6rem;
    border-radius: 0;
    padding-bottom: 6rem;
  }
}
.reason-list ul {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .reason-list ul {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.reason-list ul li {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-bottom: 2px dotted #B0B600;
}
.reason-list ul li:first-child {
  padding-top: 0;
}
@media (max-width: 767px) {
  .reason-list ul li {
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 2rem;
  }
  .reason-list ul li:nth-child(odd) {
    flex-direction: column-reverse;
  }
}
.reason-list ul li .reason-item-img img {
  width: 56.8rem;
}
@media (max-width: 767px) {
  .reason-list ul li .reason-item-img img {
    width: 100%;
  }
}
.reason-list ul li .reason-item-body {
  width: calc(100% - 50.8rem);
}
@media (max-width: 767px) {
  .reason-list ul li .reason-item-body {
    width: 100%;
    align-items: center;
  }
  .reason-list ul li .reason-item-body .wrap {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.reason-list ul li .reason-item-body h2 {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4rem;
  color: #B0B600;
  white-space: nowrap;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .reason-list ul li .reason-item-body h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.reason-list ul li .reason-item-body p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .reason-list ul li .reason-item-body p {
    font-size: 1.4rem;
    font-weight: normal;
  }
}
.reason-list ul .reason-btn {
  display: flex;
  align-items: center;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .reason-list ul .reason-btn {
    margin-top: 2rem;
    justify-content: flex-end;
  }
}
.reason-list ul .reason-btn .btn1 {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 767px) {
  .reason-list ul .reason-btn .btn1 {
    gap: 1.2rem;
    justify-content: flex-end;
  }
}
.reason-list ul .reason-btn a {
  font-size: 2rem;
  color: #699E1A;
  font-weight: bold;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.reason-list ul .reason-btn a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .reason-list ul .reason-btn a {
    font-size: 1.4rem;
    color: #B0B600;
  }
}
.reason-list ul .reason-btn img {
  width: 6.6rem;
}
@media (max-width: 767px) {
  .reason-list ul .reason-btn img {
    width: 4rem;
  }
}

@media (max-width: 767px) {
  .order-fv {
    padding-bottom: 0;
  }
}

.order-page {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .order-page {
    padding-left: 2rem;
    padding-right: 2rem;
    overflow: hidden;
  }
}
.order-page .sec-head {
  padding-left: 0;
}
.order-page .order-store {
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .order-page .order-store {
    padding-bottom: 3rem;
  }
}
.order-page .order-tab-list {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 8rem;
  border-bottom: 1px solid #B0B600;
}
@media (max-width: 767px) {
  .order-page .order-tab-list {
    flex-wrap: wrap;
    margin-bottom: 6rem;
    border: none;
  }
}
.order-page .order-tab-list li {
  width: 100%;
}
@media (max-width: 767px) {
  .order-page .order-tab-list li {
    width: calc(50% - 0.4rem);
  }
}
.order-page .order-tab-list li a {
  display: flex;
  width: 100%;
  justify-content: center;
  border: 1px solid #B0B600;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  color: #B0B600;
  padding: 1.2rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .order-page .order-tab-list li a {
    font-size: 1.4rem;
    padding: 1.6rem;
    border-bottom: 1px solid #B0B600;
    border-radius: 8px;
  }
}
.order-page .store-head {
  display: flex;
  align-items: center;
  border-radius: 6px;
  background: #FAFAED;
  padding: 1.6rem 4rem;
  margin-bottom: 2.8rem;
}
@media (max-width: 767px) {
  .order-page .store-head {
    flex-direction: column;
    padding: 1.2rem 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
}
.order-page .store-head .wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .order-page .store-head .wrap {
    margin-bottom: 1.4rem;
  }
}
.order-page .store-head .store-num {
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #B0B600;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.04em;
  border-radius: 50%;
  margin-right: 1.2rem;
}
@media (max-width: 767px) {
  .order-page .store-head .store-num {
    font-size: 1.4rem;
    width: 2.8rem;
    height: 2.8rem;
    margin-right: 0.4rem;
  }
}
.order-page .store-head .store-ttl {
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  color: #B0B600;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .order-page .store-head .store-ttl {
    font-size: 2rem;
    margin-right: 0;
  }
}
.order-page .store-head .store-txt {
  font-size: 1.6rem;
  line-height: 1.4em;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .order-page .store-head .store-txt {
    font-size: 1.2rem;
  }
}
.order-page .store-img {
  display: flex;
  justify-content: center;
  margin-bottom: 8rem;
  flex-direction: column;
  align-items: center;
}
.order-page .store-img p {
  font-size: 1.8rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .order-page .store-img p {
    font-size: 1.4rem;
    margin-top: -1rem;
    position: relative;
    z-index: 2;
  }
}
.order-page .store-img a {
  transition: all 0.3s;
}
.order-page .store-img a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .order-page .store-img {
    margin-bottom: 3rem;
  }
}
.order-page .store-img img {
  max-width: 64.5rem;
  margin: auto;
}
@media (max-width: 767px) {
  .order-page .store-img img {
    width: 90%;
    display: block;
  }
}
.order-page .flow-btn {
  display: flex;
  justify-content: flex-end;
}
.order-page .flow-btn a {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  color: #B0B600;
}
@media (max-width: 767px) {
  .order-page .flow-btn a {
    font-size: 1.4rem;
  }
}
.order-page .flow-btn a span {
  font-size: inherit;
}
.order-page .flow-btn a img {
  width: 6.6rem;
  margin-left: 4rem;
}
@media (max-width: 767px) {
  .order-page .flow-btn a img {
    width: 4rem;
    margin-left: 1.2rem;
  }
}
.order-page .order-mail, .order-page .order-fax, .order-page .order-phone {
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .order-page .order-mail, .order-page .order-fax, .order-page .order-phone {
    padding-bottom: 6rem;
  }
}
.order-page .order-mail .store-head, .order-page .order-fax .store-head, .order-page .order-phone .store-head {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .order-page .order-mail .store-head, .order-page .order-fax .store-head, .order-page .order-phone .store-head {
    margin-bottom: 1.4rem;
  }
}
.order-page .order-mail .store-head .wrap, .order-page .order-fax .store-head .wrap, .order-page .order-phone .store-head .wrap {
  min-width: 36rem;
}
.order-page .venue-list {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .order-page .venue-list {
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .order-page .venue-item {
    width: calc(50% - 0.8rem);
  }
}
.order-page .venue-item:nth-child(2n+1) {
  padding-top: 4rem;
}
@media (max-width: 767px) {
  .order-page .venue-item:nth-child(2n+1) {
    padding-top: 0;
  }
}
.order-page .venue-body {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .order-page .venue-body {
    min-height: 17rem;
  }
}
.order-page .venue-body h3 {
  font-size: 2.4rem;
  color: #B0B600;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .order-page .venue-body h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
}
.order-page .venue-body p {
  padding-left: 2.4rem;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.4em;
  letter-spacing: 0.04em;
  color: #434343;
}
@media (max-width: 767px) {
  .order-page .venue-body p {
    padding-left: 2rem;
    font-size: 1.2rem;
  }
}
.order-page .venue-body p::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(../../img/v-location.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0.3rem;
}
@media (max-width: 767px) {
  .order-page .venue-body p::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.order-page .venue-body .venue-add {
  margin-bottom: 0.8rem;
}
.order-page .venue-body .venue-tel::before {
  background-image: url(../../img/v-tel.svg);
}
.order-page .venue-body .venue-fax::before {
  background-image: url(../../img/v-fax.svg);
}
.order-page .venue-body .venue-email::before {
  background-image: url(../../img/v-email.svg);
}
.order-page .download {
  display: flex;
  width: 100%;
  padding: 1.6rem;
  background-color: #B0B600;
  font-weight: bold;
  color: white;
  justify-content: center;
  gap: 1.6rem;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .order-page .download {
    font-size: 1.3rem;
    gap: 0.6rem;
    padding: 1.1rem 0;
    border-radius: 0.6rem;
  }
}
.order-page .download img {
  width: 1.6rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .order-page .download img {
    width: 1rem;
  }
}
.order-page .phone-cta {
  border-radius: 20px 0;
  background: white;
  box-shadow: 0 0 28px 0 rgba(176, 182, 0, 0.2);
  padding-top: 4.2rem;
  padding-bottom: 3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .order-page .phone-cta {
    padding-top: 3rem;
    padding-bottom: 2rem;
    border-radius: 16px 0;
  }
}
.order-page .phone-cta a {
  display: flex;
  justify-content: center;
  font-size: 5.2rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #699E1A;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .order-page .phone-cta a {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
  }
}
.order-page .phone-cta p {
  display: inline-flex;
  justify-content: center;
  padding: 0.8rem 8rem;
  border-radius: 100px;
  background: rgba(176, 182, 0, 0.1);
  font-size: 1.6rem;
  color: #699E1A;
  font-weight: bold;
}
@media (max-width: 767px) {
  .order-page .phone-cta p {
    font-size: 1.2rem;
    padding: 0.8rem 5.5rem;
  }
}

.facility-plan {
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .facility-plan {
    padding-bottom: 6rem;
  }
}
@media (max-width: 767px) {
  .facility-plan .sec-head .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .facility-plan .sec-head .wrap .sec-ttl {
    font-size: 2.3rem;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 767px) {
  .facility-plan .sec-head .wrap img {
    height: auto;
    width: 100%;
    margin-left: 0;
  }
}
.facility-plan ul {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .facility-plan ul {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.facility-plan ul li {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  align-items: center;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 2px dotted #B0B600;
}
.facility-plan ul li:first-child {
  padding-top: 0;
}
@media (max-width: 767px) {
  .facility-plan ul li {
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 2rem;
  }
  .facility-plan ul li:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.facility-plan ul li .facility-plan-img-wrap img {
  width: 56.8rem;
}
@media (max-width: 767px) {
  .facility-plan ul li .facility-plan-img-wrap img {
    width: 100%;
  }
}
.facility-plan ul li .facility-plan-txt {
  width: calc(100% - 50.8rem);
}
@media (max-width: 767px) {
  .facility-plan ul li .facility-plan-txt {
    width: 100%;
  }
  .facility-plan ul li .facility-plan-txt .wrap {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.facility-plan ul li .facility-plan-txt .facility-plan-num {
  margin-bottom: 3.2rem;
}
.facility-plan ul li .facility-plan-txt .facility-plan-num img {
  height: 3.6rem;
  width: auto;
}
@media (max-width: 767px) {
  .facility-plan ul li .facility-plan-txt .facility-plan-num {
    margin-bottom: 0;
  }
  .facility-plan ul li .facility-plan-txt .facility-plan-num img {
    height: 2rem;
    margin-right: 0.8rem;
  }
}
.facility-plan ul li .facility-plan-txt h3 {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 4rem;
  color: #B0B600;
}
@media (max-width: 767px) {
  .facility-plan ul li .facility-plan-txt h3 {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
}
.facility-plan ul li .facility-plan-txt .facility-plan-desc {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .facility-plan ul li .facility-plan-txt .facility-plan-desc {
    font-size: 1.4rem;
    line-height: 1.6em;
    font-weight: 400;
  }
}

.facility-case {
  padding-bottom: 14rem;
}
.facility-case .sec-head {
  margin-bottom: 2rem;
}
.facility-case ul {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .facility-case ul {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.facility-case ul li {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  align-items: center;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 2px dotted #B0B600;
}
.facility-case ul li:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .facility-case ul li:nth-child(even) {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .facility-case ul li {
    flex-direction: column;
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 2rem;
  }
}
.facility-case ul li .facility-case-img-wrap {
  width: 56.8rem;
}
.facility-case ul li .facility-case-img-wrap img {
  width: 100%;
}
@media (max-width: 767px) {
  .facility-case ul li .facility-case-img-wrap {
    width: 100%;
  }
}
.facility-case ul li .facility-case-body {
  width: calc(100% - 50.8rem);
}
@media (max-width: 767px) {
  .facility-case ul li .facility-case-body {
    width: 100%;
  }
}
.facility-case ul li .facility-case-body h3 {
  font-size: 3.6rem;
  font-weight: bold;
  color: #B0B600;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .facility-case ul li .facility-case-body h3 {
    font-size: 2.4rem;
  }
}
.facility-case ul li .facility-case-body p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .facility-case ul li .facility-case-body p {
    font-size: 1.4rem;
    font-weight: normal;
  }
}

@media (max-width: 767px) {
  .recruit-strength .sec-head .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .recruit-strength .sec-head .wrap img {
    margin-left: 0;
    margin-top: 0.8rem;
  }
}
.recruit-strength .strength-list {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .recruit-strength .strength-list {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.recruit-strength .strength-list .strength-item {
  display: flex;
  gap: 6rem;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .recruit-strength .strength-list .strength-item {
    gap: 2rem;
    flex-direction: column;
    margin-bottom: 4rem;
  }
  .recruit-strength .strength-list .strength-item:nth-child(2) {
    flex-direction: column-reverse;
  }
}
.recruit-strength .strength-list .strength-item .img-wrapper {
  width: 56.8rem;
}
@media (max-width: 767px) {
  .recruit-strength .strength-list .strength-item .img-wrapper {
    width: 100%;
  }
}
.recruit-strength .strength-list .strength-item .img-wrapper img {
  width: 100%;
}
.recruit-strength .strength-list .strength-item .txt-wrapper {
  width: calc(100% - 50.8rem);
}
@media (max-width: 767px) {
  .recruit-strength .strength-list .strength-item .txt-wrapper {
    width: 100%;
  }
}
.recruit-strength .strength-list .strength-item .txt-wrapper .strength-name {
  font-size: 1.6rem;
  font-weight: normal;
  color: #B0B600;
  margin-bottom: 1.2rem;
}
@media (max-width: 767px) {
  .recruit-strength .strength-list .strength-item .txt-wrapper .strength-name {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}
.recruit-strength .strength-list .strength-item .txt-wrapper h3 {
  font-size: 3.6rem;
  line-height: 1.4em;
  letter-spacing: 0.04em;
  color: #B0B600;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .recruit-strength .strength-list .strength-item .txt-wrapper h3 {
    font-size: 2.4rem;
  }
}
.recruit-strength .strength-list .strength-item .txt-wrapper p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .recruit-strength .strength-list .strength-item .txt-wrapper p {
    font-size: 1.4rem;
    font-weight: normal;
  }
}

.recruit-work {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .recruit-work {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 6rem;
  }
}
.recruit-work .inner h2 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #B0B600;
  letter-spacing: 0.04em;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .recruit-work .inner h2 {
    margin-bottom: 2rem;
  }
}
.recruit-work .inner .work-list {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .recruit-work .inner .work-list {
    margin-bottom: 4rem;
  }
}
.recruit-work .inner .work-item {
  margin-bottom: 1.6rem;
}
.recruit-work .inner .work-item .work-cat {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
  line-height: 1.6;
}
.recruit-work .inner .work-item .work-txt {
  font-size: 1.6rem;
  line-height: 1.6em;
}

.job-info {
  background: #FFFCE9;
  padding-top: 8rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .job-info {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.job-info .job-list {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4.5rem;
}
@media (max-width: 767px) {
  .job-info .job-list {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .job-info .job-list {
    gap: 1.6rem;
  }
}
.job-info .job-list .job-item {
  width: calc(33.3333% - 3rem);
  background-color: #fff;
  padding: 2rem;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .job-info .job-list .job-item {
    width: 100%;
  }
}
.job-info .job-list .job-item .job-cat {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background-color: #B0B600;
  border-radius: 3px;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: white;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}
.job-info .job-list .job-item .job-ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
}
.job-info .job-list .job-item .job-txt {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
}
@media (max-width: 767px) {
  .job-info .job-list .job-item .job-txt {
    font-size: 1.4rem;
  }
}
.job-info .job-list .job-item .job-meta {
  display: flex;
  gap: 2.4rem;
  margin-bottom: 2rem;
}
.job-info .job-list .job-item .job-meta p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  line-height: 1.5;
  padding-left: 2.8rem;
  position: relative;
  color: #E38043;
}
@media (max-width: 767px) {
  .job-info .job-list .job-item .job-meta p {
    font-size: 1.4rem;
  }
}
.job-info .job-list .job-item .job-meta p::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../../img/location.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.job-info .job-list .job-item .job-meta .job-type::before {
  background-image: url(../../img/job-cat.svg);
}
.job-info .job-list .job-item .job-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.job-info .job-list .job-item .job-link img {
  width: 6.6rem;
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .job-info .job-list .job-item .job-link img {
    width: 4rem;
    margin-left: 1.2rem;
  }
}
.job-info .job-list .job-item .job-link span {
  font-size: 2rem;
  color: #699E1A;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .job-info .job-list .job-item .job-link span {
    font-size: 1.4rem;
  }
}

.recruit-contact {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .recruit-contact {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (max-width: 767px) {
  .recruit-contact .sec-head .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .recruit-contact .sec-head .wrap img {
    margin-left: 0;
    margin-top: 0.8rem;
  }
}
@media (max-width: 767px) {
  .recruit-contact .form-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.recruit-contact .form-wrapper form {
  max-width: 80rem;
  margin: auto;
}
.recruit-contact .form-wrapper .form-row {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .recruit-contact .form-wrapper .form-row {
    margin-bottom: 3.2rem;
  }
}
.recruit-contact .form-wrapper .form-row input, .recruit-contact .form-wrapper .form-row textarea, .recruit-contact .form-wrapper .form-row select {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}
.recruit-contact .form-wrapper .form-row > .form-label {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .recruit-contact .form-wrapper .form-row > .form-label {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
  }
}
.recruit-contact .form-wrapper .form-row > input, .recruit-contact .form-wrapper .form-row .wpcf7-form-control-wrap > input {
  width: 100%;
  font-size: 1.6rem;
  height: 4.8rem;
  padding-left: 1.6rem;
  border-radius: 6px;
  border: 1px solid #969696;
}
@media (max-width: 767px) {
  .recruit-contact .form-wrapper .form-row > input, .recruit-contact .form-wrapper .form-row .wpcf7-form-control-wrap > input {
    font-size: 1.4rem;
  }
}
.recruit-contact .form-wrapper .form-row > input::placeholder, .recruit-contact .form-wrapper .form-row .wpcf7-form-control-wrap > input::placeholder {
  color: rgba(67, 67, 67, 0.5);
}
.recruit-contact .form-wrapper .form-row .select-wrapper {
  position: relative;
  width: 100%;
}
.recruit-contact .form-wrapper .form-row .select-wrapper::before {
  content: "";
  width: 2rem;
  height: 1.1rem;
  position: absolute;
  background-image: url(../../img/select-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  right: 1.8rem;
  top: 1.8rem;
  pointer-events: none;
  z-index: 2;
}
.recruit-contact .form-wrapper .form-row .select-wrapper select {
  width: 100%;
  appearance: none;
  height: 4.8rem;
  padding-left: 1.6rem;
  border: 1px solid #969696;
  background-color: #fff;
  font-size: 1.6rem;
  border-radius: 6px;
  color: #434343;
}
@media (max-width: 767px) {
  .recruit-contact .form-wrapper .form-row .select-wrapper select {
    font-size: 1.4rem;
  }
}
.recruit-contact .form-wrapper .form-row .form-radio {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media (max-width: 767px) {
  .recruit-contact .form-wrapper .form-row .form-radio {
    flex-wrap: wrap;
  }
}
.recruit-contact .form-wrapper .form-row .form-radio label {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
.recruit-contact .form-wrapper .form-row .form-radio label span {
  font-size: 1em;
}
@media (max-width: 767px) {
  .recruit-contact .form-wrapper .form-row .form-radio label {
    font-size: 1.4rem;
  }
}
.recruit-contact .form-wrapper .form-row textarea {
  width: 100%;
  font-size: 1.6rem;
  height: 20rem;
  resize: none;
  padding-left: 1.6rem;
  border-radius: 6px;
  border: 1px solid #969696;
  padding-top: 1.6rem;
  line-height: 1.2em;
}
.recruit-contact .form-wrapper .form-row textarea::placeholder {
  color: rgba(67, 67, 67, 0.5);
}
@media (max-width: 767px) {
  .recruit-contact .form-wrapper .form-row textarea {
    font-size: 1.4rem;
  }
}
.recruit-contact .form-wrapper .form-check {
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .recruit-contact .form-wrapper .form-check {
    margin-bottom: 3.2rem;
  }
}
.recruit-contact .form-wrapper .form-check label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.recruit-contact .form-wrapper .form-check label span {
  font-size: 1em;
}
.recruit-contact .form-wrapper .form-check label input {
  margin-right: 1rem;
}
.recruit-contact .form-wrapper .form-check label a {
  font-size: 1em;
  color: #B0B600;
  text-decoration: underline;
  font-weight: bold;
}
.recruit-contact .form-wrapper .form-submit {
  display: flex;
  justify-content: center;
}
.recruit-contact .form-wrapper .form-submit .btn1 {
  display: block;
  background-color: #B0B600;
  padding: 2.4rem 12rem;
  color: white;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  border-radius: 6px;
  border: 0;
}
@media (max-width: 767px) {
  .recruit-contact .form-wrapper .form-submit .btn1 {
    width: 30.6rem;
    margin: auto;
    padding: 2.4rem;
    text-align: center;
  }
}

.wpcf7-not-valid-tip {
  font-size: 1.4em;
  margin-top: 1rem;
}

.wpcf7-spinner {
  position: absolute;
}

.wpcf7-response-output {
  padding: 1rem;
  font-size: 1.4rem;
  line-height: normal;
}

.facility-fv .inner .page-head .page-ttl {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .facility-fv .inner .page-head .page-ttl {
    margin-bottom: 2rem;
  }
}

.facility-detail .inner-inner {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .facility-detail .inner-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.facility-detail .inner-inner iframe {
  width: 100%;
  height: 40rem;
}
@media (max-width: 767px) {
  .facility-detail .inner-inner iframe {
    height: 20rem;
  }
}

@media (min-width: 768px) {
  .bn-faci {
    padding-bottom: 22rem;
  }
  .bn-faci::after {
    bottom: 12rem;
  }
}

.chokuso-plan .plan-box {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  display: flex;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 767px) {
  .chokuso-plan .plan-box {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .chokuso-plan .plan-box {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.chokuso-plan .plan-box .img-wrapper {
  width: 56.8rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .chokuso-plan .plan-box .img-wrapper {
    width: 100%;
  }
}
.chokuso-plan .plan-box .txt-wrapper {
  width: 100%;
}
.chokuso-plan .plan-box .txt-wrapper p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .chokuso-plan .plan-box .txt-wrapper p {
    font-size: 1.4rem;
    font-weight: normal;
  }
}

.chokuso-case {
  padding-top: 8rem;
}
@media (max-width: 767px) {
  .chokuso-case {
    padding-top: 6rem;
  }
}
.chokuso-case .case-box {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  display: flex;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 767px) {
  .chokuso-case .case-box {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .chokuso-case .case-box {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.chokuso-case .case-box .img-wrapper {
  width: 56.8rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .chokuso-case .case-box .img-wrapper {
    width: 100%;
  }
}
.chokuso-case .case-box .txt-wrapper {
  width: 100%;
}
.chokuso-case .case-box .txt-wrapper .case-row {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.chokuso-case .case-box .txt-wrapper .case-row .case-label {
  margin-right: 1.2rem;
  color: #B0B600;
  font-weight: bold;
  width: 10rem;
  flex-shrink: 0;
}
.chokuso-case .case-box .txt-wrapper p {
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .chokuso-case .case-box .txt-wrapper p {
    font-size: 1.4rem;
    font-weight: normal;
  }
}

.oneday-plan {
  padding-top: 8rem;
}
@media (max-width: 767px) {
  .oneday-plan {
    padding-top: 6rem;
  }
}
.oneday-plan .plan-box {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  display: flex;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 767px) {
  .oneday-plan .plan-box {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .oneday-plan .plan-box {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.oneday-plan .plan-box .img-wrapper {
  width: 56.8rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .oneday-plan .plan-box .img-wrapper {
    width: 100%;
  }
}
.oneday-plan .plan-box .txt-wrapper {
  width: 100%;
}
.oneday-plan .plan-box .txt-wrapper p {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .oneday-plan .plan-box .txt-wrapper p {
    font-size: 1.4rem;
    font-weight: normal;
  }
}

.more {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .more {
    padding-top: 0;
    padding-right: 2rem;
  }
}
.more a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  font-size: 2rem;
  font-weight: bold;
  color: #B0B600;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .more a {
    justify-content: flex-end;
    gap: 1.2rem;
    font-size: 1.4rem;
  }
}
.more img {
  width: 6.6rem;
}
@media (max-width: 767px) {
  .more img {
    width: 4rem;
  }
}

.more2 {
  padding-top: 4rem;
  padding-bottom: 6rem;
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .more2 {
    padding-top: 2rem;
    padding-right: 2rem;
    padding-bottom: 4rem;
  }
}
.more2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  font-size: 2rem;
  font-weight: bold;
  color: #B0B600;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .more2 a {
    justify-content: flex-end;
    gap: 1.2rem;
    font-size: 1.4rem;
  }
}
.more2 img {
  width: 6.6rem;
}
@media (max-width: 767px) {
  .more2 img {
    width: 4rem;
  }
}

.sogi-banner {
  padding-bottom: 6rem;
  position: relative;
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  margin-bottom: 12rem;
}
@media (max-width: 767px) {
  .sogi-banner {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 0;
  }
}
.sogi-banner::before {
  content: "";
  width: 105rem;
  height: 30.6rem;
  border-radius: 0 0 0 40px;
  background: #FFFCE9;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .sogi-banner::before {
    display: none;
  }
}
.sogi-banner a {
  position: relative;
  z-index: 2;
}

.sogi-banner2 {
  padding-top: 6rem;
}
@media (max-width: 767px) {
  .sogi-banner2 {
    padding-top: 0;
  }
}

.archive-fv {
  padding-bottom: 12rem;
}
.archive-fv p {
  text-align: center;
  margin-bottom: 0 !important;
}

.voice-list2 {
  background-color: white;
  padding-top: 0rem;
}
.voice-list2 ul {
  flex-wrap: wrap;
}
.voice-list2 ul li {
  width: calc(33.3333% - 2.666667rem);
}
@media (max-width: 767px) {
  .voice-list2 ul li {
    width: 100%;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .pagination {
    padding-bottom: 6rem;
  }
}
.pagination span, .pagination a {
  font-size: 1.6rem;
  color: #B0B600;
}
.pagination a {
  transition: all 0.3s;
}
.pagination a:hover {
  opacity: 0.7;
}
.pagination span {
  color: #434343;
  opacity: 0.6;
}
.pagination img {
  width: 6.6rem;
}
@media (max-width: 767px) {
  .pagination img {
    width: 4rem;
  }
}

.contact2 {
  padding-top: 0;
}

.form-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}
.form-radio .wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .form-radio .wpcf7-radio {
    flex-wrap: wrap;
  }
}
.form-radio label {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
  padding-left: 2.75rem;
  white-space: nowrap;
}
.form-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-radio label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.875rem;
  height: 1.875rem;
  border: 0.125rem solid #9d9d9d;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.form-radio label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.375rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: #b7bf00;
  transform: translateY(-50%) scale(0);
  transition: transform 0.2s ease;
}
.form-radio label:has(input[type=radio]:checked)::after {
  transform: translateY(-50%) scale(1);
}
.form-radio label:has(input[type=radio]:focus-visible)::before {
  outline: 0.125rem solid #333;
  outline-offset: 0.1875rem;
}

.form-check {
  margin-top: 2rem;
}
.form-check label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
  padding-left: 3.25rem;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-check label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.125rem;
  height: 2.125rem;
  border: 0.125rem solid #9d9d9d;
  border-radius: 0.5rem;
  background: #fff;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.form-check label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.5625rem;
  width: 1rem;
  height: 0.625rem;
  border-left: 0.25rem solid #b7bf00;
  border-bottom: 0.25rem solid #b7bf00;
  transform: translateY(-65%) rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform 0.2s ease;
  box-sizing: border-box;
}
.form-check label:has(input[type=checkbox]:checked)::after {
  transform: translateY(-65%) rotate(-45deg) scale(1);
}
.form-check label:has(input[type=checkbox]:focus-visible)::before {
  outline: 0.125rem solid #333;
  outline-offset: 0.1875rem;
}
.form-check a {
  color: #b7bf00;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.faq-fv {
  padding-bottom: 6rem;
}

.faq-tab-area {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .faq-tab-area {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.faq-tab-area .inner {
  width: 100%;
  margin: auto;
}
.faq-tab-area .faq-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  border-bottom: 1px solid #B0B600;
}
@media (max-width: 767px) {
  .faq-tab-area .faq-tab-list {
    border-bottom: none;
  }
}
.faq-tab-area .faq-tab {
  padding: 1rem 1.6rem;
  min-width: 14rem;
  border: 1px solid #B0B600;
  border-bottom: none;
  background: #fff;
  color: #B0B600;
  font-size: 1.6rem;
  line-height: 1.4;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 12px 12px 0 0;
  font-weight: bold;
}
@media (max-width: 767px) {
  .faq-tab-area .faq-tab {
    font-size: 1.4rem;
    padding: 1.6rem 0;
    min-width: unset;
    width: calc(33.3333% - 0.534rem);
    border-radius: 12px;
    border: 1px solid #B0B600;
  }
}
.faq-tab-area .faq-tab.is-active {
  background: #B0B600;
  color: #fff;
}

.faq-panel-area {
  display: none;
  padding-top: 8rem;
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .faq-panel-area {
    padding-top: 6rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 6rem;
  }
}
.faq-panel-area.is-active {
  display: block;
}
.faq-panel-area .sec-head {
  padding-left: 0rem;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 2rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: #B0B600;
}
@media (max-width: 767px) {
  .faq-q {
    gap: 1rem;
    padding: 1.8rem 0;
  }
}
.faq-q .mark {
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
  font-family: "M PLUS 1", sans-serif;
  font-weight: bold;
  position: relative;
  top: -0.2rem;
}
@media (max-width: 767px) {
  .faq-q .mark {
    font-size: 2rem;
  }
}
.faq-q .txt {
  font-size: 1.6rem;
  line-height: 1.8;
  flex: 1;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media (max-width: 767px) {
  .faq-q .txt {
    font-size: 1.4rem;
    line-height: 1.6em;
  }
}
.faq-q .chev {
  width: 3.2rem;
  flex-shrink: 0;
  transition: 0.3s;
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 0 2rem;
}
@media (max-width: 767px) {
  .faq-a {
    padding: 0 0 1.8rem;
  }
}
.faq-a.is-open {
  display: block;
}

.faq-a-in {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  color: #B0B600;
}
@media (max-width: 767px) {
  .faq-a-in {
    gap: 1rem;
  }
}
.faq-a-in .mark {
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
  font-family: "Zen Maru Gothic";
  font-weight: bold;
}
@media (max-width: 767px) {
  .faq-a-in .mark {
    font-size: 2rem;
  }
}
.faq-a-in .txt {
  font-size: 1.6rem;
  line-height: 1.8;
  flex: 1;
  color: #434343;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .faq-a-in .txt {
    font-size: 1.4rem;
    line-height: 1.6em;
  }
}

.faq-item.is-open .faq-q .chev {
  transform: rotate(360deg);
}

.single-fv {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 0;
}

.content-wrapper {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
  padding-top: 6rem;
  padding-bottom: 12rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .content-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.detail-txt {
  color: #434343;
  font-size: 1.7rem;
  line-height: 2;
  word-break: break-word;
  overflow-wrap: break-word;
}
.detail-txt > *:first-child {
  margin-top: 0;
}
.detail-txt > *:last-child {
  margin-bottom: 0;
}
.detail-txt * {
  max-width: 100%;
}
.detail-txt p {
  font-size: 1.7rem;
  line-height: 2;
  margin: 0 0 2.4rem;
}
.detail-txt p * {
  font-size: 1em;
}
.detail-txt li * {
  font-size: 1em;
}
.detail-txt h1,
.detail-txt h2,
.detail-txt h3,
.detail-txt h4,
.detail-txt h5,
.detail-txt h6 {
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  font-weight: 700;
  line-height: 1.6;
  color: #434343;
  margin-top: 4.8rem;
  margin-bottom: 2rem;
}
.detail-txt h1 *,
.detail-txt h2 *,
.detail-txt h3 *,
.detail-txt h4 *,
.detail-txt h5 *,
.detail-txt h6 * {
  font-size: 1em;
  color: inherit;
}
.detail-txt h1 {
  font-size: 3.6rem;
}
.detail-txt h2 {
  font-size: 3rem;
  border-left: 0.3rem solid #B0B600;
  padding-left: 1.2rem;
}
.detail-txt h3 {
  font-size: 2.4rem;
  padding-left: 3.4rem;
  position: relative;
}
.detail-txt h3::before {
  content: "";
  width: 2.4rem;
  height: 0.2rem;
  background-color: #B0B600;
  position: absolute;
  left: 0;
  top: calc(50% - 0.1rem);
}
.detail-txt h4 {
  font-size: 2rem;
  border-bottom: 0.1rem solid #ddd;
  padding-bottom: 0.4rem;
}
.detail-txt h5 {
  font-size: 1.8rem;
}
.detail-txt h6 {
  font-size: 1.6rem;
}
.detail-txt ul {
  margin: 0 0 2.4rem;
  padding-left: 0;
}
.detail-txt ul li {
  position: relative;
  padding-left: 1em;
  font-size: 1.7rem;
  line-height: 1.9;
  list-style: none;
  margin-bottom: 0.8rem;
}
.detail-txt ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.detail-txt ul li:last-child {
  margin-bottom: 0;
}
.detail-txt ul li ul,
.detail-txt ul li ol {
  margin-top: 1rem;
  margin-bottom: 0;
}
.detail-txt ol {
  list-style-type: decimal;
  padding-left: 1.8em;
  margin: 0 0 2.4rem;
}
.detail-txt ol li {
  font-size: 1.7rem;
  line-height: 1.9;
  margin-bottom: 0.8rem;
}
.detail-txt ol li:last-child {
  margin-bottom: 0;
}
.detail-txt ol li::marker {
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0 !important;
  text-align: start !important;
  text-align-last: auto !important;
}
.detail-txt ol li ul,
.detail-txt ol li ol {
  margin-top: 1rem;
  margin-bottom: 0;
}
.detail-txt ol > li {
  list-style: decimal;
}
.detail-txt ol > li > ul {
  list-style-type: lower-latin;
}
.detail-txt ol > li > ul > li {
  list-style: lower-latin;
  margin-left: 1.8rem;
  padding-left: 0;
}
.detail-txt ol > li > ul > li::before {
  display: none;
}
.detail-txt ol > li > ul > li > ul {
  list-style-type: lower-roman;
}
.detail-txt ol > li > ul > li > ul > li {
  list-style: lower-roman;
  margin-left: 1.8rem;
  padding-left: 0;
}
.detail-txt ol > li > ul > li > ul > li::before {
  display: none;
}
.detail-txt blockquote {
  background-color: #f5f5f5;
  border-radius: 1.2rem;
  padding: 2rem;
  margin: 0 0 2.4rem;
}
.detail-txt blockquote p {
  margin: 0;
  font-size: 1.6rem;
  color: #444;
}
.detail-txt blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
}
.detail-txt .wrap {
  margin-bottom: 2.4rem;
}
.detail-txt .wp-block-table {
  margin: 0 0 2.4rem;
}
.detail-txt .wp-block-table table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.detail-txt .wp-block-table tbody,
.detail-txt .wp-block-table thead {
  -webkit-text-size-adjust: 100%;
}
.detail-txt .wp-block-table th,
.detail-txt .wp-block-table td {
  border: 1px solid #e0e0e0;
  padding: 1.2rem 1.6rem;
  line-height: 1.8;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0;
  vertical-align: middle;
}
.detail-txt .wp-block-table thead {
  border-bottom: unset;
}
.detail-txt .wp-block-table thead th {
  font-weight: 700;
  background-color: #f8f8f8;
}
.detail-txt table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 0 0 2.4rem;
}
.detail-txt table th,
.detail-txt table td {
  border: 1px solid #e0e0e0;
  padding: 1.2rem 1.6rem;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
  vertical-align: middle;
}
.detail-txt table th {
  font-weight: 700;
  background-color: #f8f8f8;
}
.detail-txt iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 700/450;
  height: auto;
  display: block;
  margin: 0 0 2.4rem;
}
.detail-txt a:not(.wp-element-button) {
  font-size: 1em;
  color: #434343;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .detail-txt a:not(.wp-element-button):hover {
    opacity: 0.7;
  }
}
.detail-txt .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 1.2rem 2.4rem;
  margin-bottom: 4rem;
  background-color: #ff7077;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
}
.detail-txt img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 3.2rem;
}
.detail-txt figure {
  margin: 0 0 3.2rem;
}
.detail-txt figure img {
  margin-bottom: 0;
}
.detail-txt figure figcaption {
  margin-top: 1rem;
  font-size: 1.3rem;
  line-height: 1.7;
  color: #666;
}
.detail-txt hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 4rem 0;
}
.detail-txt b,
.detail-txt strong {
  font-weight: 700;
}
.detail-txt em {
  font-style: italic;
}

.prev-next {
  display: flex;
  justify-content: space-between;
  margin-top: 8rem;
}
.prev-next a {
  display: flex;
  align-items: center;
  gap: 4rem;
  font-weight: bold;
  color: #B0B600;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .prev-next a {
    font-size: 1.4rem;
    gap: 1.2rem;
  }
}
.prev-next a img {
  width: 6.6rem;
}
@media (max-width: 767px) {
  .prev-next a img {
    width: 4rem;
  }
}

.related-info {
  background-color: white;
  padding-top: 0;
}

.thumb {
  padding-left: 11.2rem;
  padding-right: 11.2rem;
}
@media (max-width: 767px) {
  .thumb {
    padding-left: 0;
    padding-right: 0;
  }
}
.thumb img {
  height: auto;
  object-fit: cover;
}

.facility-detail .inner-inner {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .facility-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.facility-gallery-item {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  appearance: none;
  transition: opacity 0.3s;
}
.facility-gallery-item:hover {
  opacity: 0.85;
}
.facility-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.facility-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.facility-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .facility-modal {
    padding: 1rem;
  }
}

.facility-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.facility-modal-inner {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facility-modal-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.facility-modal-image img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .facility-modal-image img {
    max-height: calc(100vh - 6rem);
    border-radius: 2rem;
  }
}

.facility-modal-close {
  position: absolute;
  top: -2.4rem;
  right: -2.4rem;
  width: 4.8rem;
  height: 4.8rem;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (max-width: 767px) {
  .facility-modal-close {
    top: 1rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
    font-size: 2.4rem;
  }
}

.order-catalog {
  margin-top: 12rem;
  background: #f5f3f0;
  padding: 9rem 0 10rem;
}
@media (max-width: 767px) {
  .order-catalog {
    margin-top: 8rem;
    padding: 6rem 0;
  }
}
.order-catalog .inner-inner {
  max-width: 114rem;
  margin: 0 auto;
}

.order-item-group {
  background-color: #ebe8e3;
  padding: 5rem;
}
@media (max-width: 767px) {
  .order-item-group {
    padding: 5rem 2rem;
  }
}
.order-item-group h3 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #e6926b;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e6926b;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .order-item-group h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.order-item-group ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .order-item-group ul {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.order-item-group ul li {
  width: calc(25% - 1.5rem);
}
@media (max-width: 767px) {
  .order-item-group ul li {
    width: calc(50% - 1rem);
  }
}
.order-item-group ul li img {
  width: 100%;
  height: 38rem;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .order-item-group ul li img {
    height: 20rem;
  }
}
.order-item-group ul li p {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 1rem;
  color: #434343;
}
.order-item-group ul li p span {
  font-size: 0.7rem;
}
@media (max-width: 767px) {
  .order-item-group ul li p {
    font-size: 1.6rem;
  }
}

.order-item-guide {
  padding-bottom: 10rem;
}
.order-item-guide .desc {
  font-size: 1.6rem;
  margin-top: 4rem;
  text-align: center;
}
.order-item-guide .sec-head {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .order-item-guide .sec-head {
    padding-right: 0;
  }
}
.order-item-guide a {
  transition: all 0.3s;
}
.order-item-guide a:hover {
  opacity: 0.7;
}
.order-item-guide .order-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .order-item-guide .order-wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.order-item-guide .order-wrap .order-item-group {
  width: calc(50% - 1rem);
}
@media (max-width: 767px) {
  .order-item-guide .order-wrap .order-item-group {
    width: 100%;
  }
}
.order-item-guide .order-wrap .order-item-group ul li {
  width: calc(50% - 1rem);
}

em {
  font-size: 1em;
}

.scene-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.to-all {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  position: relative;
  z-index: 3;
}
.to-all a {
  width: 30rem;
  background-color: #fff;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #B0B600;
  color: #B0B600;
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .to-all a {
    font-size: 1.6rem;
    width: 24rem;
    height: 5rem;
  }
}
.to-all.to-all2 {
  margin-top: 8rem;
}
.to-all.to-all2 a {
  background-color: transparent;
}

.v-btn-wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .v-btn-wrapper {
    padding-bottom: 2rem;
  }
}
.v-btn-wrapper p {
  display: flex;
  margin: auto;
  width: 80%;
  height: 4rem;
  border: 1px solid #B0B600;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #B0B600;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .v-btn-wrapper p {
    font-size: 1.2rem;
    height: 2.8rem;
  }
}

/*# sourceMappingURL=style.css.map */
