@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  background: #FFFFFF;
  color: #333333;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0;
  font-weight: 400;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  margin: 0;
}

a {
  color: #0BA398;
  text-decoration: none;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
a:focus-visible {
  outline: 2px solid rgba(11, 163, 152, 0.35);
  outline-offset: 2px;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h1 {
  font-size: 35px;
  font-size: 3.5rem;
}

h2 {
  font-size: 28px;
  font-size: 2.8rem;
}

h3 {
  font-size: 22px;
  font-size: 2.2rem;
}

h4 {
  font-size: 18px;
  font-size: 1.8rem;
}

h5 {
  font-size: 15px;
  font-size: 1.5rem;
}

.smaller {
  font-size: 0.7em;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

hr {
  border: none;
  border-top: 1px solid #333333;
  margin: 0;
  opacity: 0.4;
}

#header {
  position: relative;
  z-index: 100;
}
#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 40px;
}
#header #logo {
  width: 120px;
}

.head-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

#header_nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
#header_nav a {
  display: inline-block;
  padding: 8px 10px;
  color: #333333;
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s;
}
#header_nav a:hover {
  opacity: 0.85;
}
#header_nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
#header_nav a:hover::after, #header_nav a.active::after {
  transform: scaleX(1);
}
#header_nav.hover-circle a::after {
  display: none;
}
#header_nav.hover-circle a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333333;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  opacity: 0;
  transition: all 0.5s ease;
}
#header_nav.hover-circle a:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.1;
}
#header_nav.hover-circle a.active::before {
  opacity: 0.1;
}

.sp-btn {
  display: none;
}

#nav-toggle,
#sp-nav {
  display: none;
}

#footer {
  position: relative;
  border-top: 10px solid #FFFFFF;
}
#footer .inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
#footer .inner .footer-left {
  width: 55%;
  padding-right: 5%;
}
#footer .inner .footer-right {
  width: 45%;
}

.flogo {
  margin-bottom: 20px;
  width: 140px;
}

.footer_navi {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333333;
}
.footer_navi ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin-inline: auto;
}
.footer_navi ul li {
  width: 20%;
  text-align: center;
}
.footer_navi ul li a {
  position: relative;
  display: inline-block;
  color: #333333;
  padding: 4px 0;
  font-size: 1.4rem;
}
.footer_navi ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #0BA398;
  transform: translateX(-50%) scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  opacity: 0.9;
}
.footer_navi ul li a:hover::after, .footer_navi ul li a:focus-visible::after, .footer_navi ul li a.is-current::after, .footer_navi ul li a[aria-current=page]::after {
  transform: translateX(-50%) scaleX(1);
}
.footer_navi ul li a:hover {
  opacity: 0.95;
}

#page-title .inner {
  max-width: 80%;
  margin: auto;
  padding: 100px 0;
}
#page-title .inner .title,
#page-title .inner .text {
  width: 50%;
  margin-bottom: 0;
}
#page-title .inner .title span,
#page-title .inner .text span {
  display: block;
}
#page-title .inner .title .ja::before,
#page-title .inner .text .ja::before {
  display: none;
}

.contact_btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact_btn a {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: #0BA398;
  color: #FFFFFF;
  border-radius: 90px;
  padding: 8px 24px;
  font-weight: 700;
  min-width: 220px;
}
.contact_btn a:hover {
  opacity: 0.6;
}
.contact_btn a.icon_link {
  min-width: auto;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 8px;
}
.contact_btn a.reserve {
  border-radius: 60px;
  aspect-ratio: initial;
  background: #333333;
  padding: 8px 24px;
  font-size: 0.9em;
}
.contact_btn img {
  inline-size: 24px;
  block-size: 24px;
  object-fit: contain;
}
.contact_btn p:nth-child(2) a {
  background: #FFC857;
}
.contact_btn.column {
  flex-direction: column;
  align-items: flex-start;
}
.contact_btn.big {
  gap: 16px;
}
.contact_btn.big a {
  padding: 32px 24px;
  min-width: 320px;
  font-size: 1.3em;
}
.contact_btn.dark a,
.contact_btn.dark p:nth-child(2) a {
  background: #FFFFFF;
  border: 1px solid #333333;
  color: #333333;
}
.contact_btn.dark a img,
.contact_btn.dark p:nth-child(2) a img {
  filter: invert(1);
}

.contact_icon {
  width: 30px;
}

#form .form-contents {
  padding: 0px !important;
}
#form dl {
  margin-bottom: 0 !important;
}
#form dl dt:not(.pattern-exclusion) span.required::before {
  background: #0BA398 !important;
}
#form dl dd:not(.pattern-exclusion) {
  border-bottom: none !important;
  padding-bottom: 10px !important;
}
#form dl dd:not(.pattern-exclusion) input.textarea {
  height: 45px !important;
}
#form .submit-btn {
  background: #0BA398 !important;
  color: #FFFFFF !important;
  border: 1px solid #0BA398 !important;
  border-radius: 999px !important;
}
#form .submit-btn:hover {
  opacity: 0.8 !important;
}
#form .form-radio {
  display: flex;
  flex-direction: column;
  padding-left: 0 !important;
}

.thanks {
  padding-top: 150px !important;
}

.container {
  --container-max: 1200px;
  --container-pb: 80px;
  --container-pi: 60px;
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: var(--container-pb);
  padding-inline: var(--container-pi);
}
.container--base {
  --container-max: 1200px;
}
.container--wide {
  --container-max: 1500px;
}
.container--full {
  --container-max: 100vw;
}
.container--p-xl {
  --container-pb: 120px;
  --container-pi: 0;
}
.container--p-l {
  --container-pb: 80px;
  --container-pi: 0;
}
.container--p-m {
  --container-pb: 60px;
  --container-pi: 0;
}
.container--p-s {
  --container-pb: 40px;
  --container-pi: 0;
}
.container--full {
  padding-left: 0;
  padding-right: 0;
}
.container--top-only {
  padding-block-end: 0 !important;
}
.container--btm-only {
  padding-block-start: 0 !important;
}

.box {
  position: relative;
  margin-inline: auto;
  z-index: 3;
  padding: clamp(16px, 4vw, 30px);
}
.box--bwidth {
  max-width: 1200px;
  margin-inline: auto;
}
.box--small {
  max-width: 1100px;
  margin-inline: auto;
}
.box--small2 {
  max-width: 1000px;
  margin-inline: auto;
}
.box--small3 {
  max-width: 900px;
  margin-inline: auto;
}
.box--small4 {
  max-width: 800px;
  margin-inline: auto;
}
.box--small5 {
  max-width: 700px;
  margin-inline: auto;
}
.box--content-fit {
  display: grid;
  place-items: center;
}
.box--content-fit > * {
  inline-size: min(100%, var(--inner-max, max-content));
}
.box--content-fit img {
  max-inline-size: 100%;
}
.box--pd60 {
  padding: clamp(30px, 4vw, 60px);
}
.box--pd-30-60 {
  padding: 30px 60px;
}
.box--bd {
  border: 1px solid #0BA398;
}
.box--more {
  --more-closed: 350px;
}
.box--more .more-content {
  max-height: var(--more-closed);
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.box--more.is-open .more-content {
  max-height: 2000px;
}
.box--more .more-btn {
  display: block;
  width: fit-content;
  margin: 16px 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #F19802;
  background: rgba(241, 152, 2, 0.06);
  color: #F19802;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.box--more .more-btn:hover {
  background: rgba(241, 152, 2, 0.12);
}
.box--more .more-btn:focus-visible {
  outline: 2px solid rgb(253.6419753086, 193.2098765432, 91.3580246914);
  outline-offset: 2px;
}

.l-column {
  --gap: 40px;
  --cols: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: stretch;
  justify-content: flex-start;
}
.l-column > li,
.l-column .col-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 0 0 calc((100% - var(--gap) * (var(--cols) - 1)) / var(--cols));
}
.l-column > li > *:first-child,
.l-column .col-item > *:first-child {
  margin-top: 0;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
}
.l-column.col2 {
  --cols: 2;
}
.l-column.col3 {
  --cols: 3;
}
.l-column.col4 {
  --cols: 4;
}
.l-column.col5 {
  --cols: 5;
}

.hero--marquee {
  -webkit-transform: translateZ(0);
}
.hero--marquee .hero__viewport {
  position: relative;
  overflow: hidden;
  padding-block: 12px;
}
.hero--marquee .hero__track {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: var(--gap, 22px);
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: hero-marquee var(--duration, 60s) linear infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.hero--marquee .hero__slide {
  flex: 0 0 auto;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  line-height: 0;
  width: clamp(320px, 55vw, 1180px);
}
.hero--marquee .hero__slide img {
  display: block;
  inline-size: 100%;
  block-size: clamp(340px, 56vw, 700px);
  object-fit: cover;
}
.hero--marquee .hero__overlay {
  padding: 40px 40px 20px;
}
.hero--marquee .hero__overlay h2 {
  font-size: 35px;
  font-size: 3.5rem;
  margin: 0 0 8px;
  font-weight: 700;
}
.hero--marquee .hero__overlay p {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.8;
}
.hero--marquee {
  /* クローンを1回（=2セット分）にするので距離は -50% でOK */
}
@keyframes hero-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--marquee .hero__track {
    animation: none !important;
    transform: none !important;
  }
}
.title {
  margin: 0 auto 40px;
  position: relative;
  text-align: center;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.4;
  color: #333333;
}
.title::before {
  content: "";
  display: block;
  width: 105px;
  height: 35px;
  margin: 0 auto 8px;
  background: url(../img/title-deco-top.png) no-repeat center/contain;
}
.title .en {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  display: block;
  color: #F19802;
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.title .ja {
  display: block;
  font-size: 3.6rem;
  line-height: 1.4;
}
.title .ja::before {
  display: none;
}
.title--m0 {
  margin-bottom: 0;
}
.title--m20 {
  margin-bottom: 20px;
}
.title--slim {
  margin: 0 auto 20px;
}
.title--left {
  margin-inline: 0;
  text-align: left;
}
.title--left::before {
  margin-left: 0;
}
.title--no-deco::before {
  display: none;
}
.title--slash {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.title--slash::before, .title--slash::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex: 0 0 auto;
}
.title--slash::before {
  background-image: url(../img/title-deco-left.png);
  margin-right: 0;
  transform: none;
  height: 50px;
  width: 60px;
  background-color: transparent;
}
.title--slash::after {
  background-image: url(../img/title-deco-right.png);
  margin-left: 0;
  transform: none;
  height: 50px;
  width: 60px;
  background-color: transparent;
}
.title--bgbar {
  display: flex;
  align-items: center;
  padding: 0.3em 0.7em;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  font-size: 2rem;
}
.title--bgbar::before {
  display: inline-block;
  width: 5px;
  height: 1.5em;
  margin-right: 0.5em;
  background-color: #0BA398;
  content: "";
}
.title--num {
  position: relative;
  padding-top: 1.5em;
  padding-left: 1em;
}
.title--num::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  color: #F19802;
  font-size: 3em;
  line-height: 1;
  content: attr(data-number);
  pointer-events: none;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  opacity: 0.5;
}
.title--border {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  padding: 10px;
  width: 100%;
}

.ttl-wave {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}
.ttl-wave::before, .ttl-wave::after {
  content: "〜";
  flex-shrink: 0;
}

.btn {
  text-align: center;
  margin-top: 40px;
}
.btn a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  color: #2A2A2A;
  border: 1px solid #2A2A2A;
  border-radius: 30px;
  transition: 0.3s;
  font-weight: 600;
  min-width: 240px;
  font-size: 0.9em;
  text-align: center;
  justify-content: center;
}
.btn a::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F5E56B;
  transition: all 0.2s ease;
}
.btn a:hover {
  opacity: 0.6;
}
.btn a:hover::before {
  transform: translate(5px, -50%);
}
.btn.slim {
  margin-top: 20px;
}
.btn--left {
  text-align: left;
}
.btn--primary a {
  background: #0BA398;
  color: #FFFFFF;
  border-color: #F5E56B;
}
.btn--outline a {
  background: #FFFFFF;
  color: #0BA398;
  border-color: #0BA398;
}
.btn--ghost a {
  background: transparent;
  border-color: transparent;
  color: #0BA398;
}

.card {
  height: 100%;
  display: flex;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  gap: 20px;
  padding: 32px;
}
.card__img {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
  width: 200px;
}
.card__img::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.card__img img,
.card__img picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.card__body {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card__body .btn {
  text-align: left;
}
.card__title {
  font-size: 2rem;
}
.card__text {
  font-size: 0.9em;
}
.card--ratio-4x3 .card__img::before {
  padding-top: 75%;
}
.card--ratio-3x2 .card__img::before {
  padding-top: 66.6667%;
}
.card--ratio-1x1 .card__img::before {
  padding-top: 100%;
}
.card--ratio-21x9 .card__img::before {
  padding-top: 42.8571%;
}

.l-column > li,
.l-column .col-item {
  display: flex;
}
.l-column > li > .card,
.l-column .col-item > .card {
  inline-size: 100%;
}

.news-list {
  display: grid;
  gap: 10px;
  max-width: 800px;
  margin-inline: auto;
}
.news-list li:first-child {
  border-top: 1px solid #eee;
}
.news-list li {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}
.news-list time {
  color: #666;
  font-size: 1.3rem;
}
.news-list .cat {
  color: #F19802;
  font-weight: 700;
  font-size: 1.3rem;
}
.news-list .ttl {
  font-size: 1.5rem;
}

.blog {
  padding-inline: clamp(16px, 4vw, 40px);
}
.blog .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog .blog-card {
  width: calc((100% - 40px) / 3);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #ddd;
}
.blog .blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.blog .blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.blog .blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f3f4f6;
}
.blog .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.blog .blog-img {
  /* ホバーで軽くズーム */
}
.blog-card:hover .blog .blog-img img {
  transform: scale(1.04);
}
.blog .blog-title {
  font-weight: 600;
  padding: 14px;
  font-size: 1.6rem;
}

.blog-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.blog-pager > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  border: 1px solid #d9dde3;
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  user-select: none;
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
  font-size: 14px;
}
.blog-pager > div:hover {
  filter: brightness(0.98);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.blog-pager > div:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.blog-pager > div:first-child {
  background: #f7f8fa;
}
.blog-pager > div:last-child {
  background: #0BA398;
  color: #fff;
  border-color: #cfd6e0;
}
.blog-pager > div:last-child:hover {
  filter: brightness(1.05);
}
.blog-pager > div:only-child {
  background: #0BA398;
  color: #fff;
  border-color: #cfd6e0;
}

.blog-detail {
  background: #fefefe;
  border-radius: 20px;
  padding: 2em;
}
.blog-detail .post__title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 24px;
  color: #333;
}
.blog-detail .post__date {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: rgba(61, 61, 61, 0.6);
}
.blog-detail .post__body {
  margin-top: 20px;
}

.media {
  display: grid;
  grid-template-columns: var(--media-img, 120px) 1fr;
  gap: var(--media-gap, 100px);
}
.media__img {
  inline-size: 100%;
  block-size: 100%;
}
.media__img img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  display: block;
}
.media__body {
  line-height: 1.8;
}
.media--sm {
  --media-img: 80px;
}
.media--md {
  --media-img: 120px;
}
.media--lg {
  --media-img: 180px;
}
.media--xl {
  --media-img: 240px;
}
.media--2xl {
  --media-img: 360px;
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #0BA398;
}
.alert--success {
  background: #f0faf2;
  border-color: #c9e7ce;
  color: #1a7f3a;
}
.alert--warning {
  background: #fff8e6;
  border-color: #ffe1a5;
  color: #8a5b00;
}
.alert--danger {
  background: #fff1f1;
  border-color: #ffc7c7;
  color: #a52b2b;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
}

.badge--accent {
  background: #F19802;
  color: #FFFFFF;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: m #0BA398;
}

.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tabs__btn {
  width: 48%;
  padding: 16px 24px;
  border-radius: 8px 8px 0 0;
  background: #0BA398;
  color: #FFFFFF;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}
.tabs__btn.is-active {
  background: #FFFFFF;
  color: #0BA398;
  border: 2px solid #0BA398;
  border-bottom: none;
}
.tabs__panel {
  display: none;
  background: #FFFFFF;
  border-radius: 8px;
}
.tabs__panel.is-active {
  display: block;
  padding: 40px;
}

.contents-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 120px;
}
.contents-nav > li a {
  background: #F19802;
  color: #FFFFFF;
  border-radius: 60px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1.2em;
  min-width: 240px;
  display: block;
  text-align: center;
  border: 1px solid #F19802;
}
.contents-nav > li a:hover {
  color: #F19802;
  background: #FFFFFF;
}
.contents-nav > li:nth-child(2) a {
  background: #FFC857;
  border: 1px solid #FFC857;
}
.contents-nav > li:nth-child(2) a:hover {
  color: #FFC857;
  background: #FFFFFF;
}

.breadcrumb {
  max-width: 90%;
  margin: auto;
  padding: 30px;
  font-size: 12px;
}
.breadcrumb a {
  color: #2A2A2A;
  opacity: 0.6;
  text-decoration: underline;
}
.breadcrumb .kigou {
  font-size: 0.6em;
  padding: 0 0.5em;
}

.list--disc li {
  position: relative;
}
.list--disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list--disc li::before {
  content: "●";
  color: #F19802;
  font-size: 9px;
  margin-right: 5px;
}
.list--disc.sbc li::before {
  color: #0BA398;
}
.list--inline li {
  display: inline-block;
}
.list--inline li:not(:last-of-type) {
  margin-right: 5px;
}
.list--check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list--check li {
  position: relative;
  padding-left: 26px;
  line-height: 1.8;
}
.list--check li:not(:last-of-type) {
  margin-bottom: 6px;
}
.list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  border-left: 2px solid #F19802;
  border-bottom: 2px solid #F19802;
  transform: rotate(-45deg);
}
.list--check.sbc li::before {
  border-color: #0BA398;
}
.list--num li figure {
  position: relative;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.list--num li figure::before {
  content: "";
  position: absolute;
  right: -1em;
  top: -1.5em;
  width: 5em;
  height: 5em;
}
.list--num li:nth-child(1) figure::before {
  background: url(../img/01.png) no-repeat center/contain;
}
.list--num li:nth-child(2) figure::before {
  background: url(../img/02.png) no-repeat center/contain;
}
.list--num li:nth-child(3) figure::before {
  background: url(../img/03.png) no-repeat center/contain;
}
.list li {
  text-indent: -1em;
  padding-left: 1em;
}

.tbl {
  width: 100%;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 4px 2px;
}
.tbl tr th,
.tbl tr td {
  padding: 10px 15px;
}
.tbl tr th {
  font-weight: 600;
  width: 30%;
  text-align: center;
  background: #0BA398;
  color: #FFFFFF;
}
.tbl tr td {
  background: #FFFFFF;
}
.tbl:not(.tbl--hours) tr > th {
  width: 30%;
}
.tbl--alternating {
  border-collapse: collapse;
}
.tbl--alternating tr {
  background: #FFC857;
}
.tbl--alternating tr:nth-child(odd) {
  background: #FFFFFF;
}
.tbl--alternating tr th,
.tbl--alternating tr td {
  background: transparent;
  color: #333333;
}
.tbl {
  /* ボーダー */
}
.tbl--border {
  border-collapse: collapse;
}
.tbl--border tr th,
.tbl--border tr td {
  border-bottom: 2px solid #ddd;
  background: transparent;
}
.tbl--border tr th {
  border-bottom: 2px solid #0BA398;
  color: #333333;
}
.tbl--bubble {
  border-collapse: separate;
  border-spacing: 0 4px;
}
.tbl--bubble tr th,
.tbl--bubble tr td {
  background: #FFFFFF;
  border-radius: 0 8px 8px 0;
}
.tbl--bubble tr td {
  padding-left: 24px;
}
.tbl--bubble tr th {
  background-color: #0BA398;
  color: #fff;
  border-radius: 8px 0 0 8px;
  position: relative;
  vertical-align: middle;
}
.tbl--bubble tr th::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 10px solid #0BA398;
  z-index: 2;
}
.tbl--hours {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
}
.tbl--hours col.col-time {
  width: 11.5rem;
}
@media (max-width: 600px) {
  .tbl--hours col.col-time {
    width: 9.5rem;
  }
}
.tbl--hours tr th,
.tbl--hours tr td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
  background: #fff;
}
.tbl--hours tr th {
  width: auto;
}
.tbl--hours thead th {
  background: #0BA398;
  font-weight: 700;
  color: #fff;
}
.tbl--hours thead th:first-child {
  text-align: center;
}
.tbl--hours .nowrap {
  white-space: nowrap;
}
.tbl--hours tbody th {
  text-align: center;
  white-space: nowrap;
  background: #fff;
  font-weight: 700;
  color: #333333;
  width: auto;
}
.tbl--hours tbody td {
  position: relative;
}
.tbl--hours tbody td .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tbl--hours tbody td[data-open=true]::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: #0BA398;
}
.tbl--hours tbody td[data-open=false]::before {
  content: "—";
  font-size: 14px;
  line-height: 1;
  opacity: 0.45;
}
.tbl--price tr td {
  border-bottom: 1px solid #ddd;
}
.tbl--price tr th,
.tbl--price tr td {
  vertical-align: middle;
}
.tbl--price tr th {
  width: 40% !important;
}

/* モバイルで詰まりそうなら */
@media (max-width: 480px) {
  .hours__row {
    grid-template-columns: 6em 1fr;
    gap: 8px;
  }
  .tbl--hours th,
  .tbl--hours td {
    padding: 12px 8px;
  }
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.accordion {
  position: relative;
  overflow: hidden;
}
.accordion > .ttl {
  position: relative;
  font-size: 1.6rem;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
.accordion > .inner {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.accordion.is-open > .inner {
  max-height: 2000px;
  opacity: 1;
  padding: 12px 16px;
}
.accordion.faq {
  border-color: #F19802;
}
.accordion.faq > .ttl {
  padding: 16px;
  padding-left: 4em;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #efefef;
}
.accordion.faq > .ttl::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  inline-size: 36px;
  block-size: 36px;
  border-radius: 50%;
  background: #F19802;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.accordion.faq > .ttl::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  inline-size: 10px;
  block-size: 10px;
  border-right: 2px solid #F19802;
  border-bottom: 2px solid #F19802;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}
.accordion.faq > .ttl:hover {
  background: rgb(254.5654320988, 235.2271604938, 202.6345679012);
}
.accordion.faq > .inner {
  position: relative;
  margin-top: 4px;
}
.accordion.faq > .inner::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 1em;
  inline-size: 32px;
  block-size: 32px;
  border-radius: 50%;
  background: #FFC857;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.accordion.faq > .inner p {
  margin: 0;
  padding-left: 3em;
  padding-right: 2em;
  line-height: 1.8;
}
.accordion.faq.is-open > .ttl::after {
  transform: translateY(-50%) rotate(-135deg);
}
.accordion.faq.is-open > .inner {
  padding: 8px 16px;
}
.accordion.faq.is-open > .inner::before {
  opacity: 1;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.gallery img {
  display: inline-block;
  width: calc((100% - 30px) / 3);
  border-radius: 8px;
  object-fit: cover;
  height: 350px;
}
.gallery--picture picture {
  display: inline-block;
  width: calc((100% - 30px) / 3);
}
.gallery--picture picture img {
  width: 100%;
}

.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #2A2A2A;
  font-weight: 700;
}
.pagination .is-current {
  background: #F19802;
  color: #FFFFFF;
  border-color: #F19802;
}

/* Swiper base fix */
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
}
.swiper-slide img,
.swiper-slide picture {
  display: block;
  width: 100%;
  height: clamp(340px, 56vw, 700px);
  object-fit: cover;
}

.ggmap iframe {
  height: 350px;
  width: 100%;
}

/* ==============================
  Voice（お客様の声）
============================== */
.voice {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ddd;
}
.voice:hover {
  transform: translateY(-3px);
}
.voice__img {
  width: 300px;
  text-align: center;
}
.voice__img img {
  margin: auto;
  width: 80%;
  height: auto;
  object-fit: cover;
}
.voice__body {
  width: calc(100% - 340px);
  padding: 20px;
  line-height: 1.8;
}
.voice__name {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: #0BA398;
}
.voice__comment {
  font-size: clamp(14px, 1.6vw, 16px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none !important;
}

.flex {
  display: flex;
}
.flex.fd-row {
  flex-direction: row;
}
.flex.fd-col {
  flex-direction: column;
}

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

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

.ai-end {
  align-items: flex-end;
}

.ai-stretch {
  align-items: stretch;
}

.jc-start {
  justify-content: flex-start;
}

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

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

.jc-between {
  justify-content: space-between;
}

.fw-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.pt-12 {
  padding-top: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.b-m5 {
  margin-bottom: 5px;
}

.b-m10 {
  margin-bottom: 10px;
}

.b-m20 {
  margin-bottom: 20px;
}

.b-m30 {
  margin-bottom: 30px;
}

.b-m40 {
  margin-bottom: 40px;
}

.b-m60 {
  margin-bottom: 60px;
}

.b-m80 {
  margin-bottom: 80px;
}

.t-m10 {
  margin-top: 10px;
}

.t-m20 {
  margin-top: 20px;
}

.t-m40 {
  margin-top: 40px;
}

.w-100pe {
  width: 100%;
}

.h-100pe {
  height: 100%;
}

.asp-1-1 {
  aspect-ratio: 1/1;
}

.img-cover {
  object-fit: cover;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-32 {
  border-radius: 32px;
}

.b-r8 {
  border-radius: 8px;
}

.b-r16 {
  border-radius: 16px;
}

.b-r24 {
  border-radius: 24px;
}

.b-r50pe {
  border-radius: 50%;
}

.line-h200 {
  line-height: 2;
}

.text-center,
.tcenter,
.tcenter_pc {
  text-align: center;
}

.text-right,
.tright {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.bold2 {
  font-weight: 900;
}

.bigger {
  font-size: 1.2em;
  line-height: 2;
}

.smaller {
  font-size: 0.65em;
  letter-spacing: 0;
}

.en {
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.color01 {
  color: #0BA398;
}

.color02 {
  color: #F19802;
}

.color-w {
  color: #FFFFFF !important;
}

.bg_line {
  background: #06C755 !important;
}

.bg_instagram {
  background: #e4405f !important;
}

.bg_line {
  background: #06C755 !important;
}

.bg_youtube {
  background: #ff0000 !important;
}

.para-gap p + p {
  margin-top: 20px;
}
.para-gap--large p + p {
  margin-top: 30px;
}
.para-gap--mini p + p {
  margin-top: 12px;
}

.bg {
  position: relative;
}
.bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg--img01::after {
  background: url(../img/bg-01.png) no-repeat center/contain;
  opacity: 0.6;
}
.bg--img02 {
  margin-top: 100px;
}
.bg--img02::after {
  background: url(../img/wave3.svg) no-repeat center bottom/100%;
  top: -150px;
  height: 190px;
}
.bg--img03::after {
  background: url(../img/wave4.svg) no-repeat center bottom/100%;
  top: -150px;
  height: 190px;
  z-index: 1;
}
.bg--img04::after {
  background: url(../img/bg-04-1.png) no-repeat top left/100%;
  width: 60%;
  left: -20%;
  opacity: 0.6;
}
.bg--img04::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: url(../img/bg-04-2.png) no-repeat bottom left/100%;
  transform: scale(-1, 1);
  opacity: 0.6;
}
.bg--round {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 60px;
  overflow: hidden;
}

.bg--w {
  background: #fff;
}

.bg--w2 {
  background: rgba(255, 255, 255, 0.5);
}

.bg--cream {
  background: #FBF6E9;
}

.bg--main {
  background: #0BA398;
}

.bg--sub {
  background: #F19802;
}

.bg--sub2 {
  background: #FFC857;
}

.bg--gray {
  background: #f5f5f5;
}

.u-decor {
  position: absolute;
  bottom: 10%;
  inline-size: min(28vw, 320px);
  opacity: 0.9;
  pointer-events: none;
  width: fit-content;
}
.u-decor img {
  display: block;
  inline-size: 100%;
  height: auto;
}
.u-decor--left {
  left: clamp(8px, 4vw, 40px);
  top: 20%;
}
.u-decor--right {
  right: clamp(8px, 4vw, 40px);
  bottom: 20%;
}
.u-decor.w150 img {
  width: 150px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z--1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.spbr {
  display: none;
}

.hidden {
  overflow: hidden;
}

.marker {
  background: linear-gradient(transparent 70%, rgba(255, 147, 109, 0.3) 0%);
  display: inline;
  border-radius: 2px;
  padding: 0 0.1em;
}

.text-link a {
  color: #0BA398;
  text-decoration: underline;
}
.text-link.white a {
  color: #FFFFFF;
}

.shadow {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.tcenter_sp {
  text-align: center;
}

[data-ani] {
  --a-duration: 3.8s;
  --a-delay: 0s;
  --a-distance: 24px;
  --a-ease: cubic-bezier(.2, .7, .2, 1);
  --a-blur: 0px;
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity var(--a-duration) var(--a-ease) var(--a-delay), transform var(--a-duration) var(--a-ease) var(--a-delay), filter var(--a-duration) var(--a-ease) var(--a-delay);
  will-change: opacity, transform, filter;
}
[data-ani].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* フェード（指定がある時だけ透明スタート） */
[data-ani*=fade]:not(.is-visible) {
  opacity: 0;
}

[data-ani*=up]:not(.is-visible) {
  transform: translate3d(0, var(--a-distance), 0);
}

[data-ani*=down]:not(.is-visible) {
  transform: translate3d(0, calc(var(--a-distance) * -1), 0);
}

[data-ani*=left]:not(.is-visible) {
  transform: translate3d(var(--a-distance), 0, 0);
}

[data-ani*=right]:not(.is-visible) {
  transform: translate3d(calc(var(--a-distance) * -1), 0, 0);
}

[data-ani*=zoom-in]:not(.is-visible) {
  transform: scale(0.94);
}

[data-ani*=zoom-out]:not(.is-visible) {
  transform: scale(1.06);
}

[data-ani*=blur]:not(.is-visible) {
  filter: blur(var(--a-blur, 8px));
}

[data-ani*=rotate]:not(.is-visible) {
  transform: rotate(2.5deg);
}

.ani-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.ani-stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--a-ease) var(--a-delay), transform 0.6s var(--a-ease) var(--a-delay);
}

.ani-stagger.is-visible > *:nth-child(1) {
  transition-delay: calc(var(--a-delay, 0s) + 0s);
}

.ani-stagger.is-visible > *:nth-child(2) {
  transition-delay: calc(var(--a-delay, 0s) + 0.06s);
}

.ani-stagger.is-visible > *:nth-child(3) {
  transition-delay: calc(var(--a-delay, 0s) + 0.12s);
}

.ani-stagger.is-visible > *:nth-child(4) {
  transition-delay: calc(var(--a-delay, 0s) + 0.18s);
}

.ani-stagger.is-visible > *:nth-child(5) {
  transition-delay: calc(var(--a-delay, 0s) + 0.24s);
}

.ani-stagger.is-visible > *:nth-child(6) {
  transition-delay: calc(var(--a-delay, 0s) + 0.3s);
}

.ani-stagger.is-visible > *:nth-child(7) {
  transition-delay: calc(var(--a-delay, 0s) + 0.36s);
}

.ani-stagger.is-visible > *:nth-child(8) {
  transition-delay: calc(var(--a-delay, 0s) + 0.42s);
}

.ani-stagger.is-visible > *:nth-child(9) {
  transition-delay: calc(var(--a-delay, 0s) + 0.48s);
}

.ani-stagger.is-visible > *:nth-child(10) {
  transition-delay: calc(var(--a-delay, 0s) + 0.54s);
}

@media (prefers-reduced-motion: reduce) {
  [data-ani],
  .ani-stagger > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
[data-fx] {
  --fx-duration: 6s;
  --fx-delay: 0s;
  --fx-amp: 8px;
  /* 振幅(px) */
  --fx-rot: 3deg;
  /* 回転幅 */
  --fx-ease: ease-in-out;
  --fx-iter: infinite;
  --fx-dir: normal;
  --fx-fill: both;
  display: inline-block;
  will-change: transform, filter;
  animation-delay: var(--fx-delay);
  animation-iteration-count: var(--fx-iter);
  animation-direction: var(--fx-dir);
  animation-fill-mode: var(--fx-fill);
  animation-timing-function: var(--fx-ease);
}

/* ふわふわ(上下) */
[data-fx*=float] {
  animation-name: fx-float-y;
  animation-duration: var(--fx-duration);
}

@keyframes fx-float-y {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateY(var(--fx-amp));
  }
}
/* 横ゆらゆら */
[data-fx*=float][data-fx*=x],
[data-fx*=sway][data-fx*=x] {
  animation-name: fx-float-x;
}

@keyframes fx-float-x {
  0% {
    transform: translateX(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateX(var(--fx-amp));
  }
}
/* なめらかスウェイ（回転＋上下少し） */
[data-fx*=sway] {
  animation-name: fx-sway;
  transform-origin: center;
  animation-duration: var(--fx-duration);
}

@keyframes fx-sway {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(var(--fx-rot));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
}
/* なめらかスウェイ反転（回転＋上下少し） */
[data-fx*=sway-rev] {
  animation-name: fx-sway-rev;
}

@keyframes fx-sway-rev {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
}
/* 振り子（支点を上に） */
[data-fx*=pendulum] {
  transform-origin: top center;
  animation-name: fx-pendulum;
}

@keyframes fx-pendulum {
  0% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: rotate(var(--fx-rot));
  }
  100% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
}
/* くるくる（連続回転） */
[data-fx*=spin] {
  animation-name: fx-spin;
  animation-duration: calc(var(--fx-duration) * 1.2);
  animation-timing-function: linear;
}

@keyframes fx-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ぷかぷか + ちょい拡縮 */
[data-fx*=float][data-fx*=soft],
[data-fx*=float][data-fx*=gentle] {
  animation-name: fx-float-soft;
}

@keyframes fx-float-soft {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1)) scale(0.995);
  }
  100% {
    transform: translateY(var(--fx-amp)) scale(1.005);
  }
}
/* 小刻みゆれ（やわらか） */
[data-fx*=wiggle] {
  animation-name: fx-wiggle;
  animation-duration: calc(var(--fx-duration) * 0.6);
}

@keyframes fx-wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(calc(var(--fx-rot) * 0.6));
  }
  50% {
    transform: rotate(calc(var(--fx-rot) * -0.6));
  }
  75% {
    transform: rotate(calc(var(--fx-rot) * 0.4));
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 速さ */
[data-fx*=fast] {
  animation-duration: calc(var(--fx-duration) * 0.3);
}

[data-fx*=slow] {
  animation-duration: calc(var(--fx-duration) * 1.6);
}

[data-fx*=slower] {
  animation-duration: calc(var(--fx-duration) * 2.2);
}

/* 振幅 */
[data-fx*=sm] {
  --fx-amp: 6px;
  --fx-rot: 2deg;
}

[data-fx*=md] {
  --fx-amp: 10px;
  --fx-rot: 3deg;
}

[data-fx*=lg] {
  --fx-amp: 16px;
  --fx-rot: 5deg;
}

/* 方向／挙動 */
[data-fx*=alternate] {
  animation-direction: alternate;
}

/* デフォの往復を明示したい時 */
[data-fx*=reverse] {
  --fx-dir: reverse;
}

/* 回転の反転などに */
[data-fx*=pause-hover]:hover {
  animation-play-state: paused;
}

/* 親が見えたら動かす（入場後に発動させたい場合） */
.is-visible [data-fx-start=visible] {
  animation-play-state: running;
}

[data-fx-start=visible] {
  animation-play-state: paused;
}

/* アクセシビリティ：動きを抑制 */
@media (prefers-reduced-motion: reduce) {
  [data-fx] {
    animation: none !important;
    transform: none !important;
  }
}
.title .ja::before {
  display: none !important;
}

body {
  background: #FFFFFF;
  color: #333333;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.sec-label {
  text-align: center;
  margin-bottom: 16px;
}
.sec-label__deco {
  display: block;
  width: 105px;
  height: 35px;
  margin: 0 auto 8px;
  background: url(../img/title-deco-top.png) no-repeat center/contain;
}
.sec-label__text {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #F19802;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
}
@media (max-width: 920px) {
  .sec-label {
    margin-bottom: 8px;
  }
  .sec-label__deco {
    width: 80px;
    height: 25px;
    margin: 0 auto;
  }
  .sec-label__text {
    font-size: 2.4rem;
  }
}

.sec-title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 800;
  color: #333333;
  line-height: 1.4;
  margin: 0 0 60px;
}
.sec-title--left {
  text-align: left;
}
.sec-title--bold {
  font-weight: 800;
}
.sec-title--slash {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.sec-title--slash::before, .sec-title--slash::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex: 0 0 auto;
}
.sec-title--slash::before {
  background-image: url(../img/title-deco-left.png);
}
.sec-title--slash::after {
  background-image: url(../img/title-deco-right.png);
}
.sec-title .hl {
  color: #0BA398;
  font-size: 1.3em;
}
@media (max-width: 920px) {
  .sec-title {
    font-size: 2.6rem;
  }
  .sec-title--left {
    text-align: center;
  }
  .sec-title {
    margin: 0 0 30px;
  }
}
@media (max-width: 440px) {
  .sec-title--slash::before, .sec-title--slash::after {
    width: 40px;
    height: 30px;
  }
  .sec-title--slash {
    gap: 10px;
  }
}

.sec-lead {
  text-align: center;
  line-height: 2;
  margin: 0 auto 56px;
  max-width: 720px;
}
@media (max-width: 440px) {
  .sec-lead {
    margin: 0 auto 40px;
  }
}

.deco-kira {
  display: block;
  text-align: center;
  margin: 16px auto;
  pointer-events: none;
  position: absolute;
}
.deco-kira img {
  display: inline-block;
  width: 600px;
  height: auto;
}
.deco-kira--top {
  margin-bottom: 32px;
}
.deco-kira--btm {
  margin-top: 32px;
}
.deco-kira--center {
  margin: 32px auto 0;
}
@media (max-width: 720px) {
  .deco-kira img {
    width: 350px;
  }
}
@media (max-width: 440px) {
  .deco-kira img {
    width: 250px;
  }
  .deco-kira--center {
    margin: 16px auto 0;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
#header.is-scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
#header.is-scrolled .inner {
  padding: 8px 32px;
}
#header.is-scrolled .inner #logo img {
  width: clamp(220px, 22vw, 200px);
}
#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  max-width: 100%;
}
#header #logo {
  width: auto;
  flex: 0 0 auto;
}
#header #logo a {
  display: block;
}
#header #logo img {
  width: clamp(220px, 22vw, 300px);
  height: auto;
  display: block;
}

.head-actions {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.head-actions__ig a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #e4405f;
  border-radius: 50%;
}
.head-actions__ig a img {
  width: 24px;
  height: 24px;
}
.head-actions__ig a:hover {
  opacity: 0.85;
}
.head-actions__tel a {
  display: flex;
  flex-direction: column;
  padding: 8px 24px;
  border: 2px solid #0BA398;
  border-radius: 999px;
  color: #0BA398;
  line-height: 1.2;
  text-align: center;
}
.head-actions__tel a .tel-num {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #0BA398;
}
.head-actions__tel a .tel-hours {
  font-size: 1.1rem;
  color: #0BA398;
  font-weight: 700;
}
.head-actions__tel a:hover {
  background: #F0F9F8;
}
.head-actions__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #F19802;
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.6rem;
}
.head-actions__contact a img {
  width: 30px;
}
.head-actions__contact a:hover {
  opacity: 0.85;
}
.head-actions--sp {
  flex-direction: column;
  width: 100%;
}
.head-actions--sp li {
  width: 100%;
}
.head-actions--sp a {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

@media (max-width: 920px) {
  .head-actions {
    display: none;
  }
}
#nav-toggle {
  display: none;
}

@media (max-width: 920px) {
  #nav-toggle {
    position: fixed;
    right: 12px;
    top: 12px;
    inline-size: 44px;
    block-size: 44px;
    display: grid;
    place-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(11, 163, 152, 0.2);
    border-radius: 8px;
    cursor: pointer;
    z-index: 120;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
  #nav-toggle .bars {
    position: relative;
    inline-size: 24px;
    block-size: 16px;
    display: grid;
    align-content: space-between;
  }
  #nav-toggle .bars i {
    display: block;
    inline-size: 100%;
    block-size: 2.5px;
    border-radius: 2px;
    background: #08847B;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  #nav-toggle.is-active .bars i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #nav-toggle.is-active .bars i:nth-child(2) {
    opacity: 0;
  }
  #nav-toggle.is-active .bars i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  #sp-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.25s ease;
    z-index: -10;
    pointer-events: none;
  }
  #sp-nav.open {
    opacity: 1;
    pointer-events: auto;
    z-index: 110;
  }
  #sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    min-width: 260px;
  }
  #sp-nav li:not(:first-child) {
    margin-top: 1em;
  }
  #sp-nav li a {
    font-size: 1.8rem;
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid #0BA398;
    display: block;
    padding-bottom: 1em;
  }
  body.fixed {
    overflow: hidden;
  }
}
.sp-btn {
  display: none;
}
.sp-btn p:nth-child(1) {
  background: #08847B;
}
.sp-btn p:nth-child(2) {
  background: #F19802;
}
.sp-btn p:nth-child(3) {
  background: #e4405f;
}
.sp-btn p a {
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10px 4px;
  gap: 4px;
}
.sp-btn p a img {
  max-width: 25px;
  height: 25px;
}
.sp-btn p a span {
  font-size: 1.3rem;
  line-height: 1.1;
}

@media (max-width: 920px) {
  .sp-btn {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  .sp-btn p {
    width: 33.3333333333%;
  }
}
.fv {
  position: relative;
  background: #FFFFFF;
  padding: 0 0 80px;
  overflow: hidden;
}
.fv::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: 40px;
  width: 200px;
  height: 200px;
  background: url(../img/fv-deco.png) no-repeat center/contain;
  z-index: 0;
  pointer-events: none;
}
.fv::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 80px;
  width: 180px;
  height: 180px;
  background: url(../img/fv-deco.png) no-repeat center/contain;
  transform: scaleX(-1);
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}
.fv__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 100px 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fv__visual {
  position: relative;
}
.fv__visual-img {
  position: absolute;
  left: -150px;
  top: -600px;
  width: 900px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}
.fv__visual-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 920px) {
  .fv__visual-img {
    width: 600px;
  }
}
.fv__copy {
  padding: 16px 0;
}
.fv__title {
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 24px;
  color: #333333;
}
.fv__title-main {
  display: block;
  font-size: clamp(3.2rem, 5vw, 6rem);
  letter-spacing: 0.02em;
}
.fv__title-main .sub {
  display: block;
  margin-top: 12px;
  font-size: clamp(2.8rem, 2.4vw, 3.4rem);
  font-weight: 700;
  color: #333333;
}
.fv__title-sub {
  display: block;
  margin-top: 12px;
  font-size: clamp(2.8rem, 2.4vw, 3.4rem);
  font-weight: 700;
  color: #333333;
}
.fv__lead {
  font-size: 2.2rem;
  line-height: 1.9;
  margin: 0 0 32px;
  font-weight: 700;
}
.fv__lead strong {
  color: #0BA398;
}
.fv__points {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 420px;
}
.fv__points li {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.fv__points-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 2px solid #0BA398;
  border-radius: 50%;
  background: #F0F9F8;
}
.fv__points-icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}
.fv__points-label {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
  color: #333333;
}
.fv__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
  margin-left: -100px;
}
.fv__btns p {
  margin: 0;
  flex: 1 1 220px;
}
.fv__btns p a {
  font-size: 2.2rem;
  display: block;
  max-width: 350px;
  text-align: center;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 22px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.6rem;
  color: #FFFFFF;
  min-height: 64px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-pill--teal {
  background: #0BA398;
  color: #FFFFFF;
  box-shadow: 0 6px 0 0 #08847B;
}
.btn-pill--teal:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 0 #08847B;
}
.btn-pill--orange {
  background: #F19802;
  color: #FFFFFF;
  box-shadow: 0 6px 0 0 #C77C0E;
}
.btn-pill--orange:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 0 #C77C0E;
}
.btn-pill img {
  filter: brightness(0) invert(1);
}

@media (max-width: 920px) {
  .fv {
    padding: 0 0 60px;
  }
  .fv::before {
    width: 140px;
    height: 140px;
    left: -30px;
    bottom: 20px;
  }
  .fv::after {
    width: 100px;
    height: 100px;
    right: -20px;
    top: 60px;
  }
  .fv__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 60px 16px 0;
  }
  .fv__visual-img {
    top: -400px;
  }
  .fv__title-main {
    font-size: 2.8rem;
  }
  .fv__title-main .sub {
    font-size: 1.6rem;
  }
  .fv__lead {
    font-size: 1.5rem;
  }
  .fv__points {
    gap: 4px;
  }
  .fv__points-icon {
    width: 64px;
    height: 64px;
  }
  .fv__points-label {
    font-size: 1.1rem;
  }
  .fv__btns p a {
    font-size: 1.6rem;
  }
  .btn-pill {
    padding: 18px 20px;
    font-size: 1.4rem;
    min-height: 56px;
  }
}
@media (max-width: 720px) {
  .fv__visual-img {
    width: 480px;
  }
  .fv__copy {
    padding: 0;
  }
}
@media (max-width: 440px) {
  .fv__inner {
    flex-direction: column;
    gap: 16px;
  }
  .fv__visual-img {
    position: initial;
    width: 260px;
    margin-top: -150px;
    margin-right: -150px;
  }
  .fv__title {
    text-align: center;
    margin: 0 0 16px;
  }
  .fv__lead {
    text-align: center;
    margin: 0 0 24px;
  }
  .fv__btns {
    margin-left: auto;
    margin-right: auto;
  }
  .fv__btns p {
    flex: auto;
  }
  .fv__points {
    margin: 0 0 32px;
  }
  .fv::after {
    right: 45%;
  }
}
.sec-about {
  position: relative;
  background: #FFFFFF;
}
.sec-about .container {
  position: relative;
}
.sec-about::before {
  content: "";
  position: absolute;
  top: -5%;
  left: 40%;
  width: 600px;
  height: 100%;
  background: url(../img/deco-kirakira.png) no-repeat center top/contain;
}
.sec-about::after {
  content: "";
  position: absolute;
  bottom: -2%;
  left: 0%;
  width: 500px;
  height: 100%;
  background: url(../img/deco-kirakira.png) no-repeat center bottom/contain;
}
@media (max-width: 720px) {
  .sec-about::before {
    top: -2%;
    left: 50%;
    width: 350px;
  }
  .sec-about::after {
    width: 300px;
  }
}
@media (max-width: 440px) {
  .sec-about::before {
    width: 200px;
    top: 1%;
  }
  .sec-about::after {
    width: 200px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.about-grid__text p {
  line-height: 2;
}
.about-grid__visual figure {
  margin: 0;
}
.about-grid__visual figure img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
  margin: 0 auto;
}
@media (max-width: 440px) {
  .about-grid__visual figure img {
    aspect-ratio: initial;
  }
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.about-points__label {
  display: inline-block;
  background: #0BA398;
  color: #FFFFFF;
  padding: 6px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-points__text {
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 440px) {
  .about-points__label {
    width: 100%;
    text-align: center;
  }
  .about-points {
    margin: 0 0 24px;
  }
}

/* PC用 */
.about-gallery {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 56px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.about-gallery .swiper-wrapper {
  display: flex;
  width: max-content;
  align-items: center;
  transition: none !important;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.about-gallery .swiper-slide {
  flex: 0 0 calc((100vw - 48px) / 3.5);
  width: calc((100vw - 48px) / 3.5);
  margin-right: 16px;
}
.about-gallery .swiper-slide img {
  width: 100%;
  height: clamp(220px, 24vw, 320px);
  object-fit: cover;
  border-radius: 24px;
  display: block;
  transform: translateZ(0);
}
.about-gallery.is-marquee .swiper-wrapper {
  animation: about-marquee 55s linear infinite;
}
.about-gallery:hover.is-marquee .swiper-wrapper {
  animation-play-state: paused;
}

/* スマホ用 */
@media (max-width: 920px) {
  .about-gallery {
    margin-top: 32px;
  }
  .about-gallery .swiper-slide {
    flex: 0 0 calc((100vw - 24px) / 2.5);
    width: calc((100vw - 24px) / 2.5);
    margin-right: 12px;
  }
  .about-gallery .swiper-slide img {
    height: 220px;
    border-radius: 16px;
  }
}
@media (max-width: 440px) {
  .about-gallery {
    margin-top: 0;
  }
  .about-gallery .swiper-slide img {
    height: 150px;
  }
}
@keyframes about-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-gallery.is-marquee .swiper-wrapper {
    animation: none !important;
  }
}
@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-points {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.sec-onayami {
  text-align: center;
}
.sec-onayami .container {
  position: relative;
}

.onayami-list {
  list-style: none;
  padding: 0;
  max-width: 880px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.onayami-list li {
  background: #FFFFFF;
  border: 2px solid #0BA398;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
}
.onayami-list__title {
  font-weight: 700;
  color: #0BA398;
  font-size: 2.6rem;
  margin: 0 0 8px;
  line-height: 1.4;
}
.onayami-list__text {
  color: #333333;
  margin: 0;
}
@media (max-width: 920px) {
  .onayami-list__title {
    font-size: 2rem;
  }
}
@media (max-width: 440px) {
  .onayami-list li {
    padding: 14px 10px;
  }
}

.onayami-illust {
  margin: 0 auto 24px;
  max-width: 520px;
}
.onayami-illust img {
  width: 100%;
  height: auto;
  display: block;
}

.onayami-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}
.onayami-arrow span {
  display: block;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 22px solid #F19802;
}

.onayami-msg {
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 700;
  color: #333333;
}
.onayami-msg strong {
  color: #0BA398;
}
.onayami-msg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 8' preserveAspectRatio='none'><path d='M0 4 Q 7.5 0 15 4 T 30 4 T 45 4 T 60 4' fill='none' stroke='%231FA28C' stroke-width='2.4' stroke-linecap='round'/></svg>");
  background-repeat: repeat-x;
  background-size: 60px 8px;
}

@media (max-width: 720px) {
  .onayami-list {
    grid-template-columns: 1fr;
  }
  .onayami-msg {
    font-size: 1.8rem;
  }
}
.cta-card {
  position: relative;
  width: 95%;
  max-width: 95%;
  margin: 0 auto;
  background: #0BA398;
  color: #FFFFFF;
  border-radius: 120px;
  padding: 56px 32px;
  text-align: center;
}
.cta-card__icon {
  display: block;
  margin: 0 auto 16px;
  line-height: 0;
}
.cta-card__icon img {
  width: 100px;
}
.cta-card__title {
  color: #FFFFFF;
  font-size: 3.6rem;
  font-weight: 800;
  margin: 0 0 16px;
}
.cta-card__lead {
  color: #FFFFFF;
  line-height: 1.9;
  margin: 0 0 32px;
  font-size: 2rem;
}
.cta-card__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 920px) {
  .cta-card__title {
    font-size: 2.4rem;
  }
  .cta-card__icon img {
    width: 60px;
  }
  .cta-card__lead {
    font-size: 1.6rem;
    margin: 0 0 24px;
  }
}
@media (max-width: 440px) {
  .cta-card__icon img {
    width: 45px;
  }
}

.cta-info {
  background: #FFFFFF;
  color: #333333;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cta-info__label {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #333333;
}
.cta-info__tel {
  margin: 0 0 4px;
  font-weight: 800;
  font-size: 3.5rem;
  color: #333333;
}
.cta-info__tel-prefix {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin-right: 6px;
  font-size: 0.85em;
}
.cta-info__tel a {
  color: #333333;
}
.cta-info__hours {
  color: #888888;
  margin: 0;
  font-weight: 500;
}
.cta-info__btn {
  margin: 8px 0 0;
}
.cta-info__btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F19802;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 2rem;
}
.cta-info__btn a img {
  width: 30px;
}
.cta-info__btn a:hover {
  opacity: 0.88;
}
.cta-info__btn img {
  filter: brightness(0) invert(1);
}
@media (max-width: 440px) {
  .cta-info {
    padding: 16px;
  }
  .cta-info__label {
    margin-bottom: 0;
  }
  .cta-info__btn a {
    font-size: 1.6rem;
  }
}

@media (max-width: 720px) {
  .cta-card {
    padding: 40px 16px;
    border-radius: 24px;
  }
  .cta-card__btns {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.merit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
  max-width: 1000px;
  margin-inline: auto;
}

.merit-card__img {
  position: relative;
  margin: 0 0 16px;
  border-radius: 16px;
  overflow: visible;
}
.merit-card__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.merit-card__num img {
  object-fit: contain;
  height: 80px;
  width: 80px;
  border-radius: none;
  position: absolute;
  top: -20px;
  left: -20px;
}
.merit-card__title {
  color: #0BA398;
  font-weight: 700;
  font-size: 2.6rem;
  margin: 0 0 12px;
  text-align: center;
  line-height: 1.4;
}
.merit-card__text {
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 920px) {
  .merit-card__title {
    font-size: 2rem;
  }
}
@media (max-width: 440px) {
  .merit-card__num img {
    left: -10px;
  }
}

@media (max-width: 720px) {
  .merit-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.sec-service {
  background: #F0F9F8;
}

.service-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.service-card {
  text-align: center;
}
.service-card__img {
  margin: 0 0 12px;
  border-radius: 24px;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.service-card__title {
  color: #0BA398;
  font-weight: 700;
  font-size: 2.6rem;
  margin: 0 0 6px;
  line-height: 1.4;
}
.service-card__text {
  color: #333333;
  margin: 0;
}
@media (max-width: 720px) {
  .service-card__title {
    font-size: 2rem;
  }
}

.service-note {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.service-note__title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0 0 16px;
}
.service-note__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: #0BA398;
}
.service-note__text {
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 720px) {
  .service-note {
    padding: 24px 16px;
  }
  .service-note__title {
    font-size: 2rem;
  }
  .service-note__text {
    text-align: left;
  }
}

.service-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.service-info__label {
  display: block;
  background: #F19802;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 16px;
}
.service-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: fit-content;
  margin-inline: auto;
}
.service-info__list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.9;
}
.service-info__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 1em;
  color: #0BA398;
  font-size: 1rem;
}

@media (max-width: 920px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .service-list {
    grid-template-columns: 1fr;
  }
  .service-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-info__label {
    font-size: 2rem;
    padding: 4px 16px;
  }
}
.sec-teinei .sec-title {
  margin-bottom: 40px;
}

.teinei-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.teinei-grid__img {
  margin: 0;
}
.teinei-grid__img img {
  width: 100%;
  height: auto;
  max-width: 560px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 32px;
  display: block;
  margin: 0 auto;
}
.teinei-grid__copy p {
  line-height: 2;
}

@media (max-width: 920px) {
  .teinei-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 980px;
  margin-inline: auto;
  position: relative;
}

.flow-item {
  display: grid;
  grid-template-columns: 120px 1fr 340px;
  gap: 24px;
  align-items: center;
  padding: 16px 0 32px;
  position: relative;
}
.flow-item__num {
  display: block;
  width: 120px;
  height: 120px;
  line-height: 0;
}
.flow-item__num img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.flow-item__body {
  padding-right: 16px;
}
.flow-item__label {
  display: inline-block;
  background: #0BA398;
  color: #FFFFFF;
  padding: 6px 22px;
  border-radius: 999px;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 12px;
}
.flow-item__text {
  line-height: 1.9;
  margin: 0;
  color: #333333;
}
.flow-item__img {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}
.flow-item__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/11;
  object-fit: cover;
  display: block;
}

.flow-note {
  margin-top: 24px;
  line-height: 1.9;
  color: #333333;
}

@media (max-width: 920px) {
  .flow-item {
    grid-template-columns: 90px 1fr;
    gap: 16px;
  }
  .flow-item__num {
    width: 90px;
    height: 90px;
  }
  .flow-item__img {
    grid-column: 1/3;
  }
  .flow-item:not(:last-child)::after {
    left: 29px;
    top: 60px;
  }
}
@media (max-width: 720px) {
  .flow-item__label {
    font-size: 1.8rem;
  }
}
@media (max-width: 440px) {
  .flow-item {
    grid-template-columns: 60px 1fr;
  }
  .flow-item__num {
    width: 60px;
    height: 60px;
  }
  .flow-item__text {
    line-height: 1.5;
  }
}
.sec-faq {
  background: #F0F9F8;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  background: transparent;
}
.faq-item__q, .faq-item__a {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 18px 56px 18px 64px;
  position: relative;
  line-height: 1.8;
  margin: 0;
}
.faq-item__q {
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background 0.2s ease;
}
.faq-item__q:hover {
  background: rgba(11, 163, 152, 0.04);
}
.faq-item__q::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid #0BA398;
  border-bottom: 2px solid #0BA398;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item__q::-webkit-details-marker {
  display: none;
}
.faq-item__a {
  background: transparent;
  margin-top: 8px;
}
.faq-item__a .faq-item__mark {
  color: #F19802;
}
.faq-item__mark {
  position: absolute;
  left: 24px;
  top: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #0BA398;
  font-size: 2rem;
  font-style: italic;
}
.faq-item[open] > .faq-item__q::after {
  transform: translateY(-30%) rotate(-135deg);
}

@media (max-width: 720px) {
  .faq-item__q,
  .faq-item__a {
    padding: 16px 16px 16px 48px;
    font-size: 1.4rem;
  }
  .faq-item__mark {
    left: 16px;
    top: 14px;
    font-size: 1.8rem;
  }
}
.sec-contact {
  scroll-margin-top: 80px;
}

.contact-lead {
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.9;
}

.contact-tel-box {
  max-width: 600px;
  margin: 0 auto 48px;
  border: 2px solid #0BA398;
  border-radius: 30px;
  padding: 28px 24px;
  text-align: center;
  background: #FFFFFF;
}
.contact-tel-box__label {
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0 0 8px;
}
.contact-tel-box__num {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  margin: 0 0 4px;
}
.contact-tel-box__num .prefix {
  font-size: 0.7em;
  margin-right: 6px;
}
.contact-tel-box__num a {
  color: #333333;
}
.contact-tel-box__hours {
  font-size: 1.6rem;
  color: #888888;
  margin: 0;
}
@media (max-width: 440px) {
  .contact-tel-box {
    padding: 28px 16px;
  }
  .contact-tel-box__label {
    margin: 0;
  }
  .contact-tel-box__num {
    font-size: 3.2rem;
    margin: 0;
  }
  .contact-tel-box__hours {
    font-size: 1.4rem;
  }
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #0BA398;
}

.badge-required {
  display: inline-block;
  background: #0BA398;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  background: #f3f3f3;
  font-size: 1.5rem;
  font-family: inherit;
  color: #333333;
  transition: border-color 0.2s ease;
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form input[type=tel]::placeholder,
.contact-form textarea::placeholder {
  color: #b2b2b2;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(11, 163, 152, 0.35);
  outline-offset: 2px;
  border-color: #0BA398;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.form-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.form-radios label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  cursor: pointer;
}
.form-radios input[type=radio] {
  accent-color: #0BA398;
  inline-size: 16px;
  block-size: 16px;
}

.form-actions {
  text-align: center;
  margin-top: 32px;
}

.form-submit {
  background: #F19802;
  color: #FFFFFF;
  border: none;
  border-radius: 999px;
  padding: 16px 64px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease;
  min-height: 56px;
}
.form-submit:hover {
  opacity: 0.88;
}

#footer {
  background: #FFFFFF;
  border-top: none;
  padding-bottom: 0;
}
#footer .container {
  padding-block-end: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 60px 40px;
}
@media (max-width: 720px) {
  .footer-inner {
    padding: 30px 20px;
  }
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 300px;
  height: auto;
}
.footer-logo__sub {
  color: #888888;
  font-size: 1.1rem;
}
.footer-address {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 24px;
}

.footer-actions {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0 0 16px;
}
.footer-actions .btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #0BA398;
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 700;
  font-size: 2rem;
}
.footer-actions .btn-tel .prefix {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.9em;
}
.footer-actions .btn-tel:hover {
  opacity: 0.88;
}
.footer-actions .btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #F19802;
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.8rem;
}
.footer-actions .btn-contact img {
  width: 30px;
}
.footer-actions .btn-contact:hover {
  opacity: 0.88;
}
.footer-actions .btn-ig {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #e4405f;
  border-radius: 50%;
}
.footer-actions .btn-ig img {
  width: 24px;
  height: 24px;
}
.footer-actions .btn-ig:hover {
  opacity: 0.88;
}
@media (max-width: 440px) {
  .footer-actions {
    flex-direction: column;
    text-align: center;
  }
  .footer-actions li {
    width: 100%;
  }
  .footer-actions li a {
    width: 100%;
    justify-content: center;
    margin-inline: auto;
  }
}

.footer-link-list {
  width: fit-content;
}
@media (max-width: 440px) {
  .footer-link-list {
    width: 100%;
  }
}

.footer-hp-btn {
  margin: 0;
}
.footer-hp-btn a {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid #0BA398;
  border-radius: 999px;
  color: #0BA398;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
.footer-hp-btn a:hover {
  background: #F0F9F8;
}

.footer-map {
  border-radius: 16px;
  overflow: hidden;
}
.footer-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.copyright {
  background: #0BA398;
  color: #FFFFFF;
  text-align: center;
  padding: 16px;
  font-size: 1.4rem;
  margin: 0;
}
.copyright small {
  color: #FFFFFF;
}

@media (max-width: 920px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
    align-items: center;
  }
  .footer-link-list {
    margin-inline: auto;
  }
  .footer-map iframe {
    height: 240px;
  }
  .copyright {
    padding: 16px 16px 80px;
  }
}
@media (max-width: 440px) {
  .copyright {
    font-size: 1.2rem;
  }
}
.container--p-l {
  padding: 60px 24px;
}

@media (max-width: 720px) {
  .container--p-l {
    padding: 40px 16px;
  }
}
@media (max-width: 920px) {
  #footer .inner {
    flex-direction: column;
    gap: 20px;
  }
  #footer .inner .footer-left,
  #footer .inner .footer-right {
    width: 100%;
    padding-left: 0;
  }
  #header .contact_btn {
    display: none;
  }
}
@media (max-width: 720px) {
  #form .form-radio {
    padding-top: 0 !important;
  }
  body {
    font-size: 1.6rem;
  }
  .flogo {
    margin-left: auto;
    margin-right: auto;
  }
  .tbl--hours tr th,
  .tbl--hours tr td {
    padding: 7px 5px;
    font-size: 12px;
  }
  .contact_btn {
    justify-content: center;
  }
  .bg--img02 {
    margin-top: 50px;
  }
  #header {
    padding-top: 0;
  }
  #header .inner {
    max-width: 100%;
    justify-content: space-between;
  }
  .head-right {
    justify-content: flex-end;
    padding-right: 60px;
  }
  #header_nav {
    display: none;
  }
  #sp-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.25s ease;
    z-index: -10;
  }
  #sp-nav.open {
    opacity: 1;
    pointer-events: auto;
    z-index: 110;
  }
  #sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    min-width: 260px;
  }
  #sp-nav li:not(:first-child) {
    margin-top: 1em;
  }
  #sp-nav li a {
    font-size: 18px;
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid #0BA398;
    display: block;
    padding-bottom: 1em;
  }
  #sp-nav .contact_btn {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  #sp-nav .contact_btn p:last-child {
    width: 100%;
  }
  #sp-nav .contact_btn p:last-child a {
    color: #FFFFFF;
    max-width: 260px;
    margin-inline: auto;
  }
  .media {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--media-gap, 20px);
  }
  .box {
    padding: 15px;
  }
  .box--pd60 {
    padding: 30px;
  }
  body.fixed {
    overflow: hidden;
  }
  .u-decor-spflex {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .u-decor {
    position: initial;
  }
  .u-decor.w150 img {
    width: 100px;
  }
  .hero--single .hero__content {
    inset: auto 0 8% 0;
  }
  .hero--slider .hero__overlay {
    padding: 14px;
  }
  .hero--slider .hero__overlay h1 {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .hero--slider .hero-prev,
  .hero--slider .hero-next {
    inline-size: 40px;
    block-size: 40px;
  }
  #page-title .inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
  }
  #page-title .inner .title,
  #page-title .inner .text {
    width: 100%;
  }
  .container--p-xl {
    padding: 60px 15px;
  }
  .container--p-l {
    padding: 40px 15px;
  }
  .container--p-m {
    padding: 30px 15px;
  }
  .container--p-s {
    padding: 20px 15px;
  }
  .l-column {
    row-gap: 20px;
  }
  .l-column.reverse {
    flex-direction: column-reverse;
  }
  .l-column.col2 {
    --cols: 1;
  }
  .l-column.col3 {
    --cols: 1;
  }
  .l-column.col4 {
    --cols: 2;
  }
  .l-column.col5 {
    --cols: 3;
  }
  .sp-contents {
    display: block !important;
  }
  .pc-contents {
    display: none !important;
  }
  .spbr {
    display: block;
  }
  .btn {
    margin-top: 20px;
    width: 100%;
  }
  .btn a {
    width: 100%;
    justify-content: center;
  }
  .btn--left {
    text-align: center;
  }
  .btn--left a {
    margin-left: auto;
  }
  #footer .inner .footer-left {
    padding-right: 0;
  }
  .footer_navi ul li {
    width: 50%;
    text-align: left;
  }
  .footer_navi ul li a {
    text-align: center;
  }
  .grid {
    gap: 12px;
  }
  .blog-detail {
    padding: 0;
  }
}
@media (max-width: 440px) {
  .para-gap p + p {
    margin-top: 10px;
  }
  .pcbr {
    display: none;
  }
  .box {
    padding: 15px 0;
  }
  #header .contact_btn {
    display: none;
  }
  #header .inner {
    padding: 16px;
  }
  #header .inner #logo {
    width: 200px;
  }
  #header.is-scrolled .inner {
    padding: 8px 16px;
  }
  body#top::after {
    width: 24rem;
    height: 7rem;
  }
  .hero::after {
    width: 250px;
    height: 140px;
    bottom: -50px;
  }
  .hero--marquee .hero__overlay h1 {
    font-size: 2.5rem;
  }
  .hero--marquee .hero__overlay {
    padding: 20px 15px;
  }
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-weight: 700;
  }
  h1 {
    font-size: 26px;
    font-size: 2.6rem;
  }
  h2 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
  h4 {
    font-size: 15px;
    font-size: 1.5rem;
  }
  h5 {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .tcenter_pc {
    text-align: left;
  }
  .card {
    padding: 24px;
  }
  .title {
    margin-bottom: 30px;
  }
  .contact_btn.big {
    flex-direction: column;
  }
  .contact_btn.big a {
    padding: 16px 24px;
  }
  .bg--img02::after {
    top: -39px;
    height: 40px;
  }
  .bg--img03::after {
    top: -39px;
    height: 40px;
  }
  .bg-chosei {
    padding-bottom: 50px;
  }
  .bg-chosei2 {
    padding-bottom: 50px;
    margin-bottom: 40px;
  }
  #page-title .inner {
    max-width: 90%;
    gap: 20px;
  }
  .gallery img {
    width: 100%;
  }
  .tabs__panel.is-active {
    padding: 20px 10px;
  }
  .accordion.faq > .ttl {
    padding-left: 3em;
    padding-right: 2.5em;
  }
  .accordion.faq > .ttl::before {
    left: 8px;
    inline-size: 32px;
    block-size: 32px;
  }
  .accordion.faq > .ttl::after {
    right: 10px;
    inline-size: 7px;
    block-size: 7px;
  }
  .accordion.faq > .inner::before {
    left: 8px;
  }
  .accordion.faq > .inner p {
    padding-right: 0;
    padding-left: 2em;
  }
  .contents-nav {
    flex-direction: column;
    margin-bottom: 60px;
  }
  .voice {
    flex-direction: column !important;
    padding: 20px;
  }
  .voice__img {
    width: 100%;
  }
  .voice__img img {
    max-width: 120px;
  }
  .voice__body {
    width: 100%;
    padding: 0;
  }
  .tabs__btn {
    padding: 8px;
    font-size: 0.8em;
  }
  .tabs__panel.is-active {
    padding: 0;
  }
  .tabs__panel .t-m20 {
    margin-top: 10px;
  }
  .accordion > .ttl,
  .accordion.faq > .inner p {
    font-size: 0.9em;
  }
  .bg--round {
    border-radius: 30px;
  }
  .blog-list .blog-card {
    width: 48%;
  }
  .box--pd60 {
    padding: 30px 15px;
  }
  .blog-pager {
    margin-top: 20px;
  }
  .blog-page section {
    margin-top: 30px;
  }
}
@media print {
  a {
    text-decoration: underline;
  }
  .btn,
  .chip,
  .badge,
  .alert {
    box-shadow: none;
    background: transparent;
  }
}