/* 仮公開中の設定 */
.header-inner-01 {
    display: none !important;
}


p,div,a,li{
  color: #333333;
 font-family: "Noto Sans JP", sans-serif;
font-weight:400;
font-size:16.5px;
    line-height: 1.8;
box-sizing: border-box;
margin: 0;
padding: 0;
}
@media screen and (max-width: 600px) {
	p,div,a,li{
font-size:16px;		
	}
}
.nitalago,
.nitalago a,
.nitalago li,
.nitalago span {
  font-family: nitalago-ruika, sans-serif;
  font-weight: 100;
  font-style: normal;
}


.noto-sans-jp-uniquifier {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.round {
  font-family: "all-round-gothic", sans-serif;
  font-weight: 700;
}

.bauhaus{
  font-family: 'Bauhaus 93', sans-serif;
}

h2{
  font-size: 25px;
  font-family: nitalago-ruika, sans-serif;
  font-style: normal;
  font-weight: 100;
}

.section-mark-en{
  font-family: "all-round-gothic", sans-serif;
}

.sp{
  display:none;
}

/* ハンバーガーメニュー展開時の背景制御 */
body.fixed, html.fixed {
  overflow: hidden;
  height: 100%;
  position: fixed;
  width: 100%;
}


/* header */
/* ヘッダー全体 */
.sp-nav{
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-size: 17px;
}

/* ナビ本体 */
.header-logo-01{
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 26px;
}

.header-logo-01 a{
  display: block;
  width: 100%;
  height: 100%;
    border-radius: 26px;
  transition: all 0.3s ease;
    max-width: 140px;	
}
.header-logo-01 a img {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 25px 0px;
}

.header-inner-01 {
  position: absolute;
  top: 16px;
  right: 40px;
  height: 80px;
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 20px;
  padding: 0 20px;
  box-sizing: border-box;
  pointer-events: all; /* ヘッダー内は操作可能 */
  background-color: #fff;
}

/* ナビメニュー */
header .header-nav ul {
  display: flex;
  gap: 42px;
  list-style: none;
  font-size: clamp(0.875rem, 0.75rem + 0.26vw, 1.063rem);
  align-items: center;
}

.header-nav ul li{
  position: relative;
}

.header-nav ul li:nth-child(-n+3)::before{
    position: absolute;
    content: "";
    background-image: url(../img/common/nav-line.png);
    width: 2px;
    height: 18px;
    top: 0;
    right: -21px;
}

.header-nav li a {
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.follow-nav .header-logo a{
    transition: all 0.3s ease;
}

.header-nav li a:hover,
.header-logo-01 a:hover,
.follow-nav .header-logo a:hover{
  opacity: 0.7;
}


/* ご予約ボタン */
.header-btn {
  width: 190px;
  height: 50px;
  background: #36aba4;
  border-radius: 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
   transition: background-color 0.3s ease, transform 0.3s ease;
}

.header-btn a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-left: 30px;
}

.header-btn a::before {
  content: "";
  background-image: url(../img/common/carender.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
/* 追従メニュー */
#followNav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

#followNav.show {
  transform: translateY(0);
}

.follow-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  line-height: 95px;
  background-color: #ffffff;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#followNav .header-logo {
    position: absolute;
    top:7px;
	left: 20px;
}

#followNav .header-logo a img {
	display: block;
    width: 100%;
    height: auto;
    background-color:transparent;
    padding: 0;
}

.follow-nav .header-inner{
  width: 100%;
	top: 8px;
	right:0;
  display: flex;
  justify-content: end;
  border-radius: 20px;
  padding: 0 20px;
  box-sizing: border-box;
  pointer-events: all;
}

.follow-nav .header-nav ul {
  display: flex;
  gap: 42px;
  list-style: none;
  font-size: clamp(0.813rem, 0.645rem + 0.35vw, 1.063rem);
  align-items: center;
    margin-top: 20px;
}

.follow-nav .header-nav ul li:nth-child(-n+3)::before {
    position: absolute;
    content: "";
    background-image: url(../img/common/nav-line.png);
    width: 2px;
    height: 18px;
    top: 5px;
    right: -21px;
}

/* ✅ ハンバーガー初期非表示 */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  border-radius: 2px;
}

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

  header .header-logo {
    padding: 0;
  }

.header-logo-01 {
    position: absolute;
}

.header-logo-01 a img {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }

.header-inner-01 {
    position: absolute;
    top: 16px;
    right: 15px;
    height: 60px;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 20px;
    padding: 0 20px;
    box-sizing: border-box;
    pointer-events: all;
}

header .header-nav ul {
    display: flex;
    gap: 24px;}

.header-btn {
    width: 160px;
    height: 40px;
    background: #36aba4;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

}

@media screen and (max-width: 900px) {
header {
  padding-right: 0;
}

header .header-logo {
    position: absolute;
    top: -75px;
    left: -57px;
    border-radius: 26px;
  }

header .header-inner {
  background-color:  transparent;
}

  .pc-nav {
    display: none;
  }
	.header-inner-01{
	background-color: #e2f3fb;
	}
  .sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #e9e7d9;
    z-index: 999;
    padding: 100px 25px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .sp-nav.active {
    transform: translateX(0);
  }

  .sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 15px;
    gap: 0;
  }

  .sp-nav ul li {
    border-bottom: 1px #bdbb8e dashed;
    padding: 20px 25px;
    text-align: left;
    position: relative;
  }

  .sp-nav ul li:last-child{
    border-bottom: none;
  }

  .sp-nav ul li::after {
    content: "";
    position: absolute;
    background-image: url(../img/common/sp-nav.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    right: 25px;
    top: 26px;
  }

  .sp-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }

  .sp-nav .button {
    position: relative;
    margin: 30px auto 0;
    padding-left: 24px;
    display: block;
    width: 230px;
    height: 50px;
    background-color: #37aba4;
    color: #fff;
    border-radius: 5px;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
  }

  .sp-nav .button::before {
    content: "";
    position: absolute;
    background-image: url(../img/common/carender.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none;
    width: 28px;
    height: 28px;
    top: 11px;
    left: 28px;
    transform: scale(0.8);
  }

  /* ハンバーガー */
  .hamburger {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  top: 50px;
  right: 46px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1000;
  border-radius: 2px;
  transition: transform 0.4s ease, opacity 0.4s ease, width 0.4s ease;
  transform-origin: center;
}

.hamburger-box{
  position:fixed ;
  background-color: #36aba5;
  top: 30px;
  right: 31px;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  z-index: -1;
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background-color: #FFF;
  transition: all 0.4s ease;
}

.hamburger >span:nth-last-of-type(1){
  width: 30px;
  }

.hamburger >span:nth-last-of-type(2){
  width: 30px;
  }

.hamburger >span:nth-last-of-type(3){
  width: 30px;
  }

  .hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  width: 30px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  width: 30px;
}
}
@media screen and (max-width: 600px) {
	.header-logo-01 a img{
        max-width: 100px;	
		padding: 15px 15px;
	}	
	.hamburger{
	right: 30px;	
	}
	.hamburger-box{
	 right: 15px;	
	}
}
@media screen and (max-width: 360px) {
  .hamburger{
    top: 40px;
    right: 36px;
  }
  .hamburger-box {
    top: 20px;
    right: 21px;
  }
}



/* footer */
footer{
  width: 100%;
  text-align: center;
}

footer .footer-inner {
    background-color: #3178b1;
    display: flex;
    justify-content: center;
    padding: 5px;
}

footer p{
    font-size: 15px;
    color: #fff;
}

footer a:hover{
  opacity:0.8;
}

@media screen and (max-width: 600px) {
.about .section-mark-en,
.need .section-mark-en,
.feature .section-mark-en,
.photo .section-mark-en,
.access .section-mark-en,
.reserve .section-mark-en {
    font-size: clamp(20px, 12vw, 60px);
}
    .photo h2 {
        font-size: 18px;
    }
	.gallery-item img{
    max-width: 200px;		
	}
	.photo-gallery-track{
	        gap: 0px;	
	}
	.access .map-wrapper{
	    width: 100%;
	
	}
    .access .img-wrap {
        width: 100%;
    }
}