@charset "UTF-8";
/* mixins */
/* functions */
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

body {
  width: 100%;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  color: #222;
  font-weight: 400;
  font-size: 4.2vw;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    width: 100%;
    position: relative;
  }
}

.zenkaku {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-block {
    display: block;
  }
}
@media screen and (min-width: 1000px) {
  .tab-block {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-block {
    display: block;
  }
}

.pc-middle-block {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-block {
    display: block;
  }
}

.pc-middle02-block {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-block {
    display: block;
  }
}

.pc-large-block {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-block {
    display: block;
  }
}

.smp-inline {
  display: inline;
}
@media screen and (min-width: 768px) {
  .smp-inline {
    display: none;
  }
}

.pc-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-inline {
    display: inline;
  }
}

.tab-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-inline {
    display: inline;
  }
}
@media screen and (min-width: 1000px) {
  .tab-inline {
    display: none;
  }
}

.pc-middle-inline {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-inline {
    display: inline;
  }
}

.pc-middle02-inline {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-inline {
    display: inline;
  }
}

.pc-large-inline {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-inline {
    display: inline;
  }
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

a, button {
  color: var(--base-text-color);
  text-decoration: none;
  transition: all var(--base-transition-time);
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

span.inline-block {
  display: inline-block;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
}

:root {
  --base-width: 1000px;
  --base-width-sp: 84%;
  --base-inline-sp: 8%;
  --base-color: #000000;
  --base-text-color: #000000;
  --color-brown-dark: #4e3c2b;
  --color-cream: #f1ede1;
  --color-gray-light: #b2b2b2;
  --color-gray-medium: #808080;
  --base-font-size: 18px;
  --base-font-size-sp: vw(18);
  --note-font-size: 13px;
  --note-font-size-sp: vw(13);
  --zen-kaku-gothic-new: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  --base-transition-time: 0.3s;
}

/*======================================================================================*/
html,
body,
.js-toggle,
.js-toggle-target {
  overflow-anchor: none;
}

.l-header {
  position: relative;
  z-index: 1;
  display: none;
  padding: 45px 2%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .l-header {
    display: block;
  }
}
@media screen and (min-width: 1000px) {
  .l-header {
    padding: 45px 70px;
  }
}
@media screen and (min-width: 768px) {
  .l-header .l-header-logo {
    display: block;
    width: 23%;
    max-width: 266px;
  }
}

.l-footer {
  padding-block: 16vw 4vw;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding-block: 60px 15px;
  }
}
.l-footer .l-footer-logo img {
  width: 71%;
  margin-inline: auto;
}
.l-footer .l-footer-link {
  display: flex;
  justify-content: center;
  gap: 4vw;
  margin-top: 8vw;
  font-family: var(--zen-kaku-gothic-new);
  font-size: 3.4666666667vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer-link {
    gap: 15px;
    margin-top: 30px;
    font-size: 13px;
  }
}
.l-footer .copyright {
  margin-top: 10.6666666667vw;
  font-family: var(--zen-kaku-gothic-new);
  font-size: 2.9333333333vw;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer .copyright {
    margin-top: 40px;
    font-size: 11px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    translate: 0 15px;
  }
  100% {
    opacity: 1;
    translate: 0;
  }
}
.ani.fadeIn {
  opacity: 0;
  translate: 0 15px;
}
.ani.fadeIn.animation {
  animation: 0.5s ease-in fadeIn forwards;
}

.main-text {
  position: fixed;
  bottom: 65px;
  left: 2%;
  display: none;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .main-text {
    display: block;
  }
}
@media screen and (min-width: 1100px) {
  .main-text {
    bottom: 65px;
    left: 60px;
  }
}
.main-text .main-text__title {
  font-size: 2.6041666667vw;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1000px) {
  .main-text .main-text__title {
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 1280px) {
  .main-text .main-text__title {
    font-size: 33px;
  }
}
.main-text .main-text__read {
  margin-top: 0.7em;
  font-size: 1.5625vw;
  font-weight: 500;
  letter-spacing: 0.072em;
}
@media screen and (min-width: 1000px) {
  .main-text .main-text__read {
    font-size: 1.6vw;
  }
}
@media screen and (min-width: 1280px) {
  .main-text .main-text__read {
    font-size: 22px;
  }
}

.menu-button {
  position: fixed;
  top: 5.3333333333vw;
  right: 2.6666666667vw;
  width: 8vw;
  height: 2.9333333333vw;
  z-index: 15;
}
@media screen and (min-width: 768px) {
  .menu-button {
    display: none;
  }
}
.menu-button::before, .menu-button::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  box-shadow: 0 0 2px 0px #000;
  transition: 0.3s ease all;
}
.menu-button::before {
  top: 0;
}
.menu-button::after {
  bottom: 0;
}
.menu-button.is-active::before {
  rotate: 45deg;
  top: 40%;
}
.menu-button.is-active::after {
  rotate: -45deg;
  bottom: 40%;
}

.page-top {
  position: fixed;
  right: calc(50% - 42.6666666667vw);
  bottom: 8vw;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.4vw;
  height: 18.4vw;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: #fff;
  font-size: 2.9333333333vw;
  line-height: 1.1;
  text-align: center;
  opacity: 0;
  transition: 0.3s ease opacity;
}
@media screen and (min-width: 768px) {
  .page-top {
    right: calc(50% - 160px);
    bottom: 30px;
    width: 69px;
    height: 69px;
    font-size: 11px;
  }
}
@media screen and (min-width: 1000px) {
  .page-top {
    right: calc(50% - 192px);
  }
}
.page-top .arrow {
  display: inline-block;
  width: 2.4vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .page-top .arrow {
    width: 9px;
  }
}
.page-top.is-show {
  opacity: 1;
}
.page-top.is-stop {
  position: absolute;
  bottom: 136vw;
}
@media screen and (min-width: 768px) {
  .page-top.is-stop {
    bottom: 510px;
  }
}
@media screen and (min-width: 1000px) {
  .page-top.is-stop {
    bottom: 580px;
  }
}
.page-top:hover {
  opacity: 0.85;
}

.l-main-wrapper {
  position: relative;
  z-index: 1;
  background-color: #fff;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .l-main-wrapper {
    max-width: 375px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1000px) {
  .l-main-wrapper {
    max-width: 450px;
  }
}

.main-bg-slide {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
}
.main-bg-slide .swiper-slide {
  background-size: auto;
  background-position: center center;
}

.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  translate: 100% 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100dvh;
  padding: 16vw 8vw 10.6666666667vw;
  background-color: #000;
  color: #fff;
  z-index: 10;
  transition: 0.3s ease all;
  overflow: auto;
  scrollbar-width: thin;
  overscroll-behavior: contain;
}
@media screen and (min-width: 768px) {
  .main-nav {
    max-width: 320px;
    width: 25%;
    padding: 105px 20px 60px;
    translate: 0;
  }
}
@media screen and (min-width: 1000px) {
  .main-nav {
    padding: 105px 40px 60px;
  }
}
.main-nav.is-active {
  translate: 0;
}

.main-nav-heading .main-nav-heading__name-en {
  margin-top: 9.3333333333vw;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.09em;
}
@media screen and (min-width: 1000px) {
  .main-nav-heading .main-nav-heading__name-en {
    margin-top: 40px;
    font-size: 19px;
  }
}
.main-nav-heading .main-nav-heading__name-jp {
  position: relative;
  margin-inline: auto;
  color: #fff;
  font-weight: 500;
  font-size: 39px;
  line-height: 1.2;
  letter-spacing: 0.112em;
}
.main-nav-heading .main-nav-heading__name-jp > span {
  font-size: 19px;
  letter-spacing: 0.072em;
}

.main-nav-link {
  display: block;
  padding-top: 9.3333333333vw;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .main-nav-link {
    padding-top: 20px;
  }
}
.main-nav-link .main-nav-list {
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .main-nav-link .main-nav-list {
    font-size: 15px;
  }
}
.main-nav-link .main-nav-list li + li {
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .main-nav-link .main-nav-list li + li {
    margin-top: 50px;
  }
}
.main-nav-link .main-nav-list li a {
  position: relative;
  padding-bottom: 0.2em;
  color: #fff;
  transition: 0.3s ease all;
}
.main-nav-link .main-nav-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: 0.3s ease all;
  scale: 0 1;
  transform-origin: center;
}
.main-nav-link .main-nav-list li a:hover {
  opacity: 0.85;
}
.main-nav-link .main-nav-list li a:hover::after {
  scale: 1;
  width: 100%;
}

.main-nav-contact {
  display: block;
  margin-top: 9.3333333333vw;
  padding: 1.2em;
  border: 1px solid;
  -o-border-image: linear-gradient(90deg, rgb(79, 33, 21), rgb(188, 105, 9) 50%, rgb(79, 33, 21) 75%);
     border-image: linear-gradient(90deg, rgb(79, 33, 21), rgb(188, 105, 9) 50%, rgb(79, 33, 21) 75%);
  border-image-slice: 1;
  color: #fff;
  font-size: 3.4666666667vw;
  letter-spacing: 0.072em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main-nav-contact {
    margin-top: 70px;
    font-size: 13px;
  }
}
.main-nav-contact::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8vw;
  border-style: solid;
  border-width: 3px 0px 3px 7px;
  border-color: transparent transparent transparent #fff;
  vertical-align: 0.15em;
  transition: 0.3s ease all;
}
@media screen and (min-width: 768px) {
  .main-nav-contact::after {
    margin-left: 30px;
  }
}
.main-nav-contact:hover {
  color: #000;
  background-color: #fff;
}
.main-nav-contact:hover::after {
  border-color: transparent transparent transparent #000;
}

.main-heading {
  padding-block: 13.3333333333vw 8vw;
  text-align: center;
  background-image: linear-gradient(90deg, rgb(49, 34, 30), rgb(78, 60, 43) 23% 63%, rgb(49, 34, 30));
}
@media screen and (min-width: 768px) {
  .main-heading {
    margin-top: -110px;
    padding-block: 50px 30px;
  }
}
.main-heading .main-heading-logo {
  width: 48%;
  display: inline-block;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .main-heading .main-heading-logo {
    margin-bottom: 20px;
  }
}
.main-heading .main-heading__name-en {
  margin-top: 6.6666666667vw;
  color: #fff;
  font-weight: 500;
  font-size: 4.2666666667vw;
  line-height: 1.5;
  letter-spacing: 0.09em;
}
@media screen and (min-width: 768px) {
  .main-heading .main-heading__name-en {
    margin-top: 25px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .main-heading .main-heading__name-en {
    margin-top: 30px;
    font-size: 19.2px;
  }
}
.main-heading .main-heading__name-jp {
  width: 5em;
  position: relative;
  margin-inline: auto;
  color: #fff;
  font-weight: 500;
  font-size: 12vw;
  line-height: 1.2;
  letter-spacing: -0.025em;
  background: linear-gradient(90deg, rgb(212, 185, 128), rgb(250, 248, 225) 50%, rgb(212, 185, 128));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .main-heading .main-heading__name-jp {
    font-size: 45px;
  }
}
@media screen and (min-width: 1000px) {
  .main-heading .main-heading__name-jp {
    font-size: 54px;
  }
}
.main-heading .main-heading__name-jp > span {
  font-size: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .main-heading .main-heading__name-jp > span {
    font-size: 26px;
  }
}
@media screen and (min-width: 1000px) {
  .main-heading .main-heading__name-jp > span {
    font-size: 31.2px;
  }
}

.main-hero {
  position: relative;
}
.main-hero .main-hero__title {
  position: absolute;
  top: 12vw;
  left: 50%;
  translate: -50% 0;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 7.4666666667vw;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-shadow: 0 0 9px rgba(45, 3, 3, 0.8);
}
@media screen and (min-width: 768px) {
  .main-hero .main-hero__title {
    top: 45px;
    font-size: 28px;
  }
}
@media screen and (min-width: 1000px) {
  .main-hero .main-hero__title {
    font-size: 33.6px;
  }
}

.main-advertisement {
  padding: 8vw 4vw 6.6666666667vw;
  background-color: var(--color-brown-dark);
  font-family: var(--zen-kaku-gothic-new);
}
@media screen and (min-width: 768px) {
  .main-advertisement {
    padding: 30px 15px 25px;
  }
}
.main-advertisement .main-advertisement__title {
  padding: 0.2em;
  background-color: #fff;
  font-size: 4.2666666667vw;
  font-weight: 400;
  letter-spacing: 0.072em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main-advertisement .main-advertisement__title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .main-advertisement .main-advertisement__title {
    font-size: 19.2px;
  }
}
.main-advertisement .main-advertisement__read {
  margin-top: 4vw;
  color: #fff;
  font-size: 3.4666666667vw;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .main-advertisement .main-advertisement__read {
    margin-top: 15px;
    font-size: 13px;
  }
}
@media screen and (min-width: 1000px) {
  .main-advertisement .main-advertisement__read {
    margin-top: 18px;
    font-size: 15.6px;
  }
}

.about {
  padding-block: 10.6666666667vw;
  background-image: url(../myimg/about-bg.webp);
  background-attachment: fixed;
  background-size: auto 100%;
  background-repeat: repeat-y;
  background-position: center top;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .about {
    padding-block: 40px;
    background-size: auto 110vh;
  }
}

.about-inner::before, .about-inner::after {
  content: "";
  display: block;
  width: 81%;
  height: 6px;
  margin-inline: auto;
  border-top: 1px solid;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(150deg, rgb(79, 33, 21) 0%, rgb(188, 105, 9) 51%, rgb(79, 33, 21) 85%);
     border-image: linear-gradient(150deg, rgb(79, 33, 21) 0%, rgb(188, 105, 9) 51%, rgb(79, 33, 21) 85%);
  border-image-slice: 1;
}

.about-heading {
  margin-top: 16vw;
  letter-spacing: 0.072em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-heading {
    margin-top: 60px;
  }
}
.about-heading .about-heading__title {
  font-size: 8.5333333333vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .about-heading .about-heading__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1000px) {
  .about-heading .about-heading__title {
    font-size: 38.4px;
  }
}
.about-heading .about-heading__sub {
  margin-top: 8vw;
  font-size: 6.4vw;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .about-heading .about-heading__sub {
    margin-top: 30px;
    font-size: 24px;
  }
}
@media screen and (min-width: 1000px) {
  .about-heading .about-heading__sub {
    font-size: 28.8px;
  }
}

.about-content {
  width: 74%;
  margin: 18.6666666667vw auto 16vw;
}
@media screen and (min-width: 768px) {
  .about-content {
    margin-block: 70px 60px;
  }
}
.about-content .about-content__read {
  font-size: 4.2666666667vw;
  line-height: 1.9;
  letter-spacing: 0.072em;
}
@media screen and (min-width: 768px) {
  .about-content .about-content__read {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .about-content .about-content__read {
    font-size: 19.2px;
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-500%);
  }
}
.scorll-content {
  padding-block: 4vw;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .scorll-content {
    padding-block: 15px;
  }
}

.scorll-image {
  animation: scroll-left 75s infinite linear 0s;
  display: flex;
  gap: 1.6vw;
  width: 100%;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media screen and (min-width: 768px) {
  .scorll-image {
    gap: 6px;
  }
}
.scorll-image img {
  display: block;
  flex-shrink: 0;
  width: 500%;
  max-width: none;
}

.example-slide-container .example-slide__title {
  padding-block: 0.9em 0.8em;
  font-size: 4.5333333333vw;
  letter-spacing: 0.072em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .example-slide-container .example-slide__title {
    font-size: 17px;
  }
}
@media screen and (min-width: 1000px) {
  .example-slide-container .example-slide__title {
    font-size: 20.4px;
  }
}
.example-slide-container .slide-navigation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6.4vw;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .example-slide-container .slide-navigation {
    gap: 24px;
    margin-top: 20px;
  }
}
.example-slide-container .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2vw;
  width: auto;
}
@media screen and (min-width: 768px) {
  .example-slide-container .swiper-pagination {
    gap: 12px;
  }
}
.example-slide-container .swiper-pagination .swiper-pagination-bullet {
  margin: 0;
  background-color: #cccccc;
  opacity: 1;
}
.example-slide-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-brown-dark);
}
.example-slide-container .slide-navigation-prev,
.example-slide-container .slide-navigation-next {
  position: static;
  cursor: pointer;
}
.example-slide-container .slide-navigation-prev .arrow::after,
.example-slide-container .slide-navigation-next .arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.8vw 0px 0.8vw 3.4666666667vw;
  border-color: transparent transparent transparent var(--color-brown-dark);
}
@media screen and (min-width: 768px) {
  .example-slide-container .slide-navigation-prev .arrow::after,
  .example-slide-container .slide-navigation-next .arrow::after {
    border-width: 3px 0px 3px 13px;
  }
}
.example-slide-container .slide-navigation-prev .arrow::after {
  scale: -1 1;
}
.feature {
  padding-block: 8vw 12vw;
}
@media screen and (min-width: 768px) {
  .feature {
    padding-block: 30px 45px;
  }
}

.feature-heading .feature-heading__title {
  text-align: center;
  font-size: 4.5333333333vw;
  letter-spacing: 0.072em;
}
@media screen and (min-width: 768px) {
  .feature-heading .feature-heading__title {
    font-size: 17px;
  }
}
@media screen and (min-width: 1000px) {
  .feature-heading .feature-heading__title {
    font-size: 20.4px;
  }
}
.feature-heading .feature-heading__title img {
  display: inline-block;
  width: 36%;
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .feature-heading .feature-heading__title img {
    margin-top: 15px;
  }
}

.feature-point-container {
  width: var(--base-width-sp);
  margin-top: 10.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .feature-point-container {
    margin-top: 40px;
  }
}

.feature-point-content {
  letter-spacing: 0.072em;
}
.feature-point-content + .feature-point-content {
  margin-top: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .feature-point-content + .feature-point-content {
    margin-top: 55px;
  }
}
.feature-point-content .feature-point-heading .feature-point-heading__title {
  width: 46%;
  margin-top: -2em;
  margin-inline: auto;
}
@media screen and (min-width: 1000px) {
  .feature-point-content .feature-point-heading .feature-point-heading__title {
    margin-top: -2.3em;
  }
}
.feature-point-content .feature-point-heading .feature-point-heading__sub {
  font-size: 5.0666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature-point-content .feature-point-heading .feature-point-heading__sub {
    font-size: 19px;
  }
}
@media screen and (min-width: 1000px) {
  .feature-point-content .feature-point-heading .feature-point-heading__sub {
    font-size: 22.8px;
  }
}
.feature-point-content .feature-point-content-txt {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .feature-point-content .feature-point-content-txt {
    margin-top: 30px;
  }
}
.feature-point-content .feature-point-content__title {
  font-size: 5.3333333333vw;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature-point-content .feature-point-content__title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .feature-point-content .feature-point-content__title {
    font-size: 24px;
  }
}
.feature-point-content .feature-point-content__read {
  margin-top: 8vw;
  font-size: 4.8vw;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .feature-point-content .feature-point-content__read {
    margin-top: 30px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1000px) {
  .feature-point-content .feature-point-content__read {
    margin-top: 36px;
    font-size: 19.2px;
  }
}

.feature-point-content__note {
  margin-top: 1em;
  font-size: 3.4666666667vw;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .feature-point-content__note {
    font-size: 13px;
  }
}
@media screen and (min-width: 1000px) {
  .feature-point-content__note {
    font-size: 15.6px;
  }
}

.pickup {
  padding-block: 12vw;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .pickup {
    padding-block: 45px;
  }
}

.pickup-heading img {
  width: 37%;
  margin-inline: auto;
}

.pickup-container {
  width: var(--base-width-sp);
  margin-top: 5.3333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .pickup-container {
    margin-top: 20px;
  }
}

.pickup-content {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .pickup-content {
    padding: 10px;
  }
}
.pickup-content::before, .pickup-content::after {
  content: "";
  display: block;
  width: 1px;
  height: 0;
  padding-top: 25%;
  border-right: 1px solid;
  -o-border-image: linear-gradient(0deg, rgb(79, 33, 21) 10%, rgb(188, 105, 9) 51%, rgb(79, 33, 21));
     border-image: linear-gradient(0deg, rgb(79, 33, 21) 10%, rgb(188, 105, 9) 51%, rgb(79, 33, 21));
  border-image-slice: 1;
}
.pickup-content + .pickup-content {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .pickup-content + .pickup-content {
    margin-top: 20px;
  }
}
.pickup-content .pickup-content__read {
  letter-spacing: 0.072em;
  line-height: 1.4;
  text-align: center;
}

.map {
  padding-block: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .map {
    padding-block: 50px;
  }
}

.map-heading .map-heading__title {
  font-weight: 500;
  font-size: 5.0666666667vw;
  letter-spacing: 0.072em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .map-heading .map-heading__title {
    font-size: 19px;
  }
}
@media screen and (min-width: 1000px) {
  .map-heading .map-heading__title {
    font-size: 22.8px;
  }
}
.map-heading .map-heading__title img {
  display: inline-block;
  width: 55%;
}

.map-contaier {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .map-contaier {
    margin-top: 30px;
  }
}

.map-content {
  width: var(--base-width-sp);
  margin-inline: auto;
}

.map-image {
  position: relative;
}
.map-image img {
  width: 80%;
}
.map-image .zoom {
  position: absolute;
  right: 5%;
  bottom: 7%;
  width: 8.2666666667vw;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .map-image .zoom {
    width: 31px;
  }
}

.map-content__read {
  margin-top: 2.6666666667vw;
  font-size: 3.4666666667vw;
  line-height: 1.5;
  text-align: justify;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .map-content__read {
    margin-top: 10px;
    font-size: 13px;
  }
}
@media screen and (min-width: 1000px) {
  .map-content__read {
    margin-top: 12px;
    font-size: 15.6px;
  }
}

.information {
  padding-block: 20vw 18.6666666667vw;
  background-color: var(--color-cream);
}
@media screen and (min-width: 768px) {
  .information {
    padding-block: 75px 70px;
  }
}

.information-content {
  width: var(--base-width-sp);
  margin-inline: auto;
  background-color: #fff;
}
.information-content + .information-content {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .information-content + .information-content {
    margin-top: 40px;
  }
}
.information-content .information-content-heading {
  padding-block: 1.3em 0.8em;
  background-image: linear-gradient(90deg, rgb(212, 185, 128) 0%, rgb(250, 248, 225) 51%, rgb(212, 185, 128));
}
.information-content .information-content__title {
  font-size: 3.7333333333vw;
  letter-spacing: 0.072em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .information-content .information-content__title {
    font-size: 14px;
  }
}
@media screen and (min-width: 1000px) {
  .information-content .information-content__title {
    font-size: 16.8px;
  }
}
.information-content .information-content__title > img {
  height: 5.0666666667vw;
  margin-bottom: 0.3em;
}
@media screen and (min-width: 768px) {
  .information-content .information-content__title > img {
    height: 19px;
  }
}
.information-content .information-content-inner {
  width: 89%;
  padding-block: 9.3333333333vw 9.3333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .information-content .information-content-inner {
    padding-block: 35px 35px;
  }
}
.information-content .information-content-inner .zoom {
  display: block;
  width: 8.2666666667vw;
  margin-top: 2.1333333333vw;
  margin-left: auto;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .information-content .information-content-inner .zoom {
    width: 31px;
    margin-top: 8px;
  }
}
.information-content .information-content-iframe {
  aspect-ratio: 315/304;
}
.information-content .information-content-iframe iframe {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.area-content {
  text-align: center;
}
.area-content .area-content__read {
  font-size: 4vw;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .area-content .area-content__read {
    font-size: 15px;
  }
}
@media screen and (min-width: 1000px) {
  .area-content .area-content__read {
    font-size: 18px;
  }
}
.area-content .area-content__name {
  display: inline-block;
  margin-top: 5.3333333333vw;
  background: linear-gradient(90deg, rgb(79, 33, 21), rgb(188, 105, 9) 50%, rgb(79, 33, 21));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 5.3333333333vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .area-content .area-content__name {
    margin-top: 20px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .area-content .area-content__name {
    margin-top: 24px;
    font-size: 24px;
  }
}
.area-content .area-content__text {
  margin-top: 0.2em;
  font-size: 3.7333333333vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .area-content .area-content__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1000px) {
  .area-content .area-content__text {
    font-size: 16.8px;
  }
}

.other {
  padding-block: 14.6666666667vw 20vw;
}
@media screen and (min-width: 768px) {
  .other {
    padding-block: 55px 75px;
  }
}

.contact .contact-link {
  display: block;
  width: 75%;
  margin-inline: auto;
  background-image: linear-gradient(90deg, rgb(79, 33, 21) 0%, rgb(188, 105, 9) 51%, rgb(79, 33, 21) 85%);
  color: #fff;
  font-size: 5.3333333333vw;
  font-weight: 500;
  text-align: center;
  padding-block: 0.6em;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .contact .contact-link {
    font-size: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .contact .contact-link {
    font-size: 24px;
  }
}
.contact .contact-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.4em;
  border-style: solid;
  border-width: 4px 0px 4px 8px;
  border-color: transparent transparent transparent #fff;
  vertical-align: 0.2em;
}

.overview {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .overview {
    margin-top: 40px;
  }
}

.overview-inner {
  width: var(--base-width-sp);
  margin-inline: auto;
}

.overview-heading {
  position: relative;
  padding: 0.3em 1em 0.2em;
  border: 1px solid var(--color-gray-light);
  color: var(--color-gray-medium);
  font-size: 4.2666666667vw;
  letter-spacing: 0.07em;
  transition: 0.3s ease all;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .overview-heading {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  .overview-heading {
    font-size: 19.2px;
  }
}
.overview-heading .toggle {
  position: absolute;
  top: 50%;
  right: 3%;
  translate: 0 -50%;
  width: 3.4666666667vw;
  height: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .overview-heading .toggle {
    width: 13px;
    height: 13px;
  }
}
.overview-heading .toggle::before, .overview-heading .toggle::after {
  content: "";
  display: block;
  background-color: var(--color-gray-light);
  transition: 0.3s ease all;
}
.overview-heading .toggle::before {
  position: relative;
  top: 57%;
  right: 47%;
  width: 100%;
  height: 1px;
}
.overview-heading .toggle::after {
  height: 100%;
  width: 1px;
}
.overview-heading.is-active {
  background-color: var(--color-gray-light);
  color: #fff;
}
.overview-heading.is-active .toggle::before, .overview-heading.is-active .toggle::after {
  background-color: #fff;
}
.overview-heading.is-active .toggle::after {
  rotate: 90deg;
}
.overview-content {
  display: none;
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .overview-content {
    margin-top: 15px;
  }
}
.overview-content .overview-content__read {
  font-family: var(--zen-kaku-gothic-new);
  font-size: 3.4666666667vw;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .overview-content .overview-content__read {
    font-size: 13px;
    text-align: justify;
  }
}
@media screen and (min-width: 1000px) {
  .overview-content .overview-content__read {
    font-size: 15.6px;
  }
}

.zoom,
.modal-zoom {
  cursor: pointer;
}

.modaal-image .modaal-gallery-item {
  padding: 4vw 6.6666666667vw;
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .modaal-image .modaal-gallery-item {
    padding: 25px;
  }
}
.modaal-image .modaal-gallery-item img {
  width: 560px !important;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .modaal-image .modaal-gallery-item img {
    width: auto !important;
    max-height: 70dvh;
  }
}/*# sourceMappingURL=style.css.map */