@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

figure {
  width: 100%;
  height: 100%;
}

picture {
  width: 100%;
  height: 100%;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

svg {
  height: 100%;
}

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

.inquiry_btn {
  display: flex;
  margin-top: 16px;
  width: 320px;
  height: 60px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--main-txt, #282c36);
  color: var(--main-txt, #282c36);
  text-align: center;

  /* SP/Noto Sans JP_H3 */
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 32.4px */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.inquiry_btn:hover {
  background-color: var(--main-txt, #282c36);
  color: var(--white, #fff);
  cursor: pointer;
}

.btn {
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--main-main, #58badd);
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  background: var(
    --main-main,
    linear-gradient(90deg, #58badd 0%, #1253b5 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative; /* Needed for pseudo-element or absolute positioning */
  z-index: 1; /* Ensure text is above pseudo-element background if used */
  transition: all 0.3s ease; /* Smooth transition for all animatable properties */
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(
    --main-main,
    linear-gradient(90deg, #58badd 0%, #1253b5 100%)
  );
  z-index: -1; /* Place behind the text */
  opacity: 0; /* Start invisible */
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
  border-radius: inherit; /* Inherit border-radius if any */
}

.btn:hover {
  border-color: transparent; /* Hide border or make it blend */
  -webkit-text-fill-color: white; /* Change text color to white on hover */
}

.btn:hover::before {
  opacity: 1; /* Make background visible on hover */
}

.header_nav a {
  color: inherit;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.header_nav a:hover {
  color: var(--main-main, #58badd); /* Example hover color, adjust as needed */
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1160px;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
}

.pc_only {
  display: none;
}

.sp_only {
  display: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#copyright {
  margin-top: 24px;
  padding-block: 6px;
  color: var(--main-txt, #282c36);
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%; /* 20.4px */
  background: #edf3fa;
}

footer address {
  margin-top: 24px;
  color: #7f7f7f;
  text-align: center;

  /* SP/Noto Sans JP_p */
  font-family: 'Noto Sans JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
}

footer {
  padding-top: 80px;
}

footer {
}

.inquiry_item {
  display: flex;
  flex-direction: column;
  color: var(--main-txt, #282c36);
  text-align: center;

  /* SP/Noto Sans JP_H3 */
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 32.4px */
  position: relative;
}

.inquiry_item .inquiry_tell {
  color: var(--main-txt, #282c36);
  text-align: center;
  font-family: 'Noto Sans JP';
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 57.6px */
}

.inquiry_item:first-child::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #282c36;
  bottom: -32px;
  left: 0;
  transform: translateY(50%);
}

.inquiry_info {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 64px;
}

#access {
  scroll-margin-top: -100px;
}

#access .section_intro {
  background: var(
    --main-main,
    linear-gradient(90deg, #58badd 0%, #1253b5 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;

  /* SP/Noto Sans JP_H2 */
  font-family: 'Noto Sans JP';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
}

#inquiry {
  padding-top: 160px;
}

.access_map {
  width: 100%;
  margin-top: 40px;
}

.access_map iframe {
  width: 100%;
  aspect-ratio: 375/220;
}

.access_images {
  margin-top: 40px;
}

#access .btn {
  margin-top: 40px;
}

.access_text {
  color: var(--main-txt, #282c36);
  text-align: center;

  /* SP/Noto Sans JP_p */
  font-family: 'Noto Sans JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  white-space: nowrap;
  margin-top: 14px;
}

#access {
  padding-top: 208px;
}

.list_shootings {
  display: flex;
  flex-direction: column;
  gap: 112px;
  margin-top: 40px;
}

.main_view {
  width: 100%;
  aspect-ratio: 375/200;
}

.sub_view:nth-child(2) {
  position: absolute;
  top: 96px;
  left: 116px;
}

.view_group {
  display: flex;
  position: relative;
}

.sub_view {
  width: 100%;
  max-width: 210px;
}

.view_text {
  color: var(--main-txt, #282c36);

  /* SP/Noto Sans JP_p */
  font-family: 'Noto Sans JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
}

.view_name {
  color: var(--main-txt, #282c36);

  /* SP/Noto Sans JP_H3 */
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 32.4px */
}

.view_intro {
  background: #edf3fa;
  padding: 24px 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#shooting {
  padding-top: 80px;
}

#travel .btn {
  margin-top: 40px;
  font-weight: 700;
}

.travel_map {
  margin-top: 40px;
}

#travel {
  padding-top: 80px;
}

#travel .container {
  background: #edf3fa;
  padding-block: 80px;
}

.card p {
  color: var(--main-txt, #282c36);

  /* SP/Noto Sans JP_p */
  font-family: 'Noto Sans JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  margin-top: -8px;
}

.card_title {
  /* SP/Noto Sans JP_H3 */
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  background: var(
    --main-main,
    linear-gradient(90deg, #58badd 0%, #1253b5 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card .btn {
  /* PC/Noto Sans JP_H3 */
  font-weight: 700;
  line-height: 180%; /* 36px */
  max-width: 100%;
}

.list_activities {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

#team_building {
  padding-top: 160px;
}

.banquet_table table {
  border-collapse: collapse;
  border: 2px solid #2461ab;
}

.banquet_table tr,
.banquet_table th,
.banquet_table td {
  border: 1px solid #e4e4e4;
}

.banquet_table td {
  height: 72.8px;
  color: var(--main-txt, #282c36);
  text-align: center;
  font-family: 'Noto Sans JP';
  font-size: 12.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 23.04px */
  background: white;
}

.banquet_table th {
  background: #7097c3;
  white-space: nowrap;
  color: white;
  text-align: center;
  font-family: 'Noto Sans JP';
  font-size: 12.8px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 23.04px */
  height: 44.8px;
  min-width: 80px;
  padding-inline: 6px;
}

.table_active button::after {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.banquet_info button {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: auto;
  border: none;
  background: none;
  text-align: center;

  /* SP/Noto Sans JP_H3 */
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 32.4px */
  background: var(
    --main-main,
    linear-gradient(90deg, #58badd 0%, #1253b5 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

.banquet_info button::after {
  content: '';
  display: block;
  width: 16px;
  height: 7px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="10" viewBox="0 0 18 10" fill="none"><path d="M16.6587 8.3288L8.65869 1.3288L0.658691 8.3288" stroke="url(%23paint0_linear_4278_545)" stroke-width="2"/><defs><linearGradient id="paint0_linear_4278_545" x1="16.6587" y1="4.8288" x2="0.658691" y2="4.8288" gradientUnits="userSpaceOnUse"><stop stop-color="%2358BADD"/><stop offset="1" stop-color="%231253B5"/></linearGradient></defs></svg>');
}

/* ---- */
.banquet_info button:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.banquet_info button:hover::after {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* .table_active button:hover::after {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
} */

svg.swiper-navigation-icon {
  display: none;
}

.banquet_intro {
  margin-top: 16px;
  color: var(--main-txt, #282c36);
  text-align: center;

  /* SP/Noto Sans JP_p */
  font-family: 'Noto Sans JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
}

.banquet_name h3 {
  text-align: center;

  /* SP/Noto Sans JP_H2 */
  font-family: 'Noto Sans JP';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  background: var(
    --main-main,
    linear-gradient(90deg, #58badd 0%, #1253b5 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* 43.2px */
}

.banquet_name .banquet_annotation {
  display: block;
  text-align: center;

  /* SP/Noto Sans JP_p */
  font-family: 'Noto Sans JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 28.8px */
  background: var(
    --main-main,
    linear-gradient(90deg, #58badd 0%, #1253b5 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banquet {
  margin-top: 80px;
}

#guide .btn_group {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.guide_images {
  margin-top: 40px;
}

.section_intro {
  margin-top: 16px;
  color: var(--main-txt, #282c36);
  text-align: center;

  /* SP/Noto Sans JP_p */
  font-family: 'Noto Sans JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
}

#inquiry .section_intro {
  background: var(
    --main-main,
    linear-gradient(90deg, #58badd 0%, #1253b5 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;

  /* SP/Noto Sans JP_p */
  font-family: 'Noto Sans JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
}

#guide {
  padding-top: 160px;
  background: url('../images/bg_sp.png') no-repeat;
  background-size: cover;
}

.section_title h2 {
  text-align: center;

  /* SP/Noto Sans JP_H2 */
  font-family: 'Noto Sans JP';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
  background: var(
    --main-main,
    linear-gradient(90deg, #58badd 0%, #1253b5 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.section_title h2::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background: #fffebc;
  left: 0;
  bottom: -3px;
}

.mice_images {
  margin-top: 40px;
}

.mice_text .mice_intro {
  margin-top: 40px;
  color: var(--main-txt, #282c36);

  /* SP/Noto Sans JP_H3 */
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}

.mice_text h2 {
  text-align: center;

  /* SP/Noto Sans JP_H2 */
  font-family: 'Noto Sans JP';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
  background: var(
    --main-main,
    linear-gradient(90deg, #58badd 0%, #1253b5 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#mice {
  padding-top: calc(240 / 375 * 100vw);
}

.about_images {
  position: absolute;
  bottom: 40px;
  transform: translateY(100%);
  padding-inline: 24px;
}

.about_text .about_intro {
  padding-block: 40px 80px;
  color: var(--main-txt, #282c36);

  /* PC/Noto Sans JP_p */
  font-family: 'Noto Sans JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
}

#about .container {
  background: #edf3fa;
  position: relative;
}

.about_text h2 {
  background: var(
    --main-main,
    linear-gradient(90deg, #58badd 0%, #1253b5 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  /* SP/Noto Sans JP_H1 */
  -webkit-text-fill-color: transparent;
  font-family: 'Noto Sans JP';
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 86.4px */
  position: absolute;
  top: 0;
  transform: translateY(-100%);
}

#about {
  padding-top: 246px;
}

.banquet_table {
  overflow: scroll;
  margin-top: 24px;
  width: 100%;
  display: none;
}

.table_active .banquet_table {
  display: block;
}

.lead_intro {
  margin-top: 40px;
  color: var(--main-txt, #282c36);

  /* SP/Noto Sans JP_p */
  font-family: 'Noto Sans JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
}

#lead {
  padding-top: 120px;
}

.main_title {
  background: var(
    --main-main,
    linear-gradient(90deg, #58badd 0%, #1253b5 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main_title h1 {
  text-align: center;

  /* SP/Noto Sans JP_H2 */
  font-family: 'Noto Sans JP';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
}

.main_title .sub_bottom {
  text-align: center;

  /* SP/Noto Sans JP_H3 */
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}

.main_title .sub_top {
  text-align: center;

  /* SP/Noto Sans JP_H3 */
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
}

.nav_active .header_nav {
  position: fixed;
  top: 0;
  right: 0;
  background: #ffffffe6;
  z-index: 10;
  width: 80%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 64px 40px;
  gap: 24px;
  font-size: 20px;
  font-weight: 700;
  color: #317ac4;
  line-height: 1.8;
}

.header_nav {
  display: none;
}

.menu_btn {
  position: relative;
  background: linear-gradient(to right, #58badd, #1253b5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 100;
}

.nav_active .menu_btn::before {
  transform: translate(-50%, -50%) rotate(25deg);
  top: 50%;
}

.nav_active .menu_btn::after {
  transform: translate(-50%, 50%) rotate(-25deg);
  bottom: 50%;
}

.menu_btn:hover {
  cursor: pointer;
}

.menu_btn::before,
.menu_btn::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 2px;
  background: white;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.menu_btn::after {
  top: unset;
  bottom: 35%;
  transform: translate(-50%, 50%);
}

.banquet_info {
  margin-top: 78px;
  width: 100%;
  max-width: 1080px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bnq_swiper {
  overflow: hidden;
  position: relative;
  padding-bottom: 38px;
  width: 100%;
  max-width: 700px;
  margin-top: 40px;
}

.bnq_swiper .swiper-slide {
  width: 100%;
}

.banquet .container {
  position: relative;
}

.banquet .swiper-button-next,
.banquet .swiper-button-prev {
  top: unset;
  bottom: 0;
  margin-top: 0;
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  height: revert-layer;
  border-radius: 30px;
  border: 2px solid var(--main-main, #58badd);
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="14" viewBox="0 0 8 14" fill="none"><path d="M0.743164 12.6689L6.14316 6.66895L0.743164 0.668945" stroke="url(%23paint0_linear_4278_518)" stroke-width="2"/><defs><linearGradient id="paint0_linear_4278_518" x1="3.44316" y1="12.6689" x2="3.44316" y2="0.668945" gradientUnits="userSpaceOnUse"><stop stop-color="%2358BADD"/><stop offset="1" stop-color="%231253B5"/></linearGradient></defs></svg>');
  background-repeat: no-repeat;
  background-position: center;
  right: 24px;
}

.banquet .swiper-button-prev {
  transform: translateX(-100%) rotate(180deg);
  left: unset;
  bottom: 1px;
  right: 40px;
}

.mv_swiper {
  overflow: hidden;
  position: relative;
}

.mv_swiper .swiper-button-next,
.mv_swiper .swiper-button-prev {
  top: unset;
  bottom: 0;
  margin-top: 0;
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  height: revert-layer;
  border-radius: 30px;
  border: 2px solid var(--main-main, #58badd);
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="14" viewBox="0 0 8 14" fill="none"><path d="M0.743164 12.6689L6.14316 6.66895L0.743164 0.668945" stroke="url(%23paint0_linear_4278_518)" stroke-width="2"/><defs><linearGradient id="paint0_linear_4278_518" x1="3.44316" y1="12.6689" x2="3.44316" y2="0.668945" gradientUnits="userSpaceOnUse"><stop stop-color="%2358BADD"/><stop offset="1" stop-color="%231253B5"/></linearGradient></defs></svg>');
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  bottom: unset;
  left: unset;
  right: 16px;
}

.mv_swiper .swiper-button-prev {
  bottom: unset;
  top: 50%;
  transform: translateX(50%) rotate(180deg);
  right: unset;
}

.mv_swiper .swiper-slide {
  width: 100%;
  height: fit-content;
  aspect-ratio: 750/435;
}

.mv_swiper img {
  object-position: 60%;
  transform: scale(1.2);
  animation: zoomOut 12s linear 0s both;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.swiper-pagination {
  margin-top: -24px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: unset;
  top: unset;
}

/**
* MARK: ---------------------




* MARK: ONTOP




* MARK: ---------------------
* 
*/
.ontop {
  position: fixed;
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  border-radius: 50px;
  border: 2px solid var(--main-main, #58badd);
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="14" viewBox="0 0 8 14" fill="none"><path d="M0.743164 12.6689L6.14316 6.66895L0.743164 0.668945" stroke="url(%23paint0_linear_4278_518)" stroke-width="2"/><defs><linearGradient id="paint0_linear_4278_518" x1="3.44316" y1="12.6689" x2="3.44316" y2="0.668945" gradientUnits="userSpaceOnUse"><stop stop-color="%2358BADD"/><stop offset="1" stop-color="%231253B5"/></linearGradient></defs></svg>');
  background-repeat: no-repeat;
  background-position: center;
  right: 24px;
  bottom: 30px;
  transform: rotate(-90deg);
}

/**
  * MARK: ---------------------




  * MARK: FADE




  * MARK: ---------------------
  * 
  */

.fade_top {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade_bottom {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade_left {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade_right {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade_appear {
  opacity: 0;
  transition: opacity 1s ease-out, transform 0.6s ease-out;
}

.fade.fade_top,
.fade.fade_bottom {
  opacity: 1;
  transform: translateY(0);
}

.fade.fade_left,
.fade.fade_right {
  opacity: 1;
  transform: translateX(0);
}

.fade.fade_appear {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .container {
    padding-inline: 40px;
  }

  #travel .container {
    padding-inline: 190px;
  }

  #mice .container {
    flex-direction: row-reverse;
    gap: 60px;
    position: relative;
  }

  #about .container {
    margin: unset;
    max-width: unset;
    padding-inline: clamp(24px, calc(50vw - 540px), 420px)
      clamp(40px, calc((50vw - 540px) / 3), 158px);
    width: 60vw;
    position: unset;
  }

  .pc_only {
    display: inherit;
  }

  .sp_only {
    display: none;
  }

  #guide {
    background: url('../images/bg.png') no-repeat;
  }

  .bnq_swiper {
    padding-bottom: 48px;
    /* padding-inline: 106px;
    max-width: 806px; */
  }

  .banquet .swiper-button-next,
  .banquet .swiper-button-prev {
    width: 50px;
    height: 50px;
    top: var(--swiper-navigation-top-offset, 50%);
    bottom: unset;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    transform: translateY(-50%);
    z-index: 1;
    right: 48px;
    top: unset;
    bottom: 170px;
  }

  .banquet .swiper-button-prev {
    transform: translateY(-50%) rotate(180deg);
  }

  .banquet .swiper-button-prev {
    left: 48px;
    right: auto;
  }

  .fotter_nav {
    margin-top: 40px;
    display: flex;
  }

  .fotter_nav a {
    padding-inline: 16px;
    color: #7f7f7f;

    /* PC/Noto Sans JP_p */
    font-family: 'Noto Sans JP';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 80%; /* 28.8px */
    border-left: 1px solid #7f7f7f;
  }
  .fotter_nav a:hover {
    color: var(--main-main, #58badd);
    transition: color 0.3s ease;
  }

  .fotter_nav a:last-child {
    border-right: 1px solid #7f7f7f;
  }

  footer {
    padding-top: 166px;
  }

  .inquiry_info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
  }

  .inquiry_item:first-child::after {
    content: none;
  }

  .inquiry_info::after {
    content: '';
    position: absolute;
    height: 80%;
    width: 1px;
    background: #282c36;
    top: 50%;
    left: 50%;
    transform: translate(50%, -50%);
  }

  .access_map iframe {
    display: block;
    width: 100%;
    max-width: 1080px;
    margin-inline: auto;
    aspect-ratio: 1080/420;
  }

  .access_images {
    display: flex;
  }

  #access {
    padding-top: 268px;
  }

  .list_shootings {
    gap: 236px;
  }

  .view_group {
    gap: 11px;
    position: absolute;
    bottom: 96px;
    transform: translateY(100%);
  }

  .sub_view:nth-child(2) {
    position: unset;
  }

  .sub_view {
    max-width: 279px;
  }

  .view {
    position: relative;
  }

  .main_view {
    position: absolute;
    right: 0;
    width: 100%;
    max-width: 43%;
  }

  .reserved .main_view {
    left: 0;
  }

  .view_intro {
    margin-top: 80px;
    max-width: unset;
    padding-inline: clamp(36px, calc(50vw - 540px), 420px)
      clamp(36px, calc((50vw - 540px) / 2), 112px);
    width: 60vw;
    padding-block: 64px 154px;
  }

  .reserved .view_intro {
    float: right;
    padding-inline: clamp(48px, calc((50vw - 540px) / 2), 112px)
      clamp(48px, calc(50vw - 540px), 420px);
  }

  #travel .btn {
    font-size: 20px;
    height: 80px;
  }

  .card_title {
    font-size: 20px;
  }

  .list_activities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto 1fr auto;
    gap: 20px;
  }

  .card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    justify-content: center;
    gap: 16px;
  }

  .card .btn {
    max-width: 100%;
    height: 80px;
    font-size: 20px;
  }

  .banquet_table td {
    height: 92px;
    color: var(--main-txt, #282c36);
    text-align: center;

    /* PC/Noto Sans JP_p */
    font-family: 'Noto Sans JP';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
  }

  .banquet_table th {
    color: var(--main-Wh, #fff);
    text-align: center;

    /* PC/Noto Sans JP_p */
    font-family: 'Noto Sans JP';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    min-width: 97px;
  }

  .banquet_name h3 {
    text-align: center;
    font-family: 'Noto Sans JP';
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 50.4px */
  }

  #guide .btn_group {
    flex-direction: row;
  }

  .section_intro {
    margin-top: 24px;
  }

  .section_title h2 {
    font-size: 40px;
  }

  #mice {
    padding-top: 256px;
  }

  .mice_images {
    width: 60%;
    flex-shrink: 0;
  }

  .mice_text h2 {
    text-align: center;

    /* PC/Noto Sans JP_H2 */
    font-family: 'Noto Sans JP';
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 72px */
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
  }

  .about_text h2 {
    /* PC/Noto Sans JP_H1 */
    font-family: 'Noto Sans JP';
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 115.2px */
  }

  .about_text {
    position: relative;
  }

  #about {
    position: relative;
  }

  .about_images {
    bottom: unset;
    top: 160px;
    right: 0;
    transform: none;
    width: 100%;
    padding: 0;
    max-width: 43%;
  }

  .main_title .sub_bottom {
    text-align: center;

    /* PC/Noto Sans JP_H3 */
    font-family: 'Noto Sans JP';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 36px */
  }

  .main_title .sub_top {
    text-align: center;

    /* PC/Noto Sans JP_H3 */
    font-family: 'Noto Sans JP';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 36px */
  }

  .main_title h1 {
    text-align: center;

    /* PC/Noto Sans JP_H2 */
    font-family: 'Noto Sans JP';
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 72px */
    margin-bottom: 0;
  }

  .lead_intro {
    text-align: center;
  }

  .header_nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    justify-content: center;
    gap: 24px;
    /* padding-block: 32px; */
    background: white;
  }

  .header_nav.header_scrolled {
    padding-block: 32px;
    background: none;
  }

  .header_nav a {
    color: #317ac4;

    /* PC/Noto Sans JP_H3 */
    font-family: 'Noto Sans JP';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 36px */
    transition: padding 0.3s ease;
  }

  .header_nav a:hover {
    padding-block: 24px;
    transition: padding 0.3s ease;
  }

  .menu_btn {
    display: none;
  }

  #lead {
    padding-top: 160px;
  }

  .mv_swiper .swiper-slide {
    aspect-ratio: 1920/900;
  }

  .mv_swiper .swiper-button-next,
  .mv_swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
}

@media screen and (min-width: 1440px) {
  .banquet .swiper-button-next,
  .banquet .swiper-button-prev {
    right: 124px;
  }

  .banquet .swiper-button-prev {
    left: 124px;
  }
}
