@charset "UTF-8";
:root {
  --color-main: #357ABD;
  --color-sub: #00B5D8;
  --color-accent: #F57C00;
  --color-text: #333;
  --color-bg-white: #fff;
  --color-bg-gray: #f5f5f5;
  --color-bg-yellow: #fffbf0;
  --color-bg-lightblue: #e8f4ff;
  --color-bg-footer: #1d2a4d;
  --color-table: #2b4b85;
  --color-table-bg: #B3D4FC;
  --font-family-ja: "Noto Sans JP", sans-serif;
  --font-family-en: "Roboto", sans-serif;
  --line-height: 1.7;
  --header-height-pc: 80px;
  --inner-1200: 1200px;
  --inner-900: 900px;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-family-ja);
  font-size: 1.6rem;
  line-height: var(--line-height);
  color: var(--color-text);
  background-color: var(--color-bg-gray);
}

.inner {
  max-width: calc(var(--inner-1200) + 60px);
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .inner {
    padding-inline: 15px;
  }
}

.section {
  padding-block: 80px;
}
@media screen and (max-width: 1023px) {
  .section {
    padding-block: 50px;
  }
}

.section-title {
  text-align: center;
  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: 5px;
  padding-bottom: 30px;
}

.section-title__ja {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  padding-bottom: 15px;
}
@media screen and (max-width: 1023px) {
  .section-title__ja {
    font-size: 2.8rem;
  }
}
.section-title__ja::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 40px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: var(--color-main);
}

.section-title__en {
  font-family: var(--font-family-en);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #999;
  text-transform: capitalize;
}
@media screen and (max-width: 1023px) {
  .section-title__en {
    font-size: 1.2rem;
  }
}

.button {
  display: inline-block;
  padding: 10px 20px;
  min-width: 250px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-main);
  border-radius: 10px;
  text-align: center;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .button:hover {
    opacity: 0.6;
  }
}
.button:focus {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}

.reserve-fixed {
  position: fixed;
  right: 0;
  top: 90px;
  z-index: 1000;
}

.reserve-fixed__button {
  position: relative;
  width: 110px;
  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;
  background: var(--color-accent);
  color: #fff;
  padding: 50px 10px 10px;
  border-radius: 10px 0 0 10px;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.reserve-fixed__button::before, .reserve-fixed__button::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
}
.reserve-fixed__button::before {
  background: url(../img/pc-icon.svg) no-repeat center center/contain;
  left: 28px;
  top: 15px;
}
.reserve-fixed__button::after {
  background: url(../img/smartphone-icon.svg) no-repeat center center/contain;
  right: 22px;
  top: 15px;
}
@media (hover: hover) {
  .reserve-fixed__button:hover {
    opacity: 0.6;
  }
}
.reserve-fixed__button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.reserve-fixed__text,
.tell-fixed__text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}

.tell-fixed {
  position: fixed;
  right: 0;
  top: 205px;
  z-index: 1000;
}

.tell-fixed__button {
  position: relative;
  min-width: 110px;
  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;
  background: var(--color-sub);
  color: #fff;
  padding: 50px 10px 10px;
  border-radius: 10px 0 0 10px;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.tell-fixed__button::before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
}
.tell-fixed__button::before {
  background: url(../img/smartphone-icon.svg) no-repeat center center/contain;
  left: 40px;
  top: 15px;
}
@media (hover: hover) {
  .tell-fixed__button:hover {
    opacity: 0.6;
  }
}
.tell-fixed__button:focus {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}

.reserve-fixed__text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  height: var(--header-height-pc);
  background: var(--color-main);
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo a {
  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;
}
.header__logo a img {
  width: 50px;
  height: auto;
}
.header__logo a span {
  color: #FFF;
  font-size: 2.3rem;
  font-weight: 700;
}

@media screen and (max-width: 1023px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item {
  line-height: 1em;
  position: relative;
}
.header__nav-item:last-child {
  border: none;
}
.header__nav-item a {
  font-size: 1.4rem;
  color: #fff;
  padding: 10px;
}
.header__nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (hover: hover) {
  .header__nav-item a:hover::after {
    -webkit-transform: scaleX(1.1);
            transform: scaleX(1.1);
  }
}

.header__open {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header__open {
    display: block;
  }
}

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 100;
}
.drawer-icon.active .drawer-icon__bar:nth-child(1), .drawer-icon.active .drawer-icon__bar:nth-child(3) {
  top: 10px;
}
.drawer-icon.active .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.active .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.active .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #fff;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 9px;
}
.drawer-icon__bar:nth-child(3) {
  top: 18px;
}

.drawer-content {
  width: 60%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--color-main);
  z-index: 10;
  padding: 86px 40px 40px;
  -webkit-transform: translate(-100%);
          transform: translate(-100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.active {
  -webkit-transform: translate(0);
          transform: translate(0);
}

.drawer-content__list {
  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: start;
      -ms-flex-align: start;
          align-items: start;
}

.drawer-content__link {
  display: block;
  padding-block: 14px;
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.48px;
  color: #fff;
}

.drawer-content__button {
  margin-top: 14px;
}

.first-view {
  width: 100%;
  height: 680px;
  aspect-ratio: 3/2;
  background: url("../img/fv-img.jpg") no-repeat center center/cover;
  margin-top: var(--header-height-pc);
  position: relative;
}
@media screen and (max-width: 1023px) {
  .first-view {
    background: url("../img/fv-img.jpg") no-repeat 30% center/cover;
  }
}
@media screen and (max-width: 767px) {
  .first-view {
    background: url("../img/fv-img.jpg") no-repeat 25% center/cover;
  }
}

.first-view__content {
  top: 140px;
  position: absolute;
  right: 40%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  border-top: 8px solid var(--color-sub);
  padding: 30px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
  width: 90%;
  max-width: 800px;
  z-index: 30;
}
@media screen and (max-width: 1023px) {
  .first-view__content {
    position: static;
    display: block;
    margin: 15px auto;
    padding: 30px 15px;
    right: auto;
    -webkit-transform: none;
            transform: none;
    width: calc(100% - 60px);
    border-radius: 20px;
    -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
            box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
  }
}

.first-view__title1,
.first-view__title2,
.first-view__title3 {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  color: var(--color-text);
}
@media screen and (max-width: 1023px) {
  .first-view__title1,
  .first-view__title2,
  .first-view__title3 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 767px) {
  .first-view__title1,
  .first-view__title2,
  .first-view__title3 {
    font-size: 1.9rem;
  }
}

.first-view__lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.05em;
  padding-left: 5px;
}
@media screen and (max-width: 1023px) {
  .first-view__lead {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .first-view__lead {
    font-size: 1.2rem;
  }
}

.first-view__table {
  margin-top: 25px;
}
@media screen and (max-width: 1023px) {
  .first-view__table {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .first-view__table {
    margin-top: 15px;
  }
}

.time__table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.time__table th,
.time__table td {
  text-align: center;
  width: 50px;
  height: 50px;
  vertical-align: middle;
  border: none;
}
.time__table th:nth-child(1),
.time__table td:nth-child(1) {
  width: 150px;
}
.time__table th {
  font-weight: 700;
}
.time__table td {
  font-weight: 400;
  color: var(--color-table);
}
.time__table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.time__table tr:last-child {
  border-bottom: none;
}
.time__table thead th {
  color: var(--color-table);
  background: var(--color-table-bg);
  font-size: 1.4rem;
  border-bottom: 2px solid var(--color-table);
}
.time__table thead tr {
  border-top: none;
}
.time__table tbody th {
  font-size: 1.4rem;
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.02);
}
.time__table tbody td {
  font-size: 1.6rem;
}

.first-view__button-wrap {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .first-view__button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.reserve-button {
  width: 100%;
  background: var(--color-accent);
}
.reserve-button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.reserve-button span {
  display: inline-block;
  position: relative;
  font-weight: 700;
  padding-left: 25px;
}
.reserve-button span::before {
  content: "";
  position: absolute;
  margin-top: 1px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../img/pc-icon.svg) no-repeat center center/contain;
}

.tell-button {
  width: 100%;
  background: var(--color-sub);
}
.tell-button span {
  display: inline-block;
  position: relative;
  font-weight: 700;
  padding-left: 25px;
}
.tell-button span::before {
  content: "";
  position: absolute;
  margin-top: 1px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../img/smartphone-icon.svg) no-repeat center center/contain;
}

.point {
  background: var(--color-bg-gray);
}

.point__inner {
  max-width: calc(var(--inner-900) + 60px);
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .point__inner {
    padding-inline: 15px;
  }
}

.point__list {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .point__list {
    margin-top: 40px;
    grid-template-columns: repeat(1, 1fr);
    gap: 70px;
  }
}

.point__item {
  text-align: center;
  padding: 47px 20px 20px;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
  position: relative;
}

.point__head {
  position: absolute;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--color-sub);
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
}

.point__head-text {
  font-family: var(--font-family-en);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.point__head-number {
  font-size: 34px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.4px;
  color: #fff;
  margin-top: 3px;
}

.point__body {
  margin-top: 10px;
}

.point__body-title {
  margin-top: 8px;
  font-size: 1.8rem;
  font-weight: 700;
}

.point__body-text {
  margin-top: 5px;
  text-align: justify;
}

.point__text-annotation {
  font-size: 1.4rem;
  display: inline-block;
  text-align: justify;
}

.news__title {
  display: inline-block;
}
.news__title .news__title-ja {
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  padding-bottom: 15px;
  text-align: left;
}
.news__title .news__title-ja::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 40px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  background: var(--color-main);
}
.news__title .news__title-en {
  margin-top: 5px;
  display: block;
  font-family: var(--font-family-en);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #999;
  text-transform: capitalize;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .news__title .news__title-en {
    font-size: 1.2rem;
  }
}

.news__card {
  border-radius: 30px;
  background: #fff;
  padding: 40px 100px;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
}
@media screen and (max-width: 1023px) {
  .news__card {
    padding: 50px;
  }
}

.news__list {
  margin-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: 5px;
}

.news__item {
  padding: 12px;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
@media (hover: hover) {
  .news__item:hover {
    background-color: var(--color-bg-yellow);
  }
}

.news__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .news__item-link {
    -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;
  }
}

.news__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 180px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .news__item-meta {
    width: 100%;
  }
}

.news__item-label {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 2px;
  background: var(--color-sub);
  min-width: 70px;
  text-align: center;
}
.news__item-label--important {
  background: var(--color-accent);
}

.news__item-title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    width: 100%;
  }
}

.news__more-link {
  margin-top: 10px;
  font-weight: 700;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  border-bottom: 2px solid var(--color-text);
  padding-bottom: 8px;
  -webkit-transition: color 0.3s, border-bottom 0.3s;
  transition: color 0.3s, border-bottom 0.3s;
}
@media (hover: hover) {
  .news__more-link:hover {
    color: var(--color-main);
    border-bottom: 2px solid var(--color-main);
  }
}

.about {
  background: var(--color-bg-white);
}

.about__inner {
  max-width: calc(var(--inner-900) + 60px);
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .about__inner {
    padding-inline: 15px;
  }
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about__image {
  width: 50%;
  border-radius: 10px;
}
@media screen and (max-width: 1023px) {
  .about__image {
    width: 100%;
  }
}
.about__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 20px;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
}

.about__textarea {
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .about__textarea {
    width: 100%;
    text-align: center;
  }
}

.about__text {
  font-size: 1.4rem;
  text-align: justify;
}

.about-button {
  margin-top: 10px;
}
@media screen and (max-width: 1023px) {
  .about-button {
    margin-top: 20px;
  }
}

.menu__inner {
  max-width: calc(var(--inner-900) + 60px);
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .menu__inner {
    padding-inline: 15px;
  }
}

.menu__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1023px) {
  .menu__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .menu__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.menu-item {
  background: var(--color-bg-white);
  text-align: center;
  padding-block: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
}

.menu-item__link {
  overflow: hidden;
  display: block;
  padding: 20px 0;
}
@media (hover: hover) {
  .menu-item__link:hover .menu-item__image {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.menu-item__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ececec;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -o-object-fit: contain;
     object-fit: contain;
}

.menu-item__title {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}

.feature__inner {
  max-width: calc(var(--inner-900) + 60px);
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .feature__inner {
    padding-inline: 15px;
  }
}

.feature__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: 20px;
}

.feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding: 40px 30px;
  border-radius: 20px;
  background: var(--color-bg-white);
}
@media screen and (max-width: 1023px) {
  .feature__item {
    padding: 30px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.feature__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .feature__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.feature__content {
  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;
}

.feature__content-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.feature__number {
  font-size: 7.5rem;
  font-family: var(--font-family-en);
  font-weight: 600;
  line-height: 1;
  color: var(--color-main);
}

.feature__title {
  font-size: 2rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.feature__text {
  margin-top: 16px;
  text-align: justify;
  font-size: 1.5rem;
}

.feature__visual {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.feature__visual img {
  width: 400px;
  height: auto;
  border-radius: 20px;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
}
@media screen and (max-width: 1023px) {
  .feature__visual img {
    width: 100%;
  }
}

.access__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1023px) {
  .access__content {
    grid-template-columns: repeat(1, 1fr);
  }
}

.access__map {
  height: 100%;
}
.access__map iframe {
  width: 640px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 640/360;
  vertical-align: top;
}
@media screen and (max-width: 1023px) {
  .access__map iframe {
    width: 100%;
  }
}

.access__info {
  height: 100%;
}

.access__text {
  margin-top: 10px;
}
.access__text span {
  font-size: 1.4rem;
  line-height: 1;
}

.access__contact-info {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.access__transportation {
  font-size: 1.4rem;
}

.access__button-box {
  margin-top: 10px;
}

.access__detail-button {
  background: var(--color-main);
  width: 100%;
}

.access__map-button {
  background: var(--color-main);
  text-transform: capitalize;
}

.footer {
  background: var(--color-bg-footer);
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 40px;
}
@media screen and (max-width: 1023px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: 30px;
    gap: 40px;
  }
}

.footer__info {
  color: #fff;
}

.footer-info__logo {
  font-size: 2.4rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1023px) {
  .footer-info__logo {
    font-size: 2.2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-info__logo a {
  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;
}
.footer-info__logo a img {
  width: 50px;
  height: auto;
  border-radius: 50%;
}
.footer-info__logo a span {
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 700;
}

.footer-info__catch {
  font-size: 1.4rem;
  padding-left: 50px;
}
@media screen and (max-width: 1023px) {
  .footer-info__catch {
    padding-left: 0;
    text-align: center;
  }
}

.footer-info__button {
  margin-top: 10px;
}
@media screen and (max-width: 1023px) {
  .footer-info__button {
    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;
  }
}

.tel-link {
  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;
  color: #fff;
  font-weight: 500;
  font-size: 3.2rem;
  text-align: center;
  gap: 10px;
}
.tel-link::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url(../img/smartphone-icon.svg) no-repeat center center/contain;
}
@media (hover: hover) {
  .tel-link:hover {
    opacity: 0.6;
  }
}

.footer-info__sns-links {
  margin-top: 10px;
  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;
  gap: 20px;
}
@media (hover: hover) {
  .footer-info__sns-links a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1023px) {
  .footer-info__sns-links {
    margin-top: 20px;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 1023px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

@media screen and (max-width: 1023px) {
  .footer__nav-block {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
  }
  .footer__nav-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.footer__nav-home {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s, color 0.3s;
  transition: text-decoration 0.3s, color 0.3s, -webkit-text-decoration 0.3s;
}
@media (hover: hover) {
  .footer__nav-home a:hover {
    text-decoration: underline;
    color: var(--color-main);
  }
}

.footer__nav-title {
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 3px;
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .footer__nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.footer__nav-item a {
  display: inline-block;
  font-size: 1.3rem;
  padding-block: 10px;
  color: #fff;
  -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s, color 0.3s;
  transition: text-decoration 0.3s, color 0.3s, -webkit-text-decoration 0.3s;
}
@media screen and (max-width: 1023px) {
  .footer__nav-item a {
    padding-block: 5px;
  }
}
@media (hover: hover) {
  .footer__nav-item a:hover {
    text-decoration: underline;
    color: var(--color-main);
  }
}

.footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
  padding-block: 1rem;
}
.footer__copyright small {
  font-size: 1.2rem;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .footer__copyright small {
    font-size: 1rem;
  }
}

.form__first-view {
  margin-top: calc(var(--header-height-pc) + 40px);
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .form__first-view {
    padding-inline: 15px;
  }
}
.form__first-view .first-view__inner {
  max-width: calc(var(--inner-1200) + 60px);
  margin: 0 auto;
  background: url(../img/form-fv.jpg) no-repeat center center/cover;
  padding: 60px 0 160px;
  border-radius: 30px;
}
.form__first-view .section-title__ja {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.form__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}

.form-info {
  padding-block: 40px;
  text-align: center;
}

.form-info__inner {
  max-width: calc(var(--inner-900) + 60px);
  padding-inline: 30px;
  margin-inline: auto;
}

.form-info__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form-info__title {
    font-size: 2.5rem;
  }
}

.form-info__tel a {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .form-info__tel a {
    font-size: 3.5rem;
  }
}

.form-info__hours {
  margin-top: 3px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.guideline {
  padding-inline: 30px;
  margin-inline: auto;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .guideline {
    padding-inline: 15px;
  }
}

.guideline__inner {
  padding-inline: 30px;
  margin-inline: auto;
  padding: 40px;
  background: var(--color-bg-white);
  border-radius: 20px;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
}
@media screen and (max-width: 767px) {
  .guideline__inner {
    padding: 30px;
  }
}

.guideline__title {
  font-size: 2rem;
  font-weight: 600;
}

.guideline__list {
  margin-top: 3px;
  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;
}

.guideline__item {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: justify;
  padding-left: 1em;
  position: relative;
}
.guideline__item::before {
  content: "・";
  position: absolute;
  left: 0;
}

.form__inner {
  max-width: calc(var(--inner-900) + 60px);
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .form__inner {
    padding-inline: 15px;
  }
}

.form__steps {
  text-align: center;
}

.form-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .form-step {
    grid-template-columns: repeat(1, 1fr);
  }
}

.form-step__item {
  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;
  gap: 10px;
  width: 100%;
  padding: 10px 20px;
  color: #fff;
  background: #9B9B9B;
  clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0% 100%, 0% 0%);
}
@media screen and (max-width: 767px) {
  .form-step__item {
    clip-path: none;
    max-width: 100%;
  }
}
.form-step__item:last-child {
  clip-path: none;
}
.form-step__item--active {
  background: var(--color-accent);
}

.form-step__number {
  display: inline-block;
}

.form-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.form-field__input {
  margin-top: 5px;
}

.form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: 700;
}

.form-label__indicator {
  display: inline-block;
  border-radius: 2px;
  background: var(--color-main);
  padding: 5px 10px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  color: #fff;
}

.form-label__indicator--required {
  color: #fff;
  background: var(--color-accent);
}

.form-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: inherit;
  color: inherit;
  vertical-align: top;
  width: 100%;
  border-radius: 5px;
  border: 2px solid #111;
  background: #fff;
  padding: 12px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  font-size: 2rem;
}
@media (hover: hover) {
  .form-text:hover {
    border-color: var(--color-main);
  }
}
.form-text:focus {
  border-color: var(--color-main);
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}

.form-textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: inherit;
  color: inherit;
  vertical-align: top;
  border-radius: 5px;
  border: 2px solid #111;
  background: #fff;
  width: 100%;
  height: 250px;
  padding: 12px;
  font-size: 2rem;
}
@media (hover: hover) {
  .form-textarea:hover {
    border-color: var(--color-main);
  }
}
.form-textarea:focus {
  border-color: var(--color-main);
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}

.form-field__radios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .form-field__radios {
    grid-template-columns: repeat(1, 1fr);
  }
}

.form-radio {
  position: relative;
  cursor: pointer;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:focus + .form-radio__text {
  border: 2px solid var(--color-main);
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}
.form-radio__input:checked + .form-radio__text {
  background: var(--color-main);
  color: #fff;
}

.form-radio__text {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  background: #9B9B9B;
  width: 100%;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid transparent;
}
@media (hover: hover) {
  .form-radio__text:hover {
    background: var(--color-main);
  }
}

.form-select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: inherit;
  color: inherit;
  width: 100%;
  border-radius: 5px;
  border: 2px solid #111;
  padding: 12px 42px 12px 12px;
  background: url(../img/arrow-icon.svg) no-repeat center right 14px/15px 12px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 2rem;
}
@media (hover: hover) {
  .form-select:hover {
    border-color: var(--color-main);
  }
}
.form-select:focus {
  border-color: var(--color-main);
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}

.preferred__box {
  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: 10px;
}
.preferred__box .form-field__input {
  width: 100%;
}
.preferred__box .form-field__input .form-text {
  margin-top: 5px;
}

.form__footer {
  text-align: center;
  margin-top: 20px;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
@media (hover: hover) {
  .form-checkbox__input:hover + .form-checkbox__text::before {
    border-color: var(--color-main);
  }
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border-color: var(--color-main);
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
}
.form-checkbox__text a {
  font-weight: 700;
  text-decoration: underline;
}
@media (hover: hover) {
  .form-checkbox__text a:hover {
    color: var(--color-main);
  }
}

.form-checkbox__text::before,
.form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-checkbox__text::before {
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 1px solid #111;
}

.form-checkbox__text::after {
  left: 0;
  width: 30px;
  height: 20px;
  left: -5px;
  background: url(../img/check-icon.svg) no-repeat center center/30px 25px;
  opacity: 0;
}

.contact__submit {
  margin-top: 10px;
}
.contact__submit button:focus {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}

.faq__inner {
  max-width: calc(var(--inner-900) + 60px);
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    padding-inline: 15px;
  }
}

.faq__title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}

.guide__first-view {
  margin-top: calc(var(--header-height-pc) + 40px);
  padding-inline: 30px;
}
@media screen and (max-width: 1023px) {
  .guide__first-view {
    padding-inline: 15px;
  }
}
.guide__first-view .first-view__inner {
  max-width: calc(var(--inner-1200) + 60px);
  margin: 0 auto;
  background: url(../img/guide-fv.jpg) no-repeat top center/cover;
  padding: 60px 30px 160px;
  border-radius: 30px;
}
@media screen and (max-width: 1023px) {
  .guide__first-view .first-view__inner {
    background: url(../img/guide-fv.jpg) no-repeat 70% center/cover;
    /* 右から70%の位置に調整 */
  }
}
.guide__first-view .section-title__ja {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.first-guide {
  margin-top: 60px;
  background: var(--color-bg-white);
}

.first-guide__inner {
  text-align: left;
}

.first-guide__title {
  font-size: 2.8rem;
  font-weight: 700;
}

.first-guide__text {
  text-align: justify;
}

.first-guide__signature {
  text-align: right;
  margin-top: 20px;
  font-size: 1.4rem;
}

.flow__inner {
  max-width: calc(var(--inner-900) + 60px);
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .flow__inner {
    padding-inline: 15px;
  }
}

.flow__title {
  font-size: 2.8rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.flow__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: 60px;
}

.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding: 30px 60px;
  border-radius: 20px;
  background: var(--color-bg-white);
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
  position: relative;
  border: 4px solid var(--color-main);
  border-bottom: 7px solid var(--color-main);
}
@media screen and (max-width: 1023px) {
  .flow__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 20px 40px;
  }
}
.flow__item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: var(--color-main);
  clip-path: polygon(50% 50%, 0 0, 100% 0);
}
.flow__item:last-child::after {
  display: none;
}

.flow__content-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.flow__number {
  font-size: 4.5rem;
  font-family: var(--font-family-en);
  font-weight: 600;
  line-height: 1;
  color: var(--color-main);
}

.flow__text {
  margin-top: 16px;
  text-align: justify;
  font-size: 1.5rem;
}

.flow__visual {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.flow__visual img {
  width: 400px;
  height: auto;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.16);
}
@media screen and (max-width: 1023px) {
  .flow__visual img {
    width: 100%;
  }
}

.price {
  padding-top: 0;
}

.price__inner {
  max-width: calc(var(--inner-900) + 60px);
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .price__inner {
    padding-inline: 15px;
  }
}

.price__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.price__item {
  width: 50%;
}

.price__title {
  font-size: 2.4rem;
  font-weight: 700;
  padding-block: 10px;
  padding-left: 20px;
  background: #fff;
  position: relative;
}
.price__title::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: var(--color-main);
}
@media screen and (max-width: 1023px) {
  .price__title {
    font-size: 2rem;
  }
}

.price__text {
  font-size: 1.4rem;
  padding-left: 20px;
  margin-top: 8px;
  text-align: justify;
}

.price__text-annotation {
  display: block;
  font-size: 1rem;
}

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

.cta {
  padding-block: 80px;
  background: url(../img/cta-img.jpg) no-repeat center center/cover;
}

.cta__inner {
  max-width: calc(var(--inner-900) + 60px);
  padding-inline: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .cta__inner {
    padding-inline: 15px;
  }
}

.cta__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}

.cta__button-title {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}

.cta__button-text {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.cta__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .cta__button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cta__button {
  border-radius: 0;
  width: 100%;
}

.cta__button--form {
  background: var(--color-accent);
}

.cta__button--tel {
  background: var(--color-sub);
}

.faq {
  background: var(--color-bg-gray);
}

.faq__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
    /* height:0（数値型） → auto（文字型） のアニメーションを可能にするための指定 */
  }
  details[open]::details-content {
    height: auto;
  }
}
/* height:0→autoへのアニメーションが対応していない場合は、固定値にアニメーションさせる */
@supports not (interpolate-size: allow-keywords) {
  details[open]::details-content {
    height: auto;
    overflow-y: scroll;
  }
}
details[open] .answer {
  -webkit-animation: fadein 0.5s ease;
          animation: fadein 0.5s ease;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.faq__box {
  cursor: pointer;
  /* --------アコーディオンの中身のスタイル-------- */
  /* --------アコーディオンの中身のスタイル（開いている時）-------- */
  /* 開閉時のアニメーション */
}
.faq__box::details-content {
  -webkit-transition: height 0.3s, opacity 0.3s, content-visibility 0.3s allow-discrete;
  transition: height 0.3s, opacity 0.3s, content-visibility 0.3s allow-discrete;
  height: 0;
  opacity: 0;
  overflow: clip;
  background-color: var(--color-bg-white);
}
.faq__box[open]::details-content {
  opacity: 1;
  height: auto;
}
.faq__box[open] .faq-box__head::before {
  opacity: 0;
}
.faq__box[open] .faq-box__head::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.faq-box__question-icon {
  background: var(--color-main);
}

.faq-box__question-text {
  font-size: 1.8rem;
  font-weight: 700;
}

.faq-box__answer-icon {
  background: var(--color-sub);
}

.faq-box__answer-text {
  font-size: 1.6rem;
  font-weight: 500;
}

.faq-box__head {
  display: block;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 24px 40px 24px;
  background: var(--color-bg-lightblue);
  position: relative;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.faq-box__head::before, .faq-box__head::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faq-box__head::before, .faq-box__head::after {
    right: 10px;
  }
}
.faq-box__head::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq-box__head::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.faq-box__head::marker {
  content: "";
}
.faq-box__head::-webkit-details-marker {
  display: none;
}

.faq-box__body {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 24px 40px 24px;
  background: #f8f9fa;
}

.faq-box__question-icon,
.faq-box__answer-icon {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  padding: 20px;
  border-radius: 50%;
}