@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  /* 親の色を継承 */
  text-decoration: none;
}

.color-balck {
  color: black !important;
}

.bg-white {
  background-color: white !important;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #000;
  padding-top: 80px;
  height: 100%;
  min-height: 100vh;
}

.menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 5;
  display: none;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  .menu {
    display: flex;
  }
}
.menu .menu-button, .menu .yellow-button2, .menu .yellow-button {
  width: 50%;
  position: relative;
  display: inline-block;
  padding: 16px 0px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  z-index: 1;
}
.menu .yellow-button {
  color: #000;
  background-color: black;
  border: 3px solid #ffd700;
}
.menu .yellow-button::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background-color: #ffd700;
  z-index: -1;
}
.menu .yellow-button2 {
  color: white;
  background-color: white;
  border: 4px solid #ffd700;
}
.menu .yellow-button2::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  background-color: #ffd700;
  z-index: -1;
}

.hidden {
  transform: translateY(-100%);
}

.header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease;
  z-index: 1000;
  background-color: #fff;
  /* 背景がないと下の要素が透けます */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  /* 任意の影 */
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  background-color: #86DEB7;
}
.header__logo {
  font-weight: bold;
  font-size: 30px;
  margin-left: 60px;
  flex-shrink: 0;
  color: white;
}
@media screen and (max-width: 767px) {
  .header__logo {
    margin-left: 0px;
  }
}
.header .header__right {
  display: flex;
}
.header .header__right.open {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .header .header__right {
    position: absolute;
    top: 80px;
    right: 0;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding: 1.5rem 1rem;
    display: none;
    z-index: 10000;
    height: 100vh;
  }
  .header .header__right.open {
    display: flex;
  }
}
.header .header__right__nav {
  display: flex;
  align-items: center;
  margin-right: 25px;
}
@media screen and (max-width: 1024px) {
  .header .header__right__nav {
    margin-right: 0px;
  }
}
.header .header__right__nav .nav__list {
  display: flex;
  gap: 25px;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .header .header__right__nav .nav__list {
    margin-left: auto;
    gap: 0px;
    flex-wrap: wrap;
    text-align: center;
  }
  .header .header__right__nav .nav__list .nav__item {
    margin-left: auto;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .header .header__right__nav .nav__list {
    margin: 0 auto;
    flex-wrap: nowrap;
    text-align: center;
    flex-direction: column;
    gap: 25px;
  }
  .header .header__right__nav .nav__list .nav__item {
    margin-left: 0;
  }
}
.header .header__right__nav .nav__list .nav__item a {
  flex-wrap: wrap;
  text-decoration: none;
  color: #333;
  font-size: 19px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .header .header__right__nav .nav__list .nav__item a {
    margin-right: 25px;
  }
}
.header .header__right__buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 1024px) {
  .header .header__right__buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.header .header__right__buttons .btn {
  width: 144px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .header .header__right__buttons .btn {
    height: 32px;
  }
}
@media screen and (max-width: 767px) {
  .header .header__right__buttons .btn {
    height: 42px;
    margin-top: 10px;
  }
}
.header .header__right__buttons .btn--yellow {
  background-color: #ffd700;
  color: #000;
  border: 2px solid #000;
}
@media screen and (max-width: 1024px) {
  .header .header__right__buttons .btn--yellow {
    margin-right: 20px;
  }
}
.header .header__right__buttons .btn--outline {
  background-color: #fff;
  border: 2px solid #ffd700;
  color: #ffd700;
  margin-right: 20px;
}
.header .hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header .hamburger {
    display: flex;
  }
}
.header .hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.header .hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header .hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  background-color: #86DEB7;
  padding-top: 20px;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .hero {
    padding-left: 10%;
  }
}
@media screen and (max-width: 550px) {
  .hero {
    padding-left: 10%;
  }
}
@media screen and (max-width: 500px) {
  .hero {
    padding-left: 5%;
  }
}
.hero__content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hero__content {
    padding-top: 80px;
  }
}
.hero__text:first-child {
  margin-top: 150px;
}
@media screen and (max-width: 767px) {
  .hero .pc {
    display: none;
  }
}
.hero .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .hero .sp {
    display: inline-block;
  }
}
.hero__text {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  z-index: 1;
  margin-bottom: 20px;
  background: linear-gradient(to bottom, transparent 80%, white 80%);
}
@media screen and (max-width: 767px) {
  .hero__text {
    max-width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .hero__text {
    font-size: 34px;
  }
}
@media screen and (max-width: 420px) {
  .hero__text {
    font-size: 30px;
  }
}
.hero .empty-class {
  padding-top: 200px;
}
@media screen and (max-width: 767px) {
  .hero .empty-class {
    padding-top: 120px;
  }
}
.hero__image--plane {
  position: absolute;
  top: 1rem;
  right: 0px;
  width: 240px;
}
@media screen and (max-width: 767px) {
  .hero__image--plane {
    width: 180px;
  }
}
.hero__image--staff {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 240px;
}
@media screen and (max-width: 767px) {
  .hero__image--staff {
    width: 180px;
  }
}

.exchange-rates {
  padding-top: 80px;
  padding-bottom: 50px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.exchange-rates__title {
  font-size: 40px;
  font-weight: bold;
  display: inline;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, #86DEB7 80%);
}
.exchange-rates__table-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  margin-bottom: 1.5rem;
  border-radius: 12px;
}
.exchange-rates__table {
  width: 100%;
  max-width: 900px;
  border-collapse: collapse;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 500px) {
  .exchange-rates__table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
}
.exchange-rates__table thead {
  table-layout: fixed;
  white-space: nowrap;
  width: 100%;
  background-color: #86DEB7;
}
.exchange-rates__table thead th:first-child {
  border-top-left-radius: 4px;
}
.exchange-rates__table thead th:last-child {
  border-top-right-radius: 4px;
}
.exchange-rates__table thead th {
  min-width: 150px;
  white-space: wrap;
  padding: 1rem;
  font-weight: bold;
  text-align: center;
}
.exchange-rates__table tbody {
  width: 100%;
}
.exchange-rates__table tbody td {
  padding: 1rem;
  border-top: 1px solid #ddd;
  text-align: center;
}
.exchange-rates__table tbody td img.flag {
  width: 50px;
  height: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.exchange-rates__table tbody td:first-child {
  text-align: left;
}
.exchange-rates__note {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
  padding-bottom: 30px;
}
.exchange-rates__note p {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.exchange-rates__link {
  margin: 1.5rem 0;
}
.exchange-rates__link a {
  font-weight: bold;
  text-decoration: underline;
  color: #000;
}

.benefits {
  background-color: #f2f2f2;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
.benefits__title {
  font-size: 40px;
  font-weight: bold;
  display: inline;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, #86DEB7 80%);
}
.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .benefits__list {
    text-align: center;
  }
}

.benefit-card {
  background-color: #fff;
  border-radius: 25px;
  padding: 36px;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .benefit-card {
    flex-direction: column;
  }
}
.benefit-card__text {
  flex: 1;
}
@media screen and (max-width: 600px) {
  .benefit-card__text {
    text-align: center;
  }
}
.benefit-card__text .benefit-card__label {
  color: #55c1a7;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.benefit-card__text .benefit-card__heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 500px) {
  .benefit-card__text .benefit-card__heading .sp_only_display {
    display: block;
  }
}
.benefit-card__text .benefit-card__desc {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .benefit-card__text .benefit-card__desc {
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  .benefit-card__text .benefit-card__desc .sp_only_display {
    display: block;
  }
}
.benefit-card__image {
  flex: 0 0 150px;
  text-align: center;
  margin-left: 2rem;
}
.benefit-card__image img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .benefit-card__image img {
    margin-top: 20px;
    width: 150px;
  }
}

.flow {
  background-color: #86DEB7;
  padding-top: 40px;
  padding-bottom: 80px;
  text-align: right;
}
.flow__title {
  text-align: center;
}
.flow__title span {
  display: inline;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, white 80%);
}
.flow__container {
  max-width: 1010px;
  margin: 0 auto;
  display: flex;
  margin-top: 50px;
  flex-direction: column;
  gap: 3rem;
}
.flow__step {
  position: relative;
  width: 800px;
  margin-top: 60px;
}
@media screen and (max-width: 900px) {
  .flow__step {
    width: 95%;
  }
}
.flow__step:nth-child(odd) {
  margin-left: auto;
}
.flow__step:nth-child(odd) .flow__card {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .flow__step:nth-child(odd) .flow__card {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
  }
}
.flow__step:nth-child(odd) .flow__badge {
  right: 50px;
}
.flow__badge {
  position: absolute;
  top: -50px;
  left: 50px;
  font-weight: bold;
  color: #86DEB7;
}
.flow__card {
  min-height: 300px;
  background-color: #fff;
  border-radius: 1rem;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1024px) {
  .flow__card {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}
@media screen and (max-width: 900px) {
  .flow__card {
    margin-right: 20px;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .flow__card {
    padding-bottom: 0px;
    display: block;
  }
}
.flow__text {
  flex: 1;
  min-width: 280px;
}
.flow__heading {
  padding-top: 25px;
  text-align: left;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.flow__desc {
  text-align: left;
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 500px) {
  .flow__desc .sp_only_display {
    display: block;
  }
}
.flow__phone {
  font-weight: bold;
  margin-bottom: 1rem;
}
.flow__button {
  width: 144px;
  height: 42px;
  display: inline-block;
  border-radius: 999px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  line-height: 38px;
  margin-left: 30px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .flow__button {
    margin: auto;
    display: block;
    margin-top: 10px;
    width: 90%;
  }
}
.flow__button--yellow {
  background-color: #ffd700;
  color: #000;
  border: 2px solid #000;
}
.flow__button--border {
  white-space: nowrap;
  width: 260px;
  border: 2px solid black;
  background-color: #86DEB7;
  color: black;
  margin-right: auto;
  display: block;
  margin-left: 0px;
}
@media screen and (max-width: 700px) {
  .flow__button--border {
    margin-left: auto;
  }
}
.flow__image {
  width: 200px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .flow__image {
    margin: 0 auto;
    margin-top: 20px;
  }
}
.flow__image img {
  max-width: 100%;
  max-height: 250px;
}

.examples {
  background-color: #fff;
  padding-top: 100px;
  text-align: center;
}
.examples__title {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  display: inline;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, #86DEB7 80%);
}
.examples__container {
  max-width: 900px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.example-card {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 700px) {
  .example-card {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .example-card__image {
    margin: 0 auto;
  }
}
.example-card__image img {
  max-width: 100%;
  height: auto;
  border-radius: 100%;
  border: #000 solid 4px;
  width: 200px;
  height: 200px;
}
.example-card__content {
  flex: 1;
}
.example-card__heading {
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 700px) {
  .example-card__heading {
    margin-top: 30px;
  }
}
.example-card__desc {
  text-align: left;
  font-size: 18px;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.example-card .table-scroll {
  overflow-x: auto;
  display: block;
  -webkit-overflow-scrolling: touch;
  margin-top: 1rem;
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.example-card__table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 700px) {
  .example-card__table {
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
  }
}
.example-card__table thead {
  white-space: nowrap;
}
.example-card__table th,
.example-card__table td {
  padding: 0.75rem;
  text-align: center;
}
.example-card__table th {
  background-color: #86DEB7;
  font-weight: bold;
}
.example-card__table th:first-child {
  border-top-left-radius: 4px;
}
.example-card__table th:last-child {
  border-top-right-radius: 4px;
}
.example-card__table tbody td {
  padding: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
.example-card__table tbody td img.flag {
  width: 24px;
  height: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.example-card__table tbody td:first-child {
  text-align: left;
}

.comparison {
  text-align: center;
}
.comparison__title {
  font-weight: bold;
  font-size: 40px;
  font-weight: bold;
  display: inline;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, #86DEB7 80%);
}
.comparison .table-wrapper {
  margin-top: 50px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* iOS対応（なめらかスクロール） */
  border-collapse: collapse;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.comparison__table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* iOS対応（なめらかスクロール） */
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.comparison__table thead {
  white-space: nowrap;
}
.comparison__table th,
.comparison__table td {
  padding: 0.75rem;
  text-align: center;
}
.comparison__table th:first-child {
  border-top-left-radius: 4px;
}
.comparison__table th:last-child {
  border-top-right-radius: 4px;
}
.comparison__table thead th {
  background-color: #86DEB7;
}
.comparison__table thead th.highlight {
  background-color: #ffd700;
}
.comparison__table tbody td.highlight {
  background-color: #fff3a3;
  font-weight: bold;
}
.comparison__table tbody td {
  padding: 1rem;
  border-top: 1px solid #ddd;
  text-align: center;
}
.comparison__table tbody td img.flag {
  width: 24px;
  height: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.comparison__table tbody td:first-child {
  text-align: left;
}
.comparison__note {
  text-align: left;
  font-size: 18px;
  color: #333;
  padding-top: 20px;
  padding-bottom: 80px;
}
@media screen and (max-width: 500px) {
  .comparison__note .sp_only_display {
    display: block;
  }
}

.achievement {
  background-color: #f2f2f2;
  padding-top: 80px;
  padding-left: 20px;
  padding-right: 20px;
}
.achievement__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.achievement__title {
  font-weight: bold;
  font-size: 40px;
  font-weight: bold;
  display: inline;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, #86DEB7 80%);
}
.achievement__subtitle {
  margin-top: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 2rem;
  text-decoration: underline;
}
.achievement__text {
  text-align: left;
  font-size: 18px;
  color: #333;
  padding-bottom: 50px;
}

.shop-info {
  background-color: #f8f8f8;
  padding-top: 80px;
}
.shop-info__container {
  margin-top: 50px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.shop-info__title {
  font-size: 40px;
  font-weight: bold;
  display: inline;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, #86DEB7 80%);
}
.shop-info__content {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 700px) {
  .shop-info__content {
    flex-direction: column;
  }
}
.shop-info__dots {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.shop-info__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
}
.shop-info__details {
  text-align: left;
  width: 400px;
}
@media screen and (max-width: 700px) {
  .shop-info__details {
    width: 100%;
  }
}
.shop-info__name {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 1rem;
}
.shop-info__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.shop-info__table th,
.shop-info__table td {
  padding: 0.75rem 1rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.shop-info__table th {
  font-weight: bold;
  white-space: nowrap;
  color: #333;
}
.shop-info__table .shop-info__address {
  color: red;
  font-weight: bold;
}
.shop-info__btn {
  min-width: 144px;
  height: 42px;
  display: flex;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  background-color: #86DEB7;
  border: 2px solid black;
  color: black;
  margin-right: 20px;
}
@media screen and (max-width: 700px) {
  .shop-info__btn {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
  }
}
.shop-info__map {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
}
.shop-info__map iframe {
  height: 300px;
  width: 100%;
}

.swiper {
  position: relative;
  width: 500px;
  height: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .swiper {
    width: 100%;
  }
}

.swiper--wrapper {
  /* wrapperのサイズを調整 */
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  border-radius: 25px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-slide img {
  border-radius: 25px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  /* 中央トリミングでぴったり収まる */
}

.swiper-pagination {
  position: absolute;
  bottom: 0px !important;
  width: 100%;
  text-align: center;
  z-index: 4 !important;
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  background: #86DEB7 !important;
  border: black 2px solid;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 6px;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  background: #000;
  opacity: 1;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 1.5rem;
}
@media screen and (max-width: 700px) {
  .footer {
    padding-bottom: 120px;
  }
}
.footer__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.footer__logo {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}
.footer__nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer__nav ul li a:hover {
  text-decoration: underline;
}
.footer__copy {
  font-size: 0.8rem;
  opacity: 0.7;
}

.company-profile {
  max-width: 800px;
  padding-top: 80px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
  margin: 0 auto;
  text-align: center;
}
.company-profile__title {
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, #86DEB7 80%);
  margin-bottom: 50px;
}
.company-profile__table {
  margin-top: 50px;
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  margin: 0 auto;
}
.company-profile__table th {
  padding: 1rem;
  border-bottom: 1px solid #86DEB7;
  text-align: left;
  vertical-align: top;
}
.company-profile__table td {
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}
.company-profile__table th {
  width: 120px;
  font-weight: bold;
  white-space: nowrap;
  color: #333;
}
.company-profile__table .highlight {
  color: red;
  font-weight: bold;
}
.company-profile__map {
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
}
.company-profile__map iframe {
  height: 300px;
  width: 100%;
}

.faq {
  padding: 4rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.faq__title {
  font-size: 40px;
  font-weight: bold;
  display: inline;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, #86DEB7 80%);
}
.faq__list {
  margin-top: 50px;
  text-align: left;
  margin-bottom: 3rem;
}
.faq__item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq__item.is-open .faq__answer {
  display: block;
}
.faq__question {
  width: 100%;
  padding: 1rem;
  font-size: 16px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: black;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .faq__question {
    font-size: 14px;
  }
}
.faq__icon {
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
  font-weight: bold;
  font-size: 32px;
  color: #86DEB7;
  margin-right: 15px;
}
.faq__icon--answer {
  color: #f4c400;
  margin-right: 15px;
}
.faq__toggle {
  min-width: 30px;
  font-size: 32px;
  font-weight: bold;
  text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
  color: #86DEB7;
  margin-left: auto;
}
.faq__question-text {
  margin-right: 15px;
}
.faq__answer {
  display: none;
  padding: 1rem;
  font-size: 16px;
  background: #fff;
  border-top: 1px solid #eee;
}
.faq__answer .flex-center {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .faq__answer {
    font-size: 14px;
  }
}
.faq__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.faq__button {
  width: 144px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
}
.faq__button--yellow {
  background-color: #ffd700;
  color: #000;
  border: 2px solid #000;
}
.faq__button--outline {
  background-color: #fff;
  border: 2px solid #ffd700;
  color: #ffd700;
  margin-right: 20px;
}

.faq__toggle {
  position: relative;
  width: 28px;
  height: 28px;
  margin-left: auto;
}
.faq__toggle .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background: #86DEB7;
  transition: all 0.3s ease;
  border: #000 1px solid;
}
.faq__toggle .bar1 {
  top: 50%;
  transform: translateY(-50%);
}
.faq__toggle .bar2 {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.faq__item.is-open .faq__toggle .bar2 {
  opacity: 0;
}

.access {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.access__title {
  font-size: 40px;
  font-weight: bold;
  display: inline;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, #86DEB7 80%);
}
.access__steps {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.access__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 20px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.access__image {
  width: 100%;
  height: 100%;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #444;
  border-radius: 8px;
  flex-shrink: 0;
}
.access__image img {
  width: 100%;
  height: 100%;
}
.access__text {
  flex: 1;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  text-align: left;
  margin-right: auto;
}
.access__map {
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
}
.access__map iframe {
  height: 300px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header__inner {
    justify-content: space-between;
    padding: 0 1rem;
  }
  .header__right {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: white;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    padding: 1rem;
    border-top: 1px solid #ddd;
  }
  .header__menu-toggle {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    margin-right: 1rem;
  }
}
.header__menu-toggle {
  display: none;
}

.header__right.is-open {
  display: flex !important;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 100px;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 0 1px #eee;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  margin-top: 50px;
}
.contact-form-wrapper .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form-wrapper .wpcf7-form p {
  margin: 0;
}
.contact-form-wrapper .wpcf7-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.4rem;
  position: relative;
}
.contact-form-wrapper .wpcf7-form label .required {
  background: #86DEB7;
  color: white;
  font-size: 12px;
  border-radius: 5px;
  padding: 4px 10px;
  margin-left: 8px;
  position: relative;
  top: -1px;
}
.contact-form-wrapper .wpcf7-form input[type=text],
.contact-form-wrapper .wpcf7-form input[type=email],
.contact-form-wrapper .wpcf7-form input[type=tel],
.contact-form-wrapper .wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  background-color: #f5f5f5;
  font-size: 16px;
  margin-top: 5px;
}
.contact-form-wrapper .wpcf7-form input[type=text]::-moz-placeholder, .contact-form-wrapper .wpcf7-form input[type=email]::-moz-placeholder, .contact-form-wrapper .wpcf7-form input[type=tel]::-moz-placeholder, .contact-form-wrapper .wpcf7-form textarea::-moz-placeholder {
  color: #999;
  font-size: 14px;
}
.contact-form-wrapper .wpcf7-form input[type=text]::placeholder,
.contact-form-wrapper .wpcf7-form input[type=email]::placeholder,
.contact-form-wrapper .wpcf7-form input[type=tel]::placeholder,
.contact-form-wrapper .wpcf7-form textarea::placeholder {
  color: #999;
  font-size: 14px;
}
.contact-form-wrapper .wpcf7-form textarea {
  height: 140px;
  resize: none;
}
.contact-form-wrapper .wpcf7-form .submit-wrap {
  display: flex;
  justify-content: center;
  /* 水平方向中央揃え */
  align-items: center;
  /* 垂直方向中央揃え（必要なら） */
}
.contact-form-wrapper .wpcf7-form .submit-wrap input[type=submit] {
  text-align: center;
  margin-top: 0px;
  background-color: #86DEB7;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 0.75rem;
  padding-right: 100px;
  padding-left: 100px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: block;
  text-align: center;
}
.contact-form-wrapper .wpcf7-form .submit-wrap input[type=submit]:hover {
  background-color: #7fdcb0;
}

.contact {
  margin-top: 80px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.contact__title {
  margin: 0 auto;
  font-size: 40px;
  font-weight: bold;
  display: inline;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, #86DEB7 80%);
}

.reservation-form {
  max-width: 640px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 100px;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 0 1px #eee;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
}
.reservation-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.reservation-form .wpcf7-form label {
  font-weight: bold;
  margin-bottom: 0.25rem;
  display: block;
}
.reservation-form .wpcf7-form label .required {
  font-size: 12px;
  background-color: #86DEB7;
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  margin-left: 8px;
}
.reservation-form .wpcf7-form input[type=text],
.reservation-form .wpcf7-form input[type=email],
.reservation-form .wpcf7-form input[type=tel],
.reservation-form .wpcf7-form input[type=date],
.reservation-form .wpcf7-form input[type=number],
.reservation-form .wpcf7-form textarea,
.reservation-form .wpcf7-form select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  margin-top: 5px;
  padding: 0.75rem 1rem;
  background-color: #f5f5f5;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: #000;
}
.reservation-form .wpcf7-form input[type=text]::-moz-placeholder, .reservation-form .wpcf7-form input[type=email]::-moz-placeholder, .reservation-form .wpcf7-form input[type=tel]::-moz-placeholder, .reservation-form .wpcf7-form input[type=date]::-moz-placeholder, .reservation-form .wpcf7-form input[type=number]::-moz-placeholder, .reservation-form .wpcf7-form textarea::-moz-placeholder, .reservation-form .wpcf7-form select::-moz-placeholder {
  color: #999;
}
.reservation-form .wpcf7-form input[type=text]::placeholder,
.reservation-form .wpcf7-form input[type=email]::placeholder,
.reservation-form .wpcf7-form input[type=tel]::placeholder,
.reservation-form .wpcf7-form input[type=date]::placeholder,
.reservation-form .wpcf7-form input[type=number]::placeholder,
.reservation-form .wpcf7-form textarea::placeholder,
.reservation-form .wpcf7-form select::placeholder {
  color: #999;
}
.reservation-form .wpcf7-form textarea {
  resize: none;
  height: 140px;
}
.reservation-form .wpcf7-form .submit-wrap {
  display: flex;
  justify-content: center;
  /* 水平方向中央揃え */
  align-items: center;
  /* 垂直方向中央揃え（必要なら） */
}
.reservation-form .wpcf7-form .submit-wrap input[type=submit] {
  text-align: center;
  margin-top: 0px;
  background-color: #86DEB7;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 0.75rem;
  padding-right: 100px;
  padding-left: 100px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: block;
  text-align: center;
}
.reservation-form .wpcf7-form .submit-wrap input[type=submit]:hover {
  background-color: #7fdcb0;
}
.reservation-form .accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #86DEB7;
  /* ミントグリーン */
  color: #fff;
  /* 白文字 */
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s ease;
  position: relative;
  margin-left: auto;
}
.reservation-form .accordion-toggle2,
.reservation-form .accordion-toggle3,
.reservation-form .accordion-toggle4,
.reservation-form .accordion-toggle5 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #86DEB7;
  /* ミントグリーン */
  color: #fff;
  /* 白文字 */
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s ease;
  position: relative;
  margin-left: auto;
}
.reservation-form .accordion-toggle2::after,
.reservation-form .accordion-toggle3::after,
.reservation-form .accordion-toggle4::after,
.reservation-form .accordion-toggle5::after {
  content: "+";
  font-size: 20px;
  position: absolute;
  right: 20px;
}
.reservation-form .accordion-toggle2.open::after,
.reservation-form .accordion-toggle3.open::after,
.reservation-form .accordion-toggle4.open::after,
.reservation-form .accordion-toggle5.open::after {
  content: "−";
}
.reservation-form .accordion-toggle2:hover,
.reservation-form .accordion-toggle3:hover,
.reservation-form .accordion-toggle4:hover,
.reservation-form .accordion-toggle5:hover {
  background-color: #7fdcb0;
  /* ホバー時の少し濃い色 */
}
.reservation-form .accordion-content2,
.reservation-form .accordion-content3,
.reservation-form .accordion-content4,
.reservation-form .accordion-content5 {
  display: none;
  margin-top: 1rem;
}
.reservation-form .accordion-content2.open,
.reservation-form .accordion-content3.open,
.reservation-form .accordion-content4.open,
.reservation-form .accordion-content5.open {
  display: block;
}

.visit-complete {
  max-width: 800px;
  padding-top: 80px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
  margin: 0 auto;
  text-align: center;
}
.visit-complete__title {
  font-size: 40px;
  font-weight: bold;
  display: inline;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, #86DEB7 80%);
  margin-bottom: 50px;
}
.visit-complete__text:first-of-type {
  padding-top: 60px;
}
.visit-complete .btn-list {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  /* 水平方向中央揃え */
  gap: 20px;
}
.visit-complete .btn-list .btn1 {
  width: 210px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  background-color: white;
  color: #86DEB7;
  border: 2px solid #86DEB7;
}
.visit-complete .btn-list .btn2 {
  width: 210px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  background-color: #86DEB7;
  color: #000;
  border: 2px solid #000;
}

.privacy-policy {
  max-width: 800px;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
  margin: 0 auto;
  text-align: left;
}
.privacy-policy__title {
  font-size: 40px;
  font-weight: bold;
  display: inline;
  line-height: 1;
  background: linear-gradient(to bottom, transparent 80%, #86DEB7 80%);
  margin-bottom: 50px;
}
.privacy-policy__container {
  max-width: 900px;
  margin: 0px auto;
  padding: 10px;
  background-color: #fff;
}
.privacy-policy h3 {
  padding-top: 20px;
  font-size: 24px;
  margin-top: 40px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}
.privacy-policy p,
.privacy-policy li {
  font-size: 16px;
  line-height: 28px;
}
.privacy-policy ul {
  padding-left: 20px;
}
.privacy-policy address {
  font-style: normal;
}/*# sourceMappingURL=style.css.map */