/* style.css */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

:root {
  --primary-color: #000;
  --accent-color: #ffd40b;
  --bg-color: #fff;
  --text-color: #333;
  --font-main:  'Noto Sans JP','Switzer',sans-serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

.pc{
  display: block;
}

.sp{
  display: none!important;
}
.section {
  padding: 80px 0;
  text-align: left;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 960px;
}

.container-wide {
  width: 100%;
  margin: 0 auto;
  display: flex;
}

.section-title {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom:20px;
  font-family: Avenir Next Condensed;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02;
}

.section-title span{
  font-weight: 500;
  font-size: 1rem;
   margin-left: 10px;  
}
.section-description {
  font-weight: 300;
  font-size: 1rem;
  margin-top: 20px;
  line-height: 2;      /* 140% */
  letter-spacing: 0em;   /* 0% */
}

.bg-gray{
 background-color: #F5F5F5;
}
.bg-black{
 background-color: #000;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/*　Cookie accept*/
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 24px;
  border-radius: 10px;
  max-width: 90%;
  width: 1000px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  z-index: 9999;
}

.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
}

.accept {
  background-color: #e74c3c;
}

.decline {
  background-color: #888;
}

.close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 24px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}


/* Header */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* 半透明の白 */
  backdrop-filter: blur(6px);                /* 背景ぼかしで視認性UP */
  -webkit-backdrop-filter: blur(6px);        /* Safari対応 */
  padding: 20px 0;
  z-index: 1000;
}


.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* ← これがポイント */
  width:90%;
  margin:0 auto;
}


.logo {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

/* 共通 */

.main-nav .nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .nav-list li a {
  text-decoration: none;
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  height: 40px; 
  cursor: pointer;
}
.main-nav .nav-list li a:hover {
  color: #f0674f;
}

.quest{
display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 5px;
    gap: 10px;
    width: 118px;
    height: 40px;
    background: #6CD378;
    border-radius: 20px;

}
.quest a:hover{
  color:#000;
  opacity: 0.5;
}
.lang{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 12px 5px;
gap: 10px;

width: 104px;
height: 40px;
color:#fff;
background: #000;
border-radius: 20px;
}
.reservation a:hover{
  color: #f0674f;
  opacity: 0.5;
}


/* Hero */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding-top: 40vh;
}



/* About */

.about-inner{
  display: flex;
  gap: 16px;            /* カラム間の余白 */
  align-items: stretch; /* 上下位置合わせ（必要に応じて） */
}
.about-left{flex: 10 1 0; min-width: 0; 

}

.about-wide{
background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0.8) 15%, rgba(255, 255, 255, 0) 100%), url(../images/nature.jpg);
  background-position: right bottom;
  background-size: 50%;
  background-repeat: no-repeat;
  padding:50px 0;
}

/* 中のコンテンツを上に */
.about-wide > *{
  position: relative;
  z-index: 1;
}

.about-right img {width:100%;}



@media (max-width: 768px) {
  .about-inner {
    flex-direction: column;
  }
}

.map-slider-wrap {
  display: flex;
  gap: 20px;
}

.map-area {
  position: relative;
  width: 70%;
}

.map-area .map-img {
  width: 100%;
  display: block;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
}

.slider-area {
  /*width: calc(30% - 24px);*/
  width: 30%;
}

.map-slider-wrap{
    background: #fae8b5;
}
.map .swiper-wrapper {
    padding: 24px 0 ;
}

.map .slide-content img{
  width:100%;
}

.map .slide-day{
  border-bottom: 5px solid #f0674f;
  display: inline-block;
  padding:0 5px;
}

.map .slide-title{
  margin:5px 0;
  font-weight: bold;
}
.map .swiper-wrapper {
  transition-timing-function: linear;

}

.map .swiper-slide {
  background-color: #fff;
    padding: 24px  ;
    margin:24px 0 0 0;
    box-shadow: 4px 6px 16px rgba(0, 0, 0, 0.3);
    font-family: 'Switzer', sans-serif;
  /*width: calc(100% - 24px);*/
}

/* スライドの動き等速 */
.swiperTB .swiper-wrapper {
  transition-timing-function: linear;

}
/* 画像のサイズ調整 */
.swiperTB .swiper-slide img{
  height: auto;
  width: 100%;
}

.swiperTB{ height: 240px; overflow: hidden;margin-top:10px; }

.swiperTB .swiper-slide { height: 100%; display: flex; }

.swiperTB .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* 枠いっぱいに＝トリミングあり */
  object-position: center;  /* ★ 中央基準で切る（明示） */
  display: block;
}
/*** gallaly ***/

.parallax-section {
  height: 300vh;
  padding: 5vh 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5vh;
}

.row {
  display: flex;
  justify-content: center;
  gap: 2vw;
}

.column {
  width: 25%;
  position: relative;
  overflow: visible;
  height: 600px;
  font-size: 0.7rem;
  text-align: right;
}

.column img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  will-change: transform;
}

.photo-stack{
  position: relative;
}

.experiences__title {
    position: fixed;

    top: 40%;
    left: 5vw;
    transform: translateY(-50%);
    z-index: 999;
    color: white;
    font-size: 6vw;
    font-weight: 900;
    font-family: sans-serif;
    mix-blend-mode: difference;
    line-height: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.experiences__title span{
    font-size: 1rem;
    font-weight: normal;
}
.experiences__title .bl2{
    display: block;
    margin-top: 5vw;
    margin-left: 40vw;
}

.experiences__title.active {
  opacity: 1;
}

/*ボタン*/

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;

  display: block;
  width:30%;
  min-width: 400px;
  margin:50px auto;
  font-size: 1.4rem;


}
.btn--red, a.btn--red, button.btn--red {
    color: rgb(255, 255, 255);
    background-color: rgb(240, 103, 79);
}
a.btn--red.btn--cubic {
  border-bottom: 5px solid #9f000c;
}

a.btn--red.btn--cubic:hover {
  margin-top: 53px;
  border-bottom: 2px solid #9f000c;
}

a.btn--radius {
  border-radius: 100vh;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - .5em);
  right: 1rem;
}

/* Scroll Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax Section */
.parallax {
  background: url('parallax-bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
}

.parallax .section-title {
  font-size: 48px;
  color: #fff;
}

/*zoom*/
.zoom-img {
  overflow: hidden;        /* はみ出しカット */
  width: 100%;             /* 好きなサイズに調整 */
  height: 60vw;           /* 固定したい高さ */
  max-height:600px;
}

.zoom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* トリミングしてフィット */
  animation: zoom 14s ease-in-out forwards; 
  /* 20秒かけてズーム */
}

@keyframes zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.2); }
}

/* Service */
.service-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.service-item {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
}

/* Contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  background-color: var(--accent-color);
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #e6c200;
}

/* footer */
#footer {padding: 30px 0; margin-top: 100px; color: #fff; text-align: center; background-color: #000;}
#footer .footer_contact {display: flex; justify-content: center; align-items: center; margin-bottom: 30px; line-height: 1.3;}
#footer .footer_contact .name {padding: 0 20px; font-size: 1.3rem; letter-spacing: 0.36em;}
#footer .footer_contact .tel {padding: 0 20px; border-left: 1px solid #fff;}
#footer .footer_contact .tel a {color: #fff; font-size: 2.5rem; letter-spacing: 0.08em;}
#footer .footer_bottom .txt {display: inline-block; padding: 0 10px; font-size: 1.1rem; letter-spacing: 0.36em; border-bottom: 1px solid #fff;}
#footer .footer_bottom .url a {color: #fff; letter-spacing: 0.1em;} 


/* Responsive */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .service-list {
    flex-direction: column;
  }

  .parallax {
    background-attachment: scroll;
  }
}
