@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 400;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

a {
  color: #FF9A00;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
}
a:focus-visible {
  outline: 2px solid rgba(9, 163, 223, 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 10px 40px;
}
#header #logo {
  width: 120px;
}

.head-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 40px;
}

#header_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header_nav a {
  display: inline-block;
  padding: 8px 10px;
  color: #333333;
  text-decoration: none;
  position: relative;
  -webkit-transition: opacity 0.2s;
  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;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
#header_nav a:hover::after, #header_nav a.active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
#header_nav.hover-circle a::after {
  display: none;
}
#header_nav.hover-circle a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #333333;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#header_nav.hover-circle a:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(1.5);
          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 #FEFEFE;
}
#footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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: #FF9A00;
  -webkit-transform: translateX(-50%) scaleX(0);
          transform: translateX(-50%) scaleX(0);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: opacity 0.35s ease, -webkit-transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease, -webkit-transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  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 {
  -webkit-transform: translateX(-50%) scaleX(1);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.contact_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  background: #FF9A00;
  color: #FEFEFE;
  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;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact_btn p:nth-child(2) a {
  background: #65d14e;
}
.contact_btn.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          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: #FEFEFE;
  border: 1px solid #333333;
  color: #333333;
}
.contact_btn.dark a img,
.contact_btn.dark p:nth-child(2) a img {
  -webkit-filter: invert(1);
          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: #FF9A00 !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: #FF9A00 !important;
  color: #FEFEFE !important;
  border: 1px solid #FF9A00 !important;
  border-radius: 999px !important;
}
#form .submit-btn:hover {
  opacity: 0.8 !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 {
  -webkit-padding-after: 0 !important;
          padding-block-end: 0 !important;
}
.container--btm-only {
  -webkit-padding-before: 0 !important;
          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, -webkit-max-content));
  inline-size: min(100%, var(--inner-max, -moz-max-content));
  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 #FF9A00;
}
.box--more {
  --more-closed: 350px;
}
.box--more .more-content {
  max-height: var(--more-closed);
  overflow: hidden;
  -webkit-transition: max-height 0.6s ease;
  transition: max-height 0.6s ease;
}
.box--more.is-open .more-content {
  max-height: 2000px;
}
.box--more .more-btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 16px 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #09a3df;
  background: rgba(9, 163, 223, 0.06);
  color: #09a3df;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.box--more .more-btn:hover {
  background: rgba(9, 163, 223, 0.12);
}
.box--more .more-btn:focus-visible {
  outline: 2px solid rgb(85.8275862069, 202.6551724138, 248.1724137931);
  outline-offset: 2px;
}

.l-column {
  --gap: 40px;
  --cols: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--gap);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.l-column > li,
.l-column .col-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - var(--gap) * (var(--cols) - 1)) / var(--cols));
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          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: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gap, 22px);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  -webkit-animation: hero-marquee var(--duration, 60s) linear infinite;
          animation: hero-marquee var(--duration, 60s) linear infinite;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.hero--marquee .hero__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          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);
  -o-object-fit: cover;
     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 */
}
@-webkit-keyframes hero-marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@keyframes hero-marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--marquee .hero__track {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
.title {
  margin: 0 auto 60px;
  position: relative;
}
.title .en {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  display: block;
  color: #FF9A00;
  font-size: 0.6em;
}
.title .ja {
  position: relative;
}
.title .ja::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3em;
  height: 3em;
  background: url(../img/hone.png) no-repeat center/contain;
  opacity: 0.1;
}
.title--m0 {
  margin-bottom: 0;
}
.title--slim {
  margin: 0 auto 20px;
}
.title--left {
  margin-left: 0;
}
.title--slash {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.title--slash::before, .title--slash::after {
  width: 2px;
  height: 30px;
  background-color: #FF9A00;
  content: "";
}
.title--slash::before {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  margin-right: 30px;
}
.title--slash::after {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  margin-left: 30px;
}
.title--bgbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: #FF9A00;
  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: #09a3df;
  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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3em;
}
.ttl-wave::before, .ttl-wave::after {
  content: "〜";
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

.card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FEFEFE;
  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;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.card__body {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          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: -webkit-box;
  display: -ms-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
  background: #fff;
  text-decoration: none;
  color: inherit;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.news-list time {
  color: #666;
  font-size: 1.3rem;
}
.news-list .cat {
  color: #09a3df;
  font-weight: 700;
  font-size: 1.3rem;
}
.news-list .ttl {
  font-size: 1.5rem;
}

.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%;
  -o-object-fit: cover;
     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 #FF9A00;
}
.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: #09a3df;
  color: #FEFEFE;
}

.chip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: m #FF9A00;
}

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

.contents-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-bottom: 120px;
}
.contents-nav > li a {
  background: #09a3df;
  color: #FEFEFE;
  border-radius: 60px;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1.2em;
  min-width: 240px;
  display: block;
  text-align: center;
  border: 1px solid #09a3df;
}
.contents-nav > li a:hover {
  color: #09a3df;
  background: #FEFEFE;
}
.contents-nav > li:nth-child(2) a {
  background: #65d14e;
  border: 1px solid #65d14e;
}
.contents-nav > li:nth-child(2) a:hover {
  color: #65d14e;
  background: #FEFEFE;
}

.breadcrumb {
  max-width: 90%;
  margin: auto;
  padding: 30px;
  font-size: 12px;
}
.breadcrumb a {
  color: #333333;
  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: #09a3df;
  font-size: 9px;
  margin-right: 5px;
}
.list--disc.sbc li::before {
  color: #FF9A00;
}
.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 #09a3df;
  border-bottom: 2px solid #09a3df;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.list--check.sbc li::before {
  border-color: #FF9A00;
}
.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: #FF9A00;
  color: #FEFEFE;
}
.tbl tr td {
  background: #FEFEFE;
}
.tbl:not(.tbl--hours) tr > th {
  width: 30%;
}
.tbl--alternating {
  border-collapse: collapse;
}
.tbl--alternating tr {
  background: #65d14e;
}
.tbl--alternating tr:nth-child(odd) {
  background: #FEFEFE;
}
.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 #FF9A00;
  color: #333333;
}
.tbl--bubble {
  border-collapse: separate;
  border-spacing: 0 4px;
}
.tbl--bubble tr th,
.tbl--bubble tr td {
  background: #FEFEFE;
  border-radius: 0 8px 8px 0;
}
.tbl--bubble tr td {
  padding-left: 24px;
}
.tbl--bubble tr th {
  background-color: #FF9A00;
  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%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 10px solid #FF9A00;
  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: #FF9A00;
  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: #FF9A00;
}
.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;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.accordion > .inner {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  -webkit-transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  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: #09a3df;
}
.accordion.faq > .ttl {
  padding: 16px;
  padding-left: 4em;
  background: #FEFEFE;
  border-radius: 8px;
  border: 1px solid #efefef;
}
.accordion.faq > .ttl::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  inline-size: 36px;
  block-size: 36px;
  border-radius: 50%;
  background: #09a3df;
  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 #09a3df;
  border-bottom: 2px solid #09a3df;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.accordion.faq > .ttl:hover {
  background: rgb(193.675, 236.025, 252.525);
}
.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: #65d14e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-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 {
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
.accordion.faq.is-open > .inner {
  padding: 8px 16px;
}
.accordion.faq.is-open > .inner::before {
  opacity: 1;
}

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

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}
.pagination a,
.pagination span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333333;
  font-weight: 700;
}
.pagination .is-current {
  background: #09a3df;
  color: #FEFEFE;
  border-color: #09a3df;
}

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

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

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

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

/* ==============================
  Voice（お客様の声）
============================== */
.voice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  border: 1px solid #ddd;
}
.voice:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.voice__img {
  width: 300px;
  text-align: center;
}
.voice__img img {
  margin: auto;
  width: 80%;
  height: auto;
  -o-object-fit: cover;
     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: #FF9A00;
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex.fd-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flex.fd-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ai-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ai-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ai-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.jc-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.jc-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.jc-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fw-wrap {
  -ms-flex-wrap: 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 {
  -o-object-fit: 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: #FF9A00;
}

.color02 {
  color: #09a3df;
}

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

.bg_line {
  background: #219d01 !important;
}

.bg_instagram {
  background: #e4405f !important;
}

.bg_line {
  background: #219d01 !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%;
  -webkit-transform: scale(-1, 1);
          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: #c9b6ab;
}

.bg--main {
  background: #FF9A00;
}

.bg--sub {
  background: #09a3df;
}

.bg--sub2 {
  background: #65d14e;
}

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

.u-decor {
  position: absolute;
  bottom: 10%;
  inline-size: min(28vw, 320px);
  opacity: 0.9;
  pointer-events: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  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: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(255, 147, 109, 0.3)));
  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: #FF9A00;
  text-decoration: underline;
}
.text-link.white a {
  color: #FEFEFE;
}

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

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

.shadow-lg {
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
          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;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
  -webkit-transition: opacity var(--a-duration) var(--a-ease) var(--a-delay), -webkit-transform var(--a-duration) var(--a-ease) var(--a-delay), -webkit-filter var(--a-duration) var(--a-ease) var(--a-delay);
  transition: opacity var(--a-duration) var(--a-ease) var(--a-delay), -webkit-transform var(--a-duration) var(--a-ease) var(--a-delay), -webkit-filter var(--a-duration) var(--a-ease) var(--a-delay);
  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);
  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), -webkit-transform var(--a-duration) var(--a-ease) var(--a-delay), -webkit-filter var(--a-duration) var(--a-ease) var(--a-delay);
  will-change: opacity, transform, filter;
}
[data-ani].is-visible {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  [data-ani],
  .ani-stagger > * {
    -webkit-transition: none !important;
    transition: none !important;
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-filter: 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;
  -webkit-animation-delay: var(--fx-delay);
          animation-delay: var(--fx-delay);
  -webkit-animation-iteration-count: var(--fx-iter);
          animation-iteration-count: var(--fx-iter);
  -webkit-animation-direction: var(--fx-dir);
          animation-direction: var(--fx-dir);
  -webkit-animation-fill-mode: var(--fx-fill);
          animation-fill-mode: var(--fx-fill);
  -webkit-animation-timing-function: var(--fx-ease);
          animation-timing-function: var(--fx-ease);
}

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

@-webkit-keyframes fx-float-y {
  0% {
    -webkit-transform: translateY(calc(var(--fx-amp) * -1));
            transform: translateY(calc(var(--fx-amp) * -1));
  }
  100% {
    -webkit-transform: translateY(var(--fx-amp));
            transform: translateY(var(--fx-amp));
  }
}

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

@-webkit-keyframes fx-float-x {
  0% {
    -webkit-transform: translateX(calc(var(--fx-amp) * -1));
            transform: translateX(calc(var(--fx-amp) * -1));
  }
  100% {
    -webkit-transform: translateX(var(--fx-amp));
            transform: translateX(var(--fx-amp));
  }
}

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

@-webkit-keyframes fx-sway {
  0% {
    -webkit-transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
            transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    -webkit-transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(var(--fx-rot));
            transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(var(--fx-rot));
  }
  100% {
    -webkit-transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
            transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
}

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

@-webkit-keyframes fx-sway-rev {
  0% {
    -webkit-transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
            transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
  50% {
    -webkit-transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(calc(var(--fx-rot) * -1));
            transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  100% {
    -webkit-transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
            transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
}

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

@-webkit-keyframes fx-pendulum {
  0% {
    -webkit-transform: rotate(calc(var(--fx-rot) * -1));
            transform: rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    -webkit-transform: rotate(var(--fx-rot));
            transform: rotate(var(--fx-rot));
  }
  100% {
    -webkit-transform: rotate(calc(var(--fx-rot) * -1));
            transform: rotate(calc(var(--fx-rot) * -1));
  }
}

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

@-webkit-keyframes fx-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

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

@-webkit-keyframes fx-float-soft {
  0% {
    -webkit-transform: translateY(calc(var(--fx-amp) * -1)) scale(0.995);
            transform: translateY(calc(var(--fx-amp) * -1)) scale(0.995);
  }
  100% {
    -webkit-transform: translateY(var(--fx-amp)) scale(1.005);
            transform: translateY(var(--fx-amp)) scale(1.005);
  }
}

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

@-webkit-keyframes fx-wiggle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(calc(var(--fx-rot) * 0.6));
            transform: rotate(calc(var(--fx-rot) * 0.6));
  }
  50% {
    -webkit-transform: rotate(calc(var(--fx-rot) * -0.6));
            transform: rotate(calc(var(--fx-rot) * -0.6));
  }
  75% {
    -webkit-transform: rotate(calc(var(--fx-rot) * 0.4));
            transform: rotate(calc(var(--fx-rot) * 0.4));
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

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

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

[data-fx*=slower] {
  -webkit-animation-duration: calc(var(--fx-duration) * 2.2);
          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] {
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

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

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

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

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

/* スライドイン（下から） */
[data-ani*=slide-in-up] {
  -webkit-transform: translateY(64px);
          transform: translateY(64px);
  opacity: 0;
  will-change: transform, opacity;
}

[data-ani*=slide-in-up].is-visible {
  -webkit-animation: slideInUpBounce 0.88s cubic-bezier(0.42, 0, 0.14, 1.63) var(--a-delay, 0s) both;
          animation: slideInUpBounce 0.88s cubic-bezier(0.42, 0, 0.14, 1.63) var(--a-delay, 0s) both;
}

/* スライドイン（左から） */
[data-ani*=slide-in-left] {
  -webkit-transform: translateX(-64px);
          transform: translateX(-64px);
  opacity: 0;
  will-change: transform, opacity;
}

[data-ani*=slide-in-left].is-visible {
  -webkit-animation: slideInLeftBounce 0.88s cubic-bezier(0.42, 0, 0.14, 1.63) var(--a-delay, 0s) both;
          animation: slideInLeftBounce 0.88s cubic-bezier(0.42, 0, 0.14, 1.63) var(--a-delay, 0s) both;
}

/* ポヨヨン付きアニメーション（デフォルト:PC/タブレット） */
@-webkit-keyframes slideInUpBounce {
  0% {
    opacity: 0;
    -webkit-transform: translateY(64px);
            transform: translateY(64px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(-14px);
            transform: translateY(-14px);
  }
  72% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  82% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  92% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInUpBounce {
  0% {
    opacity: 0;
    -webkit-transform: translateY(64px);
            transform: translateY(64px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(-14px);
            transform: translateY(-14px);
  }
  72% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  82% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  92% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideInLeftBounce {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-64px);
            transform: translateX(-64px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(14px);
            transform: translateX(14px);
  }
  72% {
    -webkit-transform: translateX(-6px);
            transform: translateX(-6px);
  }
  82% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  92% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeftBounce {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-64px);
            transform: translateX(-64px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(14px);
            transform: translateX(14px);
  }
  72% {
    -webkit-transform: translateX(-6px);
            transform: translateX(-6px);
  }
  82% {
    -webkit-transform: translateX(3px);
            transform: translateX(3px);
  }
  92% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* スマホ用：ポヨヨンしないシンプルなスライドイン */
@media (max-width: 720px) {
  [data-ani*=slide-in-up].is-visible {
    -webkit-animation: slideInUpSimple 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) var(--a-delay, 0s) both;
            animation: slideInUpSimple 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) var(--a-delay, 0s) both;
  }
  [data-ani*=slide-in-left].is-visible {
    -webkit-animation: slideInLeftSimple 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) var(--a-delay, 0s) both;
            animation: slideInLeftSimple 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) var(--a-delay, 0s) both;
  }
  @-webkit-keyframes slideInUpSimple {
    0% {
      opacity: 0;
      -webkit-transform: translateY(64px);
              transform: translateY(64px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes slideInUpSimple {
    0% {
      opacity: 0;
      -webkit-transform: translateY(64px);
              transform: translateY(64px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @-webkit-keyframes slideInLeftSimple {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-64px);
              transform: translateX(-64px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes slideInLeftSimple {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-64px);
              transform: translateX(-64px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
}
/* アクセシビリティ：動きを抑制 */
@media (prefers-reduced-motion: reduce) {
  [data-fx] {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
.manga-heading {
  border-radius: 50px;
  color: #fff;
  background: #FF9A00;
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  padding: 5px 0;
  width: 70%;
}
.manga-heading span {
  font-size: 1.5rem;
  padding-left: 10px;
}

.manga-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin-inline: auto;
}
.manga-gallery figure {
  margin: 0;
}
.manga-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .manga-heading {
    border-radius: 80px;
    width: 100%;
  }
}
.check-clip {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 50% 100%, 0 calc(100% - 100px));
}

.check-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(../img/nayami.webp) no-repeat center/cover;
}
.check-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 35, 50, 0.82);
}

.check-main {
  position: relative;
  z-index: 2;
  padding: 70px 0 50px;
}

.check-inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 40px;
}

.check-heading-block {
  position: relative;
  margin-bottom: 40px;
  max-width: 560px;
  margin-inline: auto;
}

.check-heading-bubble {
  position: absolute;
  left: 20px;
  top: -85px;
  width: 200px;
  z-index: 3;
}
.check-heading-bubble img {
  width: 100%;
  height: auto;
}

.check-heading-bar {
  position: relative;
  background: #FF9A00;
  border-radius: 60px;
  padding: 14px 24px 14px 100px;
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.check-heading-chara {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 115px;
  margin: 0;
  z-index: 2;
}
.check-heading-chara img {
  width: 100%;
  height: auto;
  display: block;
}

.check__title {
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.check__title-line1 {
  display: block;
  color: #FEFEFE;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.check__title-line2 {
  display: block;
  color: #FEFEFE;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 400;
}
.check__title-line2 em {
  font-style: normal;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 700;
  position: relative;
  padding: 0 0.1em;
}

.check__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  max-width: 500px;
}
.check__list li {
  position: relative;
  padding: 14px 0 14px 36px;
  color: #FEFEFE;
  font-size: 1.5rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.check__list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.check__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  color: #FF9A00;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.check-bottom {
  position: relative;
  z-index: 2;
  padding: 40px 0 110px;
}

.check-bottom__plain {
  text-align: center;
  color: #FEFEFE;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 6px;
}

.check-bottom__dark {
  background: #333;
  border-radius: 8px;
  padding: 20px 30px;
  margin: 16px auto 0;
  max-width: 560px;
  text-align: center;
}
.check-bottom__dark p {
  color: #FEFEFE;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.check-bottom em {
  font-style: normal;
  color: #FF9A00;
  font-weight: 700;
}

@media (max-width: 720px) {
  #check {
    padding-top: 30px;
  }
  .check-heading-bubble {
    left: 0;
    top: -65px;
    width: 130px;
  }
  .check-heading-bar {
    padding: 12px 16px 12px 70px;
  }
  .check-heading-chara {
    width: 55px;
    left: 6px;
  }
  .check-clip {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
  }
  .check-inner {
    padding-inline: 20px;
  }
  .check-bottom {
    padding-bottom: 80px;
  }
}
.func-sub-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.func-dog-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #FF9A00;
}

.func-heading-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.func-heading-wrap .title {
  margin: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.func-heading-chara {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
  margin: 0;
}
.func-heading-chara img {
  width: 100%;
  height: auto;
}

.func-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin-inline: auto;
}

.func-card {
  background: #FEFEFE;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e4e0;
}
.func-card__header {
  background: #FF9A00;
  color: #FEFEFE;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.func-card__list {
  list-style: none;
  padding: 16px 20px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.func-card__list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  border-bottom: 1px solid #eee;
}
.func-card__list li:last-child {
  border-bottom: none;
}
.func-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: #FF9A00;
  font-weight: 700;
}

.func-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  text-align: center;
}
.func-bottom__text {
  font-size: 1.5rem;
  line-height: 1.8;
}
.func-bottom__chara {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  margin: 0;
}
.func-bottom__chara img {
  width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .func-card-grid {
    grid-template-columns: 1fr;
  }
  .func-heading-chara {
    width: 65px;
  }
  .func-bottom__chara {
    width: 240px;
  }
}
#demo {
  background: #1B2A4A;
  color: #FEFEFE;
}

.demo-2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.demo-2col__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}
.demo-2col__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.demo-2col__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.demo__title {
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: #FEFEFE;
  line-height: 1.5;
  margin-bottom: 20px;
}

.demo__sub {
  color: #FEFEFE;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.demo__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.demo__list li {
  position: relative;
  padding-left: 28px;
  color: #FEFEFE;
  font-size: 1.4rem;
  line-height: 1.6;
}
.demo__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #FF9A00;
  font-weight: 700;
}

#demo .btn a {
  background: #FF9A00;
  color: #FEFEFE;
  border-color: #FF9A00;
}

.demo__bottom {
  color: #FEFEFE;
  font-size: 1.4rem;
  line-height: 1.8;
}
.demo__bottom strong {
  color: #FF9A00;
}

@media (max-width: 720px) {
  .demo-2col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .demo-2col__photo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.features-section {
  position: relative;
  padding-bottom: 80px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
}

.feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 0;
}
.feature-list > li {
  width: calc((100% - 48px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feature-character {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  z-index: 2;
  white-space: nowrap;
}
.feature-character__img {
  width: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
}
.feature-character__img img {
  display: block;
  width: 100%;
  height: auto;
}
.feature-character__bubble {
  position: relative;
  background: #FF9A00;
  color: #FEFEFE;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 999px;
  padding: 5px 14px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.feature-character__bubble::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 38%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  border-width: 9px 8px 0;
  border-style: solid;
  border-color: #FF9A00 transparent transparent transparent;
}

.feature-card {
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.feature-card__header {
  background: none;
  color: #333;
  padding: 14px 16px 8px;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
}
.feature-card__body {
  padding: 20px 16px;
  text-align: center;
}
.feature-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.feature-card__list li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
}
.feature-card__list li:last-child {
  border-bottom: none;
}
.feature-card__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 8px;
  color: #FF9A00;
}

.feature-accordion__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  background: #FF9A00;
  color: #FEFEFE;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 14px 32px;
  border-radius: 999px;
  cursor: pointer;
  max-width: 320px;
  margin: 0 auto 20px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.feature-accordion__btn:hover {
  opacity: 0.8;
}

.feature-accordion__arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #FEFEFE;
  border-bottom: 2.5px solid #FEFEFE;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  margin-top: -3px;
}
.is-open .feature-accordion__arrow {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-top: 3px;
}

.feature-accordion.is-open > .inner {
  padding: 0;
}

@media (max-width: 720px) {
  .feature-list > li {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 440px) {
  .feature-list > li {
    width: 100%;
  }
}
#flow {
  background: #f5f5f5;
  position: relative;
}

#flow .flow-chevron {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 30px solid #FFFFFF;
}

.flow-steps {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin-inline: auto;
  position: relative;
}
.flow-steps::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ddd;
}
.flow-steps > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.flow-steps .num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FF9A00;
  color: #FEFEFE;
  font-weight: 700;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Lato", sans-serif;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.flow-steps .num .step-label {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.flow-steps .num .step-number {
  font-size: 1.6rem;
  font-weight: 700;
}
.flow-steps .body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flow-steps .body h3 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.flow-steps .body p {
  font-size: 1.4rem;
  line-height: 1.7;
}
@media (max-width: 440px) {
  .flow-steps > li {
    gap: 16px;
  }
  .flow-steps .num {
    width: 40px;
    height: 40px;
  }
  .flow-steps::before {
    left: 20px;
  }
}

.flow-bottom-text {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
}

.message-banner {
  width: 100%;
  max-height: 470px;
  overflow: hidden;
  margin-bottom: 0;
}
.message-banner img {
  width: 100%;
  height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 720px) {
  .message-banner {
    height: 370px;
  }
  .message-banner img {
    height: 370px;
  }
}
#contact {
  background: #1B2A4A;
  color: #FEFEFE;
}
#contact .title .en {
  color: #FF9A00;
}
#contact .title .ja {
  color: #FEFEFE;
}
#contact .contact-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-tel-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 20px 32px;
  max-width: 500px;
  margin: 16px auto;
}
.contact-tel-box .tel-label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FF9A00;
}
.contact-tel-box .tel-number {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  color: #FEFEFE;
}
@media (max-width: 720px) {
  .contact-tel-box .tel-number {
    font-size: 2rem;
  }
}
.contact-tel-box .tel-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FF9A00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact-form-wrap {
  background: #FEFEFE;
  border-radius: 16px;
  padding: 40px;
  max-width: 700px;
  margin: 40px auto 0;
  color: #333;
}
.contact-form-wrap dl {
  margin-bottom: 0;
}
.contact-form-wrap dt {
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 20px;
  font-size: 1.4rem;
}
.contact-form-wrap dt:first-child {
  margin-top: 0;
}
.contact-form-wrap dt .required {
  color: #FEFEFE;
  background: #e74c3c;
  font-size: 1.1rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}
.contact-form-wrap dd {
  margin: 0;
}
.contact-form-wrap input[type=text],
.contact-form-wrap input[type=email],
.contact-form-wrap input[type=tel],
.contact-form-wrap textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.6rem;
  font-family: inherit;
  background: #f9f9f9;
}
.contact-form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form-wrap .recaptcha-placeholder {
  margin: 24px 0;
  padding: 16px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
  color: #999;
  font-size: 1.3rem;
}
.contact-form-wrap .submit-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 24px auto 0;
  padding: 16px 32px;
  background: #FF9A00;
  color: #FEFEFE;
  border: none;
  border-radius: 999px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.contact-form-wrap .submit-btn:hover {
  opacity: 0.8;
}

.contact-bottom-text {
  color: #FEFEFE;
  text-align: center;
  margin-top: 40px;
  font-size: 1.4rem;
  line-height: 1.8;
}

html {
  font-size: 75%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.title .ja::before {
  display: none;
}

#header #logo {
  width: 240px;
}

#header_nav a.nav-btn {
  background: #133378;
  color: #fff;
  border-radius: 35px;
  padding: 8px 22px;
}
#header_nav a.nav-btn::before, #header_nav a.nav-btn::after {
  display: none;
}

#header_nav.hover-circle a.active::before {
  opacity: 0;
}

#problem .title .ja {
  font-weight: 600;
}

.feature-icon-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #FEFEFE;
  font-size: 3.6rem;
  color: #1B2A4A;
}

.floating-mascot {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 140px;
  height: 140px;
  background: #FF9A00;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.floating-mascot:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.floating-mascot img {
  width: 80px;
  height: auto;
}
.floating-mascot span {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}

.footer_navi ul li {
  width: 16.6666666667%;
}

@media (max-width: 720px) {
  .floating-mascot {
    width: 90px;
    height: 90px;
  }
  .floating-mascot img {
    width: 45px;
  }
  .sp-btn p {
    width: 33.3333333333%;
  }
  .sp-btn p:nth-child(1) {
    background: #65d14e;
  }
  .sp-btn p:nth-child(2) {
    background: #FF9A00;
  }
  .sp-btn p:nth-child(3) {
    background: #333333;
  }
}
#footer .flogo {
  margin-inline: auto;
}

.mv {
  position: relative;
  overflow: hidden;
  background: url(../img/main.webp) no-repeat center/cover;
  background-position-x: 175px;
  min-height: 600px;
}

.hero-white-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: #FEFEFE;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  z-index: 1;
}

.hero-bottom-band {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: #0F3379;
  clip-path: polygon(0 0, 43% 0, 55% 100%, 0 100%);
  z-index: 2;
}

.mv__inner {
  position: relative;
  z-index: 3;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 40px;
  padding-left: clamp(20px, 4vw, 60px);
}

.mv__content {
  width: clamp(400px, 48%, 580px);
  max-width: 620px;
  color: #1B2A4A;
  padding: 40px 40px 40px 0;
}

.mv__sub {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  margin-bottom: 8px;
}

.mv__heading-line1 {
  font-size: 3.35rem;
  font-weight: 700;
  color: #1B2A4A;
  display: block;
  white-space: nowrap;
}

.mv__heading-line2 {
  font-size: 4.85rem;
  font-weight: 700;
  white-space: nowrap;
  display: block;
  text-shadow: -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 3px 0 #fff, -5px -5px 0 #fff, 5px -5px 0 #fff, -5px 5px 0 #fff, 5px 5px 0 #fff, 2px 4px 8px rgba(0, 0, 0, 0.18);
}
.mv__heading-line2 em {
  font-style: normal;
  color: #FF9A00;
}

.mv__lead {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.mv__heading {
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
}
.mv__heading em {
  font-style: normal;
  color: #FF9A00;
}

.mv__desc {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.mv__desc em {
  font-style: normal;
  font-weight: 700;
}

.mv__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mv__cta .btn {
  margin-top: 0;
}
.mv__cta .btn a::before {
  display: none;
}
.mv__cta .btn--primary a {
  background: #FF9A00;
  color: #FEFEFE;
  border: 2px solid #FF9A00;
  padding: 16px 36px;
  font-size: 1.5rem;
  font-weight: 700;
  min-width: auto;
  border-radius: 999px;
}
.mv__cta .btn--outline a {
  background: #003ec9;
  color: #FEFEFE;
  border: 2px solid #003ec9;
  padding: 16px 36px;
  font-size: 1.5rem;
  font-weight: 700;
  min-width: auto;
  border-radius: 999px;
}

.mv__photo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(280px, 40vw, 500px);
  pointer-events: none;
}
.mv__photo img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 920px) {
  .mv__content {
    width: 60%;
    min-width: 0;
  }
  .mv__heading-line1 {
    white-space: normal;
    font-size: 2.8rem;
  }
  .mv__heading-line2 {
    font-size: 3.6rem;
  }
}
@media (max-width: 720px) {
  .mv {
    background-position-x: 0;
  }
  .hero-white-mask,
  .hero-bottom-band {
    display: none;
  }
  .mv__inner {
    min-height: auto;
    padding: 40px 30px 30px;
  }
  .mv__content {
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.92);
    padding: 24px;
    border-radius: 12px;
  }
  .mv__cta {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mv__heading-line2 {
    font-size: 2.4rem;
    white-space: normal;
  }
}
.problem-card {
  text-align: center;
  padding: 24px 16px;
  background: #FEFEFE;
  border: 2px solid #FF9A00;
  border-radius: 16px;
}
.problem-card .label {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.problem-card .impact {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FF9A00;
}
.problem-card .impact span {
  font-size: 1.2em;
}

.manga-bubble-catch {
  text-align: center;
}
.manga-bubble-catch__text {
  display: inline-block;
  position: relative;
  background: #FEFEFE;
  border: 3px solid #333333;
  border-radius: 12px;
  padding: 14px 32px;
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.05em;
}
.manga-bubble-catch__text::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #333333;
}
.manga-bubble-catch__text::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 11px solid #FEFEFE;
  z-index: 1;
}

.contants-visual {
  position: relative;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 60px 24px 40px;
  max-width: 1200px;
  margin-inline: auto;
  overflow: visible;
}

.contants-visual__badge {
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-3deg);
          transform: translateX(-50%) rotate(-3deg);
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #FEFEFE;
  font-weight: 900;
  font-size: 1.8rem;
  padding: 10px 28px;
  border-radius: 30px;
  -webkit-box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
          box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
  white-space: nowrap;
  z-index: 10;
}

.contants-visual__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 12px 16px;
}

.contants-visual__col--left {
  grid-column: 1/2;
  grid-row: 1/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.contants-visual__col--right {
  grid-column: 2/4;
  grid-row: 1/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
}

.contants-visual__heading-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  background: #2c3e6b;
  color: #FEFEFE;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.contants-visual__heading-icon {
  font-size: 2rem;
  line-height: 1;
}

.contants-visual__sub-text {
  color: #2c3e6b;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 12px;
}

.contants-visual__shot {
  margin: 0;
}
.contants-visual__shot img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: block;
}

.contants-visual__col--left .contants-visual__shot {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contants-visual__col--left .contants-visual__shot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.contants-visual__sub-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contants-visual__sub-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contants-visual__sub-col .contants-visual__shot {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contants-visual__sub-col .contants-visual__shot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.contants-visual__chara-wrap {
  position: absolute;
  right: -100px;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  z-index: 5;
}

.contants-visual__bubble {
  position: relative;
  background: #FEFEFE;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e6b;
  text-align: center;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
  line-height: 1.7;
}
.contants-visual__bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #FEFEFE;
}

.contants-visual__chara {
  margin: 0;
  width: 180px;
}
.contants-visual__chara img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 720px) {
  .contants-visual {
    padding: 48px 16px 24px;
    overflow: hidden;
  }
  .contants-visual__badge {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
    display: inline-block;
    margin: 0 auto 16px;
    text-align: center;
  }
  .contants-visual__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .contants-visual__col--left,
  .contants-visual__col--right {
    width: 100%;
  }
  .contants-visual__col--left .contants-visual__shot {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: block;
  }
  .contants-visual__col--left .contants-visual__shot img {
    height: auto;
    -o-object-fit: initial;
       object-fit: initial;
  }
  .contants-visual__sub-cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .contants-visual__sub-col {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: block;
  }
  .contants-visual__sub-col .contants-visual__shot {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: block;
  }
  .contants-visual__sub-col .contants-visual__shot img {
    height: auto;
    -o-object-fit: initial;
       object-fit: initial;
  }
  .contants-visual__chara-wrap {
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding-top: 16px;
  }
  .contants-visual__bubble {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .contants-visual__chara {
    width: 140px;
  }
}
.ba-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.ba-intro__ribbon {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #FEFEFE;
  font-weight: 900;
  font-size: 1.8rem;
  padding: 10px 40px;
  letter-spacing: 0.05em;
}
.ba-intro__catch {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e98b31;
  margin-bottom: 20px;
  text-align: left;
}
.ba-intro__sep {
  display: block;
  width: 50px;
  height: 3px;
  background: #1a2f6e;
  margin: 16px auto 0;
  border-radius: 2px;
}
.ba-intro__chevron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  margin-top: 16px;
  color: #ccc;
  font-size: 1.4rem;
  line-height: 1;
}
.ba-intro__chevron i {
  display: block;
}

@media (max-width: 720px) {
  .ba-intro__catch {
    font-size: 2rem;
  }
}
.ba-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  max-width: 900px;
  margin-inline: auto;
}

.ba-block {
  position: relative;
  background: #f5f5f5;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 40px 28px 28px;
}
.ba-block__number {
  position: absolute;
  top: -18px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 6px;
  z-index: 2;
}
.ba-block__num {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: #133378;
}
.ba-block__num-label {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #133378;
  line-height: 1;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  padding-bottom: 2px;
}
.ba-block__title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  background-color: #133378;
  color: #fefefe;
  margin-bottom: 4px;
}
.ba-block__title i {
  margin-right: 8px;
}
.ba-block__subtitle {
  text-align: center;
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 16px;
}
.ba-block__title + .ba-block__cols {
  margin-top: 16px;
}
.ba-block__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0;
}

@media (max-width: 720px) {
  .ba-block__number {
    top: 16px;
  }
  .ba-block__num {
    font-size: 4rem;
  }
  .ba-block__title {
    font-size: 1.7rem;
    padding: 5px 10px;
    border-radius: 3px;
  }
}
.ba-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 16px;
  padding: 24px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ba-col--before, .ba-col--after {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #fefefe;
  border-radius: 12px;
}
.ba-col__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #133378;
}
.ba-col__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 2px solid;
}
.ba-col__avatar--sad {
  border-color: #e67e22;
  background: #fde8d0;
}
.ba-col__avatar--happy {
  border-color: #3498db;
  background: #d6eaf8;
}
.ba-col__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ba-col__label {
  font-size: 1.6rem;
  font-weight: 700;
}
.ba-col__label--before {
  color: #333333;
}
.ba-col__label--after {
  color: #e78220;
}
.ba-col__text {
  font-size: 1.35rem;
  line-height: 1.7;
  color: #444;
}
.ba-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 12px;
}
.ba-col__list li {
  position: relative;
  text-align: left;
  padding-left: 2em;
  font-size: 1.35rem;
  line-height: 1.7;
  color: #444;
}
.ba-col__list li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 1.2rem;
}
.ba-col__list li + li {
  margin-top: 14px;
}
.ba-col__list--before li::before {
  content: "\f06a";
  color: #133378;
}
.ba-col__list--after li::before {
  content: "\f058";
  color: #e67e22;
}
.ba-col__illust {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
}
.ba-col__illust img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
}
.ba-col__illust i {
  font-size: 3rem;
  color: #c9b6ab;
}
.ba-col__shot {
  margin-top: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ba-col__shot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: block;
}

.ba-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 16px;
  font-size: 2.4rem;
  color: #999;
}
.ba-arrow__sp {
  display: none;
}

@media (max-width: 720px) {
  .ba-block {
    padding: 60px 18px 18px;
  }
  .ba-block__cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .ba-arrow {
    padding: 12px 0;
  }
  .ba-arrow__pc {
    display: none;
  }
  .ba-arrow__sp {
    display: block;
  }
  .ba-col__list li {
    padding-left: 1.2em;
    line-height: 1.3;
  }
}
.func-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 720px) {
  .func-heading-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .func-heading-wrap .title {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .func-heading-wrap .func-heading-chara {
    width: 42%;
  }
}
#demo .list--check li {
  color: #FEFEFE;
}
#demo .list--check li::before {
  border-color: #FEFEFE;
}
#demo .btn a {
  background: #FEFEFE;
  color: #FF9A00;
  border-color: #FEFEFE;
}
#demo .btn a::before {
  background: #FF9A00;
}
#demo .btn a:hover {
  opacity: 0.8;
}

.feature-tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.feature-tabs__nav > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 720px) {
  .feature-tabs__nav {
    gap: 8px;
    margin: 0 0 20px;
  }
  .feature-tabs__nav > li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}
.feature-tabs__btn {
  position: relative;
  display: inline-block;
  width: 100%;
  background: #d9d9d9;
  color: #333333;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}
.feature-tabs__btn:hover {
  background: #cfcfcf;
}
.feature-tabs__btn.is-active {
  background: #FF9A00;
  color: #FEFEFE;
}
.feature-tabs__btn.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FF9A00;
}
@media screen and (max-width: 720px) {
  .feature-tabs__btn {
    font-size: 1.3rem;
    padding: 12px 8px;
  }
}
.feature-tabs__body {
  border: 2px solid #FF9A00;
  border-radius: 12px;
  padding: 40px 32px;
  background: #FEFEFE;
}
@media screen and (max-width: 720px) {
  .feature-tabs__body {
    padding: 28px 16px;
  }
}
.feature-tabs__viewport {
  position: relative;
  overflow: hidden;
}
.feature-tabs__panel {
  width: 100%;
}
.feature-tabs__panel[hidden] {
  display: none;
}
.feature-tabs__viewport.is-animating .feature-tabs__panel {
  position: absolute;
  top: 0;
  left: 0;
}
.feature-tabs__panel.is-entering {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}
.feature-tabs__panel.is-entering-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}
.feature-tabs__panel.is-leaving {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.feature-tabs__panel.is-leaving-active {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}
.feature-tabs__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.feature-tabs__catch-img {
  width: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
}
.feature-tabs__catch-img img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 720px) {
  .feature-tabs__catch-img {
    width: 70px;
  }
}
.feature-tabs__catch-text {
  color: #FF9A00;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 720px) {
  .feature-tabs__catch-text {
    font-size: 1.5rem;
  }
}
.feature-tabs__placeholder {
  text-align: center;
  color: #969696;
  font-size: 1.6rem;
  padding: 60px 0;
}

.feature-list--in-tab {
  margin: 0;
}

.func-card__img {
  margin: 0;
  padding: 16px 20px 0;
}
.func-card__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.feature-card__body {
  padding: 12px 16px 16px;
}
.feature-card__list li {
  text-align: left;
  padding: 4px 0;
  padding-left: 0;
  border-bottom: none;
  font-size: 1.25rem;
  line-height: 1.6;
}
.feature-card__list li::before {
  display: none;
}

.feature-list--sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.feature-list--sub > li {
  width: calc(50% - 8px);
}
@media screen and (max-width: 768px) {
  .feature-list--sub > li {
    width: 100%;
  }
}

.feature-list--sub .feature-card__body {
  padding: 12px 16px 16px;
}

.flow-steps {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin-inline: auto;
}
.flow-steps > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.flow-steps > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #FF9A00;
}
.flow-steps > li:not(:last-child) {
  border-bottom: 1px solid #c9b6ab;
}
.flow-steps .num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FF9A00;
  color: #FEFEFE;
  font-weight: 700;
  font-size: 2rem;
  display: grid;
  place-items: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.flow-steps .body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flow-steps .body h3 {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.flow-steps .body p {
  font-size: 1.4rem;
  line-height: 1.7;
}
@media (max-width: 440px) {
  .flow-steps > li {
    gap: 16px;
  }
  .flow-steps .num {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
}

.knowhow-tabs .tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.knowhow-tabs .tabs__btn {
  background: #f0f0f0;
  color: #555;
  border: none;
  border-radius: 8px 8px 0 0;
  padding: 10px 28px;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.knowhow-tabs .tabs__btn.is-active {
  background: #FF9A00;
  color: #FEFEFE;
}
.knowhow-tabs .tabs__btn:not(.is-active):hover {
  background: #e0e0e0;
}
.knowhow-tabs .tabs__panel {
  border: 3px solid #FF9A00;
  border-radius: 0 8px 8px 8px;
  background: #FEFEFE;
  padding: 28px;
  min-height: 200px;
}

.bg--message::after {
  background: url(../img/bg-message.jpg) no-repeat center/cover;
  opacity: 0.15;
}

@media (max-width: 440px) {
  .l-column > li > .card,
  .l-column .col-item > .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-column > li > .card .card__body,
  .l-column .col-item > .card .card__body {
    padding-top: 0;
  }
  .l-column > li > .card .card__img,
  .l-column .col-item > .card .card__img {
    width: 100%;
  }
  .l-column > li > .card .card__title,
  .l-column .col-item > .card .card__title {
    text-align: center;
  }
}
.knowledge-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.knowledge-card {
  background: #FEFEFE;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: calc((100% - 48px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s, -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
}
.knowledge-card:hover {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.knowledge-card a {
  text-decoration: none;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.knowledge-card img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.knowledge-card .date {
  display: none;
}
.knowledge-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.5;
  padding: 14px 16px 8px;
  margin: 0;
}
.knowledge-card p,
.knowledge-card .description,
.knowledge-card .summary,
.knowledge-card .excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  padding: 0 16px;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.knowledge-card .read-more {
  margin-top: auto;
  padding: 12px 16px 16px;
  text-align: right;
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #FEFEFE;
  background: #FF9A00;
  border-radius: 999px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding: 6px 18px;
}
@media (max-width: 720px) {
  .knowledge-card {
    width: 100%;
  }
}

#footer {
  background-color: #1a2f6e;
  border-radius: 150px 150px 0 0;
  color: #FEFEFE;
  border-top: none;
  position: relative;
  z-index: 1;
  margin-top: -145px;
}
#footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
#footer .footer-left {
  width: 50%;
}
#footer .footer-left .footer-tagline {
  color: #FEFEFE;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
#footer .footer-left .footer-desc {
  color: rgba(254, 254, 254, 0.85);
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
#footer .footer-left .copyright {
  color: rgba(254, 254, 254, 0.6);
  font-size: 1.2rem;
}
#footer .footer-right {
  width: 42%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
#footer .footer-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
#footer .footer-btn-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background: #FEFEFE;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
  position: relative;
}
#footer .footer-btn-list a:hover {
  opacity: 0.9;
}
#footer .footer-btn-list a .btn-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #FF9A00;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#footer .footer-nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 16px;
}
#footer .footer-nav-links a {
  color: #FEFEFE;
  font-size: 1.3rem;
  text-decoration: none;
  opacity: 0.85;
}
#footer .footer-nav-links a:hover {
  opacity: 1;
}
#footer .flogo {
  margin-inline: 0 !important;
}
#footer .flogo .logo {
  width: 140px;
}

#contact {
  margin-bottom: 0;
  padding-bottom: 60px;
}

.contact-form-wrap .bg_06 {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}
.contact-form-wrap .bg_06 dd:last-of-type {
  padding-top: 38px;
}
@media (max-width: 720px) {
  .contact-form-wrap .bg_06 dd:last-of-type label {
    display: block;
  }
}
.contact-form-wrap dt .optional {
  color: #666;
  font-size: 1.1rem;
  padding: 2px 8px;
  border-radius: 4px;
  background: #ccc;
  margin-left: 8px;
}

.flow-steps::before {
  display: none;
}
.flow-steps > li {
  padding: 32px 0;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flow-steps > li:not(:last-child) {
  border-bottom: none;
}
.flow-steps > li:not(:last-child)::after {
  display: none;
}
.flow-steps > li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -32px;
  width: 2px;
  height: 32px;
  background: #FF9A00;
  z-index: 0;
}
.flow-steps .num {
  width: 70px;
  height: 70px;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
}
.flow-steps .num .step-label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.flow-steps .num .step-number {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.flow-steps .body h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.flow-steps .body p {
  font-size: 1.5rem;
}
@media (max-width: 720px) {
  .flow-steps .num {
    width: 56px;
    height: 56px;
  }
  .flow-steps .num .step-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 920px) {
  #footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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) {
  .flogo {
    margin-left: auto;
    margin-right: auto;
  }
  .tbl--hours tr th,
  .tbl--hours tr td {
    padding: 7px 5px;
    font-size: 12px;
  }
  .contact_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bg--img02 {
    margin-top: 50px;
  }
  #header {
    padding-top: 0;
  }
  #header .inner {
    max-width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .head-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 60px;
  }
  #header_nav {
    display: none;
  }
  .sp-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .sp-btn p {
    width: 25%;
  }
  .sp-btn p:nth-child(1) {
    background: #e4405f;
  }
  .sp-btn p:nth-child(2) {
    background: #65d14e;
  }
  .sp-btn p:nth-child(3) {
    background: #FF9A00;
  }
  .sp-btn p:nth-child(4) {
    background: #333333;
  }
  .sp-btn p a {
    color: #FEFEFE;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px 5px;
  }
  .sp-btn p a img {
    max-width: 25px;
  }
  .sp-btn p a span {
    display: block;
    text-align: center;
  }
  #sp-logo {
    width: 120px;
  }
  #nav-toggle {
    position: fixed;
    right: 16px;
    top: 24px;
    inline-size: 44px;
    block-size: 44px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 120;
  }
  #nav-toggle .bars {
    position: relative;
    inline-size: 26px;
    block-size: 18px;
    display: grid;
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
  #nav-toggle .bars i {
    display: block;
    inline-size: 100%;
    block-size: 3px;
    border-radius: 2px;
    background: #333;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transition: transform 0.25s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
  }
  #nav-toggle.is-active .bars i:nth-child(1) {
    -webkit-transform: translateY(7.5px) rotate(45deg);
            transform: translateY(7.5px) rotate(45deg);
  }
  #nav-toggle.is-active .bars i:nth-child(2) {
    opacity: 0;
  }
  #nav-toggle.is-active .bars i:nth-child(3) {
    -webkit-transform: translateY(-7.5px) rotate(-45deg);
            transform: translateY(-7.5px) rotate(-45deg);
  }
  #sp-nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    z-index: -10;
  }
  #sp-nav.open {
    opacity: 1;
    pointer-events: auto;
    z-index: 110;
  }
  #sp-nav .sp-nav__en {
    font-family: "YakuHanMP", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-style: italic;
    font-size: 28px;
    color: #FF9A00;
    letter-spacing: 0.1em;
    margin: 0;
  }
  #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: 20px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    display: block;
  }
  #sp-nav .sp-nav__cta {
    display: block;
    background: #FF9A00;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    padding: 14px 48px;
    border-radius: 40px;
    margin-top: 8px;
  }
  #sp-nav .contact_btn {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 24px;
  }
  #sp-nav .contact_btn p:last-child {
    width: 100%;
  }
  #sp-nav .contact_btn p:last-child a {
    color: #FEFEFE;
    max-width: 260px;
    margin-inline: auto;
  }
  #nav-toggle.is-active .bars i {
    background: #fff;
  }
  .copyright {
    padding-bottom: 40px;
  }
  .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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: 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%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            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;
  }
}
@media (max-width: 440px) {
  #header .contact_btn {
    display: none;
  }
  #header .inner {
    padding: 16px;
  }
  #header .inner #logo {
    width: 170px;
  }
  .copyright {
    padding-bottom: 20px;
  }
  #footer {
    border-radius: 30px 30px 0 0;
    margin-top: -45px;
  }
  .tel-number {
    font-size: 2rem;
  }
  .sp-btn p a {
    font-weight: 600;
    padding: 7px;
  }
  .sp-btn p a img {
    max-width: 20px;
  }
  .sp-btn p a span {
    font-size: 12px;
  }
  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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            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;
  }
  #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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 60px;
  }
  .voice {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            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;
  }
}
@media print {
  a {
    text-decoration: underline;
  }
  .btn,
  .chip,
  .badge,
  .alert {
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent;
  }
}