@charset "UTF-8";
/* # = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
# RESET CSS: ブラウザのデフォルトスタイルを統一・リセット
# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/* # = = = = = = = = = = = = = = = = = = = = = = = = =
# ベーススタイル (Base Styles)
# = = = = = = = = = = = = = = = = = = = = = = = = = */
html {
  font-size: 62.5%; /* 1rem = 10px（10 ÷ 16 = 0.625） */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  background-color: #fafafa;
}

a {
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

button {
  cursor: pointer;
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
  font-weight: 300;
}

@media (width>= 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
table {
  border-collapse: collapse;
}

/* # = = = = = = = = = = = = = = = = = = = = = = = = =
# Visibility Utilities (表示・非表示ユーティリティ)
# = = = = = = = = = = = = = = = = = = = = = = = = */
@media (width>= 768px) {
  .hidden-pc {
    display: none !important;
  }
}

@media (width< 768px) {
  .hidden-sp {
    display: none !important;
  }
}

/* # = = = = = = = = = = = = = = = = = = = = = = = = =
# Inner Layout Utility (インナーレイアウトユーティリティ)
# = = = = = = = = = = = = = = = = = = = = = = = = = */
.inner {
  max-width: min(100%, 100% - 30px);
  margin-inline: auto;
}
@media (width>= 768px) {
  .inner {
    max-width: min(1140px, 100% - 60px);
    margin-inline: auto;
  }
}

.inner-narrow {
  max-width: min(100%, 100% - 108px);
  margin-inline: auto;
}
@media (width>= 768px) {
  .inner-narrow {
    max-width: calc(800px + 80px);
    margin-inline: auto;
  }
}

/* # = = = = = = = = = = = = = = = = = = = = = = = = =
//# Fade In Up Animation (フェードインアップアニメーション)
//   要素が下からフェードインしながらスライドアップする視覚効果
# = = = = = = = = = = = = = = = = = = = = = = = = = */
.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s ease-out;
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* # = = = = = = = = = = = = = = = = = = = = = = = = =
# Header hamburger Styles (ヘッダーハンバーガースタイル)
# = = = = = = = = = = = = = = = = = = = = = = = = = */
@media (width>= 768px) {
  .header__menu-toggle {
    display: none;
  }
}

.hamburger {
  width: 36px;
  height: 21px;
  position: relative;
  cursor: pointer;
  z-index: 51;
}
.hamburger.is-open .hamburger__bar:nth-child(1) {
  top: 10.5px;
  transform: rotate(30deg);
}
.hamburger.is-open .hamburger__bar:nth-child(2) {
  display: none;
}
.hamburger.is-open .hamburger__bar:nth-child(3) {
  top: 10.5px;
  transform: rotate(-30deg);
}

.hamburger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 6px;
  background: #111;
  transition: transform 0.3s linear, top 0.3s linear;
}
.hamburger__bar:nth-child(1) {
  top: 0;
}
.hamburger__bar:nth-child(2) {
  top: 9px;
}
.hamburger__bar:nth-child(3) {
  top: 18px;
}

/* # = = = = = = = = = = = = = = = = = = = = = = = = =
# Header Drawer Styles (ヘッダードロワースタイル)
# = = = = = = = = = = = = = = = = = = = = = = = = = */
.drawer {
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(110%);
  z-index: 50;
  background-color: #f7ba1a;
  padding: 86px 40px 40px;
  transition: transform 0.3s linear;
}
.drawer.is-open {
  transform: translateX(0);
}

.drawer__nav-item {
  text-align: right;
}

.drawer__nav-link {
  display: block;
  padding-block: 14px;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.drawer__nav-button {
  margin-top: 14px;
}

/* # = = = = = = = = = = = = = = = = = = = = = = = =
# Section Header Styles（セクションヘッダーのスタイル）
# = = = = = = = = = = = = = = = = = = = = = = = = = */
.title {
  font-family: "Montserrat", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1; /* 38px */
  letter-spacing: 0.1em;
  text-align: center;
}
@media (width>= 768px) {
  .title {
    font-size: 5rem;
    letter-spacing: 5px;
  }
}

.sub-title {
  font-family: "Montserrat", sans-serif;
  line-height: 1; /* 14px */
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
@media (width>= 768px) {
  .sub-title {
    font-size: 1.6rem;
  }
}

/* # = = = = = = = = = = = = = = = = = = = = = = = = =
# Button Styles (ボタン要素のスタイル)
# = = = = = = = = = = = = = = = = = = = = = = = = = */
.button {
  font-weight: 700;
  letter-spacing: 0.48px;
  color: #111;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 2.8rem;
  background: #ffffff;
  border-radius: 6rem;
  border: 2px solid #111;
  min-width: 150px;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background: #fabe00;
}
.button--black {
  background: #111;
  border-radius: 6rem;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.button--black:hover {
  background: #fff;
  border: 2px solid #111;
  color: #111;
}

.modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 100%;
  max-width: min(100%, 100% - 30px);
  margin-inline: auto;
  height: -moz-fit-content;
  height: fit-content;
  max-height: calc(100% - 40px);
  overflow: auto;
  z-index: 1000;
  overscroll-behavior-y: none;
  border: none;
  padding: 0;
  background: transparent;
}
@media (width>= 768px) {
  .modal {
    max-width: min(1140px, 100% - 60px);
    margin-inline: auto;
  }
}
.modal::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.modal__content {
  border-radius: 20px;
  background: #fff;
  padding-top: 16px;
  padding-bottom: 64px;
  padding-inline: 16px;
}
@media (width>= 768px) {
  .modal__content {
    padding-top: 49px;
    padding-bottom: 75px;
    padding-inline: 6.1403508772%;
  }
}

.modal__header {
  display: flex;
  justify-content: flex-end;
  position: sticky;
  top: 0;
}

.modal__close-icon {
  width: 37px;
  height: 37px;
}

.modal__body {
  margin-top: 12px;
  font-size: 1.4rem;
}
.modal__body p + p {
  margin-top: 20px;
}
@media (width>= 768px) {
  .modal__body {
    margin-top: 43px;
    font-size: 1.6rem;
  }
}

.modal__footer {
  margin-top: 30px;
  text-align: center;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 2.2rem;
  padding-bottom: 1.5rem;
  /* メディアクエリ適用 */
}
@media (width>= 768px) {
  .header__inner {
    padding-inline: 30px;
    padding-bottom: 17px;
    max-width: calc(1140px + 60px);
    margin-inline: auto;
  }
}

.header-logo {
  /* メディアクエリ適用 */
}
@media (width>= 768px) {
  .header-logo {
    padding-top: 8px;
  }
}

.header-logo__link img {
  width: 100px;
  display: block;
}
@media (width>= 768px) {
  .header-logo__link img {
    width: 135px;
  }
}

.header-nav {
  display: none;
}
@media (width>= 768px) {
  .header-nav {
    display: block;
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

.header-nav__list {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.header-nav__link {
  font-weight: 700;
  letter-spacing: 0.48px;
}
.header-nav__link:hover {
  color: #f5810e;
}

.header__menu-toggle {
  margin-top: 3px;
}

.mv {
  background: linear-gradient(180deg, #f8b819 0%, #f0d320 100%);
  border-radius: 2rem;
  max-width: min(100%, 100% - 3rem);
  margin-inline: auto;
}
@media (width>= 768px) {
  .mv {
    border-radius: 30px;
    max-width: min(100%, 100% - 60px);
    margin-inline: auto;
  }
}

.mv__inner {
  padding-top: 5rem;
  padding-bottom: 25.5rem;
  position: relative;
  /* メディアクエリ適用 */
}
@media (width>= 768px) {
  .mv__inner {
    padding-top: 11rem;
    padding-bottom: 10.9rem;
    max-width: calc(1040px + 60px);
    margin-inline: auto;
  }
}

@media (width>= 768px) {
  .mv__container {
    padding-left: 3rem;
  }
}

.mv__lead {
  font-feature-settings: "palt" on;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1; /* 22px */
  letter-spacing: 2.2px;
  /* ボックススタイル適用 */
  background: #fff;
  border-radius: 5px;
  padding: 1rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  /* メディアクエリ適用 */
}
@media (width>= 768px) {
  .mv__lead {
    font-size: 3.8rem;
    letter-spacing: 3.8px;
    padding: 1.2rem 1.5rem;
    margin-inline: 0;
  }
}
.mv__lead:last-child {
  margin-top: 0.8rem;
  /* メディアクエリ適用 */
}
@media (width>= 768px) {
  .mv__lead:last-child {
    margin-top: 1.4rem;
  }
}

.mv__description {
  margin-top: 2.6rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.48px;
  /* メディアクエリ適用 */
}
@media (width>= 768px) {
  .mv__description {
    margin-top: 2rem;
    font-size: 1.8rem;
    letter-spacing: 0.54px;
    text-align: left;
  }
}

.mv__button {
  text-align: center;
  margin-top: 2.2rem;
  /* メディアクエリ適用 */
}
@media (width>= 768px) {
  .mv__button {
    text-align: left;
    margin-top: 3.1rem;
  }
}

.mv__image {
  position: absolute;
  bottom: -108px;
  right: 0;
  width: 100%;
  text-align: center;
  /* メディアクエリ適用 */
}
@media (width>= 768px) {
  .mv__image {
    text-align: right;
    width: 57.6923076923%;
    bottom: -89px;
    right: 30px;
  }
}
.mv__image img {
  width: 345px;
  /* メディアクエリ適用 */
}
@media (width>= 768px) {
  .mv__image img {
    width: 600px;
  }
}

.clients {
  margin-top: 10.8rem;
}
@media (width>= 768px) {
  .clients {
    margin-top: 88px;
  }
}

.clients__inner {
  padding-block: 60px;
  padding-inline: 4rem;
}
@media (width>= 768px) {
  .clients__inner {
    max-width: calc(960px + 60px);
    margin-inline: auto;
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

.clients__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1; /* 18px */
  letter-spacing: 1.8px;
}
@media (width>= 768px) {
  .clients__title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}

.clients__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem 1.5rem;
}
@media (width>= 768px) {
  .clients__grid {
    margin-top: 5.4rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.6rem 2rem;
  }
}

.client__item {
  text-align: center;
}

@media (width>= 768px) {
  .client__logo {
    width: 200px;
  }
}

.news__inner {
  padding-block: 60px;
}
@media (width>= 768px) {
  .news__inner {
    padding-block: 50px;
  }
}

.news__card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 9px 30px 0 #f4f4f4;
  padding: 4rem 1.2rem;
}
@media (width>= 768px) {
  .news__card {
    padding-top: 4.2rem;
    padding-bottom: 3.4rem;
    border-radius: 30px;
    padding-inline: 9.2105263158%;
  }
}

@media (width>= 768px) {
  .news__title {
    text-align: left;
  }
}

.news__list {
  margin-top: 2.8rem;
}
@media (width>= 768px) {
  .news__list {
    margin-top: 3rem;
    max-width: calc(1140px + 60px);
    margin-inline: auto;
  }
}

.news__item:nth-child(n+2) {
  position: relative;
}
.news__item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: #e3e3e3;
}

.news__link {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-block: 1rem;
  transition: background-color 0.3s;
}
.news__link:hover {
  background-color: #fff9e5;
}
@media (width>= 768px) {
  .news__link {
    padding-block: 1.2rem;
    flex-direction: row;
    gap: 0;
  }
}

.new__meta {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
@media (width>= 768px) {
  .new__meta {
    gap: 1.4rem;
    width: 247px;
    flex-shrink: 0;
  }
}

.new__date {
  color: #333;
}
@media (width>= 768px) {
  .new__date {
    width: 119px;
    white-space: nowrap;
  }
}

.news__tag {
  min-width: 63px;
  padding: 0.2rem 1rem;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.news__tag--info {
  background: #e4780c;
  border-radius: 2px;
}
.news__tag--column {
  background: #ecb815;
  border-radius: 2px;
}
.news__tag--event {
  background: #389b47;
  border-radius: 2px;
}

.news__more {
  margin-top: 1.4rem;
  text-align: right;
}
.news__more a {
  font-weight: 700;
  line-height: 1;
  border-bottom: 2px solid #111;
  padding-bottom: 8px;
  transition: border-bottom 0.3s, color 0.3s;
}
.news__more a:hover {
  border-bottom: 2px solid #fabe00;
  color: #fabe00;
}

.about__inner {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media (width>= 768px) {
  .about__inner {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

.about__logo {
  text-align: center;
}

.about__log-img {
  width: 180px;
}
@media (width>= 768px) {
  .about__log-img {
    width: 230px;
  }
}

.about__content {
  margin-top: 150px;
  position: relative;
  padding-top: 288px;
  padding-bottom: 105px;
  text-align: center;
}
.about__content::before {
  content: "";
  width: 1100px;
  height: 1100px;
  background: linear-gradient(180deg, #f8b819 0%, #f0d320 100%);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (width>= 768px) {
  .about__content {
    margin-top: 176px;
    padding-top: 284px;
    padding-bottom: 100px;
  }
  .about__content::before {
    width: 800px;
    height: 800px;
  }
}

.about__image {
  text-align: center;
  position: absolute;
  top: -110px;
  left: 0;
  width: 100%;
}
@media (width>= 768px) {
  .about__image {
    top: -126px;
  }
}

.about__img {
  width: 320px;
}
@media (width>= 768px) {
  .about__img {
    width: 330px;
  }
}

.about__text p {
  text-align: center;
  font-weight: 700;
  line-height: 2.3; /* 36.8px */
}

.about__cta {
  margin-top: 40px;
  text-align: center;
}
@media (width>= 768px) {
  .about__cta {
    margin-top: 39px;
  }
}

.about__pop {
  font-size: 16px;
  font-weight: 700;
  line-height: 1; /* 16px */
  letter-spacing: 1.28px;
}

.about__button {
  margin-top: 5px;
}
@media (width>= 768px) {
  .about__button {
    margin-top: 9px;
  }
}

.movie {
  background: url(../../img/section-bg.png) repeat top left/529px;
}

.movie__inner {
  padding-top: 60px;
  padding-bottom: 53px;
}
@media (width>= 768px) {
  .movie__inner {
    padding-top: 101px;
    padding-bottom: 92px;
  }
}

.movie__title {
  text-align: center;
}

.sub-title {
  margin-top: 14px;
}

.movie__iframe {
  text-align: center;
  margin-top: 32px;
}
@media (width>= 768px) {
  .movie__iframe {
    margin-top: 56px;
  }
}
.movie__iframe iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 345/194;
}
@media (width>= 768px) {
  .movie__iframe iframe {
    width: 640px;
    aspect-ratio: 640/360;
  }
}

.howto {
  background-color: #fff;
}

.howto__inner {
  padding-block: 60px;
}
@media (width>= 768px) {
  .howto__inner {
    padding-block: 100px;
  }
}

.howto__title {
  text-align: center;
}
.howto__boxes {
  margin-top: 103px;
  display: flex;
  flex-direction: column;
  gap: 114px;
}
@media (width>= 768px) {
  .howto__boxes {
    margin-top: 89px;
    gap: 75px;
    max-width: 1140px;
    margin-inline: auto;
  }
}

.howto__box {
  background: #fffbf0;
  border-radius: 30px;
  padding-top: 54px;
  padding-bottom: 48px;
}
@media (width>= 768px) {
  .howto__box {
    border-radius: 40px;
    padding-top: 44px;
    padding-bottom: 56px;
    padding-inline: 40px;
  }
}

.howto__header {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  position: relative;
}
@media (width>= 768px) {
  .howto__header {
    font-size: 2.2rem;
    letter-spacing: 2.2px;
    padding-right: 95px;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.howto__img {
  width: 85px;
  height: auto;
  position: absolute;
  transform: translateX(50%);
  right: 50%;
  bottom: calc(100% + 16px);
}
@media (width>= 768px) {
  .howto__img {
    right: 0;
    bottom: 0;
    transform: translateX(0);
  }
}

@media (width>= 768px) {
  .howto__header--left {
    padding-right: 0;
    padding-left: 95px;
  }
  .howto__header--left img {
    right: auto;
    left: 0;
  }
}

.step__cards {
  margin-top: 65px;
  max-width: min(100%, 100% - 80px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 65px;
}
@media (width>= 768px) {
  .step__cards {
    margin-top: 84px;
    flex-direction: row;
    max-width: 948px;
    margin-inline: auto;
    gap: 24px;
  }
}

.step__card {
  padding-top: 49.5px;
  padding-bottom: 21px;
  background: #fff;
  border-radius: 30px;
  border: 3px solid #111;
  position: relative;
}
@media (width>= 768px) {
  .step__card {
    flex: 1;
  }
}

.step__heading {
  width: 90px;
  height: 90px;
  background: #f5810e;
  border-radius: 45px;
  border: 3px solid #111;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  text-align: center;
}

.step__heading--yellow {
  background-color: #fabe00;
}

.step__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1; /* 13px */
  letter-spacing: 1.3px;
  padding-top: 17px;
}

.step__number {
  margin-top: 3px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1; /* 34px */
  letter-spacing: 3.4px;
}

.step__contents {
  text-align: center;
}

.step__img {
  width: 160px;
}
@media (width>= 768px) {
  .step__img {
    width: 200px;
  }
}

.step__description {
  margin-top: 10px;
}
.step__description p {
  font-weight: 700;
  line-height: 1.7; /* 27.2px */
  letter-spacing: 0.48px;
}

.merit__inner {
  padding-block: 60px;
}
@media (width>= 768px) {
  .merit__inner {
    padding-top: 101px;
    padding-bottom: 100px;
  }
}

.merit__boxes {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (width>= 768px) {
  .merit__boxes {
    margin-top: 60px;
    gap: 40px;
  }
}

.merit__box {
  background: #fff;
  border-radius: 20px;
  padding-top: 10px;
  padding-bottom: 24px;
}
@media (width>= 768px) {
  .merit__box {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (width>= 768px) {
  .merit__content {
    display: flex;
    max-width: min(920px, 100% - 60px);
    margin-inline: auto;
    gap: 50px;
    align-items: center;
    flex-direction: row-reverse;
  }
}

.merit__content--reverse {
  flex-direction: row;
}

.merit__image {
  text-align: center;
}
@media (width>= 768px) {
  .merit__image {
    width: 38.0434782609%;
  }
}

.merit__img {
  width: 200px;
}
@media (width>= 768px) {
  .merit__img {
    width: 100%;
  }
}

.merit__body {
  margin-top: 18px;
  max-width: min(100%, 100% - 40px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (width>= 768px) {
  .merit__body {
    width: 56.5217391304%;
    margin-top: 0;
    gap: 16px;
  }
}

.merit__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
}
@media (width>= 768px) {
  .merit__header {
    gap: 28px;
  }
}

.merit__number {
  color: #fabe00;
  font-family: "Montserrat", sans-serif;
  font-size: 7rem;
  font-weight: 600;
  line-height: 1; /* 70px */
}
@media (width>= 768px) {
  .merit__number {
    font-size: 11rem;
    font-style: normal;
  }
}

.merit__caption {
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media (width>= 768px) {
  .merit__caption {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}

.merit__text {
  font-size: 1.4rem;
  line-height: 2; /* 28px */
}
@media (width>= 768px) {
  .merit__text {
    font-size: 1.5rem;
  }
}

.dl {
  background: linear-gradient(180deg, #f8b819 0%, #f0d320 100%);
}

.dl__inner {
  padding-block: 50px;
  padding-inline: auto;
}
@media (width>= 768px) {
  .dl__inner {
    padding-block: 60px;
  }
}

.dl__text {
  text-align: center;
  font-weight: 700;
  line-height: 2; /* 32px */
  letter-spacing: 0.48px;
}
@media (width>= 768px) {
  .dl__text {
    font-size: 1.8rem;
    letter-spacing: 0.54px;
  }
}

.dl__button {
  margin-top: 16px;
  text-align: center;
}

.footer {
  background: #000;
}

.footer__inner {
  width: 100%;
  padding-block: 10px;
  text-align: center;
}

small {
  color: #f5f5f5;
  font-size: 1.2rem;
  line-height: 1; /* 12px */
  letter-spacing: 0.96px;
}

.page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (width>= 768px) {
  .page-top {
    bottom: 30px;
    right: 16px;
  }
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

.page-top__img {
  width: 50px;
  height: auto;
}
@media (width>= 768px) {
  .page-top__img {
    width: 76px;
  }
}

.service {
  background: #fff;
}

.service__inner {
  padding-block: 60px;
}
@media (width>= 768px) {
  .service__inner {
    padding-top: 101px;
    padding-bottom: 100px;
  }
}

.service__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1; /* 20px */
  text-align: center;
}
@media (width>= 768px) {
  .service__title {
    font-size: 2.4rem;
    line-height: 1; /* 24px */
  }
}

.service__content {
  margin-top: 42px;
  overflow-x: auto;
}
@media (width>= 768px) {
  .service__content {
    margin-top: 60px;
  }
}

.service__table {
  width: 620px;
  table-layout: fixed;
}
@media (width>= 768px) {
  .service__table {
    width: 1000px;
    margin-inline: auto;
  }
}
.service__table th,
.service__table td {
  text-align: center;
  font-weight: 700;
  height: 59.5px;
  vertical-align: middle;
}
@media (width>= 768px) {
  .service__table th,
  .service__table td {
    height: 100px;
  }
}
.service__table th:nth-child(1),
.service__table td:nth-child(1) {
  width: 130px;
  font-size: 1.6rem;
  letter-spacing: 0.48px;
}
@media (width>= 768px) {
  .service__table th:nth-child(1),
  .service__table td:nth-child(1) {
    width: auto;
    font-size: 2rem;
    letter-spacing: 0.6px;
  }
}
.service__table th:nth-child(2),
.service__table td:nth-child(2) {
  width: 90px;
  background: #fff9e5;
  font-size: 1.6rem;
  letter-spacing: 0.48px;
}
@media (width>= 768px) {
  .service__table th:nth-child(2),
  .service__table td:nth-child(2) {
    width: auto;
    font-size: 2.5rem;
    letter-spacing: 0.75px;
  }
}
.service__table th:nth-child(2) img,
.service__table td:nth-child(2) img {
  width: 70px;
  height: auto;
}
@media (width>= 768px) {
  .service__table th:nth-child(2) img,
  .service__table td:nth-child(2) img {
    width: 123px;
    height: auto;
  }
}
.service__table thead th {
  letter-spacing: 1.6px;
}
@media (width>= 768px) {
  .service__table thead th {
    letter-spacing: 2px;
  }
}
.service__table th {
  letter-spacing: 0.48px;
}
@media (width>= 768px) {
  .service__table th {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.service__table td {
  font-size: 1.4rem;
  letter-spacing: 0.42px;
}
@media (width>= 768px) {
  .service__table td {
    font-size: 1.6rem;
    letter-spacing: 0.48px;
  }
}
.service__table tbody tr {
  border-top: 1.5px solid #000;
}

.service__attention {
  margin-top: 47px;
  color: #686868;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1; /* 14px */
  text-align: center;
}
@media (width>= 768px) {
  .service__attention {
    display: none;
  }
}

.contact {
  background: url(../../img/section-bg.png) repeat top left/529px;
  padding-block: 60px;
}
@media (width>= 768px) {
  .contact {
    padding-block: 100px;
  }
}

.contact__inner {
  padding-block: 60px;
  background: #fff;
  border-radius: 30px;
  text-align: center;
}
.contact__form {
  margin-top: 30px;
  max-width: min(100%, 100% - 40px);
  margin-inline: auto;
}
@media (width>= 768px) {
  .contact__form {
    margin-top: 50px;
  }
}

.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 33px;
  text-align: left;
}
@media (width>= 768px) {
  .contact__fields {
    max-width: min(612px, 100% - 60px);
    margin-inline: auto;
    gap: 30px;
  }
}

@media (width>= 768px) {
  .contact__field {
    display: flex;
    gap: 32px;
  }
}

.contact__field-header {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (width>= 768px) {
  .contact__field-header {
    width: 180px;
    flex-shrink: 0;
    justify-content: flex-end;
  }
}

.contact__label {
  font-weight: 700;
  line-height: 1.4375;
}

.contact__tag {
  padding: 6px 8px 5px;
  border-radius: 2px;
  background: #ee8013;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1; /* 11px */
  letter-spacing: 1.98px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__tag-green {
  background: #43b549;
  padding: 5px 9px 6px;
}

.contact__field-body {
  margin-top: 13px;
}
@media (width>= 768px) {
  .contact__field-body {
    flex-grow: 1;
    margin-top: 0;
  }
}

.contact__input {
  color: #adadad;
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  padding: 13px 13px 11px;
  transition: border-color 0.3s;
}
.contact__input:hover, .contact__input:focus {
  border-color: #fabe00;
  outline: none;
}

.contact__radios {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (width>= 768px) {
  .contact__radios {
    flex-direction: row;
    gap: 30px;
  }
}

.contact__radio {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}
.contact__radio:hover .contact__radio-mark {
  border-color: #fabe00;
  outline: none;
}

.contact__radio-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
+ .contact__radio-input:focus .contact__radio-mark {
  border-color: #fabe00;
}

.contact__radio-mark {
  width: 24px;
  height: 24px;
  display: block;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #111;
  box-sizing: border-box;
  position: relative;
  transition: border-color 0.3s;
}
.contact__radio-mark::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #f5810e;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.contact__radio-input:checked + .contact__radio-mark::after {
  opacity: 1;
}

.contact__radio-text {
  font-weight: 700;
  line-height: 1.4375;
}

.contact__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #111;
  padding: 12px 26px 11px 13px;
  background: url(../../img/contact-arrow.png) no-repeat center right 16px/9.451px 6.9696px;
}

.contact__textarea {
  width: 100%;
  height: 180px;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  padding: 14px;
  transition: border-color 0.3s;
}
.contact__textarea:hover, .contact__textarea:focus {
  border-color: #fabe00;
  outline: none;
}

.contact__policy {
  margin-top: 31px;
}

.contact__checkbox {
  padding-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.contact__checkbox:hover .contact__checkbox-mark, .contact__checkbox:focus .contact__checkbox-mark {
  border-color: #fabe00;
  outline: none;
}

.contact__checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.contact__checkbox-mark {
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 1px solid #111;
  position: relative;
  transition: border-color 0.3s;
}
.contact__checkbox-mark::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: 1.4px;
  width: 23px;
  height: 17.53px;
  opacity: 0;
  background: url(../../img/contact-check.png) no-repeat center center/contain;
}

.contact__checkbox-input:checked + .contact__checkbox-mark::after {
  opacity: 1;
}

.contact__checkbox-input:checked ~ .contact__checkbox-text a {
  color: #f5810e;
}

.contact__checkbox-text {
  font-size: 1.4rem;
  font-weight: 700;
}
.contact__checkbox-text a {
  font-weight: inherit;
  text-decoration-line: underline;
  transition: color 0.3s;
}
.contact__checkbox-text a:hover, .contact__checkbox-text a:focus {
  color: #f5810e;
}

.contact__button {
  margin-top: 30px;
}
@media (width>= 768px) {
  .contact__button {
    margin-top: 38px;
  }
}

.faq__inner {
  padding-block: 60px;
}
@media (width>= 768px) {
  .faq__inner {
    padding-block: 100px;
  }
}

.faq__title {
  text-align: center;
}

.accordion__list {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media (width>= 768px) {
  .accordion__list {
    margin-top: 74px;
    max-width: min(800px, 100% - 60px);
    margin-inline: auto;
  }
}

.accordion__item {
  border-radius: 10px;
  border: 3px solid #111;
  background: #fff;
}

.accordion__header {
  list-style: none;
  position: relative;
  padding: 29px 40px 16px 12px;
}
@media (width>= 768px) {
  .accordion__header {
    padding: 29.5px 80px 18px 17px;
  }
}

.accordion__header-icon {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #111;
  background: #f5810e;
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 700;
  line-height: 1; /* 22px */
  display: grid;
  place-items: center;
  position: absolute;
  top: -25px;
  left: 12px;
}
@media (width>= 768px) {
  .accordion__header-icon {
    top: -24px;
    left: 17px;
  }
}

.accordion__header-text {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1.12px;
  position: relative;
}
.accordion__header-text::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  transition: transform 0.3s;
  width: 9.26px;
  height: 6.834px;
  background: url(../../img/faq-arrow.png) no-repeat center center/contain;
}
@media (width>= 768px) {
  .accordion__header-text {
    font-size: 1.6rem;
    line-height: 27px; /* 168.75% */
    letter-spacing: 1.28px;
  }
  .accordion__header-text::after {
    right: -61px;
  }
}

.accordion__item[open] .accordion__header-text::after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion__body {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  padding: 14px 17px 16px 12px;
}
@media (width>= 768px) {
  .accordion__body {
    padding: 0 6px 17px 17px;
    gap: 10px;
  }
}

.accordion__body-icon {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #111;
  background: #fabe00;
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 700;
  line-height: 1; /* 22px */
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.accordion__body-text {
  padding-top: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1.12px;
  flex-grow: 1;
}
@media (width>= 768px) {
  .accordion__body-text {
    padding-top: 8px;
    font-size: 1.6rem;
    line-height: 27px; /* 168.75% */
    letter-spacing: 1.28px;
  }
}

.gallery__inner {
  padding-top: 60px;
  padding-bottom: 86px;
}
@media (width>= 768px) {
  .gallery__inner {
    padding-top: 100px;
    padding-bottom: 126px;
  }
}

.gallery__title {
  text-align: center;
}

.gallery__container {
  position: relative; /* 親要素を基準にする */
  margin-top: 30px;
}
@media (width>= 768px) {
  .gallery__container {
    margin-top: 60px;
    max-width: min(640px, 100% - 160px);
    margin-inline: auto;
    border-radius: 30px;
  }
}

.gallery-card {
  padding-top: 12px;
  padding-bottom: 9px;
  text-align: center;
  border-radius: 20px;
  border: 3px solid #111;
  background: #fff;
  box-shadow: 0 9px 30px 0 #f4f4f4;
}
@media (width>= 768px) {
  .gallery-card {
    padding-top: 20px;
    padding-bottom: 15px;
    border-radius: 30px;
  }
}

.gallery-card__img {
  border-radius: 10px;
  max-width: min(100%, 100% - 30px);
  margin-inline: auto;
}
@media (width>= 768px) {
  .gallery-card__img {
    border-radius: 20px;
    max-width: min(600px, 100% - 38px);
    margin-inline: auto;
  }
}

.gallery-card__text {
  margin-top: 15px;
  font-size: 1.4rem;
}
@media (width>= 768px) {
  .gallery-card__text {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}

.gallery__pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.gallery__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #bcbcbc;
}

.gallery__pagination .swiper-pagination-bullet-active {
  background-color: #fabe00;
}

.swiper-pagination-bullets.gallery__pagination {
  bottom: -27px;
}

.gallery__prev.swiper-button-prev,
.gallery__next.swiper-button-next {
  width: 40px;
  height: 40px;
  margin-top: -25px;
}
@media (width>= 768px) {
  .gallery__prev.swiper-button-prev,
  .gallery__next.swiper-button-next {
    width: 50px;
    height: 50px;
    margin-top: -45px;
  }
}
.gallery__prev.swiper-button-prev::after,
.gallery__next.swiper-button-next::after {
  display: none;
}
.gallery__prev.swiper-button-prev svg,
.gallery__next.swiper-button-next svg {
  display: none;
}

.swiper-button-prev.gallery__prev {
  background: url(../../img/prev-icon.png) no-repeat center center/contain;
  left: -5px;
}
@media (width>= 768px) {
  .swiper-button-prev.gallery__prev {
    left: -70px;
  }
}

.swiper-button-next.gallery__next {
  background: url(../../img/next-icon.png) no-repeat center center/contain;
  right: -5px;
}
@media (width>= 768px) {
  .swiper-button-next.gallery__next {
    right: -70px;
  }
}