    /* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: "Noto Sans JP", sans-serif; line-height: 1.6; color: #1A1A1A; 
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit;display: block; }
ul { list-style: none; }
/* Container */
.container { max-width: 1200px; margin: 0 auto; }
.d-flex{display: flex;}
.serif{font-family: "Noto Serif JP", serif;}
.PC{}
.SP{display:none;}
.Tab{display:none;}
.slideIn {
  opacity: 0;
  transform: translate(0, 30%);
  transition: 1.5s;
}
.slideIn.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
@media (max-width: 768px) {
  .PC {
    display:none;
  }
  .SP{
    display: block;
  }
}
@media (max-width: 480px) {
  body{
    font-size:12px;
  }
}
/* Header */
header { 
  position: fixed; top: 0; left: 0; width: 100%; padding: 12px 0;
  background:rgba(253,253,253,0.8);
  z-index: 5;
}
header .logo{
  width: 60px;
}
.header-wrap { 
  justify-content: space-between; 
  align-items: center; 
  padding:0 20px;
}
.header-navi{
  align-items: center; 
}
header nav ul { gap: 24px;align-items: center;  }
header nav li { font-weight: bold; }
header nav li a{ color: #580E04;}
.menu-toggle { display: none; }

/* ハンバーガーアイコン */
.menu-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
    cursor: pointer;
    background: #a70b01;
    margin-left: 16px;
}
.menu-btn span {
    display: block;
    height: 1px;
    background-color: #FFF;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    width: 70%;
    left: 0;
    right: 0;
    margin: auto;
}
.menu-btn span:first-child{
    top:30%;
}
.menu-btn span:nth-child(2){
    top:50%;
}
.menu-btn span:last-child{
    top:70%;
}
/* 半円メニュー */
.slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 450px;
  height: 910px;
  max-height: 100vh;
  background-color: white;
  background-image: url('img/menu-bg.png');
  background-repeat: no-repeat;
  background-size: 96%;
  background-position: 20px 25px;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 1000;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide-menu.open {
  right: 0;
}
.menu-btn.active span:nth-child(1) {
  transform: translateY(10px) rotate(27deg);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-27deg);
}
.slide-menu-wrap{
  align-items: center;
}
.header-sns-btn{
  padding:0 30px 0 80px;
}
.header-sns-btn li{
  margin:24px 0;
}
.header-sns-btn li:first-child,.header-sns-btn li:last-child{
  margin-left:20px;
}

.menu-list li {
  margin: 1em 0;
  font-size: 1.1em;
}
.menu-list li a{
  color:#333;
}
.menu-list .menu-list-site a{
  border:1px solid #580e04;
  padding: 8px 16px;
  border-radius: 50px; 
}
.menu-list .link-council a{
  color:#a1783e;
}
.menu-list .link-blog a{
  color:#96abd2;
}

.header-sns-btn img{
    width:60px;
  }

@media (max-width: 768px) {
  .slide-menu {
    width: 70vw;
    height: 90vh;
    background-image: url(img/menu-bg.png);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: 20% 70%;
  }
  .hero video { 
  width: 100%; 
 	height: 77vh; 
  object-fit: cover;
  background:#FFF;
}
header { 
  position: fixed; top: 0; left: 0; width: 100%; padding: 3px 0;
}
header .logo{
  width: 50px;
}
}
@media (max-width: 480px) {
  .slide-menu {
    width: 96vw;
    height: 640px;
    background-size: 75%;
  }
  .header-sns-btn {
    padding: 0 20px 0 60px;
  }
  .header-sns-btn img{
    width:40px;
  }
  .menu-list li {
    margin: .5em 0;
    font-size: 1.1em;
  }
  .menu-list .menu-list-site a{
    padding: 8px 10px;
  }
}
/* Hero */
.hero {
  position: relative;
  display: flex;
  justify-content: center; 
}
.hero video { 
  width: 100%; 
 	height: 100vh; 
  object-fit: cover;
  background:#FFF;
}
.hero .overlay { 
  position: fixed; 
  z-index: 10;
  bottom: 24px; 
  background: rgba(255,255,255,1); 
  border-radius: 50px; 
  display: flex; 
  gap: 16px; 
  text-align: center;
  align-items: center;
  border:1px solid #970702;
}
.hero-menu-info{
  color:#FFF;
  background:#A70B01;
  border-radius: 50px;
  position:relative;
  padding:8px 30px;
}
.hero-menu-info:before{
  border:1px solid #FFF;
  border-radius: 50px;
  width:98%;
  height: 92%;
  top:2%;
  left:0.5%;
  position:absolute;
  content:'';
}
.hero-menu-contact a{
  color:#A70B01;
  padding: 8px 16px 8px 16px; 
}
.hero-access a{
  background:url(img/icon-access.png)no-repeat left center;
  background-size: 14px;
}
.hero-tel a{
  background:url(img/icon-tel.png)no-repeat left center;
  background-size:12px;
}
.hero .overlay a {  
   border-radius: 4px; font-weight: bold; 
}
.hero-menu-contact:last-child a{
  padding-right:60px;
}
@media (min-width: 1025px) {
  .hero-menu-contact{
    margin: 0 60px;
  }
}
@media (max-width: 768px) {
  
  .hero video { 
  width: 100%; 
 	height: 77vh; 
  object-fit: cover;
  background:#FFF;
}
}
@media (max-width: 480px) {
  .hero .overlay{
    gap:8px;
    width: 90%;
    bottom: 10px;
  }
  .hero-menu-contact a{
    padding: 8px 4px 8px 12px;
    font-size:0.9em;
  }
  .hero-menu-info{
    padding: 10px 8px;
    font-size: 0.8em;
  }
  .hero-menu-contact:last-child a{
    padding-right:10px;
  }
  .hero-menu-contact{
    flex: 0 0 22%;
  }
}
/* Intro Section */
.intro { 
  position:relative;
  height:90vh;
  background:#FFF;
  overflow: hidden;
}
.intro .container{

}
.intro h1 { 
  position: absolute;
  top:20%;
  left:35%;
  font-size: 2rem; 
  margin-bottom: 24px;  
}
.intro-text{
  width:54%;
  position: absolute;
  left:40%;
  top:45%;
  max-width:640px;
}
.intro-text p { 
  font-size: 1.125rem; 
  font-weight: 600;
  line-height:2.3rem;
  margin-bottom:20px;
}
.intro .features { 
  
}
.intro-item{
  position:absolute;
}
.intro-item p{
  position:absolute;
  color:#580E04;
  font-size:0.9em;
  border:1px solid #580E04;
  border-radius: 50%;
  padding:20px 30px;
  opacity: 0;
  transform: translate(0, 30%);
  transition: 1.5s;
  background:#FFF;
}
.intro-item p.is-show{
  animation:popup 0.5s cubic-bezier(0.12, 0, 0.39, 0) 0.5s forwards;
}
.intro-item1{
  left: 10%;
  top: 12%;
}
.intro-item1 p{
  left:-35%;
  top:-35%;
}
.intro-item2{
  right: 20%;
  top: 8%;
}
.intro-item2 p{
  right:-60%;
  top:-10%;
}
.intro-item2 p.is-show{
  animation-delay:.5s;
}
.intro-item3{
  left: 10%;
  bottom: 10%;
}
.intro-item3 p{
  right:-60%;
  top:68%;
}
.intro-item4{
  right: 8%;
  bottom: 8%;
}
.intro-item4 p{
  left:-100%;
  top:20%;
}
.intro-item4 p.is-show{
  animation-delay:.5s;
}
.intro-bg-en p{
  display: flex;
  position:absolute;
  z-index: 0;
}
.intro-bg-en1{
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
}
.intro-bg-en2{
  top:40%;
}
.intro-bg-en2 img{
  animation: slider-right 70s linear infinite;
}
@keyframes popup {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotateY(20deg);
    transform: scale(0) rotateY(20deg);
  }
  40% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
  }
  50% {
      -webkit-transform: scale(0.9);
      transform: scale(0.9);
  }
  60% {
      opacity: 1;
      -webkit-transform: scale(1.05);
      transform: scale(1.05);
  }
  70% {
      -webkit-transform: scale(0.95);
      transform: scale(0.95);
  }
  80% {
      -webkit-transform: scale(1.02);
      transform: scale(1.02);
  }
  90% {
      -webkit-transform: scale(0.98) rotateY(0);
      transform: scale(0.98) rotateY(0);
  }
  100% {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}

@media (max-width: 1300px) {
.intro h1 { 
  top:24%;
  font-size: 1.7rem; 
}
}

@media (max-width: 1025px) {
  .intro-item1 img,.intro-item2 img {
    width: 80%;
  }
  .intro h1{
    top: 25%;
  }
  .intro-item2{
    right:5%;
  }
  .intro-item3{
    left: 5%;
    bottom:0;
  }
  .intro-item4{
    right: 4%;
    bottom: 4%;
  }
  .intro-item p{
    padding: 10px 20px;
  }
  .intro-item2 p{
    right: -15%;
    top: -30%;
  }
}
@media (max-width: 768px) {
  .intro h1{
    top: 25%;
    left: 5%;
    font-size: 1.6rem;
  }
  .intro-text{
    left: 5%;
    top: 45%;
    max-width: 100%;
    width: 95%;
  }
  .intro-text p { 
  
  font-weight: 400;
  
 
}
  .intro .features img {
    width: 80%;
  }
  .intro-item1 {
    left: 0;
    top: 6%;
  }
  .intro-item1 p {
    right: -35%;
    top: -25%;
    left: auto;
  }
  .intro-item2 {

    top: 12%;
  }
  .intro-item2 p {
    right: -15%;
    top: -50%;
  }
  .intro-item3 {
    left: 0;
    bottom: 0;
  }
  .intro-item3 p {
    right: -35%;
    top: 50%;
  }
  .intro-item4 {
    right: 0;
    bottom: 8%;
  }
  .intro-bg-en1{
    width: 120%;
    opacity: 0.5;
    top: 30%;
  }
  .intro-bg-en2{
    width: 155%;
    top: 48%;
    opacity: 0.5;
  }
}
@media (max-width: 480px) {
  .intro{
    height: auto;
  }
  .intro .container {
    margin: 150px 0;
  }
  .intro h1{
    position: relative;
    font-size: 1.0rem;
  }
  .intro-text{
    width: 90%;
    position: relative;
  }
  .intro-text p{
    font-size:0.7rem;
    line-height: 1.5;
    font-weight: 400;
  }
  .intro .features img{
    width: 50%;
  }
  .intro-item p{
    font-size: 0.9em;
    padding: 10px;
    line-height: 1rem;
    font-weight: 500;
  }
  .intro-item1 p{
    right: 20%;
    top: -25%;
  }
  .intro-item2 {
    right: -20%;
    top: 10%;
  }
  .intro-item2 p {
    right: 35%;
    top: -60%;
  }
  .intro-item3 p {
    right: 15%;
    top: 50%;
  }
  .intro-item4 {
    right: -22%;
    bottom: 8%;
  }
  .intro-item4 p {
    left: -70%;
    top: 20%;
  }
}
/* Map Section */

.map-section .container { position: relative; }
.map-section .map { width: 100%; height: auto; }
.map-section .map-pin { position: absolute; width: 32px; height: 32px; transform: translate(-50%, -100%); }

.map-section {
  position: relative;
  width: 100%;
  position: relative;
  background: #e3c39b;
  padding: 80px 0;
}
.ttl-bg-left{
  position:absolute;
  left:0;
  top: 0;
  bottom:0;
  margin:auto;
  height: 98%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ttl-bg-left img{
  height: auto;
  max-width: 117px;
}
.map-bg{
    display: flex;
    justify-content: center;
}
.map-bg img {
    width: 868px;
    max-width: 868px;
}
.map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  top: 25%;
  right: 10%;
  width: 30%;
  z-index: 1;
  color:#580E04;
}
.map-overlay h2{
  margin-bottom:16px;
}
.map-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 600px;
  margin: 0 20px;
}

.map-info {
  margin-top: 20px;
  line-height: 1.8;
}

/* Pulsing Marker */
.map-marker {
    position: absolute;
    top: 150px;
    left: 49.5%;
    z-index: 2;
}

.pulse-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFF;
  position: relative;
  z-index: 2;
}

.pulse-icon:before,
.pulse-icon:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #FFF;
  animation: pulse 2s infinite;
  z-index: -1;
}

.pulse-icon:after {
  animation-delay: 0.7s;
}

@keyframes pulse {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

/* Triple circle effect */
.pulse-icon:before {
  animation: pulse 2s infinite;
}

.pulse-icon:after {
  animation: pulse 2s infinite 0.7s;
}

.pulse-icon:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 50%;
  animation: pulse 2s infinite 1.4s;
  z-index: -1;
}
.map-spot-list{
  position:relative;
  margin-top:-50px;
}
.map-spot{
  position:relative;
}
.map-spot-exp{
  position:absolute;
  background:url(img/map-text-bg.png) no-repeat;
  background-size: contain;
  width:220px;
  height:220px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.map-spot-ttl{
  text-align: center;
  margin-bottom:8px;
}
.map-spot-ttl img{
  height: 30px;
}
.map-spot > img{
  border-radius: 16px;
}
.map-spot-list1{
  max-width: 1200px;
  margin: auto;
}
.map-spot-list1,.map-spot-list2{
  justify-content: space-between;
}
.map-spot1{
  flex: 0 0 45%;
}
.map-spot1 .map-spot-exp{
  bottom: 0;
  right: -20%;
}
.map-spot2{
  margin-top:60px;
  flex: 0 0 35%;
}
.map-spot2 .map-spot-exp{
  bottom: -30%;
  right: -10%;
}
.map-spot-list2{
  margin:100px auto 0;
  max-width: 1400px;
}
.map-spot3{
  width: 50%;
  flex:0 0 50%;
}
.map-spot3 .map-spot-exp{
  bottom:-30%;
  left:10%;
}
.map-spot4{
  margin-top:50px;
  width: 35%;
  flex:0 0 35%;
}
.map-spot4 .map-spot-exp{
  bottom: 0;
  left: -15%;
}
@media (max-width: 1400px) {
  .map-spot-exp{
    width: 180px;
    height: 180px;
  }

  .map-spot-ttl img{
    height:20px;
  }
}
@media (max-width: 1288px) {
  .map-spot2 .map-spot-exp{
    right:0;
  }
}
@media (max-width: 1200px) {
  .map-spot-list1{
    max-width: 96%;
  }
  
}
@media (max-width: 1025px) {
  .map-overlay{
    top: 500px;
    width: 50%;
  }
  .map-spot-exp{
    width: 160px;
    height: 160px;
  }
  .map-spot1 .map-spot-exp,.map-spot2 .map-spot-exp{
    right:0;
  }
  .map-spot-list1{
    max-width: 80%;
  }
  .map-spot-list2{
    max-width: 90%;
  }
  .map-spot-list2{
    margin-top:40px;
  }
  .map-spot3 .map-spot-exp {
    bottom: -30%;
    left: 5%;
  }
  .map-spot4 .map-spot-exp {
    bottom: -30%;
    left: -30%;
  }
  .map-spot-text {
    font-size: 0.9em; 
  }
}
@media (max-width: 868px) {
  .map-bg{
    padding-bottom: 60px;
  }
  .map-bg img{
    width: 770px;
    max-width: 770px;
  }
  .map-overlay{
    top: 450px;
    width: 60%;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .map-bg img{
    width: 400px;
    max-width: 400px;
  }
  .map-marker{
    top: 50px;
  }
  .map-content {
    padding: 30px 20px;
    margin: 0 15px;
  }
  .map-overlay{
    top: 240px;
    width: 60%;
    right: 5%;
  }
  .map-overlay h2{
    font-size:18px;
  }
  .map-bg{
    padding-bottom: 90px;
  }
  .map-spot-list .d-flex{
    flex-direction: column;
    margin-top: 30px;
  }
  .map-spot.map-spot1 > img, .map-spot > img, .map-spot.map-spot3 > img{
    max-width: 80%;
  }
  .map-spot.map-spot2 > img,.map-spot.map-spot4 > img{
    margin-left: auto;
    max-width: 60%;
  }
  .map-spot2 .map-spot-exp,.map-spot4 .map-spot-exp {
    bottom: 0;
    right: auto;
    left: 15%;
  }
  .map-spot1 .map-spot-exp,.map-spot3 .map-spot-exp{
    bottom: 0;
    right: 0;
    left: auto;
  }
  .map-spot3{
    margin-left:40px;
    width: 80%;
  }
  .map-spot4{
    margin-right:16px;
    margin-top: 30px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .map-content {
    padding: 20px 15px;
  }
  .map-spot-exp{
    width: 140px;
    height: 140px;
  }
  .map-overlay {
    top: 18%;
    width: 70%;
    right: 10px;
  }
  .map-overlay h2{
    font-size:1.1em;
  }
  .map-overlay p{
    font-size:1.0em;
  }
  .map-bg{
    padding-bottom: 110px;
  }
  .map-spot-list1,.map-spot-list2{
    max-width: 100%;
  }
  .map-spot-text {
    font-size: 0.95em; 
  }
  .map-spot-ttl img {
    height: 15px;
  }
  
  .map-spot.map-spot1 {
    padding-left: 55px;
  }
  .map-spot2{
    margin-top: 30px;
  }
}
@media (max-width: 400px) {
  .map-bg img{
    width: 340px;
    max-width: 340px;
  }
}
/* Tenfusou Section */
.meal { 
  background: #970702;
  position: relative; 
  color: white; 
  padding: 80px 0;  
  overflow: hidden;
}
.meal-wrap{
  position:relative;
}
.meal-text{
  flex: 0 0 43%;
  margin-left: 60px;
}
.meal-ttl{
  margin-bottom: 150px;
  display: inline-block;
}
.meal-ttl h2 { 
  font-size: 130px;
  line-height: 160px; 
}
.meal-ttl span{
  font-size:30px;
  text-align: right;
  display: block;
}
.meal-text p{
  font-size:22px;
}
.meal-img{
  position: relative;
  width: 460px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.meal-img video {
  clip-path: circle(230px at 50% 50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.meal-img img{
  position:absolute;
  left: -8%;
  right:0;
  top:0;
  bottom:0;
  margin:auto;
  width: 115%;
  max-width:115%;
}
.meal-gallery { 
  margin-top:100px;
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 5px; 
}
.meal-gallery .thumb { 
  flex:0 0 18%;
  overflow: hidden; 
}
.meal-gallery .thumb:nth-child(2){
  margin-top:30px;
  transition-delay: 0.5s;
}
.meal-gallery .thumb:nth-child(3){
  margin-top:60px;
  transition-delay: 1.0s;
}
.meal-gallery .thumb:nth-child(4){
  margin-top:90px;
  transition-delay: 1.5s;
}
.meal-gallery .thumb:nth-child(5){
  margin-top:120px;
  transition-delay: 2.0s;
}
.meal .gallery img { width: 100%; height: 100%; object-fit: cover; }
@media screen and (max-width: 1310px) {
  .meal-img video{
    clip-path: circle(200px at 50% 50%);
  }
  .meal-img img{
    width: 100%;
    left: 0;
  }
  .meal-text p{
    font-size: 20px;
  }
  .meal-ttl h2{
    font-size: 110px;
  }

  .meal-text {
    flex: 0 0 40%;
    margin-left: 130px;
  }
}
@media screen and (max-width: 1220px) {
  .meal-ttl{
    margin-bottom:80px;
  }
  .meal-ttl h2{
    font-size: 90px;
    line-height: 120px;
  }
  .meal-ttl span{
    font-size:20px;
  }
  .meal-text p{
    font-size:18px;
  }
}
@media screen and (max-width: 1025px) {
  .meal-ttl h2{
    font-size: 60px;
    line-height: 100px;
  }
  .ttl-bg-left img{
    max-width: 70px;
  }
  .meal-wrap{
    justify-content: space-between;
  }
  .meal-text{
    margin-left: 80px;
  }
  .meal-text p{
    font-size:16px;
  }
  .meal-ttl{
    margin-bottom: 30px;
  }
  .meal-img{
    position: relative;
    width: 360px;
    flex: 0 0 360px;
    right: 0;
    top: 20px;
    margin-right:60px;
  }
  .meal-img video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    object-fit: cover; 
    clip-path: circle(50% at 50% 50%);
  }
  .meal-img img{
    left: -10%;
    max-width: 430px;
    height: 430px;
    width: 430px;
  }
}
@media screen and (max-width: 768px) {
  .meal {
    padding: 60px 0;
  }
  .meal-wrap {
    flex-direction: column;
    align-items: center;
  }
  .meal-img {
    position: relative;
    top: auto;
    right: auto;
    width: 360px;
    height: 360px;
    margin: 30px auto 80px;
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: center; 
  }
  .meal-img img {
    position: absolute;
    width: 430px;
    height: 430px;
    display: block;
    max-width: 430px;
    left: -10%;
  }
  .meal-img video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; 
    clip-path: circle(50% at 50% 50%);
  }
  .meal-text {
    flex: auto;
    margin-left: 0;
    width: 90%;
    padding: 0;
  }
  .meal-ttl {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
  }
  .meal-ttl h2 {
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
  }
  .meal-ttl span {
    font-size: 1rem; 
    text-align: center;
  }
  .meal-text p {
    font-size: 1rem; 
    text-align: center;
    line-height: 1.8;
  }
  .meal-p{
    padding: 20px;
    font-size: 14px;
    line-height: 1.5rem;

  }
  .ttl-bg-left{
      top: 5%;
      height: auto;
      bottom: auto;
      margin: auto;
      display: flex;
      flex-direction: column;
  }
  .ttl-bg-left img{
    max-width: 46px;
  }
  .ttl-bg-left img:first-child{
    margin-bottom:20px;
  }
  .meal-gallery{
        margin-top: 60px;
  }
  .meal-gallery .thumb:nth-child(2){
  margin-top:20px;
  transition-delay: 0.5s;
}
.meal-gallery .thumb:nth-child(3){
  margin-top:40px;
  transition-delay: 1.0s;
}
.meal-gallery .thumb:nth-child(4){
  margin-top:60px;
  transition-delay: 1.5s;
}
.meal-gallery .thumb:nth-child(5){
  margin-top:80px;
  transition-delay: 2.0s;
}
}
@media (max-width: 480px) {
  .meal-gallery{
    gap:6px;
    margin-top: 20px;
  }
  .meal-img{
    margin-bottom:30px;
  }
  .meal-img video {
    width: 300px;
    height: 300px;
    left: 53%;
  }
  .meal-img img{
    width: 345px;
    height: 345px;
    left: 5%;
  }
}
/**/
.shisen{
  background:#FFF;
  padding:80px 0;
  overflow: hidden;
}
.shisen-wrap{
  justify-content: space-between;
}
.shinsen-text-wrap{
  justify-content: space-between;
}
.shisen-ttl {
  display: flex;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
}
.line {
  display: flex;
  flex-direction: column;
}
.shisen-ttl .line span{
  opacity: 0;
  transform: translateY(-10px);
}
.shisen-ttl.is-show .line span {
  animation: fadeInUp 0.5s forwards;
}
.line:first-child{
  margin:20px 20px 0 0;
}

.line:last-child span:nth-child(1) { animation-delay: 0.1s; }
.line:last-child span:nth-child(2) { animation-delay: 0.2s; }
.line:last-child span:nth-child(3) { animation-delay: 0.3s; }
.line:last-child span:nth-child(4) { animation-delay: 0.4s; }
.line:last-child span:nth-child(5) { animation-delay: 0.5s; }
.line:last-child span:nth-child(6) { animation-delay: 0.6s; }
.line:last-child span:nth-child(7) { animation-delay: 0.7s; }
.line:first-child span:nth-child(1) { animation-delay: 0.8s; }
.line:first-child span:nth-child(2) { animation-delay: 0.9s; }
.line:first-child span:nth-child(3) { animation-delay: 1.0s; }
.line:first-child span:nth-child(4) { animation-delay: 1.1s; }
.line:first-child span:nth-child(5) { animation-delay: 1.2s; }
.line:first-child span:nth-child(6) { animation-delay: 1.3s; }
.line:first-child span:nth-child(7) { animation-delay: 1.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.line span em {
  color: #a70b01;
  font-style:normal;
}

.shisen-img{
  position:relative;
  margin-top:30px;
}
.shisen-img-sec {
    max-width: 480px;
}
.shisen-img-sec:first-child{
  margin-left: 40px;
  margin-bottom: 15px;
}
.shisen-img img:last-child{
  margin: 0 40px 0 0;
}
.shisen-img span{
  position:absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.shisen-text{
  flex:0 0 50%;
  position:relative;
}
.shisen-text > p{
  margin:80px 0 0 60px;
  width:80%;
  font-size:20px;
  line-height: 2.0rem;
}
.shisen-text-img{
  position:relative;
  margin-left:-60px;
  flex:0 0 70%;
}

.shisen-text-img span{
    position: absolute;
    left: -26px;
    right: 0;
    top: -32px;
    bottom: 0;
    margin: auto;
    width: 117%;
}
.shisen-text-img span.is-show img{
  animation:26s linear infinite rotation;
  transform-origin: center center;
  display: block;
}
.shisen-ttl{
  justify-self: flex-end;
}
.btn-red{
  text-align: center;
}
.btn-red a,.btn-red span{
  background:url(img/secret-btn.png) no-repeat center;
  background-size:contain;
  width:360px;
  height:90px;
  display: flex;
  justify-content: center;
  align-items: center;
  color:#FFF;
  font-weight: bold;
  margin:30px auto 0;
  cursor: pointer;
}
@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}
@media screen and (max-width: 1025px) {
  .shisen-text-img{
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .shinsen-text-wrap,.shisen-wrap{
    flex-direction: column;
  }
  .shisen-text-img{
    margin:0 auto 60px;
    width: 380px;
    height: 380px;
  }
  .shisen-ttl{
    justify-content: center;
  }
  .shisen-text > p{
    margin: 30px auto;
    width: 90%;
  }
  .shisen-img-sec:first-child img {
    margin: 0 0 0 auto;
  }
  .shisen-img-sec:first-child{
    margin-left: auto;
  }
}
@media screen and (max-width: 480px) {
  .shisen-text-img{
    width: 315px;
    height: 315px;
  }
  .shisen-text > p{
    font-size:14px;
  }
  .shisen-img img{
    width:70%;
  }
  .shisen-ttl{
    font-size:2.0rem;
  }
}
/*charm*/
.charm{
  padding:80px 0;
  position:relative;
  overflow: hidden;
}
.charm-logo{
  position: absolute;
  right: -2%;
  top: 3%;
}
.charm-logo-inner{
  position:relative;
}

.charm-logo-inner span img{
  top: -20%;
  bottom: 0;
  left: -26%;
  position: absolute;
  display: block;
  animation: 26s linear infinite rotation;
  max-width: 150%;
  width: 150%;
}

.charm-container{
  width:800px;
  margin:auto;
  border-radius: 600px;
  padding:120px 0;
  background:#FFF;
  overflow: hidden;
}
.ttl-h3{
  margin:0 0 30px;
}
.ttl-h3 h2,.ttl-h3 p{
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
.charm-sec{
  padding:60px 60px;
}
.charm-bgColor{
  background:rgb(223 191 151 / 20%);
}
.charm-text{
  text-align: center;
}
.charm-text .charm-text-catch{
  color:#A1783E;
  font-size:24px;
}
.charm-text h3{
  font-size:32px;
  margin:30px 0;
}
.charm-time{
  margin:0 auto 30px;
  position:relative;
  padding:8px 0;
}
.charm-time::before,.charm-time::after{
  position:absolute;
  content:'';
  border-top:1px solid #580E04;
  width:40%;
  left:0;
  right:0;
  margin:auto;
}
.charm-time::before{
  top:-8px;
}
.charm-time::after{
  bottom:-8px;
}
.charm-exp{
  width:70%;
  margin:auto;
  font-size:18px;
}
.charm-img{
  margin:30px 0;
}
.charm-bg{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
.charm-bg::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #10394b;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
}

.charm-bg video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  overflow: auto;
}
.modal-content {
  background: white;
  padding: 2em;
  width: 90%;
  max-width: 700px;
  max-height: 94vh; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
  overflow-y: auto;
}
.close-btn {
  position: sticky;
  top: 0;
  font-size: 24px;
  cursor: pointer;
  z-index: 3000;
  left: 100%;
}
.modal-ttl {
  margin-bottom:16px;
}
.modal-ttl p{
  color:#dfbf97;
  font-size:46px;
  font-weight: 700;
}

.modal-exp{
  text-align: center;
  margin-bottom:20px;
}
.modal-img{
  margin:20px 0;
}
.modal-info{
  background:rgba(223,191,151,0.5);
  padding:20px;
  border-radius: 16px;
}
.modal-info:has(+ .modal-info){
  margin-bottom:16px;
}
.modal-info dl{
   display:flex;
   flex-wrap:wrap;
   font-size:0.9em;
}
.modal-info dl:first-child{
  border-right: 1px solid #FFF;
  padding-right:8px;
  margin-right:16px;
}
.modal-info dt{
  flex:0 0 80%;
}
.modal-info dd{
  flex:0 0 20%;
}
.modal-stay-inner{
  margin-bottom:16px;
}
.modal-stay-img-list{
  margin-top:16px;
  flex-wrap:wrap;
  gap:16px;
}
.modal-stay-img{
  flex:0 0 48%;
}
@media screen and (max-width: 1025px) {
  .charm-logo{
    top: 45px;
  }
  .charm-logo img {
    width: 200px;
  }
  .charm-container{
    width:90%;
  }
}
@media screen and (max-width: 768px) {
  .ttl-h3 h2, .ttl-h3 p{
    font-size:1.2rem;
  }
  .charm-logo{
    top: 35px;
  }
  .charm-logo img {
    width: 135px;
  }
  .charm-sec{
    padding:20px;
  }
  .charm-text .charm-text-catch{
    font-size:18px;
  }
  .charm-text h3 {
    font-size: 20px;
    margin: 20px 0;
  }
  .charm-time::before{
    top: -4px;
  }
  .charm-time::after {
    bottom: -4px;
  }
  .modal-stay-img{
    flex:0 0 47%;
  }
  .charm-exp{
    width: 100%;
    text-align: left;
    font-size: 16px;
  }
  .btn-red a, .btn-red span{
    max-width:80%;
    margin: 30px auto 0;
    height: 60px;
  }
}
@media screen and (max-width: 480px) {
  .modal-content{
    padding:1.5em;
    width:94%;
  }
  .modal-info-wrap{
    flex-direction: column;
  }
  .modal-ttl p{
    font-size: 34px;
  }
  .modal-ttl h2{
    font-size:16px;
  }
  .modal-exp > p{
    font-size:0.9em;
  }
  .modal-info dl:first-child{
    border-right: none;
    padding-right: 0;
    margin-right:0;
  }
  .charm-exp{
    font-size:12px;
  }
  .charm-text .charm-text-catch{
    font-size:14px;
  }
  .charm-text h3{
    font-size:16px;
    margin: 16px 0;
  }
}
.slider {
	overflow: hidden;
  background:#FFF;
  padding:40px 0;
}
.slider ul {
	animation: slider-right 80s linear infinite;
	display: flex;
	margin: 0;
	padding: 0;
	width: max-content;
}
.slider ul li {
	list-style: none;
	width: 200vw;
}
.slider img {
	display: block;
	width: 100%;
}
@keyframes slider-right {
	from {
		transform: translateX(0%);
	}
	to {
		transform: translateX(-50%);
	}
}
@media screen and (max-width: 768px) {
  .slider ul li{
    width: 280vw;
  }
}
/*お客様の声*/
.customer{
  background:#FFF;
  padding:80px 0;
}

.instagram{
  background:#FFF;
  padding:80px 0;
}
.instagram .ttl-h3{
  background:url(img/ttl-insta.png) no-repeat top center;
  padding-top:90px;
}
@media screen and (max-width: 768px) {
  .instagram .ttl-h3{
    background-size:50px;
    padding-top:60px;
  }
}
/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}
.contact-form-wrapper {
  background-color: #fff;
  padding: 40px;
  margin-top:40px;
}
.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-row {
  display: flex;
  gap: 20px;
  margin: 0 -10px;
}
.form-row .form-group {
  flex: 1;
  padding: 0 10px;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  color: #444;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background:rgba(223,191,151,0.3);
  border:none;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.required {
  background: #970702;
  color:#FFF;
  font-size: 0.9em;
  margin-right: 5px;
  font-weight: bold;
  padding:1px 3px;
}

.form-submit {
  margin-top: 30px;
  text-align: center;
}

.btn-submit {
  background: url(img/secret-btn.png) no-repeat center;
  width: 360px;
  height: 90px;
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  transition: all 0.3s ease;
  background-size: contain;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .contact-container {
    gap: 30px;
  }
  
  .contact-info,
  .contact-form-wrapper {
    padding: 30px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
    margin: 0;
  }
  
  .form-row .half {
    flex: 1 1 100%;
    width: 100%;
    padding: 0;
  }
  
  .form-row .form-group {
    padding: 0 0 20px;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper{
    margin-top:0;
  }
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-submit {
    margin-top: 20px;
  }
  
  .btn-submit {
    width: 60%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9rem;
  
  }
  
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-info,
  .contact-form-wrapper {
    padding: 20px 20px;
  }
  
  .contact-method h3 {
    font-size: 1rem;
  }
  
  .contact-detail {
    font-size: 0.9rem;
  }
  
  .form-label,
  .checkbox-label {
    font-size: 0.9rem;
  }
  
  .form-control {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .hours-list span {
    font-size: 0.9rem;
  }
}

/* Footer Styles */
.site-footer {
  background:#FFF url(img/img-bg.png) no-repeat center;
  background-size:cover;
  font-size: 0.95rem;
  line-height: 1.6;
  padding:100px 20px;
}

.footer-wrap {
  justify-content: space-between;
  align-items: flex-end;
}
.footer-logo {
  margin-bottom: 20px;
}

.footer-copyright{
  margin-top:60px;
}
.footer-copyright p:first-child{
  font-weight: bold;
}
.footer-contact{
  flex:0 0 46%;
}
.footer-description {
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-social {
  gap: 20px;
  margin-top: 25px;
  flex-wrap:wrap;
  justify-content: center;
}

.social-link {
  flex:0 0 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 42px;
  background-color: #FFF;
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease;
  border:1px solid #580E04;
  font-weight: bold;
}
.btn-fb{
  color:#3A5A99;
}
.btn-council{
  color:#A1783E;
}
.btn-x{
  color:#000;
}
.btn-youtube{
  color:#A70B01;
}
.btn-instagram{
  color:#B928B0;
}
.btn-blog{
  color:#96ABD2;
}
.social-link:hover {
  background-color: #8B4513;
  transform: translateY(-3px);
}

.footer-btn-tel .social-link{
  width: 300px;
}
.footer-btn-tel .social-link img{
  height: 70%;
  width: auto;
  margin-right:8px;
}
.footer-logo{
    width: 50%;
}    

@media (max-width: 1024px) {
  .social-link{
    flex: 0 0 46%;
  }
}
@media (max-width: 768px) {
  .site-footer{
    background: #FFF;
    padding:0;
  }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-info{
    order:1;
    margin-top:30px;
    width:100%;
  }
  .footer-contact{
    order:0;
  }
  .social-link{
    flex:0 0 45%;
    font-size: 14px;
  }
  .footer-about-inner{
    padding-left: 25%;
    margin-bottom: 95px;
  }
  .footer-logo{
    position: absolute;
    width: 20%;
    left:5px;
  }
  .footer-copyright {
    margin-top: -78px;
    background: #FFF url(img/img-bg.png) no-repeat center;
    padding-left: 25%;
    font-size:12px;
    padding-bottom: 150px;
    background-size: cover;
  }
}

@media (max-width: 480px) {
  .footer-description{
    font-size: 12px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .map-section .map { height: auto; }
}

.top-instagram {
    margin-bottom: -110px;
    position: relative;
}
@media (max-width:599px) {
.top-instagram {
    margin-bottom: -240px;
    position: relative;
}
}
.pc-insta-container {
    display: none;
}
@media (min-width:600px) {
    .pc-insta-container {
        display: block;
    }
    .sp-insta-container {
        display: none;
    }
}

    .insta-cover {
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 320px;
    display: block;
}


