@charset "UTF-8";
:root {
  --white: #fff;
  --blue: #3e60a5;
  --black: #333;
  --bg-blue: #d4dceb;
  --bg-ivory: #f1f2ea;
  --transition: 0.3s;
  --fs-56: 3.5rem;
  --fs-46: 2.875rem;
  --fs-40: 2.5rem;
  --fs-38: 2.375rem;
  --fs-36: 2.25rem;
  --fs-32: 2rem;
  --fs-30: 1.875rem;
  --fs-28: 1.75rem;
  --fs-24: 1.5rem;
  --fs-23: 1.4375rem;
  --fs-21: 1.3125rem;
  --fs-20: 1.25rem;
  --fs-19: 1.1875rem;
  --fs-17: 1.0625rem;
  --fs-15: 0.9375rem;
  --lh-46: 1.5;
  --lh-40: 1.725;
  --lh-38: 1.7368421053;
  --lh-36: 1.3888888889;
  --lh-32: 1.625;
  --lh-28: 1.7857142857;
  --lh-19: 2.3684210526;
  --lh-15: 1.6666666667;
  --header-height: 80px;
}

@media (max-width: 1024px) {
  :root {
    --fs-56: 3rem;
    --fs-46: 2.5rem;
    --fs-40: 2.1875rem;
    --fs-36: 1.75rem;
    --fs-30: 1.5625rem;
    --fs-28: 1.5625rem;
    --fs-24: 1.25rem;
    --fs-17: 1rem;
  }
}
@media (max-width: 768px) {
  :root {
    --fs-56: 1.875rem;
    --fs-46: 1.5rem;
    --fs-40: 1.5rem;
    --fs-38: 1.375rem;
    --fs-36: 1.375rem;
    --fs-30: 1.1875rem;
    --fs-28: 1.1875rem;
    --fs-24: 1rem;
    --fs-23: 1rem;
    --fs-21: 0.9375rem;
    --fs-20: 0.9375rem;
    --fs-19: 0.9375rem;
    --fs-17: 0.9375rem;
    --fs-15: 0.8125rem;
  }
}
@media (max-width: 500px) {
  :root {
    --fs-17: 0.875rem;
    --header-height: 60px;
  }
}
/* ------------------------
    utility
------------------------ */
.u-word {
  display: inline-block;
}

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

.u-tab {
  display: none;
}
@media (max-width: 1024px) {
  .u-tab {
    display: block;
  }
}

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

/* ------------------------
    common
------------------------ */
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Yu Gothic UI", Meiryo, sans-serif;
  font-size: var(--fs-17);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.7647058824;
  color: var(--blue);
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  background-color: var(--white);
}
html[lang=en] body {
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  body {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}

img {
  display: block;
}

.inner {
  width: 94%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}
.inner--s {
  max-width: 980px;
}

.section {
  padding-top: 55px;
  padding-bottom: 135px;
  background-color: var(--bg-ivory);
}
@media (max-width: 768px) {
  .section {
    padding-bottom: 105px;
  }
}

.btn-wrap {
  width: fit-content;
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .btn-wrap {
    margin-top: 40px;
  }
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 335px;
  min-height: 60px;
  padding: 0 2.3em;
  font-size: 17px;
  color: var(--white);
  text-align: center;
  background: url("../images/icon_arrow.svg") no-repeat calc(100% - 1.2em) center/1em;
  background-color: var(--blue);
  border-radius: 9999px;
  transition: opacity var(--transition);
}
@media (max-width: 1024px) {
  .btn {
    min-width: 240px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .btn {
    min-height: 52px;
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .btn:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .btn:active {
    opacity: 0.7;
  }
}

.heading {
  margin-bottom: 1em;
  font-size: var(--fs-46);
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
}
@media (max-width: 768px) {
  .heading {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .heading {
  letter-spacing: 0.07em;
}
.heading--center {
  text-align: center;
}
@media (max-width: 500px) {
  .heading .space-2 {
    display: block;
    text-indent: 2em;
  }
}

.widget {
  position: fixed;
  right: 15px;
  bottom: 20px;
  z-index: 30;
}
.widget_link {
  display: grid;
  grid-template-areas: "copy copy" "txt arrow";
  grid-template-columns: 1fr auto;
  width: 300px;
  padding: 1.5em 2em;
  font-size: 0.9375rem;
  color: var(--white);
  background: url("../images/image_airplane_02.png") no-repeat 96% 20%/40%;
  background-color: var(--blue);
  border-radius: 6px;
  transition: opacity var(--transition);
}
html[lang=zh-CN] .widget_link {
  background-size: 35%;
}
@media (max-width: 1024px) {
  .widget_link {
    width: 260px;
    padding: 1em;
    font-size: 0.8125rem;
  }
}
@media (max-width: 768px) {
  .widget_link {
    width: 200px;
    font-size: 0.625rem;
  }
}
.widget_link::after {
  display: block;
  grid-area: arrow;
  width: 37px;
  aspect-ratio: 1;
  content: "";
  background: url("../images/icon_arrow_blue.svg") no-repeat center/9px, var(--white);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .widget_link::after {
    width: 25px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .widget_link:hover, .widget_link:focus {
    opacity: 0.9;
  }
}
@media (hover: none) {
  .widget_link:active {
    opacity: 0.9;
  }
}
.widget_close {
  position: absolute;
  top: -12px;
  right: -9px;
  display: block;
  width: 25px;
  aspect-ratio: 1;
  cursor: pointer;
  background: url("../images/icon_close.svg") no-repeat center/35%, var(--bg-blue);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .widget_close {
    width: 19px;
  }
}
.widget.js-hidden {
  display: none;
}
.widget_copy {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  grid-area: copy;
  margin-bottom: 0.5em;
  font-size: 1.5625rem;
  line-height: 1.28;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  .widget_copy {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .widget_copy {
  letter-spacing: 0.05em;
}
html[lang=zh-CN] .widget_copy {
  font-size: 1.375rem;
}
@media (max-width: 1024px) {
  html[lang=zh-CN] .widget_copy {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  html[lang=zh-CN] .widget_copy {
    font-size: 1.0625rem;
  }
}
@media (max-width: 1024px) {
  .widget_copy {
    font-size: 1.375rem;
  }
}
@media (max-width: 768px) {
  .widget_copy {
    font-size: 1.1875rem;
  }
}
.widget_txt {
  grid-area: txt;
  line-height: 1.4666666667;
}

.remodal-wrapper {
  padding: 0;
}

.remodal-overlay {
  background: rgba(241, 242, 234, 0.8);
}

.remodal {
  padding-top: 130px;
  padding-bottom: 350px;
  margin-bottom: 0;
  overflow-x: clip;
}
@media (max-width: 768px) {
  .remodal {
    padding-top: 80px;
  }
}
.remodal[data-remodal-id=movie] {
  padding-top: 70px;
  padding-bottom: 50px;
}

[data-remodal-target] {
  cursor: pointer;
}

.modal {
  position: relative;
  padding: 50px 40px;
  color: var(--pattern-color, var(--blue));
  text-align: left;
  background: var(--white);
}
@media (max-width: 768px) {
  .modal {
    padding: 30px 15px;
  }
}
.modal .btn {
  background-color: var(--pattern-color, var(--blue));
  background-image: url("../images/icon_arrow.svg");
  background-position-x: calc(100% - 1.5em);
  background-size: 1em;
}
@media (max-width: 768px) {
  .modal .btn {
    max-width: 12.3em;
  }
}

.close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  aspect-ratio: 1;
  background: url("../images/icon_close.svg") no-repeat center/18px, var(--pattern-color, var(--blue));
  border-radius: 50%;
  transform: translateY(-120%);
}
@media (max-width: 768px) {
  .close-btn {
    width: 40px;
  }
}

/* ------------------------
    header
------------------------ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  transition: background-color var(--transition);
}

.header-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: grid;
  place-content: flex-start center;
  width: 100%;
  height: 100vh;
  padding: var(--header-height) max(25px, 3%) 20px;
  margin-top: 0;
  overflow-y: auto;
  background-color: var(--white);
  transform: translateX(110%);
  transition: transform var(--transition);
}
@media (max-width: 768px) {
  .header-nav {
    place-content: flex-start center;
    padding: calc(var(--header-height) + 4vh) max(25px, 3%) 0;
  }
}
.js-active .header-nav {
  transform: translateX(0);
}
.header-nav_list {
  margin-bottom: 32px;
}
@media (max-width: 500px) {
  .header-nav_list {
    margin-bottom: 50px;
  }
}
.header-nav_item + .header-nav_item {
  margin-top: 1.5em;
}
.header-nav_link {
  position: relative;
  display: block;
  display: flex;
  gap: 0.8em;
  align-items: center;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5;
  transition: color var(--transition);
}
@media (max-width: 768px) {
  .header-nav_link {
    font-size: 1.3125rem;
  }
}
@media (max-width: 500px) {
  .header-nav_link {
    font-size: 1.125rem;
  }
}
.header-nav_link::before {
  display: inline-block;
  width: 1.5em;
  aspect-ratio: 1;
  content: "";
  background: url("../images/icon_arrow.svg") no-repeat center/40%, var(--blue);
  border-radius: 50%;
}
.header-nav_link::after {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background-color: var(--blue);
  transform: scale(0);
  transform-origin: 0 0;
  transition: transform 0.37s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_link:hover::after, .header-nav_link:focus::after {
    transform: scale(1);
  }
}
@media (hover: none) {
  .header-nav_link:active::after {
    transform: scale(1);
  }
}
.header-nav_btn {
  margin-top: 50px;
}
.header-nav_btn + .header-nav_btn {
  margin-top: 26px;
}
.header-nav .btn {
  min-height: 65px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .header-nav .btn {
    min-height: 65px;
    font-size: 1.0625rem;
  }
}
@media (max-width: 500px) {
  .header-nav .btn {
    min-height: 60px;
    font-size: 0.9375rem;
  }
}

.switcher {
  display: flex;
  gap: 0.5em 2.2em;
  justify-content: center;
}
.switcher_item {
  position: relative;
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--black);
  transition: opacity var(--transition);
}
@media (max-width: 500px) {
  .switcher_item {
    font-size: 1rem;
  }
}
.switcher_item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -1em;
  display: block;
  width: 1px;
  height: 1em;
  content: "";
  background: var(--black);
  transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .switcher_item:hover, .switcher_item:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .switcher_item:active {
    opacity: 0.7;
  }
}

.hamburger {
  position: relative;
  z-index: 150;
  width: 100px;
  height: var(--header-height);
  background-color: var(--blue);
}
@media (max-width: 500px) {
  .hamburger {
    width: 80px;
  }
}
.hamburger > span {
  position: absolute;
  top: calc(50% - 10px);
  left: 50%;
  display: block;
  width: 54%;
  height: 2px;
  background-color: var(--white);
  transform: translateX(-50%);
  transition: transform var(--transition), width var(--transition);
}
.hamburger > span:nth-of-type(1) {
  top: calc(35% - 10px);
}
.hamburger > span:nth-of-type(3) {
  top: calc(65% - 10px);
}
.hamburger::after {
  position: absolute;
  bottom: 15px;
  left: 50%;
  font-size: 12px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.5em;
  white-space: nowrap;
  content: "MENU";
  transform: translateX(-45%);
}
@media (max-width: 500px) {
  .hamburger::after {
    bottom: 10px;
    font-size: 10px;
  }
}
.hamburger.js-close {
  background-color: var(--white);
}
.hamburger.js-close > span {
  top: calc(50% - 10px);
  width: 65%;
  background-color: var(--blue);
}
.hamburger.js-close > span:nth-of-type(1) {
  transform: translateX(-50%) rotate(25deg);
}
.hamburger.js-close > span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}
.hamburger.js-close > span:nth-of-type(3) {
  transform: translateX(-50%) rotate(-25deg);
}
.hamburger.js-close::after {
  color: var(--blue);
  content: "CLOSE";
}

/* ------------------------
    footer
------------------------ */
.footer {
  padding: 65px 3% 30px;
  background-color: var(--bg-ivory);
}

.related-sites {
  width: min(90%, 900px);
  padding: 30px 3% 40px;
  margin-inline: auto;
  margin-bottom: 70px;
  background-color: var(--white);
  border-radius: 15px;
}
@media (max-width: 500px) {
  .related-sites {
    padding: 20px 3% 25px;
    margin-bottom: 50px;
  }
}
.related-sites_heading {
  margin-bottom: 1.2em;
  font-size: var(--fs-19);
  color: var(--blue);
  text-align: center;
}
@media (max-width: 768px) {
  .related-sites_heading {
    font-size: 1rem;
  }
}
.related-sites_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em 2.5em;
  justify-content: center;
}
@media (max-width: 500px) {
  .related-sites_list {
    flex-direction: column;
    gap: 0.5em;
    align-items: center;
  }
}
.related-sites_item {
  font-size: var(--fs-17);
  color: var(--black);
}

.copyright {
  font-size: 0.75rem;
  color: var(--black);
  text-align: center;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 0.6875rem;
  }
}

/* ------------------------
  mv
------------------------ */
.mv-container {
  position: relative;
}

.mv-bg {
  position: sticky;
  top: 0;
  z-index: -3;
  width: 100%;
  height: 100vh;
}
.mv-bg_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  position: sticky;
  top: 0;
  z-index: -2;
  display: grid;
  align-content: center;
  width: 100%;
  height: 100vh;
  margin-top: -100vh;
  color: var(--white);
}
@media (max-width: 768px) {
  .mv {
    letter-spacing: 0.12em;
  }
}
.mv_inner {
  width: 80%;
  padding-left: 5%;
  text-shadow: 0 0 5px rgba(62, 96, 165, 0.4);
}
@media (width >= 1800px) {
  .mv_inner {
    margin-left: 20%;
  }
}
@media (max-width: 1200px) {
  .mv_inner {
    padding-left: 10%;
  }
}
@media (max-width: 768px) {
  .mv_inner {
    padding-left: 0;
  }
}
.mv_heading {
  font-size: 4.25rem;
  letter-spacing: 0.5em;
  position: relative;
}
html[lang=en] .mv_heading {
  letter-spacing: 0.15em;
}
@media (min-width: 1600px) {
  .mv_heading {
    font-size: 4.8571428571vw;
  }
}
@media (max-width: 768px) {
  .mv_heading {
    font-size: min(10vw, 3.4375rem);
    letter-spacing: 0.25em;
  }
}
.mv_heading::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 2.4em;
  aspect-ratio: 52/75;
  background: url("../images/image_goto.svg") no-repeat center/contain;
  filter: drop-shadow(0 0 5px rgba(62, 96, 165, 0.4));
  transform: translateX(-90%);
}
@media (max-width: 768px) {
  .mv_heading::before {
    left: 100%;
    transform: translate(-100%, -70%);
  }
  html[lang=en] .mv_heading::before {
    transform: translate(-100%, -90%);
  }
}
.mv_copy {
  padding-left: 1.5em;
  font-size: var(--fs-32);
  line-height: var(--lh-32);
}
@media (min-width: 1600px) {
  .mv_copy {
    font-size: 2.2857142857vw;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .mv_copy {
    padding-left: 0;
    font-size: min(5.5vw, 1.75rem);
  }
}
@media (max-width: 768px) {
  .mv_copy .space-2 {
    display: block;
    text-indent: 2em;
  }
}

.mv-cover {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(62, 96, 165, 0.8);
  opacity: 0;
}

/* ------------------------
  intro
------------------------ */
.intro {
  display: grid;
  align-content: center;
  width: 100%;
  height: 100vh;
  color: var(--white);
}
.intro_txt {
  font-size: var(--fs-19);
  line-height: var(--lh-19);
}
.intro_txt-container {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.intro_txt-container .intro_txt + .intro_txt {
  margin-top: 2em;
}

/* ------------------------
  theme
------------------------ */
.theme-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background-color: var(--bg-ivory);
}
@media (max-width: 768px) {
  .theme-block {
    grid-template-columns: 1fr;
  }
}
.theme-block:nth-child(even) .theme-block_img {
  order: -1;
}
.theme-block_body {
  display: grid;
  align-content: center;
  padding: 50px 17%;
}
@media (max-width: 1024px) {
  .theme-block_body {
    padding: 50px 10%;
  }
}
@media (max-width: 768px) {
  .theme-block_body {
    padding: 50px 8%;
  }
}
.theme-block_num {
  font-size: 0.9375rem;
  font-family: Marcellus, "Palatino Linotype", Palatino, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
}
.theme-block_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  margin-bottom: 1em;
  font-size: var(--fs-40);
  line-height: var(--lh-40);
}
@media (max-width: 768px) {
  .theme-block_heading {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .theme-block_heading {
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .theme-block--01 .theme-block_heading {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .theme-block--01 .theme-block_heading {
    flex-direction: row;
  }
}
@media (max-width: 500px) {
  .theme-block--03 .theme-block_heading {
    flex-direction: column;
  }
  html[lang=zh-CN] .theme-block--03 .theme-block_heading {
    flex-direction: row;
  }
}
.theme-block_heading::after {
  position: absolute;
  bottom: 0;
  left: 100%;
  z-index: -1;
  display: block;
  width: 3em;
  aspect-ratio: 221/150;
  content: "";
  background-repeat: no-repeat;
  transform: translateY(-10%);
}
.theme-block--01 .theme-block_heading::after {
  background-image: url("../images/icon_christian.svg");
}
@media (max-width: 1200px) {
  .theme-block--01 .theme-block_heading::after {
    transform: translateY(-30%);
  }
}
@media (max-width: 768px) {
  .theme-block--01 .theme-block_heading::after {
    transform: translateY(-10%);
  }
}
@media (max-width: 768px) {
  html[lang=en] .theme-block--01 .theme-block_heading::after {
    left: 110%;
    width: 3.7em;
  }
}
.theme-block--02 .theme-block_heading::after {
  left: 104%;
  background-image: url("../images/icon_fishing.svg");
}
@media (max-width: 768px) {
  .theme-block--02 .theme-block_heading::after {
    left: 182%;
  }
}
@media (max-width: 768px) {
  html[lang=en] .theme-block--02 .theme-block_heading::after {
    left: 132%;
    width: 3.2em;
  }
}
.theme-block--03 .theme-block_heading::after {
  background-image: url("../images/icon_bicycle.svg");
  transform: translate(-90%, -20%);
}
@media (width >= 1677px) {
  .theme-block--03 .theme-block_heading::after {
    transform: translate(5%, -10%);
  }
}
@media (width <= 1300px) {
  .theme-block--03 .theme-block_heading::after {
    width: 2.7em;
    transform: translate(-70%, -10%);
  }
}
@media (max-width: 768px) {
  .theme-block--03 .theme-block_heading::after {
    width: 3em;
    transform: translate(40%, -10%);
  }
}
@media (max-width: 500px) {
  .theme-block--03 .theme-block_heading::after {
    transform: translate(-10%, -20%);
  }
}
html[lang=en] .theme-block--03 .theme-block_heading::after {
  transform: translate(-90%, -150%);
}
@media (max-width: 1024px) {
  html[lang=en] .theme-block--03 .theme-block_heading::after {
    transform: translate(-90%, -160%);
  }
}
@media (max-width: 500px) {
  html[lang=en] .theme-block--03 .theme-block_heading::after {
    transform: translate(10%, -20%);
  }
}
html[lang=zh-CN] .theme-block--03 .theme-block_heading::after {
  transform: translate(-40%, -70%);
}
@media (max-width: 1024px) {
  html[lang=zh-CN] .theme-block--03 .theme-block_heading::after {
    transform: translate(-70%, -80%);
  }
}
@media (max-width: 500px) {
  html[lang=zh-CN] .theme-block--03 .theme-block_heading::after {
    transform: translate(10%, -20%);
  }
}
.theme-block_copy {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 1em;
  font-size: var(--fs-28);
  line-height: var(--lh-28);
}
@media (max-width: 768px) {
  .theme-block_copy {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .theme-block_copy {
  letter-spacing: 0.05em;
}
.theme-block_txt {
  font-size: var(--fs-19);
  line-height: var(--lh-19);
  text-align: justify;
}
html[lang=en] .theme-block_txt {
  text-align: left;
}
@media (max-width: 768px) {
  .theme-block_img {
    order: -1;
  }
}
.theme-block_img img {
  height: 100%;
  object-fit: cover;
}

/* ------------------------
  access
------------------------ */
.access-container {
  position: relative;
}

.access-bg {
  position: sticky;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
}
.access-bg_img {
  height: 100%;
  object-fit: cover;
}

.access {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 140px;
  margin-top: -100vh;
  background-color: rgba(62, 96, 165, 0.8);
}
.access_heading {
  margin-bottom: 1.5em;
  color: var(--white);
}

.access-btn-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  margin-bottom: 190px;
}
@media (max-width: 768px) {
  .access-btn-group {
    width: 90%;
    margin-inline: auto;
  }
}

.access-btn {
  display: grid;
  grid-template-areas: "ttl ttl" "txt arrow";
  grid-template-columns: 1fr auto;
  column-gap: 15px;
  padding: 40px 5% 45px 6%;
  background-color: var(--bg-ivory);
  background-repeat: no-repeat;
  border-radius: 10px;
}
.access-btn::after {
  display: block;
  grid-area: arrow;
  width: 60px;
  aspect-ratio: 1;
  content: "";
  background: url("../images/icon_arrow.svg") no-repeat center/18px, var(--blue);
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .access-btn::after {
    width: 50px;
    background-size: 15px;
  }
}
.access-btn--directions {
  background-image: url("../images/image_airplane.svg");
  background-position: 93% 11%;
  background-size: 40%;
}
.access-btn--stay {
  background-image: url("../images/icon_hotel.svg");
  background-position: 94% 15%;
  background-size: 19%;
}
.access-btn_ttl {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  grid-area: ttl;
  margin-bottom: 0.8em;
  font-size: var(--fs-40);
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .access-btn_ttl {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .access-btn_ttl {
  letter-spacing: 0.07em;
}
.access-btn_txt {
  grid-area: txt;
  align-self: center;
}

[id=hotel-list] {
  padding-top: 70px;
  margin-top: -70px;
}

.hotel-list-ttl {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 60px;
  font-size: var(--fs-28);
  line-height: var(--lh-28);
  color: var(--white);
  text-align: center;
  border: 1px solid currentcolor;
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .hotel-list-ttl {
    letter-spacing: 0.12em;
  }
}

.hotel-list {
  display: grid;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 70px 40px;
}
@media (max-width: 768px) {
  .hotel-list {
    grid-template-columns: 1fr;
  }
}
.hotel-list_attention {
  font-size: var(--fs-15);
  line-height: var(--lh-15);
  color: var(--white);
}
.hotel-list_attention-ttl {
  display: inline-block;
  padding: 0 0.8em;
  margin-top: 70px;
  margin-right: 0.8em;
  border: 1px solid currentcolor;
}

.hotel {
  display: grid;
  grid-template-areas: "img name" "img address" "img features" "desc desc";
  grid-template-columns: auto 1fr;
  column-gap: 25px;
  color: var(--white);
}
.hotel_name {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  grid-area: name;
  align-self: center;
  margin-bottom: 0.2em;
  font-size: var(--fs-30);
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .hotel_name {
    letter-spacing: 0.12em;
  }
}
.hotel_name .small {
  display: inline-block;
  font-size: 0.8em;
}
.hotel_address {
  grid-area: address;
  margin-bottom: 2em;
  font-size: var(--fs-15);
  line-height: 1.4666666667;
  letter-spacing: 0.025em;
}
@media (max-width: 768px) {
  .hotel_address {
    margin-bottom: 1em;
  }
}
.hotel_features {
  display: flex;
  grid-area: features;
  gap: 17px;
}
@media (max-width: 768px) {
  .hotel_features {
    gap: 10px;
  }
}
.hotel_features > * {
  width: 45px;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 1024px) {
  .hotel_features > * {
    width: 40px;
  }
}
@media (max-width: 500px) {
  .hotel_features > * {
    width: 26px;
  }
}
.hotel_features .christian {
  background-image: url("../images/icon_christian_circle.svg");
}
.hotel_features .bike {
  background-image: url("../images/icon_bike_circle.svg");
}
.hotel_features .fishing {
  background-image: url("../images/icon_fishing_circle.svg");
}
.hotel_desc {
  grid-area: desc;
  margin-top: 1em;
  font-size: var(--fs-15);
  line-height: var(--lh-15);
  letter-spacing: 0.025em;
}
.hotel_img {
  grid-area: img;
  max-width: 200px;
}
@media (max-width: 1024px) {
  .hotel_img {
    max-width: 180px;
  }
}
@media (max-width: 500px) {
  .hotel_img {
    max-width: 110px;
  }
}
.hotel a {
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .hotel a:hover, .hotel a:focus {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .hotel a:active {
    opacity: 0.7;
  }
}

/* ==========================
  下層ページ
========================== */
/* ------------------------
  page-header
------------------------ */
.page-header {
  position: relative;
  display: grid;
  place-content: center;
  min-height: 600px;
  padding-top: 100px;
  padding-bottom: 50px;
  color: var(--white);
  background-blend-mode: multiply;
}
.theme01 .page-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("../images/image_05.jpg") no-repeat center/cover;
}
.theme02 .page-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("../images/image_19.jpg") no-repeat center/cover;
}
.theme03 .page-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 50%, rgba(0, 71, 154, 0.3) 100%), url("../images/image_34.jpg") no-repeat center/cover;
}
.page-header_inner {
  position: relative;
  max-width: 980px;
  margin-right: 130px;
  margin-left: 130px;
}
@media (max-width: 1200px) {
  .page-header_inner {
    margin-right: 100px;
  }
}
@media (max-width: 768px) {
  .page-header_inner {
    margin-right: 30px;
    margin-left: 30px;
  }
}
.page-header_inner::before {
  position: absolute;
  right: 100%;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.theme01 .page-header_inner::before {
  top: -30px;
  width: 13%;
  aspect-ratio: 16/25;
  background-image: url("../images/image_christian.svg");
  transform: translate(-10px, 0);
}
@media (max-width: 1200px) {
  .theme01 .page-header_inner::before {
    width: 11%;
  }
}
@media (max-width: 1024px) {
  .theme01 .page-header_inner::before {
    top: -10px;
    width: 80px;
  }
}
@media (max-width: 768px) {
  .theme01 .page-header_inner::before {
    top: -66px;
    width: 70px;
    transform: translate(63px, 0);
  }
}
@media (max-width: 500px) {
  .theme01 .page-header_inner::before {
    top: -40px;
  }
}
.theme02 .page-header_inner::before {
  top: -93px;
  width: 27%;
  aspect-ratio: 28/25;
  background-image: url("../images/image_fishing.svg");
  transform: translate(165px, 0);
}
@media (max-width: 1024px) {
  .theme02 .page-header_inner::before {
    width: 200px;
    transform: translate(105px, 39px);
  }
}
@media (max-width: 768px) {
  .theme02 .page-header_inner::before {
    width: 120px;
    transform: translate(106px, 39px);
  }
}
.theme03 .page-header_inner::before {
  top: 0;
  width: 9%;
  aspect-ratio: 21/50;
  background-image: url("../images/image_bicycle.svg");
  transform: translate(-30px, 0);
}
@media (max-width: 1024px) {
  .theme03 .page-header_inner::before {
    top: -20px;
    width: 85px;
    transform: translate(-20px, 0);
  }
}
@media (max-width: 768px) {
  .theme03 .page-header_inner::before {
    top: -76px;
    width: 53px;
    transform: translate(42px, 0);
  }
}
@media (max-width: 500px) {
  .theme03 .page-header_inner::before {
    top: -51px;
  }
}
@media (max-width: 768px) {
  .page-header_heading-container {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .theme01 .page-header_heading-container {
    margin-left: 74px;
  }
}
@media (max-width: 768px) {
  .theme03 .page-header_heading-container {
    margin-left: 48px;
  }
}
.page-header_num {
  font-family: Marcellus, "Palatino Linotype", Palatino, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  display: inline-block;
  text-indent: -0.7em;
  transform: scale(0.75);
}
@media (max-width: 768px) {
  .page-header_num {
    display: block;
    width: fit-content;
  }
}
@media (max-width: 768px) {
  .page-header_span {
    display: none;
  }
}
.page-header_copy {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 0.6em;
  font-size: var(--fs-21);
}
@media (max-width: 768px) {
  .page-header_copy {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .page-header_copy {
  letter-spacing: 0.1em;
}
@media (max-width: 500px) {
  .page-header_copy {
    margin-bottom: 0.5em;
  }
}
@media (max-width: 500px) {
  .theme01 .page-header_copy .u-word {
    display: block;
  }
}
@media (max-width: 500px) {
  .theme03 .page-header_copy .u-word {
    display: block;
  }
}
.page-header_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 1.5em;
  font-size: var(--fs-56);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .page-header_heading {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .page-header_heading {
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .page-header_heading {
    margin-left: -0.8em;
  }
}
@media (max-width: 500px) {
  .page-header_heading {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .theme01 .page-header_heading {
    margin-left: -2.4em;
  }
}
@media (max-width: 768px) {
  .theme03 .page-header_heading {
    margin-left: -1.8em;
  }
}
.page-header_desc {
  font-size: var(--fs-19);
  line-height: var(--lh-19);
  text-align: justify;
}
html[lang=en] .page-header_desc {
  text-align: left;
}

/* ------------------------
  point
------------------------ */
.point-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: -50px;
  counter-reset: point-num;
}
@media (max-width: 768px) {
  .point-list {
    grid-template-columns: 1fr;
  }
}

.point {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  margin-top: 1.5625rem;
  counter-increment: point-num;
}
.point::before {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5625rem;
  content: "Point." counter(point-num);
  transform: translateY(-100%);
}
@media (max-width: 768px) {
  .point::before {
    letter-spacing: 0.12em;
  }
}
@media (max-width: 768px) {
  .point::before {
    font-size: 1.1875rem;
  }
}
.point_body {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1em;
  padding: 25px 30px 20px;
  background-color: var(--white);
}
@media (max-width: 1024px) {
  .point_body {
    padding: 25px 20px 20px;
  }
}
@media (max-width: 768px) {
  .point_body {
    padding: 20px 20px 17px;
  }
}
.point_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  min-height: calc(var(--lh-36) * 3em);
  font-size: var(--fs-36);
  line-height: var(--lh-36);
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .point_heading {
    letter-spacing: 0.12em;
  }
}
@media (max-width: 768px) {
  .point_heading {
    min-height: unset;
  }
}
html[lang=en] .point_heading {
  font-size: 1.875rem;
  letter-spacing: 0.07em;
}
@media (max-width: 1024px) {
  html[lang=en] .point_heading {
    font-size: 1.6875rem;
  }
}
@media (max-width: 768px) {
  html[lang=en] .point_heading {
    font-size: 1.375rem;
  }
}
html[lang=zh-CN] .point_heading {
  min-height: calc(var(--lh-36) * 2.5em);
}
@media (max-width: 768px) {
  html[lang=zh-CN] .point_heading {
    min-height: unset;
  }
}
html[lang=en] .theme02 .point_heading {
  min-height: calc(var(--lh-36) * 2em);
}
@media (max-width: 768px) {
  html[lang=en] .theme02 .point_heading {
    min-height: unset;
  }
}
.theme03 .point_heading {
  min-height: calc(var(--lh-36) * 2em);
}
@media (max-width: 768px) {
  .theme03 .point_heading {
    min-height: unset;
  }
}
.point_img {
  order: -1;
}

/* ------------------------
  model corse
------------------------ */
.spot-link {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 0.15em;
}
.spot-link::after {
  display: inline-block;
  width: 0.83em;
  aspect-ratio: 33/50;
  margin-left: 6px;
  vertical-align: -0.2em;
  content: "";
  background: url("../images/icon_spot.svg") no-repeat center/contain;
}

.model-map {
  width: 90%;
  max-width: 730px;
  margin: 60px auto 40px;
}

.route-summary {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  margin-bottom: 115px;
}
@media (max-width: 1024px) {
  .route-summary {
    grid-template-columns: 1fr 320px;
  }
}
@media (max-width: 768px) {
  .route-summary {
    grid-template-columns: 1fr;
  }
}
.route-summary_map a {
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .route-summary_map a:hover, .route-summary_map a:focus {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .route-summary_map a:active {
    opacity: 0.8;
  }
}
.route-summary_route-list {
  padding-top: 35px;
}
.route-summary_route {
  display: block;
  padding: 1.5em;
  color: var(--color);
  background-color: var(--white);
  transition: box-shadow var(--transition);
}
@media (max-width: 1024px) {
  .route-summary_route {
    padding-bottom: 1em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .route-summary_route:hover, .route-summary_route:focus {
    box-shadow: 2px 2px 0 0 var(--color);
  }
}
@media (hover: none) {
  .route-summary_route:active {
    box-shadow: 2px 2px 0 0 var(--color);
  }
}
.route-summary_route + .route-summary_route {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .route-summary_route + .route-summary_route {
    margin-top: 30px;
  }
}
.route-summary_route--a {
  --color: #c1272d;
}
.route-summary_route--b {
  --color: #ed7d31;
}
.route-summary_route--c {
  --color: #006837;
}
.route-summary_route-num {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  display: block;
  margin-top: -2em;
  font-size: 1.4705882353em;
}
@media (max-width: 768px) {
  .route-summary_route-num {
    letter-spacing: 0.12em;
  }
}
.route-summary_route-name {
  font-size: var(--fs-21);
  font-weight: 700;
}

.tabs_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-end;
}
.tabs_tab {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  height: 2.2em;
  font-size: var(--fs-28);
  color: var(--color);
  text-align: center;
  background-color: var(--bg-color);
}
@media (max-width: 768px) {
  .tabs_tab {
    letter-spacing: 0.12em;
  }
}
.tabs_tab[id=tab-route-a] {
  --color: #c1272d;
  --bg-color: #f5dcdd;
}
.tabs_tab[id=tab-route-b] {
  --color: #ed7d31;
  --bg-color: #fddba4;
}
.tabs_tab[id=tab-route-c] {
  --color: #006837;
  --bg-color: #bbd7ca;
}
.tabs_tab[aria-selected=true] {
  font-size: var(--fs-36);
  color: var(--white);
  background-color: var(--color);
}

.spot-container {
  padding: 40px;
  counter-reset: spot-num;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .spot-container {
    padding: 20px 10px 20px 0;
  }
}
.spot-container--route-a {
  --color: #c1272d;
  --bg-color: #f5dcdd;
}
.spot-container--route-a .spot-link::after {
  background-image: url("../images/icon_spot_a.svg");
}
.spot-container--route-b {
  --color: #ed7d31;
  --bg-color: #fddba4;
}
.spot-container--route-b .spot-link::after {
  background-image: url("../images/icon_spot_b.svg");
}
.spot-container--route-c {
  --color: #006837;
  --bg-color: #bbd7ca;
}
.spot-container--route-c .spot-link::after {
  background-image: url("../images/icon_spot_c.svg");
}
.spot-container_heading-container {
  display: grid;
  grid-template: "heading map" auto "copy map" 1fr/1fr 31%;
  gap: 0 20px;
  margin-bottom: 50px;
}
.spot-container--route-b .spot-container_heading-container {
  grid-template-columns: 1fr 41%;
}
.spot-container--route-c .spot-container_heading-container {
  grid-template-columns: 1fr 46.2%;
}
@media (max-width: 768px) {
  .spot-container_heading-container {
    grid-template-areas: "heading" "map" "copy";
    grid-template-columns: 1fr !important;
  }
}
.spot-container_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  position: relative;
  grid-area: heading;
  align-content: center;
  width: fit-content;
  margin-bottom: 2.5em;
  font-size: var(--fs-23);
  color: var(--color, var(--blue));
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
  text-underline-offset: 0.3em;
}
@media (max-width: 768px) {
  .spot-container_heading {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .spot-container_heading {
  font-size: var(--fs-28);
  letter-spacing: 0.07em;
}
.theme03 .spot-container_heading {
  padding-top: 2em;
  padding-right: 7.7em;
}
@media (max-width: 1024px) {
  .theme03 .spot-container_heading {
    padding-right: 7em;
  }
}
@media (max-width: 768px) {
  .theme03 .spot-container_heading {
    padding-top: 1em;
    padding-right: 4em;
  }
}
html[lang=en] .theme03 .spot-container_heading {
  padding-top: 0.5em;
  padding-right: 6em;
}
@media (max-width: 1024px) {
  html[lang=en] .theme03 .spot-container_heading {
    padding-right: 5em;
  }
}
@media (max-width: 768px) {
  html[lang=en] .theme03 .spot-container_heading {
    padding-right: 3em;
  }
}
@media (max-width: 768px) {
  .spot-container_heading {
    padding-left: 1em;
    margin-bottom: 25px;
  }
}
.theme03 .spot-container_heading::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 6.8em;
  aspect-ratio: 44/25;
  content: "";
  background-color: var(--color);
  mask-image: url("../images/image_bicycle_red.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: translate(0, -49%);
}
@media (max-width: 1024px) {
  .theme03 .spot-container_heading::after {
    width: 6em;
  }
}
@media (max-width: 768px) {
  .theme03 .spot-container_heading::after {
    right: -3%;
    width: 4em;
  }
}
html[lang=en] .theme03 .spot-container_heading::after {
  top: unset;
  bottom: 2%;
  width: 5em;
  transform: unset;
}
@media (max-width: 1024px) {
  html[lang=en] .theme03 .spot-container_heading::after {
    width: 4em;
  }
}
@media (max-width: 768px) {
  html[lang=en] .theme03 .spot-container_heading::after {
    right: -3%;
    width: 3em;
  }
}
.spot-container_copy {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  grid-area: copy;
  margin-bottom: 1.5em;
  font-size: 2.25rem;
  line-height: var(--lh-38);
  color: var(--color, var(--blue));
}
@media (max-width: 768px) {
  .spot-container_copy {
    letter-spacing: 0.12em;
  }
}
@media (max-width: 1200px) {
  .spot-container_copy {
    font-size: 1.9375rem;
  }
}
@media (max-width: 1024px) {
  .spot-container_copy {
    font-size: 1.375rem;
  }
}
@media (max-width: 768px) {
  .spot-container_copy {
    padding-left: 0.8em;
    margin-bottom: 0;
    font-size: 1.4375rem;
  }
}
@media (max-width: 500px) {
  .spot-container_copy {
    font-size: 1.1875rem;
  }
}
html[lang=en] .spot-container_copy {
  letter-spacing: 0.07em;
}
@media (max-width: 1024px) {
  html[lang=en] .spot-container_copy {
    font-size: 1.8125rem;
  }
}
@media (max-width: 768px) {
  html[lang=en] .spot-container_copy {
    font-size: 1.375rem;
  }
}
.spot-container_map {
  grid-area: map;
  align-self: center;
}
@media (max-width: 768px) {
  .spot-container_map {
    justify-self: center;
    width: min(90%, 400px);
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .tabs_panel {
    padding: 20px 10px;
  }
}

.spot-category-wrap {
  display: flex;
}
@media (max-width: 768px) {
  .spot-category-wrap {
    gap: 5px;
  }
}

.spot-category {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  display: grid;
  place-content: center;
  min-width: 4.3em;
  padding-top: 1em;
  padding-bottom: 1em;
  margin-bottom: 8px;
  font-size: var(--fs-23);
  background-color: var(--bg-blue);
  writing-mode: vertical-lr;
}
@media (max-width: 768px) {
  .spot-category {
    letter-spacing: 0.12em;
  }
}
@media (max-width: 768px) {
  .spot-category {
    justify-content: flex-start;
    min-width: 2.7em;
  }
}

.spot {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  min-height: 350px;
  counter-increment: spot-num;
}
@media (max-width: 768px) {
  .spot {
    gap: 7px;
    min-height: unset;
  }
}
.theme03 .spot {
  min-height: 270px;
}
@media (max-width: 768px) {
  .theme03 .spot {
    min-height: unset;
  }
}
.theme03 .spot--last {
  min-height: unset;
}
.spot_num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: flex-start flex-end;
  min-width: 7em;
}
@media (max-width: 768px) {
  .spot_num {
    place-items: flex-start;
    min-width: unset;
  }
}
.theme03 .spot_num {
  min-width: unset;
}
.spot_num::before {
  padding: 0.1em 0.9em 0.2em;
  font-size: 0.9375rem;
  color: var(--white);
  letter-spacing: 0.03em;
  content: "Spot." counter(spot-num, decimal-leading-zero);
  background-color: var(--color, var(--blue));
}
@media (max-width: 1024px) {
  .spot_num::before {
    font-size: 0.8125rem;
  }
}
@media (max-width: 768px) {
  .spot_num::before {
    font-size: 0.625rem;
  }
}
.spot:not(.spot--last) .spot_num::after {
  position: absolute;
  top: 0;
  right: 2.5em;
  z-index: -1;
  display: block;
  width: 2px;
  height: 100%;
  content: "";
  background-color: var(--color, var(--blue));
}
@media (max-width: 768px) {
  .spot:not(.spot--last) .spot_num::after {
    left: 1.8em;
  }
}
.spot_body {
  display: grid;
  grid-template: "name name" auto "desc img" auto "info info" 1fr/1fr 36%;
  gap: 0 25px;
  padding-bottom: 2em;
}
@media (max-width: 768px) {
  .spot_body {
    grid-template-areas: "name" "img" "desc" "info";
    grid-template-columns: 1fr;
    padding-bottom: 40px;
  }
}
.theme03 .spot_body {
  grid-template: "name name" auto "desc img-group" 1fr/1fr 36%;
  gap: 0 35px;
}
@media (max-width: 768px) {
  .theme03 .spot_body {
    grid-template-areas: "name" "img-group" "desc";
    grid-template-columns: 1fr;
  }
}
.spot_name {
  grid-area: name;
  margin-top: -0.15em;
  margin-bottom: 0.8em;
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color, var(--blue));
}
@media (max-width: 768px) {
  .spot_name {
    margin-bottom: 0.6em;
  }
}
.spot_desc {
  grid-area: desc;
  margin-bottom: 0.5em;
  color: var(--color, var(--blue));
  text-align: justify;
}
html[lang=en] .spot_desc {
  text-align: left;
}
.spot_info-group {
  display: flex;
  flex-wrap: wrap;
  grid-area: info;
  row-gap: 5px;
}
.spot_info-group > :not(:first-child) {
  margin-left: -1px;
}
@media (max-width: 500px) {
  .spot_info-group > :not(:first-child) {
    margin-left: 0;
  }
}
.spot_info {
  display: inline-block;
  grid-area: info;
  place-self: flex-start flex-start;
  padding: 1px 6px 2px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color, var(--blue));
  border: 1px solid currentcolor;
}
@media (max-width: 768px) {
  .spot_info {
    font-size: 0.8125rem;
  }
}
.spot_img-group {
  grid-area: img-group;
  width: 100%;
}
.spot_img {
  grid-area: img;
}
.theme03 .spot_img {
  grid-area: unset;
}
@media (max-width: 768px) {
  .spot_img {
    margin-bottom: 10px;
  }
}

.rental-spot {
  padding: 20px 20px 25px;
  color: var(--color);
  background-color: var(--bg-color, var(--bg-blue));
  border-radius: 10px;
}
.rental-spot_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 1.2em;
  font-size: var(--fs-24);
  text-align: center;
  background-color: var(--white);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .rental-spot_heading {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .rental-spot_heading {
  letter-spacing: 0.1em;
}
.rental-spot_shop {
  display: grid;
  grid-template-areas: "img name" "img desc";
  grid-template-columns: 190px 1fr;
  gap: 5px 22px;
}
@media (max-width: 768px) {
  .rental-spot_shop {
    grid-template-areas: "name" "desc" "img";
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.rental-spot_shop + .rental-spot_shop {
  margin-top: 30px;
}
.rental-spot_name {
  grid-area: name;
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .rental-spot_name {
    margin-bottom: 0.5em;
  }
}
.rental-spot_name .small {
  display: block;
  font-size: 0.7083333333em;
  font-weight: 400;
}
.rental-spot_desc {
  grid-area: desc;
}
@media (max-width: 768px) {
  .rental-spot_desc {
    margin-bottom: 0.6em;
  }
}
.rental-spot_link {
  display: block;
}
.rental-spot_img {
  grid-area: img;
}

/* ------------------------
  bike
------------------------ */
.bike-course {
  padding: 40px 40px 70px;
  margin-top: 115px;
  margin-bottom: 115px;
  background: url("../images/image_bike.svg") no-repeat 93% 26px/220px;
  background-color: var(--white);
}
@media (max-width: 1200px) {
  .bike-course {
    background-size: 160px;
  }
}
@media (max-width: 1024px) {
  .bike-course {
    background-size: 16%;
  }
}
@media (max-width: 768px) {
  .bike-course {
    padding: 40px 18px 50px;
    background-size: 90px;
  }
}
html[lang=en] .bike-course {
  background-size: 140px;
}
@media (max-width: 1024px) {
  html[lang=en] .bike-course {
    background-size: 16%;
  }
}
@media (max-width: 768px) {
  html[lang=en] .bike-course {
    background-size: 90px;
  }
}
.bike-course_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 0.7em;
  font-size: var(--fs-36);
  line-height: var(--lh-36);
}
@media (max-width: 768px) {
  .bike-course_heading {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .bike-course_heading {
  letter-spacing: 0.1em;
}
@media (max-width: 500px) {
  .bike-course_heading {
    margin-right: 30%;
  }
}
.bike-course_txt {
  margin-bottom: 1.7em;
  font-size: var(--fs-19);
  line-height: 1.8;
}

.bike-spot-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 50px;
  margin-bottom: 75px;
}
@media (max-width: 1024px) {
  .bike-spot-container {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .bike-spot-container {
    grid-template-columns: 1fr;
  }
}

.bike-spot_img {
  margin-bottom: 5px;
}
.bike-spot_name {
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.3;
}

.bike-shop {
  display: grid;
  grid-template: "img name" auto "img desc" 1fr/220px 1fr;
  gap: 5px 22px;
}
@media (max-width: 768px) {
  .bike-shop {
    grid-template-areas: "name" "desc" "img";
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.bike-shop + .bike-shop {
  margin-top: 30px;
}
.bike-shop_img {
  grid-area: img;
}
.bike-shop_name {
  grid-area: name;
  margin-bottom: 0.5em;
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .bike-shop_name {
    margin-bottom: 0.5em;
  }
}
.bike-shop_desc {
  grid-area: desc;
  font-size: var(--fs-15);
  line-height: var(--lh-15);
}
@media (max-width: 768px) {
  .bike-shop_desc {
    margin-bottom: 0.6em;
  }
}

.spot-more {
  padding: 45px 40px;
  background-image: repeating-linear-gradient(90deg, #3e60a5, #3e60a5 11px, transparent 11px, transparent 22px), repeating-linear-gradient(180deg, #3e60a5, #3e60a5 11px, transparent 11px, transparent 22px), repeating-linear-gradient(90deg, #3e60a5, #3e60a5 11px, transparent 11px, transparent 22px), repeating-linear-gradient(180deg, #3e60a5, #3e60a5 11px, transparent 11px, transparent 22px);
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-position: left top, right top, left bottom, left top;
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
}
@media (max-width: 768px) {
  .spot-more {
    padding: 25px;
  }
}
.spot-more_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 0.7em;
  font-size: var(--fs-36);
  line-height: var(--lh-36);
}
@media (max-width: 768px) {
  .spot-more_heading {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .spot-more_heading {
  letter-spacing: 0.1em;
}
.spot-more_desc {
  margin-bottom: 30px;
}
.spot-more_spot {
  display: block;
  width: fit-content;
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.3;
}
.spot-more_spot + .spot-more_spot {
  margin-top: 0.7em;
}

/* ------------------------
  tour
------------------------ */
.tour-container {
  padding: 40px 40px 70px;
  margin-top: 115px;
  background: url("../images/image_bus.svg") no-repeat 93% 44px/280px;
  background-color: var(--white);
}
@media (max-width: 1024px) {
  .tour-container {
    background-size: 26%;
  }
}
@media (max-width: 768px) {
  .tour-container {
    padding: 30px 18px 50px;
  }
}
@media (max-width: 500px) {
  .tour-container {
    background-size: 0;
  }
}
.tour-container_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  padding-right: 305px;
  margin-bottom: 1.2em;
  font-size: var(--fs-36);
  line-height: var(--lh-36);
}
@media (max-width: 768px) {
  .tour-container_heading {
    letter-spacing: 0.12em;
  }
}
@media (max-width: 1024px) {
  .tour-container_heading {
    padding-right: 28%;
  }
}
@media (max-width: 500px) {
  .tour-container_heading {
    padding-right: 0;
  }
}
html[lang=en] .tour-container_heading {
  letter-spacing: 0.1em;
}

.tour {
  padding: 20px 20px 50px;
  background-color: var(--bg-blue);
  border-radius: 10px;
}
@media (max-width: 768px) {
  .tour {
    padding: 20px 10px 30px;
  }
}
.tour + .tour {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .tour + .tour {
    margin-top: 40px;
  }
}
.tour_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 1.2em;
  font-size: var(--fs-24);
  text-align: center;
  background-color: var(--white);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .tour_heading {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .tour_heading {
  padding: 0.4em 1em;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.tour_body {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 1.5em;
  padding-right: 10px;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .tour_body {
    grid-template-columns: 1fr;
  }
}
.tour_desc {
  text-align: justify;
}
html[lang=en] .tour_desc {
  text-align: left;
}
.tour_link {
  position: relative;
  display: block;
  width: fit-content;
  padding-right: 3.9em;
  margin-top: 2em;
  margin-left: auto;
  font-size: var(--fs-19);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 0.1em;
}
.tour_link::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 3.1em;
  aspect-ratio: 1;
  content: "";
  background: url("../images/icon_arrow.svg") no-repeat center/0.9em;
  background-color: var(--blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ------------------------
  fishing-pattern
------------------------ */
.fishing-pattern-group {
  counter-reset: fishing-pattern-num;
}

.fishing-pattern {
  --pattern-color: var(--blue);
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 20px;
  width: calc((100vw - min(100%, 1100px)) / 2 + min(100%, 1100px));
  max-width: 1300px;
  margin-left: calc((100vw - min(100%, 1100px)) / 2);
  counter-increment: fishing-pattern-num;
}
@media (max-width: 1200px) {
  .fishing-pattern {
    grid-template-columns: 1fr 46%;
    padding-left: 2%;
  }
}
@media (max-width: 768px) {
  .fishing-pattern {
    grid-template-areas: "num" "img" "heading" "desc" "btn";
    grid-template-columns: 1fr;
    gap: 0;
    padding-right: 4%;
    padding-left: 4%;
  }
}
.fishing-pattern--bank {
  --pattern-color: #2c8081;
}
.fishing-pattern--shore {
  --pattern-color: #66519f;
}
.fishing-pattern + .fishing-pattern {
  margin-top: 65px;
}
@media (max-width: 768px) {
  .fishing-pattern_body {
    display: contents;
  }
}
.fishing-pattern_body::before {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  display: block;
  font-size: 3.125rem;
  line-height: 1.4;
  color: var(--pattern-color);
  letter-spacing: 0;
  content: counter(fishing-pattern-num, decimal-leading-zero);
}
@media (max-width: 768px) {
  .fishing-pattern_body::before {
    letter-spacing: 0.12em;
  }
}
@media (max-width: 1024px) {
  .fishing-pattern_body::before {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .fishing-pattern_body::before {
    z-index: 1;
    grid-area: num;
    margin-bottom: -0.5em;
    font-size: 3.125rem;
  }
}
.fishing-pattern_heading-wrap {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .fishing-pattern_heading-wrap {
    letter-spacing: 0.12em;
  }
}
@media (max-width: 768px) {
  .fishing-pattern_heading-wrap {
    z-index: 1;
    grid-area: heading;
    margin-top: -1.2em;
  }
}
@media (max-width: 500px) {
  html[lang=en] .fishing-pattern_heading-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.fishing-pattern_heading {
  padding: 0 0.2em 0 0.4em;
  font-size: var(--fs-40);
  color: var(--white);
  background-color: var(--pattern-color);
}
@media (max-width: 500px) {
  .fishing-pattern_heading {
    font-size: 1.4375rem;
  }
}
.fishing-pattern_target {
  align-content: center;
  padding: 0 0.7em;
  font-size: var(--fs-23);
  color: var(--pattern-color);
  letter-spacing: 0.05em;
  background-color: var(--white);
}
@media (max-width: 500px) {
  .fishing-pattern_target {
    font-size: 1rem;
  }
}
.fishing-pattern_desc {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  font-size: var(--fs-30);
  line-height: 2;
  color: var(--pattern-color);
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
  text-underline-offset: 0.4em;
}
@media (max-width: 768px) {
  .fishing-pattern_desc {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .fishing-pattern_desc {
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .fishing-pattern_desc {
    grid-area: desc;
  }
}
@media (max-width: 500px) {
  .fishing-pattern_desc {
    font-size: 1.125rem;
  }
}
.fishing-pattern .btn {
  background-color: var(--pattern-color);
}
@media (max-width: 768px) {
  .fishing-pattern .btn {
    grid-area: btn;
  }
}
@media (max-width: 768px) {
  .fishing-pattern_img {
    grid-area: img;
    width: 104%;
    margin-right: -4%;
  }
}

/* ------------------------
  preparations
------------------------ */
.preparations {
  margin-top: 120px;
}

.preparations-container {
  padding: 40px;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .preparations-container {
    padding: 20px;
  }
}
.preparations-container_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  position: relative;
  width: fit-content;
  margin-bottom: 1em;
  font-size: var(--fs-23);
}
@media (max-width: 768px) {
  .preparations-container_heading {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .preparations-container_heading {
  letter-spacing: 0.07em;
}
.preparations-container_heading::before {
  display: inline-block;
  width: 2em;
  aspect-ratio: 16/15;
  margin-right: 10px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.preparations-container_heading--clothes::before {
  background-image: url("../images/icon_clothes.svg");
}
.preparations-container_heading--bag::before {
  background-image: url("../images/icon_bag.svg");
}
.preparations-container_heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--blue);
}

.preparations-box-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .preparations-box-group {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .preparations-box-group {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  html[lang=en] .preparations-box-group {
    grid-template-columns: 1fr;
  }
}

.preparations-box {
  padding: 1.2em;
  background-color: var(--bg-ivory);
}
.preparations-box--separate {
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.preparations-box_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 1em;
  font-size: var(--fs-23);
  text-align: center;
}
@media (max-width: 768px) {
  .preparations-box_heading {
    letter-spacing: 0.12em;
  }
}
html[lang=en] .preparations-box_heading {
  letter-spacing: 0.1em;
}
.preparations-box_item {
  padding-left: 1em;
  text-align: justify;
  text-indent: -1em;
}
html[lang=en] .preparations-box_item {
  text-align: left;
}
.preparations-box_item::before {
  display: inline-block;
  width: 0.6em;
  aspect-ratio: 1;
  margin-right: 0.2em;
  vertical-align: 0.07em;
  content: "";
  background-color: currentcolor;
  border-radius: 50%;
}
.preparations-box_desc {
  position: relative;
  min-height: 8.5em;
  padding-top: 1.2em;
  margin-top: 1.2em;
}
@media (max-width: 1024px) {
  .preparations-box_desc {
    min-height: 10.5em;
  }
}
@media (max-width: 768px) {
  .preparations-box_desc {
    min-height: unset;
  }
}
html[lang=en] .preparations-box_desc {
  min-height: 13em;
}
@media (max-width: 1024px) {
  html[lang=en] .preparations-box_desc {
    min-height: unset;
  }
}
.preparations-box_desc::before {
  position: absolute;
  top: 0;
  left: -1em;
  display: block;
  width: calc(100% + 2em);
  height: 1px;
  content: "";
  background-color: #d1d4ba;
}
.preparations-box_type {
  min-height: 5em;
}
@media (max-width: 768px) {
  .preparations-box_type {
    min-height: unset;
  }
}
.preparations-box_img {
  margin-top: 1.5em;
}

/* ------------------------
  modal
------------------------ */
.modal {
  background-color: var(--white);
}
.modal_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 1.3em;
  font-size: var(--fs-30);
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-skip-ink: none;
  text-underline-offset: 0.3em;
}
@media (max-width: 768px) {
  .modal_heading {
    letter-spacing: 0.12em;
  }
}

[data-remodal-id=modal_boat] {
  --pattern-color: var(--blue);
}

[data-remodal-id=modal_bank] {
  --pattern-color: #2c8081;
}

[data-remodal-id=modal_shore] {
  --pattern-color: #66519f;
}

.modal-swiper {
  width: calc(100% + 80px);
  margin-bottom: 65px;
  margin-left: -40px;
}
@media (max-width: 768px) {
  .modal-swiper {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}

.swiper-slide_txt {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1em;
  font-size: var(--fs-20);
  letter-spacing: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .swiper-slide_txt {
    letter-spacing: 0.12em;
  }
}
@media (max-width: 768px) {
  .swiper-slide_txt {
    position: static;
  }
}

.modal-element-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px 37px;
  margin-bottom: 90px;
}
@media (max-width: 1200px) {
  .modal-element-group {
    grid-template-columns: 1fr;
  }
}
html[lang=en] .modal-element-group {
  grid-template-columns: 1fr;
}
html[lang=zh-CN] .modal-element-group {
  grid-template-columns: 1fr;
}

.modal-element_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  position: relative;
  margin-bottom: 10px;
  font-size: var(--fs-30);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .modal-element_heading {
    letter-spacing: 0.12em;
  }
}
.modal-element_heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background-color: currentcolor;
}
.modal-element_list--time .modal-element_item {
  grid-template-columns: auto 5.3em auto 1fr;
}
@media (max-width: 768px) {
  .modal-element_list--time .modal-element_item {
    grid-template-columns: auto 5.6em auto 1fr;
  }
}
html[lang=en] .modal-element_list--time .modal-element_item {
  grid-template-columns: auto 9.3em auto 1fr;
}
@media (max-width: 768px) {
  html[lang=en] .modal-element_list--time .modal-element_item {
    grid-template-columns: auto 6.6em auto 1fr;
  }
}
html[lang=zh-CN] .modal-element_list--time .modal-element_item {
  grid-template-columns: auto 7em auto 1fr;
}
html[lang=zh-CN] [data-remodal-id=modal_shore] .modal-element_list--time .modal-element_item {
  grid-template-columns: auto 5em auto 1fr;
}
.modal-element_list--budget .modal-element_item {
  grid-template-columns: auto 11.5em auto 1fr;
}
@media (max-width: 768px) {
  .modal-element_list--budget .modal-element_item {
    grid-template-columns: auto 12.5em auto 1fr;
  }
}
@media (max-width: 500px) {
  .modal-element_list--budget .modal-element_item {
    grid-template-columns: auto 10.5em auto 1fr;
  }
}
html[lang=en] .modal-element_list--budget .modal-element_item {
  grid-template-columns: auto 13.5em auto 1fr;
}
@media (max-width: 768px) {
  html[lang=en] .modal-element_list--budget .modal-element_item {
    grid-template-columns: auto 10.5em auto 1fr;
  }
}
html[lang=zh-CN] .modal-element_list--budget .modal-element_item {
  grid-template-columns: auto 11em auto 1fr;
}
@media (max-width: 768px) {
  html[lang=zh-CN] .modal-element_list--budget .modal-element_item {
    grid-template-columns: auto 9em auto 1fr;
  }
}
[data-remodal-id=modal_bank] .modal-element_list--budget .modal-element_item {
  grid-template-columns: auto 6.5em auto 1fr;
}
@media (max-width: 768px) {
  [data-remodal-id=modal_bank] .modal-element_list--budget .modal-element_item {
    grid-template-columns: auto 7.5em auto 1fr;
  }
}
html[lang=en] [data-remodal-id=modal_bank] .modal-element_list--budget .modal-element_item {
  grid-template-columns: auto 7.5em auto 1fr;
}
@media (max-width: 768px) {
  html[lang=en] [data-remodal-id=modal_bank] .modal-element_list--budget .modal-element_item {
    grid-template-columns: auto 6em auto 1fr;
  }
}
@media (max-width: 768px) {
  html[lang=zh-CN] [data-remodal-id=modal_bank] .modal-element_list--budget .modal-element_item {
    grid-template-columns: auto 7em auto 1fr;
  }
}
[data-remodal-id=modal_shore] .modal-element_list--budget .modal-element_item {
  grid-template-columns: auto 8.5em auto 1fr;
}
@media (max-width: 768px) {
  [data-remodal-id=modal_shore] .modal-element_list--budget .modal-element_item {
    grid-template-columns: auto 9em auto 1fr;
  }
}
@media (max-width: 500px) {
  [data-remodal-id=modal_shore] .modal-element_list--budget .modal-element_item {
    grid-template-columns: auto 6.8em auto 1fr;
  }
}
@media (max-width: 768px) {
  html[lang=en] [data-remodal-id=modal_shore] .modal-element_list--budget .modal-element_item {
    grid-template-columns: auto 9em auto 1fr;
  }
}
@media (max-width: 768px) {
  html[lang=zh-CN] [data-remodal-id=modal_shore] .modal-element_list--budget .modal-element_item {
    grid-template-columns: auto 7em auto 1fr;
  }
}
@media (max-width: 500px) {
  .modal-element_list--budget .left .small {
    display: block;
  }
}
@media (max-width: 500px) {
  .modal-element_list--budget .right .small:first-child {
    display: block;
  }
}
.modal-element_item {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  display: grid;
  gap: 7px;
  align-items: center;
  margin-top: 0.6em;
  font-size: var(--fs-21);
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .modal-element_item {
    letter-spacing: 0.12em;
  }
}
.modal-element_item::before {
  display: inline-block;
  width: 0.5em;
  aspect-ratio: 1;
  vertical-align: 0.09em;
  content: "";
  background-color: currentcolor;
  border-radius: 50%;
}
.modal-element_item .small {
  font-size: 0.7em;
}
.modal-element_item .arrow {
  display: inline-block;
  width: 1.3em;
  aspect-ratio: 300/71;
  vertical-align: 0.2em;
  background: url("../images/icon_arow_02.svg") no-repeat center/contain;
}

.modal-company {
  padding: 20px;
  margin-bottom: 95px;
  background-color: var(--bg-blue);
  border-radius: 10px;
}
.modal-company_heading {
  font-family: "Hina Mincho", "Yu Mincho", "Hiragino Mincho ProN", "MS Mincho", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 1em;
  font-size: var(--fs-24);
  text-align: center;
  background-color: var(--white);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .modal-company_heading {
    letter-spacing: 0.12em;
  }
}
.modal-company_group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .modal-company_group {
    grid-template-columns: 1fr;
  }
}
.modal-company_item {
  display: grid;
  grid-template: "img heading" auto "img desc" 1fr/36% 1fr;
  gap: 3px 18px;
}
@media (max-width: 500px) {
  .modal-company_item {
    grid-template: "img" auto "heading" auto "desc" auto/1fr;
  }
}
.modal-company_name {
  grid-area: heading;
  margin-bottom: 0.3em;
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.2;
}
.modal-company_name .small {
  display: inline-block;
  font-size: 0.8em;
}
.modal-company_desc {
  grid-area: desc;
  font-size: var(--fs-15);
  line-height: var(--lh-15);
}
.modal-company_img {
  grid-area: img;
  margin-bottom: 4px;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

/* ------------------------
  faq
------------------------ */
.faq {
  padding-top: 95px;
  background-color: #e4e6d6;
}
@media (max-width: 768px) {
  .faq {
    padding-top: 55px;
  }
}
.faq_list {
  display: grid;
  gap: 30px;
}
.faq_item {
  font-size: var(--fs-19);
  line-height: 1.5789473684;
  --pl: 80px;
}
@media (max-width: 768px) {
  .faq_item {
    --pl: 60px;
  }
}
.faq_question::before, .faq_answer::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  display: grid;
  place-content: center;
  width: 2.3em;
  aspect-ratio: 1;
  padding-bottom: 0.2em;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 50%;
  transform: translateX(30%);
}
@media (max-width: 768px) {
  .faq_question::before, .faq_answer::before {
    font-size: 1rem;
  }
}
.faq_question {
  --bg-size: 30px;
  position: relative;
  display: grid;
  align-items: center;
  min-height: 4em;
  padding: 1em 65px 1em var(--pl);
  cursor: pointer;
  background-color: var(--white);
  background-image: url("../images/icon_plus.svg"), url("../images/icon_minus.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 1.25em;
  background-size: var(--bg-size), 0;
}
@media (max-width: 768px) {
  .faq_question {
    --bg-size: 17px;
    padding-right: 40px;
    background-position: calc(100% - 15px) 1.25em;
  }
}
.faq_question::before {
  content: "Q";
  background-color: var(--bg-blue);
}
.faq_item.is-open .faq_question {
  background-size: 0, var(--bg-size);
}
.faq_answer-wrap {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}
.faq_answer {
  position: relative;
  padding-top: 1.5em;
  padding-bottom: 0.5em;
  padding-left: var(--pl);
}
.faq_answer::before {
  color: var(--white);
  content: "A";
  background-color: var(--blue);
}
.faq_answer a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 0.15em;
}

/* ------------------------
  access
------------------------ */
.access-container--theme .access-bg {
  position: absolute;
  height: 100%;
}
.access-container--theme .access {
  min-height: 100%;
  margin-top: unset;
}
.access-container--theme .access-btn-group {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */