@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and ( max-width: 768px ) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}

.body {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inner {
  max-width: 1040px;
  margin: 0 auto;
  width: 95%;
}

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

a:hover {
  opacity: 0.7;
}

.pc-only {
  display: block;
}
@media screen and ( max-width: 768px ) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and ( max-width: 768px ) {
  .sp-only {
    display: block;
  }
}

.main {
  width: 100%;
  max-width: 748px;
  margin: 0 auto;
  background: #fff;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
  min-height: 100vh;
}

.head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding: clamp(8px, 5.7011494253px + 0.0061302682 * 100vw, 16px) 0;
  background: #fff;
}
.head .logo {
  width: clamp(180px, 170.8045977011px + 0.0245210728 * 100vw, 212px);
}
.head p {
  color: #333;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: clamp(14px, 12.8505747126px + 0.0030651341 * 100vw, 18px);
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.relative {
  position: relative;
}

.mv {
  position: relative;
}
.mv a img {
  width: clamp(320px, 239.5402298851px + 0.214559387 * 100vw, 600px);
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 3%;
}
@media screen and ( max-width: 768px ) {
  .mv a img {
    bottom: 2%;
  }
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  width: min(600px, 100vw - 24px);
  z-index: 1000;
  -webkit-transform: translate(-50%, 24px);
          transform: translate(-50%, 24px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
}
.floating-cta img {
  display: block;
  width: 100%;
}
.floating-cta.is-visible {
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .floating-cta {
    -webkit-transition: none;
    transition: none;
  }
}

.end-slide {
  width: 100%;
  overflow: hidden;
}

.end-slide-window {
  width: 100%;
  overflow: hidden;
}

.end-slide-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: end-slide-marquee 45s linear infinite;
          animation: end-slide-marquee 45s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .end-slide-track {
    -webkit-animation: none;
            animation: none;
  }
}

.end-slide-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.end-slide-content {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: clamp(280px, 239.7701149425px + 0.1072796935 * 100vw, 420px);
}
.end-slide-content img {
  display: block;
  width: 100%;
  height: clamp(160px, 137.0114942529px + 0.061302682 * 100vw, 240px);
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes end-slide-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes end-slide-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.base {
  padding: 0 0 clamp(45px, 34.9425287356px + 0.0268199234 * 100vw, 80px);
}

.ttl {
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  -webkit-font-feature-settings: "halt" on;
          font-feature-settings: "halt" on;
  font-family: "IBM Plex Sans JP";
  font-size: clamp(24px, 19.4022988506px + 0.0122605364 * 100vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.ttl span {
  color: #ffbf01;
}

.step {
  background: url(../img/step-bg.webp) repeat center center;
  background-size: 400px;
}
.step .title-img {
  margin-top: -8px;
}
.step .step-attention {
  color: #111;
  text-align: center;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: clamp(14px, 13.4252873563px + 0.001532567 * 100vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.6px;
}

.step-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(24px, 20.5517241379px + 0.0091954023 * 100vw, 36px);
  padding: clamp(24px, 17.1034482759px + 0.0183908046 * 100vw, 48px) clamp(16px, 11.4022988506px + 0.0122605364 * 100vw, 32px);
}
.step-contents .step-content:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and ( max-width: 768px ) {
  .step-contents .step-content:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.step-contents .step-content:nth-child(even) .text h3 {
  background: #ffdc01;
}

.step-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(16px, 13.7011494253px + 0.0061302682 * 100vw, 24px);
}
@media screen and ( max-width: 768px ) {
  .step-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.step-content .img {
  width: 243.972px;
  aspect-ratio: 1/1;
}
@media screen and ( max-width: 768px ) {
  .step-content .img {
    width: 160px;
  }
}
.step-content .text {
  width: calc(100% - 243.972px);
}
@media screen and ( max-width: 768px ) {
  .step-content .text {
    width: 100%;
  }
}
.step-content .text h3 {
  color: #000;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: clamp(18px, 16.275862069px + 0.0045977011 * 100vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: 2.4px;
  background: #ffb96f;
  padding: 12px;
  margin-bottom: 16px;
}
.step-content .text p {
  color: #111;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: clamp(14px, 13.4252873563px + 0.001532567 * 100vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.6px;
}

.ttl2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: clamp(16px, 9.1034482759px + 0.0183908046 * 100vw, 40px) 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  -webkit-font-feature-settings: "halt" on;
          font-feature-settings: "halt" on;
  font-family: "IBM Plex Sans JP";
  font-size: clamp(24px, 19.4022988506px + 0.0122605364 * 100vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: #ffdc01;
}

.review-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(18px, 12.8275862069px + 0.0137931034 * 100vw, 36px);
  padding: clamp(24px, 17.1034482759px + 0.0183908046 * 100vw, 48px) clamp(16px, 11.4022988506px + 0.0122605364 * 100vw, 32px);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-scroll-snap-type: x proximity;
      -ms-scroll-snap-type: x proximity;
          scroll-snap-type: x proximity;
  margin-left: clamp(16px, 11.4022988506px + 0.0122605364 * 100vw, 32px);
}
.review-contents::before {
  content: "";
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 clamp(28px, 22.2528735632px + 0.0153256705 * 100vw, 48px);
      -ms-flex: 0 0 clamp(28px, 22.2528735632px + 0.0153256705 * 100vw, 48px);
          flex: 0 0 clamp(28px, 22.2528735632px + 0.0153256705 * 100vw, 48px);
}

.review-content {
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
  padding: clamp(24px, 20.5517241379px + 0.0091954023 * 100vw, 36px) clamp(16px, 11.4022988506px + 0.0122605364 * 100vw, 32px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(16px, 11.4022988506px + 0.0122605364 * 100vw, 32px);
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 clamp(320px, 72vw, 560px);
      -ms-flex: 0 0 clamp(320px, 72vw, 560px);
          flex: 0 0 clamp(320px, 72vw, 560px);
  scroll-snap-align: start;
}
@media screen and ( max-width: 768px ) {
  .review-content {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-basis: calc(100vw - 56px);
        -ms-flex-preferred-size: calc(100vw - 56px);
            flex-basis: calc(100vw - 56px);
  }
}
.review-content > img {
  width: clamp(64px, 54.5172413793px + 0.0252873563 * 100vw, 97px);
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
}
.review-content .img {
  width: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.review-content .img p {
  color: #111;
  text-align: center;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
  letter-spacing: 1.2px;
}
.review-content .text {
  width: calc(100% - 110px);
}
.review-content .text h3 {
  color: #111;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 36px */
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-content .text p {
  color: #111;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: clamp(14px, 13.4252873563px + 0.001532567 * 100vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.6px;
}

.entry {
  padding-left: clamp(16px, 10.2528735632px + 0.0153256705 * 100vw, 36px);
  padding-right: clamp(16px, 10.2528735632px + 0.0153256705 * 100vw, 36px);
  background: #ffdc01;
}
.entry.base {
  padding: clamp(45px, 34.9425287356px + 0.0268199234 * 100vw, 80px) clamp(16px, 10.2528735632px + 0.0153256705 * 100vw, 36px) clamp(45px, 34.9425287356px + 0.0268199234 * 100vw, 80px);
}

.entry-content {
  border-radius: 24px;
  background: #fff;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: clamp(24px, 17.1034482759px + 0.0183908046 * 100vw, 48px) clamp(12px, 8.5517241379px + 0.0091954023 * 100vw, 24px);
  margin-top: clamp(24px, 17.1034482759px + 0.0183908046 * 100vw, 48px);
}
.entry-content .ttl-sub {
  text-align: center;
}
.entry-content .ttl-sub h3 {
  color: #fff;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: clamp(20px, 18.8505747126px + 0.0030651341 * 100vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
  border-radius: 8px;
  background: #000;
  display: inline-block;
  padding: clamp(2px, 1.4252873563px + 0.001532567 * 100vw, 4px) clamp(8px, 5.7011494253px + 0.0061302682 * 100vw, 16px);
  margin-bottom: clamp(16px, 13.7011494253px + 0.0061302682 * 100vw, 24px);
}
.entry-content .entry-content-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(12px, 8.5517241379px + 0.0091954023 * 100vw, 24px);
}
.entry-content .entry-content-item dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 8px;
}
.entry-content .entry-content-item dl dt {
  color: #2e2e2e;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: clamp(18px, 17.4252873563px + 0.001532567 * 100vw, 20px);
  font-style: normal;
  font-weight: 900;
  line-height: 150%; /* 30px */
  letter-spacing: 1px;
  border-bottom: 6px solid #fdbeaf;
  padding-bottom: 8px;
}
.entry-content .entry-content-item dl dd {
  color: #000;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: clamp(14px, 13.4252873563px + 0.001532567 * 100vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
}
.entry-content .entry-content-item dl dd ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(8px, 5.7011494253px + 0.0061302682 * 100vw, 16px);
  margin-top: clamp(8px, 8px + 0 * 100vw, 8px);
}
.entry-content .entry-content-item dl dd ul li {
  color: #2e2e2e;
  text-align: center;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: clamp(12px, 11.4252873563px + 0.001532567 * 100vw, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
  border-radius: 24px;
  border: 2px solid #ffc800;
  background: #fff8e0;
  padding: clamp(2px, 1.4252873563px + 0.001532567 * 100vw, 4px) clamp(4px, 2.8505747126px + 0.0030651341 * 100vw, 8px);
}

.access .ttl2 {
  background: #ffee81;
}
.access .map {
  width: 100%;
  height: 385px;
  overflow: hidden;
  border-radius: 4px;
}
.access .map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
@media screen and ( max-width: 768px ) {
  .access .map {
    height: 220px;
  }
}

.access-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(12px, 8.5517241379px + 0.0091954023 * 100vw, 24px);
  padding: clamp(24px, 17.1034482759px + 0.0183908046 * 100vw, 48px) clamp(16px, 10.2528735632px + 0.0153256705 * 100vw, 36px);
}
.access-contents .access-content {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.access-contents .access-content h3 {
  color: #000;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 43.2px */
  letter-spacing: 1.2px;
}

.contact {
  padding-left: clamp(16px, 10.2528735632px + 0.0153256705 * 100vw, 36px);
  padding-right: clamp(16px, 10.2528735632px + 0.0153256705 * 100vw, 36px);
  background: #f7f2d5;
}
.contact.base {
  padding: clamp(45px, 34.9425287356px + 0.0268199234 * 100vw, 80px) clamp(8px, 3.4022988506px + 0.0122605364 * 100vw, 24px) clamp(45px, 34.9425287356px + 0.0268199234 * 100vw, 80px);
}
.contact .ttl {
  margin-bottom: clamp(16px, 13.7011494253px + 0.0061302682 * 100vw, 24px);
}
.contact p {
  color: #111;
  text-align: center;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.6px;
}

.footer {
  text-align: center;
  padding: 16px;
  background: #ffa826;
  color: #fff;
}

.footer-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.footer-link a {
  color: #fff;
}

.cp {
  padding: 0 clamp(16px, 6.8045977011px + 0.0245210728 * 100vw, 48px) clamp(24px, 17.1034482759px + 0.0183908046 * 100vw, 48px);
}

.reason {
  background: #fffbda;
  position: relative;
}
.reason::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url(../img/step-bg.webp) repeat center center;
  background-size: 400px;
}
.reason .title-img {
  margin-top: -24px;
  line-height: 0;
}
.reason .title-img picture {
  display: block;
}
.reason .title-img img {
  display: block;
}

.reason-contents {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 12.275862069px + 0.0045977011 * 100vw, 20px);
  padding: clamp(8px, 5.7011494253px + 0.0061302682 * 100vw, 16px) clamp(12px, 9.7011494253px + 0.0061302682 * 100vw, 20px) clamp(28px, 24.5517241379px + 0.0091954023 * 100vw, 40px);
}
@media screen and ( max-width: 768px ) {
  .reason-contents {
    grid-template-columns: 1fr;
    gap: clamp(16px, 14.8505747126px + 0.0030651341 * 100vw, 20px);
  }
}

.reason-card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: clamp(16px, 13.7011494253px + 0.0061302682 * 100vw, 24px);
  border-radius: 24px;
  border: 4px solid #ffec56;
  background-color: #fff;
  background-image: url("../img/reason-card-dots.svg");
  background-position: 0 0;
  background-size: 8px 8px;
  background-repeat: repeat;
  -webkit-box-shadow: 0 0 8px 0 rgba(113, 103, 26, 0.25);
          box-shadow: 0 0 8px 0 rgba(113, 103, 26, 0.25);
}

.reason-card-head {
  display: grid;
  grid-template-columns: 45% minmax(0, 1fr);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 8.275862069px + 0.0045977011 * 100vw, 16px);
  margin-bottom: 0;
}
@media screen and ( max-width: 768px ) {
  .reason-card-head {
    grid-template-columns: 42% minmax(0, 1fr);
    gap: clamp(8px, 6.8505747126px + 0.0030651341 * 100vw, 12px);
  }
}

.reason-card-icon {
  width: 100%;
  max-width: 156px;
  aspect-ratio: 1/1;
  margin-inline: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border-radius: 50%;
  border: 3px solid #ffec56;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media screen and ( max-width: 768px ) {
  .reason-card-icon {
    max-width: 132px;
  }
}
.reason-card-icon img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.reason-card-text-wrapper {
  min-width: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(4px, 2.8505747126px + 0.0030651341 * 100vw, 8px);
}
@media screen and ( max-width: 768px ) {
  .reason-card-text-wrapper {
    gap: clamp(2px, 1.4252873563px + 0.001532567 * 100vw, 4px);
  }
}

.reason-card-title {
  margin: 0;
  min-width: 0;
  color: #000;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 2.2px;
}

.reason-card-text {
  margin: 0;
  color: #111;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.6px;
}

.qa .ttl {
  margin-bottom: clamp(8px, 5.7011494253px + 0.0061302682 * 100vw, 16px);
  background: #ffdc01;
  padding: clamp(16px, 13.7011494253px + 0.0061302682 * 100vw, 24px) 0;
}

.qa-contents {
  padding: 0 clamp(16px, 10.2528735632px + 0.0153256705 * 100vw, 36px);
}

.qa-item {
  border-bottom: 1px dotted #000;
}

.qa-trigger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 8.8505747126px + 0.0030651341 * 100vw, 14px);
  width: 100%;
  margin: 0;
  padding: clamp(18px, 16.275862069px + 0.0045977011 * 100vw, 24px) 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  background: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.qa-trigger:focus {
  outline: none;
}
.qa-trigger:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.qa-q-icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34.77px;
  height: 34.77px;
  border-radius: 17.385px;
  background: #ffdc01;
  color: #000;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.8px;
}

.qa-q-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  color: #000;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 16.275862069px + 0.0045977011 * 100vw, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.2px;
}

.qa-answer {
  display: none;
  padding: 0 0 clamp(18px, 16.275862069px + 0.0045977011 * 100vw, 24px);
  padding-left: calc(34.77px + clamp(10px, 8.8505747126px + 0.0030651341 * 100vw, 14px));
}
.qa-answer p {
  margin: 0;
  color: #000;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 13.4252873563px + 0.001532567 * 100vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.8px;
}

.qa-item.is-open .qa-answer {
  display: block;
}

.cta-contents {
  background-color: #1f3342;
  background-image: url(../img/cta-back.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 0 clamp(16px, 11.4022988506px + 0.0122605364 * 100vw, 32px) 32px;
  margin-top: 0;
}
.cta-contents h3 {
  color: #fff;
  text-align: center;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: clamp(20px, 17.7011494253px + 0.0061302682 * 100vw, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 33px */
  letter-spacing: 2.2px;
  margin-bottom: clamp(16px, 13.7011494253px + 0.0061302682 * 100vw, 24px);
  padding-top: 40px;
}
.cta-contents p {
  color: #fff;
  text-align: center;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: clamp(14px, 13.4252873563px + 0.001532567 * 100vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.6px;
  margin-bottom: clamp(16px, 13.7011494253px + 0.0061302682 * 100vw, 24px);
}/*# sourceMappingURL=style.css.map */