@charset "UTF-8";
/* ↓ バリバリグループ フォントサイズ設定 */
/*↑基本的なフォントサイズ*/
/*↑h4タグのフォントサイズ ($basic-font-sizeの1.5倍の大きさ)*/
/*↑h3タグのフォントサイズ ($h4-font-sizeの1.5倍の大きさ)*/
/*↑h2タグのフォントサイズ ($h3-font-sizeの1.5倍の大きさ)*/
/*↑h1タグのフォントサイズ ($h2-font-sizeの1.5倍の大きさ)*/
/*↑サブタイトル(h2直下の読み)のフォントサイズ*/
/* ↑ バリバリグループ フォントサイズ設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #000000;
  letter-spacing: 0.2rem;
  overflow-x: hidden;
}

p,
a {
  font-size: 0.9em;
}

h1 {
  font-size: 2.57049em;
}

h2 {
  font-family: "EB Garamond", "Noto Serif JP", serif;
  font-size: 1.9773em;
  color: #9a753a;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h3 {
  font-size: 1.521em;
}

h4 {
  font-size: 1.17em;
}

ul {
  list-style: none;
}

.sub-title {
  font-size: 0.7rem;
  color: #9a753a;
}

@media (max-width: 768px) {
  p,
  a {
    font-size: 0.81em;
  }
  h1 {
    font-size: 2.1849165em;
  }
  h2 {
    font-size: 1.77957em;
  }
  h3 {
    font-size: 1.29285em;
  }
  h4 {
    font-size: 0.8775em;
  }
}
@media (max-width: 480px) {
  p,
  a {
    font-size: 0.675em;
  }
  h1 {
    font-size: 1.799343em;
  }
  h2 {
    font-size: 1.482975em;
  }
  h3 {
    font-size: 1.0647em;
  }
  h4 {
    font-size: 0.702em;
  }
}
a {
  text-decoration: none;
}

.btn {
  font-style: normal;
  position: relative;
  display: block;
  width: 300px;
  max-width: 80%;
  margin: 2em auto 4em;
  border: 1px solid rgb(34, 34, 34);
  transition: 0.5s;
  font-weight: lighter;
  text-align: center;
  letter-spacing: 2px;
  font-size: 80%;
}

.btn a {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: block;
  color: rgb(34, 34, 34);
  padding: 0.8em 0;
  text-decoration: none;
}

.btn_border a {
  position: relative;
}

.btn_border {
  border: none;
  background: rgba(255, 255, 255, 0.4);
}

.btn_border::after,
.btn_border::before,
.btn_border a::after,
.btn_border a::before {
  background: #222;
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  transition: 0.3s;
}

.btn_border::after {
  width: 0px;
  height: 1px;
  top: 0;
  left: 0;
}

.btn_border::before {
  width: 0px;
  height: 1px;
  right: 0;
  bottom: 0;
}

.btn_border a::after {
  width: 1px;
  height: 0;
  left: 0;
  bottom: 0;
}

.btn_border a::before {
  width: 1px;
  height: 0;
  top: 0;
  right: 0;
}

.btn_border:hover::after,
.btn_border:hover::before {
  width: 100%;
}

.btn_border:hover a::after,
.btn_border:hover a::before {
  height: 100%;
}

section {
  padding: 70px 0;
}

.about-contents,
.news-contents,
.access-contents,
.nearby-contents,
.faq-contents,
.price-contents {
  padding: 23.3333333333px 0;
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
  .about-contents,
  .news-contents,
  .access-contents,
  .nearby-contents,
  .faq-contents,
  .price-contents {
    padding: 16.6666666667px 0;
  }
}
#top {
  position: relative;
}
#top .swiper-container {
  height: calc(100vh - 80px);
}
#top .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrapper {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 10s ease;
  /* 拡大速度調整 */
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-slide-active img {
  transform: scale(1.1);
  /* 1.1倍に拡大 */
}

.wrapper .swiper-container .swiper-slide {
  line-height: 0;
}

.wrapper .swiper-container .swiper-pagination {
  display: inline-block;
  width: 48px;
  left: auto;
  right: 20px;
  bottom: 20px;
}

.wrapper .swiper-container .swiper-pagination-bullet {
  box-sizing: border-box;
  display: block;
  opacity: 1;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  width: 48px;
  height: 48px;
  border-radius: 0;
  margin: 0;
  padding: 13px 0;
  color: #ffffff;
  background-color: transparent;
  font-weight: 700;
  text-align: center;
}

.wrapper .swiper-container .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-top: 20px;
}

.wrapper .swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1);
}

.wrapper .swiper-container .swiper-pagination-bullet .circle {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.circle1 {
  stroke-dasharray: 152px;
  stroke-dashoffset: 152px;
}

.swiper-pagination-bullet-active .circle {
  transform: scale(1) rotate(-90deg);
}

.swiper-pagination-bullet-active .circle1 {
  animation: sliderPagination 3s linear forwards;
}

.bar {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  transform: scaleX(0);
  transform-origin: 0 0;
  width: 100%;
  height: 1px;
  background-color: #F7C639;
  transition: transform 3s linear;
}

@keyframes sliderPagination {
  100% {
    stroke-dashoffset: 0;
  }
}
.scroll-btn {
  position: absolute;
  left: calc(50% - 16px);
  /* top: 20vh; */
  cursor: pointer;
  animation: scroll-btn 1s ease-in-out alternate infinite;
  z-index: 9999;
  bottom: 80px;
}
.scroll-btn svg {
  fill: #F8F7F2;
  height: 50px;
  width: 32px;
  margin-bottom: 10px;
}
.scroll-btn svg .animated {
  animation: scroll-down 2s infinite linear;
}
.scroll-btn svg .ball {
  animation: ball-move 1s infinite ease-in-out alternate;
}

@keyframes scroll-down {
  0% {
    stroke-dasharray: 0, 180px;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.8;
    stroke-dasharray: 215.7737px, 363.607px;
  }
  70% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ball-move {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}
.scroll {
  display: none;
}

@media (max-width: 768px) {
  .scroll-btn {
    display: none;
  }
  /* スクロールダウンの位置 */
  .scroll {
    display: block;
    position: absolute;
    right: 50%;
    bottom: 200px;
    writing-mode: vertical-rl;
  }
  /* 線のアニメーション部分 */
  .scroll::before {
    animation: scroll 2s infinite;
    background-color: #ffffff;
    bottom: -115px;
    content: "";
    height: 50px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    z-index: 2;
  }
  /* 線の背景色 */
  .scroll::after {
    background-color: #000000;
    bottom: -115px;
    content: "";
    height: 50px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
  }
  /* 線のアニメーション */
  @keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    51% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }
}
.sp-nav-header {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  height: 80px;
  z-index: 9999;
}
.sp-nav-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #000;
  transition: all 0.3s ease;
}

.sp-logo-header {
  display: none;
}

.header-logo {
  width: 50px;
}

.nav-menu {
  display: flex;
  height: 100%;
}
.nav-menu a {
  width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin: 10px 0;
  gap: 10px;
}
.nav-menu a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-menu a:hover span {
  color: #F7C639;
}
.nav-menu a:hover img {
  animation: mochimochi 1s infinite;
}
@keyframes mochimochi {
  0% {
    transform: scale(1, 0.8);
  }
  20% {
    transform: scale(0.8, 1.1);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.8);
  }
}
.nav-menu a span {
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 0;
  transition: color 0.3s ease;
}
.nav-menu img {
  width: 25px;
  height: 25px;
}

.nav-icon .icon-img {
  position: relative;
  width: 25px;
  /* 画像サイズに合わせて */
  height: 25px;
}

.nav-icon .icon-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.nav-icon .icon-img .hover {
  opacity: 0;
}

.nav-icon:hover .icon-img .normal {
  opacity: 0;
}

.nav-icon:hover .icon-img .hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .sp-nav-header {
    display: block;
    padding-left: 0;
    position: fixed;
    width: 100%;
    z-index: 9999;
  }
  .sp-logo-header {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #000;
    align-items: center;
    justify-content: center;
  }
  .sp-logo-header a {
    position: absolute;
    left: 20px;
  }
  .sp-logo-header img {
    width: 50px;
  }
  .sp-logo-header p {
    color: #ffffff;
    font-size: 18px;
  }
  .header-logo {
    display: none;
  }
  .nav-menu a {
    width: 20%;
  }
  .nav-menu a:first-child {
    border-left: none;
  }
}
@media (max-width: 480px) {
  .sp-logo-header p {
    font-size: 3.5vw;
  }
}
#about {
  background-image: url("../img/concept-back.png");
}

.about-heading {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
  flex-direction: row;
  justify-content: center;
  color: #333333;
}
.about-heading span {
  display: inline-block;
}
.about-heading .line1 {
  opacity: 0;
}
.about-heading .line2 {
  position: relative;
}
.about-heading .line2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: #F7C639;
  transition: width 1.2s ease;
}
.about-heading .line2.underline::after {
  width: 100%;
}
.about-heading .line2 .line2-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.about-heading .line2 .line2-text.show {
  opacity: 1;
  transform: translateY(0);
}

.about-contents {
  display: flex;
  max-width: 1500px;
  margin: 0 auto;
}

/* ✅ 初期状態で非表示にする */
.about-img,
.about-text {
  opacity: 0;
  transform: translateY(20px);
}

.about-img {
  width: 650px;
  mask-image: radial-gradient(circle, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask-image: radial-gradient(circle, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

.about-text {
  padding: 40px;
  letter-spacing: 0.25em;
  line-height: 2.5;
}

@media (max-width: 1200px) {
  .about-contents {
    flex-direction: column;
  }
  .about-img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 300px;
  }
  .about-text {
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .about-heading {
    flex-direction: column;
    font-size: 3.7vw;
  }
  .about-heading .line1 {
    transform: translateX(-50px);
  }
  .about-heading .line2 {
    transform: translateX(50px);
  }
}
#news {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-image: url("../img/concept-back.png");
}
#news img {
  width: 85%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.news-contents {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.news-left,
.news-right {
  width: 50%;
}

.news-left {
  width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-text .btn {
  margin: 6em auto 4em;
}
.news-text .btn_border {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.news-text .btn_border:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0);
}

.slash {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20px;
  width: 100%;
}

.slash::before,
.slash::after {
  content: "";
  width: 25px;
  height: 1px;
  background-color: #000;
  margin: 0px 4px 4px;
}

.slash::before {
  transform: rotate(45deg);
}

.slash::after {
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  #news img {
    width: 400px;
  }
  .news-contents {
    flex-direction: column;
  }
  .news-text .btn {
    margin: 5em auto 2em;
  }
}
@media (max-width: 480px) {
  #news img {
    width: 100%;
  }
  .news-left,
  .news-right {
    width: 100%;
  }
}
#access {
  position: relative;
  background-image: url("../img/access-back.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}
#access::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
#access > * {
  position: relative;
  z-index: 1;
}
#access iframe {
  width: 100%;
  padding: 0 10px;
}
#access h2 {
  color: #ffffff;
}
#access h2 .sub-title {
  color: #ffffff;
}

.root-search {
  text-align: center;
  padding: 20px 0;
}

.btn-current-location {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 12px 24px;
  margin: 10px 0;
  text-decoration: none;
  border-radius: 6px;
  border: solid 1px #ffffff;
  transition: background 0.3s;
}
.btn-current-location:hover {
  background-color: #555;
}

.access-details {
  margin-top: 20px;
  background-color: rgba(0, 0, 0, 0.7490196078);
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 20px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  align-items: center;
  padding: 12px 5px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  line-height: 1.6;
}
.info-list li:first-child {
  display: block;
  text-align: center;
  font-size: 23px;
}
.info-list li:first-child::before {
  content: none;
}
.info-list li::before {
  content: "▶";
  color: #F7C639;
  font-size: 0.9em;
  margin-right: 10px;
  margin-top: 3px;
  display: inline-block;
}
.info-list li strong {
  min-width: 130px;
  font-weight: 600;
  display: inline-block;
}
.info-list li p {
  margin: 0 0 0 5px;
  display: inline-block;
}

@media (max-width: 768px) {
  .info-list li strong {
    min-width: 100px;
  }
}
#faq {
  background-image: url("../img/faq-back.png");
}

.faq-contents {
  max-width: 750px;
  margin: 0 auto;
  /* iPadサイズ（768px〜1024px） */
  /* スマホサイズ以下 */
}
@media (min-width: 768px) and (max-width: 1024px) {
  .faq-contents {
    width: 80%;
    padding: 0px;
  }
}
@media (max-width: 767px) {
  .faq-contents {
    width: 90%;
    padding: 0px;
  }
}

details {
  margin: 15px 0;
  padding: 10px;
  border: 1px solid #000000;
  border-radius: 8px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
details[open] summary::after {
  transform: rotate(90deg);
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  outline: none;
  transition: background-color 0.5s ease;
}
summary::after {
  content: "▶";
  font-size: 10px;
  transition: transform 0.5s ease, color 0.5s ease;
}

.inner {
  padding: 10px 20px 0px;
  border-top: 1px solid #232323;
  margin-top: 10px;
  transition: max-height 0.3s ease;
  /* スローなアニメーション */
}
.inner p,
.inner a {
  font-size: 12px;
}

footer {
  background-color: #000;
  color: #ffffff;
}

.footer-contents {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer-contents a {
  border-right: 1px solid #ffffff;
  padding: 0px 10px;
  color: #ffffff;
  transition: color 0.3s ease;
}
.footer-contents a:hover {
  color: #F7C639;
}
.footer-contents a:last-child {
  border-right: none;
}

.copyright {
  text-align: center;
  letter-spacing: 0;
  font-size: 10px;
}

@media (max-width: 768px) {
  footer {
    padding-bottom: 90px;
  }
  .footer-contents {
    padding: 10px 0;
  }
  .footer-contents a {
    font-size: 0.4em;
  }
}
/* スクロールバー全体 */
::-webkit-scrollbar {
  width: 5px;
  /* 横スクロールの場合は height */
}

/* スクロールバーのトラック（背景） */
::-webkit-scrollbar-track {
  background: #000000;
}

/* スクロールバーのつまみ（ドラッグする部分） */
::-webkit-scrollbar-thumb {
  background: #F7C639;
}

/* ホバー時のつまみ */
::-webkit-scrollbar-thumb:hover {
  background: #f9d161;
}/*# sourceMappingURL=index.css.map */