@charset "UTF-8";

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

:root {
  --scrollbar-width: 0px;
}
body {
  line-height: 1.75;
  font-family: "YakuHanJP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 300;
  font-style: normal;
  background-color: #F5F5F5;
  color: #1C1C1C;
  font-size: 15px;
}

@media screen and (min-width: 960px) {
  body {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.75;
  }
}

body.is-modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

body.is-modal-open .header,
body.is-modal-open .header.is-scrolled {
  right: var(--scrollbar-width);
  z-index: 999;
  mix-blend-mode: normal;
  background-color: #fff;
}


html,
body,
h1,
h2,
h3,
p,
a,
span,
ul,
li {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

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

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}

address {
  font-style: normal;
  margin: 0;
  padding: 0;
  text-decoration: none;
  line-height: normal;
}

.container-base {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

@media screen and (min-width: 920px) {
  .container-base {
    padding: 0 40px;
  }
}

.hover_opacity {
  transition: opacity 0.3s ease;
}

.hover_opacity:hover {
  opacity: 0.7;
}

.link {
  position: relative;
  display: block;
  white-space: nowrap;
  perspective: 1000px;
  text-decoration: none;
  width: fit-content;
}

.link .inner {
  transition: opacity 0.3s ease;
}

.link:hover .inner {
  opacity: 0.7;
}

.link_cube {
  position: relative;
  display: block;
  transform-style: preserve-3d;
}

.link span {
  display: block;
  backface-visibility: hidden;
}

.btn {
  overflow: visible;
  width: 100%;
  max-width: 243px;
  background-color: #1C1C1C;
  padding: 9px;
  border-radius: 2px;
  margin: 0 auto;
}

@media screen and (min-width: 920px) {
  .btn {
    max-width: 320px;
    padding: 12px;
    margin: 0;
  }
}

.btn_center {
  margin: 0 auto;
}

.-copy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.btn .link_cube .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.link .link_cube .inner .text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  text-align: left;
}

.btn .link_cube .inner .text {
  color: #fff;
}

.link .link_cube .inner .external-icon {
  width: 20px;
}

.section_ttl {
  margin-bottom: 32px;
}

@media screen and (max-width: 919px) {
  .section_ttl.sp_center {
    text-align: center;
  }
}

.section_ttl .section_ttl_en {
  font-size: 40px;
  line-height: 1;
  font-family: "EB Garamond", serif;
  margin-bottom: 4px;
  color: #B8B8B8;
}

@media screen and (min-width: 920px) {
  .section_ttl .section_ttl_en {
    font-size: 52px;
  }
}

.section_ttl .section_ttl_ja {
  font-size: 18px;
  line-height: 1.75;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

@media screen and (min-width: 920px) {
  .section_ttl .section_ttl_ja {
    font-size: 20px;
  }
}

.section_ttl .section_ttl_ja_white {
  color: #fff;
}

.section_ttl_center {
  text-align: center;
}

.section_ttl_white {
  color: #fff;
}

.section_ttl_white .section_ttl_en {
  color: #fff;
}

.br_pc {
  display: none;
}

@media screen and (min-width: 920px) {
  .br_pc {
    display: block;
  }
}

.br_sp {
  display: block;
}

@media screen and (min-width: 920px) {
  .br_sp {
    display: none;
  }
}

.header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  /*mix-blend-mode: difference;*/
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  padding: 13px 16px;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

@media screen and (min-width: 920px) {
  .header {
    padding: 15px 28px 15px 20px;
  }
}

@media screen and (max-width: 1199px) {
  .header {
    transition: background-color 0.3s, color 0.3s;
    mix-blend-mode: unset;
  }

  .header.menu-open {
    mix-blend-mode: normal;
    background-color: transparent;
  }

  .header.menu-open .header_logo img {
    filter: brightness(0);
  }

  .header.menu-open .logo-white {
    display: none;
  }

  .header.menu-open .logo-black {
    display: block;
  }
}

.header.is-scrolled {
  background-color: #F5F5F5;
  mix-blend-mode: normal;
  color: #1c1c1c;
}

.header.is-scrolled .header_nav_list_item_link_cta {
  background-color: #1c1c1c;
  color: #fff;
}

.header.is-scrolled .header_logo img {
  filter: invert(1);
}

.header.is-scrolled .header_logo img,
.header.menu-open .header_logo img {
  filter: none !important;
}

.header.is-scrolled .logo-white {
  display: none;
}

.header.is-scrolled .logo-black {
  display: block;
}

@media screen and (min-width: 1200px) {
  .header.is-scrolled .header_nav_list_item_link img {
    filter: none;
  }
}

@media screen and (max-width: 1199px) {

  .header.is-scrolled .hb_lines .line,
  .header.menu-open .hb_lines .line {
    background-color: #1C1C1C;
  }
}

.header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  z-index: 10000;
}

@media screen and (max-width: 1299px) {
  .header_logo {
    max-width: 188px;
  }
}

.logo-white {
  display: block;
  width: 100%;
}

.logo-black {
  display: none;
  width: 100%;
}

.header_nav {}

@media screen and (max-width: 1199px) {
  .header_nav {
     position: fixed;
    inset: 0;
    width: auto;
    height: 100dvh;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }

  .header_nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1C1C1C;
    opacity: 0.8;
    mix-blend-mode: multiply;
    z-index: -1;
  }

  .header_nav.active {
    opacity: 1;
    visibility: visible;
  }
}

.header_nav_list {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 1299px) {
  .header_nav_list {
    gap: 12px;
  }
}

@media screen and (max-width: 1199px) {
  .header_nav_list {
    background-color: #F5F5F5;
    width: 100%;
    padding: 83px 24px 60px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.header_nav_list_item {}

@media screen and (max-width: 1199px) {
  .header_nav_list_item {
    width: 100%;
  }
}

.header_nav_list_item_link {
  line-height: 1.5;
  font-weight: 500;
}

@media screen and (min-width: 1200px) {
  .header .header_nav_list_item_link img {
    filter: invert(1);
    transition: filter 0.3s;
  }
}

@media screen and (max-width: 1199px) {
  .header_nav_list_item_link {
    font-size: 16px;
    color: #1C1C1C;
    font-family: "Zen Old Mincho", serif;
    display: flex;
    align-items: center;
    gap: 0;
  }

  .header_nav_list_item_link img {
    width: 24px;
    height: auto;
  }

  .header_nav_list_item_link img[alt*="instagram"],
  .header_nav_list_item_link img[src*="instagram"] {
    width: 24px;
  }
}

.header_nav_list_item_cta {}

@media screen and (max-width: 1199px) {
  .header_nav_list_item_cta {
    margin-top: 20px;
    width: 100%;
  }
}

.header_nav_list_item_link_cta {
  color: #1C1C1C;
  font-weight: 600;
  background-color: #fff;
  border-radius: 2px;
  border-radius: 2px;
  padding: 4px 37px;
  letter-spacing: 0.12em;
}

@media screen and (min-width: 1200px) {
  .header_nav_list_item_link_cta {
    margin-left: 20px;
  }
}

@media screen and (max-width: 1199px) {
  .header_nav_list_item_link_cta {
    display: block;
    width: 100%;
    background-color: #1C1C1C;
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Zen Old Mincho", serif;
    max-width: 400px;
  }
}

.hb_button {}

@media screen and (min-width: 1200px) {
  .hb_button {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .hb_button {
    display: block;
    position: relative;
    z-index: 1001;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .hb_button::after {
    content: "Close";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-family: "EB Garamond", serif;
    opacity: 0;
    transition: 0.4s;
    color: #1C1C1C;
  }

  .hb_button.active .hb_lines {
    height: 0;
    top: 20px;
  }

  .hb_button.active .hb_lines .line:nth-of-type(1) {
    transform: rotate(25deg);
    top: 0;
  }

  .hb_button.active .hb_lines .line:nth-of-type(2) {
    transform: rotate(-25deg);
    bottom: 0;
  }

  .hb_button.active::after {
    opacity: 1;
    bottom: -3px;
  }
}

.hb_lines {}

@media screen and (max-width: 1199px) {
  .hb_lines {
    position: absolute;
    top: 15px;
    right: 0;
    width: 44px;
    height: 10px;
    transition: 0.4s;
  }

  .hb_lines .line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: 0.4s;
  }

  .hb_lines .line:nth-of-type(1) {
    top: 0;
  }

  .hb_lines .line:nth-of-type(2) {
    bottom: 0;
  }
}

.mv {
  width: 100%;
  min-height: 600px;
  position: relative;
}

@media screen and (min-width: 920px) {
  .mv {
    height: 100vh;
  }
}

.mv_slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv_slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: linear-gradient(to top, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 1) 100%);
  opacity: 0.8;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}

@media screen and (min-width: 920px) {
  .mv_slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 928px;
    height: 100%;
    background: linear-gradient(to left, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 1) 100%);
    opacity: 0.8;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 2;
  }
}

.mv_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv_txtArea {
  position: absolute;
  color: #fff;
  z-index: 3;
}

@media screen and (max-width: 919px) {
  .mv_txtArea {
    left: 24px;
    top: 163px;
  }
}

@media screen and (min-width: 920px) {
  .mv_txtArea {
    left: min(80px, 6.153846153846154vw);
    bottom: 44px;
  }
}

.mv_catch {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 24px;
  line-height: 1.35;
}

@media screen and (min-width: 920px) {
  .mv_catch {
    font-size: min(72px, 6vw);
    margin-bottom: min(125px, 10.416666666666668vw);
  }
}

.mv_txt {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 920px) {
  .mv_txt {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}



.scrollDown {
  position: absolute;
  width: fit-content;
  height: auto;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: "EB Garamond", serif;
  z-index: 1;
  line-height: 1;
  font-size: 18px;
}

@media screen and (min-width: 920px) {
  .scrollDown {
    bottom: 53px;
    right: 80px;
  }
}


@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
    opacity: 0;
  }

  60% {
    transform: scale(1, 1);
    transform-origin: 0 0;
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    transform-origin: 0 0;
    opacity: 1;
  }
}

#animatedText span {
  display: inline-block;
  animation-name: scroll;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

.swiper,
.swiper-wrapper,
.swiper-slide {
  width: 100%;
  height: 100%;
}

.about {
  padding: 100px 0;
}

@media screen and (min-width: 920px) {
  .about {
    padding: 180px 0;
  }
}

.about_body {
  display: flex;
  flex-direction: column;
  gap: 62px;
}

@media screen and (min-width: 920px) {
  .about_body {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

.about_slide {
  aspect-ratio: 1 / 1;
  position: relative;
}

@media screen and (min-width: 920px) {
  .about_slide {
    aspect-ratio: 1 / 1;
    width: 46.29032258064516%;
  }
}

.about_txtArea {
  /* sp styling */
}

@media screen and (min-width: 920px) {
  .about_txtArea {
    width: 30.806451612903224%;
    padding-top: 122px;
  }
}

.about_catch_pc {
  display: none;
}

@media screen and (min-width: 920px) {
  .about_catch_pc {
    display: block;
    font-size: min(32px, 3.2vw);
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    writing-mode: vertical-rl;
    line-height: 1.5;
    padding-top: 68px;
    letter-spacing: 0.15em;
  }
}

.about_catch_sp {
  display: block;
  font-size: 24px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  writing-mode: vertical-rl;
  position: absolute;
  right: 24px;
  bottom: -140px;
  z-index: 1;
  color: #fff;
  mix-blend-mode: difference;
}

@media screen and (min-width: 920px) {
  .about_catch_sp {
    display: none;
  }
}

.about_txt_catch {
  font-size: 20px;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0;
}

@media screen and (min-width: 920px) {
  .about_txt_catch {
    font-size: 24px;
  }
}

.about_txt_inr {
  margin-bottom: 16px;
  text-align: justify;
  letter-spacing: 0;
}

.about_txt_inr:last-of-type {
  margin-bottom: 0;
}

.map {
  padding: 80px 0;
  background-color: #EDEDED;
  position: relative;
}


@media screen and (min-width: 920px) {
  .map {
    padding: 0 0 160px;
  }
}


.map_txt {
  font-size: 12px;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  padding: 0 20px;
}

@media screen and (min-width: 920px) {
  .map .section_ttl {
    margin-bottom: 16px;
  }

  .map_txtArea {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: min(72px, 5.142857142857142vw);
    z-index: 1;
  }

  .map_txt {
    text-align: center;
  }
}

@media screen and (min-width: 920px) {
  .map_slide {
    margin-top: -30px;
  }
}

.map_slide .swiper-wrapper {
  transition-timing-function: linear;
}

.map_slide .swiper-slide {
  width: 322px;
  height: 200px;
}

@media screen and (min-width: 920px) {
  .map_slide .swiper-slide {
    width: 534px;
    height: 332px;
  }
}

.map_slide .swiper-slide img {
  width: 100%;
  height: auto;
}


.map_container {
  position: relative;
}

@media only screen and (max-width: 600px) {
  .map_container {
    width: 310%;
  }
}

@media only screen and (min-width: 601px) and (max-width: 919px) {
  .map_container {
    width: 180%;
  }
}

.js-scrollable {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.js-scrollable::-webkit-scrollbar {
  display: none;
}

@media screen and (min-width: 920px) {
  .map_container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
}


.map_img {
  width: 100%;
  height: auto;
  display: block;
}

.map_pin {
  position: absolute;

  border-radius: 50%;
  background-color: #fff;
  color: #1c1c1c;
  border: 1px solid #8B8B8B;

  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transition: transform 0.3s ease, background-color 0.3s;
}

@media only screen and (max-width: 600px) {
  .map_pin {
    width: 7.179487179487179vw;
    height: 7.179487179487179vw;
  }

  .pin_number {
    font-size: 3.3333333333333335vw;
  }
}

@media only screen and (min-width: 601px) and (max-width: 919px) {
  .map_pin {
    width: 4.658901830282862vw;
    height: 4.658901830282862vw;
  }

  .pin_number {
    font-size: 1.9966722129783694vw;
  }
}

@media screen and (min-width: 920px) {
  .map_pin {
    width: min(33px, 2.357142857142857vw);
    height: min(33px, 2.357142857142857vw);
  }
}


@media only screen and (min-width: 600px) {
  .map_pin:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #f2f2f2;
  }
}

.pin_number {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1;
}

@media screen and (min-width: 920px) {
  .pin_number {
    font-size: min(16px, 1.1428571428571428vw);
    padding-bottom: 1px;
  }
}

.map_pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;

  background: #8B8B8B80;
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: -1;

  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: rippleWave 1.2s infinite ease-out;
}

@keyframes rippleWave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.map_pin.is-preparing {
  opacity: 0.4;
  pointer-events: none;
}


.map_pin.is-preparing::after {
  content: none;
  animation: none;
}




.modal {
  position: fixed;
  inset: 0;
  width: auto;
  height: 100dvh;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0.7;
}

.modal_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: min(843px, 65.859375vw);
  aspect-ratio: 843 / 488;
}

@media screen and (max-width: 919px) {
  .modal_wrapper {
    width: 90%;
    max-width: none;
    aspect-ratio: auto;
    /* min-height: 400px; */
  }
}

.modal_content {
  position: relative;
  aspect-ratio: 843 / 488;
  overflow: hidden;
}

.modalSwiper {
  width: 100%;
  height: 100%;
}

.modalSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
}

.modal_img_area {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.modal_txt_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 74px 24px 10px 36px;
  background: linear-gradient(180deg, rgba(26, 29, 26, 0) 0%, #1A1D1A 100%);
  color: #fff;
  text-align: left;
  z-index: 10;
}

@media screen and (min-width: 920px) {
  .modal_txt_overlay {
    padding: 80px 24px 24px;
  }
}

.modal_point_num {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 4px;
}

.modal_point_num .num {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (min-width: 920px) {
  .modal_point_num {
    font-size: 16px;
    gap: 8px
  }

  .modal_point_num .num {
    font-size: 24px;
    line-height: 1;
  }
}

.modal_ttl {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

@media screen and (min-width: 920px) {
  .modal_ttl {
    font-size: 14px;
  }
}

.modal_desc {
  font-size: 13px;
  line-height: 1.6;
}

@media screen and (min-width: 920px) {
  .modal_desc {
    font-size: 14px;
  }
}

.modal_close_btn {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 44px;
  height: 44px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #1C1C1C;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 20;
}



@media screen and (min-width: 920px) {
  .modal_close_btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}

.modal_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px !important;
  height: 60px !important;
  margin: 0 !important;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 20;
  margin: 0;
  color: transparent;
}

.modal_nav::after {
  display: none;
}

@media screen and (min-width: 920px) {
  .modal_nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
  }
}

.modal_nav.prev {
  left: -120px;
}

.modal_nav.next {
  right: -120px;
}

@media screen and (max-width: 919px) {
  .modal_nav {
    width: 36px !important;
    height: 36px !important;
    background: #1C1C1C;
    border: 1px solid #fff;
  }

  .modal_nav img {
    width: 30px;
  }

  .modal_nav.prev {
    left: -12px;
    border: none;
  }

  .modal_nav.next {
    right: -12px;
    border: none;
  }

  .modal_close_btn {
    top: -20px;
    right: -8px;
    width: 40px;
    height: 40px;
  }
}

.modal_preparing {
  position: relative;
}



.modal_preparing_txt {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  line-height: 1.5;
}

.modal_preparing_grayout {
  background-color: #B8B8B8;
}

.modal_preparing_grayout .modal_preparing_txt {
  color: #1C1C1C;
}

.modal_preparing_txt .large {
  font-size: 20px;
}

@media screen and (min-width: 920px) {
  .modal_preparing_txt {
    font-size: 16px;
  }

  .modal_preparing_txt .large {
    font-size: 28px;
  }
}

.information {
  padding: 100px 0;
  background-color: #fff;
}

@media screen and (min-width: 920px) {
  .information {
    padding: 160px 0;
  }
}

.information_body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 920px) {
  .information_body {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

.information_txtArea {}

@media screen and (min-width: 920px) {
  .information_txtArea {
    width: 32.25806451612903%;
  }
}

.information_txtArea_inr {}

@media screen and (min-width: 920px) {
  .information_txtArea_inr {
    position: sticky;
    top: 100px;
  }
}

.information_txtArea_catch {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.5;
}

@media screen and (min-width: 920px) {
  .information_txtArea_catch {
    font-size: min(32px, 2.711864406779661vw);
    margin-bottom: 24px;
  }
}

.information_txtArea_txt {
  text-align: justify;
  letter-spacing: -0.015em;
}

.information_list {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 920px) {
  .information_list {
    width: 55.64516129032258%;
    grid-template-columns: 32.028985507246375% 1fr;
  }
}

.information_list dt {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  padding-bottom: 16px;
  padding-top: 28px;
}

@media screen and (min-width: 920px) {
  .information_list dt {
    padding-right: 20px;
    font-size: 24px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 40px;
    padding-top: 50px;
  }
}

.information_list dt:first-of-type {
  padding-top: 0;
}

.information_list dd {
  padding-bottom: 24px;
  border-bottom: 1px solid #E0E0E0;
}

@media screen and (min-width: 920px) {
  .information_list dd {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

.information_list dd:first-of-type {
  padding-top: 0;
}

.information_list dd .information_list_top {
  font-size: 16px;
  line-height: 1.25;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

@media screen and (min-width: 920px) {
  .information_list dd .information_list_top {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .information_list dd .information_list_top.margin_wide {
    margin-bottom: 20px;
  }
}

.information_list dd .information_list_top .colon {
  display: inline-block;
  transform: translateY(-4px);
  margin: 0 4px;
}

@media screen and (min-width: 920px) {
  .information_list dd .information_list_top .colon {
    transform: translateY(-5px);
    margin: 0 3px;
  }
}

.information_list dd .information_list_top .num {
  font-size: 32px;
  line-height: 1.25;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

@media screen and (min-width: 920px) {
  .information_list dd .information_list_top .num {
    font-size: 40px;
  }
}

.information_list dd .information_list_top .num.bar {
  position: relative;
  padding-right: 24px;
  margin-right: 6px;
}

.information_list dd .information_list_top .num.bar::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #1C1C1C;
  right: 0;
  top: 24px;
}

@media screen and (min-width: 920px) {
  .information_list dd .information_list_top .num.bar::before {
    top: 30px;
  }
}

.information_list dd .information_list_top .label {
  font-size: 14px;
  line-height: 1.35;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  border-radius: 4px;
  background-color: #EDEDED;
  margin-left: 8px;
  padding: 6px 8px 4px;
  display: inline-block;
  transform: translateY(-4px);
}

@media screen and (min-width: 920px) {
  .information_list dd .information_list_top .label {
    font-size: 16px;
    padding: 4px 5px 2px;
    transform: translateY(-8px);
  }
}

.information_list dd .information_list_txt {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}

.camp {
  padding: 100px 0;
  overflow: hidden;
}

@media screen and (min-width: 920px) {
  .camp {
    padding: 160px 0;
  }
}

.camp_lead_txt {
  font-size: 28px;
  font-family: "YakuHanMP", "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

@media screen and (min-width: 920px) {
  .camp_lead_txt {
    font-size: min(48px, 3.4782608695652173vw);
    padding-left: min(40px, 2.857142857142857vw);
  }
}

.camp_name {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
}

@media screen and (min-width: 920px) {
  .camp_name {
    font-size: 24px;
  }
}

.camp_desc {
  line-height: 1.8;
  letter-spacing: -0.05em;
  margin-bottom: 30px;
  text-align: justify;
}

@media screen and (min-width: 920px) {
  .camp_desc {
    margin-bottom: 40px;
  }
}

.camp_grid {}

@media screen and (max-width: 919px) {
  .camp_grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 24px;
    gap: 40px;
    margin: 0 auto 36px;
  }
}

@media screen and (min-width: 920px) {
  .camp_grid {
    display: grid;
    grid-template-columns: 40px 35.35714285714286% 1fr 52.142857142857146% 40px;
    max-width: 1400px;
    margin: 0 auto;
    row-gap: 79px;
    align-items: start;
    margin-bottom: 80px;
  }
}

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

.camp_lead {}

@media screen and (max-width: 919px) {
  .camp_lead {
    order: 1;
    text-align: left;
  }
}

@media screen and (min-width: 920px) {
  .camp_lead {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: center;
  }
}

.camp_img_main {}

@media screen and (max-width: 919px) {
  .camp_img_main {
    order: 2;
    width: 84.61538461538461vw;
    margin-left: auto;
    margin-right: -24px;
    aspect-ratio: 330 / 203;
    object-fit: cover;
  }
}

@media screen and (min-width: 920px) {
  .camp_img_main {
    grid-column: 4 / 6;
    grid-row: 1 / 2;
    width: 100%;
  }
}

.camp_info {}

@media screen and (max-width: 919px) {
  .camp_info {
    order: 3;
  }
}

@media screen and (min-width: 920px) {
  .camp_info {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
    padding-right: 40px;
  }
}

.camp_img_sub {}

@media screen and (max-width: 919px) {
  .camp_img_sub {
    order: 4;
    width: 84.61538461538461vw;
    aspect-ratio: 330 / 233;
    margin-top: 16px;
    margin-right: auto;
    margin-left: -24px;
  }
}

@media screen and (min-width: 920px) {
  .camp_img_sub {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    width: 100%;
    margin-top: -120px;
    position: relative;
    z-index: 2;
  }
}

.camp_plan {
  border: 1px solid #1C1C1C;
  padding: 32px 30px;
  margin-bottom: 38px;
}

@media screen and (min-width: 920px) {
  .camp_plan {
    padding: 40px 80px;
    margin-bottom: 60px;
  }
}

.camp_plan_ttl {
  font-size: 28px;
  line-height: 1.5;
  font-family: "EB Garamond", serif;
  text-align: center;
  margin-bottom: 4px;
}

@media screen and (min-width: 920px) {
  .camp_plan_ttl {
    font-size: 32px;
  }
}

.camp_plan_txt {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  margin-bottom: 14px;
}

@media screen and (min-width: 920px) {
  .camp_plan_txt {
    margin-bottom: 20px;
  }
}

.camp_plan_list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 6px;
  row-gap: 16px;
  justify-content: center;
}

@media screen and (min-width: 920px) {
  .camp_plan_list {
    flex-wrap: nowrap;
    gap: 40px;
  }
}

.camp_plan_list_item {}

@media screen and (max-width: 919px) {
  .camp_plan_list_item {
    width: 100%;
    max-width: 135px;
  }
}

@media screen and (min-width: 920px) {
  .camp_plan_list_item {
    flex: 1;
  }
}

.reservation {
  padding: 100px 0 30px;
}

@media screen and (min-width: 920px) {
  .reservation {
    padding: 160px 0 60px;
  }
}

@media screen and (max-width: 919px) {
  .section_ttl {
    margin-bottom: 18px;
  }
}

.reservation_txt {
  text-align: center;
  margin-bottom: 56px;
}

@media screen and (min-width: 920px) {
  .reservation_txt {
    margin-bottom: 40px;
  }
}

.reservation_flow {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 24px;
}

@media screen and (min-width: 920px) {
  .reservation_flow {
    flex-direction: row;
    max-width: 927px;
    gap: 60px;
  }
}

.reservation_flow_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 919px) {
  .reservation_flow_item {
    padding-bottom: 70px;
  }

  .reservation_flow_item::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 48px;
    height: 48px;
    display: inline-block;
    background-image: url("../img/flow_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateX(-50%) rotate(90deg);
  }

  .reservation_flow_item:last-child {
    padding-bottom: 0;
  }

  .reservation_flow_item:last-child::before {
    display: none;
  }
}

.reservation_flow_item .icon {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}

@media screen and (max-width: 919px) {
  .reservation_flow_item .icon img {
    width: 92px;
    height: 92px;
  }
}

@media screen and (min-width: 920px) {
  .reservation_flow_item .icon::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -60px;
    width: 60px;
    height: 60px;
    display: inline-block;
    background-image: url("../img/flow_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .reservation_flow_item:last-child .icon::before {
    display: none;
  }
}

.reservation_flow_item .num {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #1C1C1C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 14px;
}

@media screen and (min-width: 920px) {
  .reservation_flow_item .num {
    width: 32px;
    height: 32px;
    margin-bottom: 24px;
    font-size: 16px;
  }
}

.reservation_flow_item .txtArea_row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.reservation_flow_item .txtArea .txtArea_top {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

@media screen and (min-width: 920px) {
  .reservation_flow_item .txtArea .txtArea_top {
    font-size: 20px;
    min-height: calc(1em * 1.35 * 2);
    margin-bottom: 4px;
  }
}

.reservation_flow_item .txtArea .txt {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

@media screen and (min-width: 920px) {
  .reservation_flow_item .txtArea .txt {
    font-size: 14px;
    min-height: calc(1em * 1.5 * 3);
    margin: 0;
  }
}

.access {
  padding: 100px 0;
  background-color: #EDEDED;
  background-image: url(../img/section_bg.png);
  background-image: image-set(url(../img/section_bg.png) 1x, url(../img/section_bg@2x.png) 2x);
  background-image: -webkit-image-set(url(../img/section_bg.png) 1x, url(../img/section_bg@2x.png) 2x);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 920px) {
  .access {
    padding: 160px 0;
  }
}

@media screen and (max-width: 919px) {
  .access .section_ttl {
    margin-bottom: 32px;
  }
}

.access_body {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 919px) {
  .access_body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (min-width: 920px) {
  .access_body {
    flex-direction: row;
    justify-content: space-between;
  }
}

.access_body_txtArea {}

@media screen and (max-width: 919px) {
  .access_body_txtArea {
    display: contents;
  }

  .access_body_txtArea .section_ttl {
    order: 1;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }

  .access_body_txtArea .btn {
    order: 4;
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 920px) {
  .access_body_txtArea {
    width: 20.161290322580644%;
  }
}

.access_body_contents {}

@media screen and (max-width: 919px) {
  .access_body_contents {
    display: contents;
  }
}

@media screen and (min-width: 920px) {
  .access_body_contents {
    width: 74.59677419354838%;
  }
}

.access_body_map {
  aspect-ratio: 1 / 1;
  margin-bottom: 40px;
}

@media screen and (max-width: 919px) {
  .access_body_map {
    order: 2;
    width: 100%;
    margin-bottom: 30px;
  }

  .access_body_map iframe {
    height: 300px;
    width: 100%;
    border-radius: 4px;
  }
}

@media screen and (min-width: 920px) {
  .access_body_map {
    aspect-ratio: 925 / 529;
  }
}

.access_body_map iframe {
  width: 100%;
  height: 100%;
}

.access_body_address {
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0;
}

@media screen and (max-width: 919px) {
  .access_body_address {
    order: 3;
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
    font-size: 16px;
  }
}

.access_route_wrap {}

@media screen and (max-width: 919px) {
  .access_route_wrap {
    order: 5;
  }
}

.access_route_ttl {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 24px;
}

.access_box {
  width: 100%;
  padding: 10px 6px;
  min-height: 68px;
  background-color: #fff;
  border: 1px solid #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.access_box p {
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.025em;
  font-size: 14px;
}

@media screen and (min-width: 920px) {
  .access_box p {
    font-size: 16px;
  }
}

.distance {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 20px;
  line-height: 1.35;
}

@media screen and (max-width: 919px) {
  .distance {
    background-color: #EDEDED;
    padding: 0 8px;
  }
}

@media screen and (min-width: 920px) {
  .distance {
    font-size: 24px;
  }
}

.distance small {
  font-size: 14px;
  margin-left: 2px;
}

.time {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 14px;
}

@media screen and (max-width: 919px) {
  .time {
    background-color: #EDEDED;
    padding: 0 8px;
  }
}

.access_destination {
  background-color: #fff;
  border: 1px solid #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 23px;
}

@media screen and (min-width: 920px) {
  .access_destination {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    height: 100%;
  }
}

.access_destination img {
  max-width: 100%;
  height: auto;
}

.access_route {}

@media screen and (max-width: 919px) {
  .access_route {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .access_route>div:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .access_route>div:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .access_route>div:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .access_route>div:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .access_route>div:nth-child(5) {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    width: 100%;
    padding: 20px;
  }
}

@media screen and (min-width: 920px) {
  .access_route {
    display: grid;
    grid-template-columns: 288px 1fr 200px;
    gap: 20px 0;
    align-items: center;
    margin: 0 auto;
  }
}

.access_line_center {}

@media screen and (max-width: 919px) {
  .access_line_center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
  }

  .access_line_center::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    border-left: 1px dashed #1c1c1c;
    z-index: 1;
  }
}

@media screen and (min-width: 920px) {
  .access_line_center {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .access_line_center::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-top: 1px dashed #1c1c1c;
  }
}

.blur_wrap {
  padding: 140px 0 0;
  position: relative;
}

@media screen and (min-width: 920px) {
  .blur_wrap {
    padding: 280px 0 0;
  }
}

/* .blur_wrap::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #1A1D1A 100%);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
} */

.blur_wrap::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 140px;

  background-image: url("../img/blur_overlay_top.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;

  z-index: 1;
  pointer-events: none;
}

@media screen and (min-width: 920px) {
  .blur_wrap::before {
    height: 280px;
  }
}

.blur_wrap::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: 0;
  width: 100%;
  height: 140px;

  background-image: url("../img/blur_overlay_bottom.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;

  z-index: 1;
  pointer-events: none;
}

@media screen and (min-width: 920px) {
  .blur_wrap::after {
    height: 400px;
    bottom: -400px;
  }
}

.regulation {
  padding: 100px 0 100px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1.0s ease-in-out;
}

@media screen and (min-width: 920px) {
  .regulation {
    padding: 160px 0 185px;
  }
}

.regulation_body {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media screen and (min-width: 920px) {
  .regulation_body {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    align-items: center;
  }
}

.regulation_body_imgArea {}

@media screen and (min-width: 920px) {
  .regulation_body_imgArea {
    width: 30.32258064516129%;
  }
}

.regulation_body_slide {
  aspect-ratio: 342 / 255;
}

@media screen and (min-width: 920px) {
  .regulation_body_slide {
    aspect-ratio: 376 / 280;
  }
}

.regulation_body_slide .swiper {
  height: 100%;
}

.regulation_body_slide .swiper-slide {
  overflow: hidden;
  height: 100%;
}

.regulation_body_slide .swiper-slide img {
  height: auto;
  width: 100%;
}

.regulation_body_txtArea {
  color: #fff;
}

@media screen and (min-width: 920px) {
  .regulation_body_txtArea {
    width: 59.03225806451613%;
  }
}

@media screen and (max-width: 919px) {
  .regulation_body_txtArea .section_ttl {
    margin-bottom: 32px;
  }
}

.regulation_body_catch {
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  margin-bottom: 28px;
}

@media screen and (min-width: 920px) {
  .regulation_body_catch {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.regulation_body_list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media screen and (min-width: 920px) {
  .regulation_body_list {
    gap: 8px;
  }
}

.regulation_body_list_item {
  padding-left: 24px;
  position: relative;
}

.regulation_body_list_item::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  top: 11px;
  left: 11px;
  background-color: #fff;
}

@media screen and (min-width: 920px) {
  .regulation_body_list_item::before {
    top: 13px;
  }
}

.regulation_body_list_wrap {
  margin-top: 20px;
}

@media screen and (min-width: 920px) {
  .regulation_body_list_wrap {
    margin-top: 32px;
  }
}

.regulation_body_list_ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 12px;
}

@media screen and (min-width: 920px) {
  .regulation_body_list_ttl {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.contact {
  padding: 100px 0;
  background-color: #666666;
}

@media screen and (min-width: 920px) {
  .contact {
    padding: 120px 0;
  }
}

.contact_body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 920px) {
  .contact_body {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}

.contact_body_txtArea {
  color: #fff;
}

@media screen and (min-width: 920px) {
  .contact_body_txtArea {
    width: 32.806452%;
  }
}

.contact_body_txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.contact_body_txt p {
  color: #fff;
  letter-spacing: 0;
}

.contact_body h3 {
  font-size: 14px;
  font-family: "EB Garamond", serif;
  line-height: 1;
  margin-bottom: 8px;
}

.contact_body_tel {
  margin-bottom: 20px;
}

@media screen and (min-width: 920px) {
  .contact_body_tel {
    margin-bottom: 30px;
  }
}

.contact_body_tel .num {
  font-family: "EB Garamond", serif;
  line-height: 1;
  font-size: 36px;
  margin-bottom: 6px;
}

@media screen and (min-width: 920px) {
  .contact_body_tel .num {
    font-size: min(64px, 4.571428571428571vw);
  }
}

.contact_body_tel_txt {
  font-size: 14px;
  font-family: 300;
}

.contact_body_form .btn {
  margin: 0;
}

.contact_body_imgArea {
  position: relative;
  width: 100%;
  min-height: 84.61538461538461vw;
}

@media screen and (min-width: 920px) {
  .contact_body_imgArea {
    width: 55.64516129032258%;
    min-height: min(665px, 51.953125vw);
    position: relative;
  }
}

.contact_body_imgArea img {
  width: 100%;
  height: auto;
  display: block;
}

.contact_body_img_01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 65.21739130434783%;
}

.contact_body_img_02 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40.57971014492754%;
}

.sns {
  padding: 160px 0 120px;
  background-color: #EDEDED;
  background-image: url(../img/section_bg.png);
  background-image: image-set(url(../img/section_bg.png) 1x, url(../img/section_bg@2x.png) 2x);
  background-image: -webkit-image-set(url(../img/section_bg.png) 1x, url(../img/section_bg@2x.png) 2x);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 920px) {
  .sns {
    padding: 319px 0 160px;
  }
}

.sns_body {
  margin-bottom: 30px;
}

@media screen and (min-width: 920px) {
  .sns_body {
    margin-bottom: 60px;
  }
}

.footer {
  position: relative;
  padding: 76px 0 40px;
  color: #fff;
  background-image: url(../img/footer_bg_sp.jpg);
  background-image: image-set(url(../img/footer_bg_sp.jpg) 1x, url(../img/footer_bg_sp@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/footer_bg_sp.jpg) 1x, url(../img/footer_bg_sp@2x.jpg) 2x);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media screen and (min-width: 920px) {
  .footer {
    background-image: url(../img/footer_bg.jpg);
    background-image: image-set(url(../img/footer_bg.jpg) 1x, url(../img/footer_bg@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/footer_bg.jpg) 1x, url(../img/footer_bg@2x.jpg) 2x);
  }
}

@media screen and (max-width: 1024px) {
  .footer {
    padding: 60px 0 58px;
  }
}

.footer_inner {}

@media screen and (min-width: 1025px) {
  .footer_inner {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media screen and (max-width: 1024px) {
  .footer_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 76px;
    max-width: 600px;
    margin: 0 auto;
  }
}

.footer_left,
.footer_center,
.footer_right {}

@media screen and (max-width: 1024px) {

  .footer_left,
  .footer_center,
  .footer_right {
    display: contents;
  }
}

.footer_logo {
  margin: 0 0 60px;
}

@media screen and (max-width: 1299px) {
  .footer_logo {
    max-width: 200px;
  }
}

@media screen and (max-width: 1024px) {
  .footer_logo {
    order: 1;
    width: 100%;
    max-width: 217px;
    margin: 0 auto 28px;
    text-align: center;
  }
}

.footer_sns {}

@media screen and (min-width: 1025px) {
  .footer_sns {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 1024px) {
  .footer_sns {
    order: 4;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    position: relative;
    gap: 12px;
    justify-content: center;
  }

  .footer_sns::before {
    content: "follow us";
    font-family: "EB Garamond", serif;
    font-size: 14px;
    display: block;
  }
}

.sns_icon img {}

@media screen and (max-width: 1024px) {
  .sns_icon img {
    width: 24px;
    height: auto;
  }
}

.back_to_top {}

@media screen and (min-width: 1025px) {
  .back_to_top {
    position: absolute;
    left: 0;
    bottom: 6px;
  }
}

@media screen and (max-width: 1024px) {
  .back_to_top {
    order: 9;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
  }
}

.back_to_top .inner {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  font-family: "EB Garamond", serif;
}

@media screen and (min-width: 920px) {
  .back_to_top .inner {
    gap: 4px;
  }
}

@media screen and (max-width: 1024px) {
  .back_to_top .inner {
    flex-direction: row;
    gap: 8px;
  }
}

.footer_center {}

@media screen and (min-width: 1025px) {
  .footer_center {
    text-align: left;
  }
}

.footer_address {
  font-style: normal;
  margin-bottom: 22px;
}

@media screen and (max-width: 1024px) {
  .footer_address {
    order: 2;
    width: 100%;
    text-align: center;
    margin-bottom: 14px;
  }
}

.footer_info_list {}

@media screen and (min-width: 1025px) {
  .footer_info_list {
    margin-bottom: 68px;
  }
}

@media screen and (max-width: 1024px) {
  .footer_info_list {
    order: 3;
    width: fit-content;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
  }
}

.info_item {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

@media screen and (min-width: 920px) {
  .info_item {
    align-items: center;
    margin-bottom: 8px;
  }
}

.info_item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .info_item {
    justify-content: left;
  }
}

.info_item dt {
  border: 1px solid #fff;
  padding: 4px 5px;
  line-height: 1.25;
  font-size: 12px;
  margin-right: 8px;
  min-width: 60px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

@media screen and (min-width: 1025px) {
  .info_item dt {
    padding: 2px 5px;
  }
}

.info_item dd {
  font-size: 16px;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .info_item dd {
    font-size: 15px;
  }
}

.copyright {
  font-size: 12px;
  font-family: "EB Garamond", serif;
  margin-left: 79px;
}

@media screen and (max-width: 1024px) {
  .copyright {
    order: 8;
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    text-align: left;
    margin-left: 0;
  }
}

.footer_right {}

@media screen and (min-width: 1025px) {
  .footer_right {
    width: min(400px, 36.36363636363637vw);
    text-align: right;
  }
}

.footer_nav {}

@media screen and (max-width: 1024px) {
  .footer_nav {
    order: 5;
    width: 100%;
    margin-bottom: 6px;
  }
}

.footer_nav ul {}

@media screen and (min-width: 1025px) {
  .footer_nav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
  }
}

@media screen and (max-width: 1024px) {
  .footer_nav ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 3px 18px;
    list-style: none;
    padding: 0;
    text-align: center;
  }
}

.footer_nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

@media screen and (max-width: 1024px) {
  .footer_nav a {
    font-size: 15px;
  }
}

.footer_external_link {}

@media screen and (min-width: 1025px) {
  .footer_external_link {
    margin-bottom: 24px;
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
  .footer_external_link {
    order: 6;
    margin-bottom: 22px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.footer_external_link .inner {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer_reserve {}

@media screen and (max-width: 1024px) {
  .footer_reserve {
    order: 7;
    width: 100%;
  }
}

.footer_reserve .reserve_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background-color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  border-radius: 2px;
  letter-spacing: 0.28em;
}

@media screen and (max-width: 1024px) {
  .footer_reserve .reserve_btn {
    height: 57px;
  }
}

.footer_reserve .reserve_btn .text {
  color: #1c1c1c;
}

.footer_reserve .reserve_btn:hover {
  background-color: #f2f2f2;
}

.link_line {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.link_line span {
  position: relative;
  text-decoration: none;
}

.link_line_bold {
  font-weight: 600;
}

.link_line span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1C1C1C;
  transform: scaleX(1);
  transform-origin: right top;
  transition: transform 0.3s ease-out;
}

.link_line:hover span::after {
  transform-origin: left top;
  transform: scaleX(0);
  animation: lineAnim 0.6s forwards;
}

@keyframes lineAnim {
  0% {
    transform-origin: right top;
    transform: scaleX(1);
  }

  50% {
    transform-origin: right top;
    transform: scaleX(0);
  }

  51% {
    transform-origin: left top;
    transform: scaleX(0);
  }

  100% {
    transform-origin: left top;
    transform: scaleX(1);
  }
}