@charset "utf-8";

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  padding-top: 80px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ==========================================================================
  共通設定
========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.35;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  position: relative;
  color: #887663 !important;
}

.section-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  background: #ffda22;
  margin: 10px auto 16px;
}

.news .section-title::after {
  margin: 0;
  margin-bottom: 32px;
}

.section-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  } 
  .section-title {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media (max-width: 768px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* ==========================================================================
  Loading Screen
========================================================================== */

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #eaf0f5 0%, #d0dfe6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  text-align: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #e6ddd0;
  border-top: 3px solid #264399;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loading-spinner p {
  font-size: 1.1rem;
  color: #264399;
  font-weight: 500;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
  ヘッダー
========================================================================== */

header {
  background: #264399;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-bottom: 1px solid #264399;
  transition: box-shadow 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.logo-text small {
  font-size: 15px;
}

.language-nav {
  color: #887663;
  font-size: 14px;
  line-height: 1.9;
}

.language-nav a {
  text-decoration: none;
  padding: 1.5px 8px;
  border-radius: 5px;
  background: #fff;
}

.language-nav a:hover {
  background: #887663;
  color: #fff;
}

.language-nav.active {
  background: #887663;
  color: white;
}

nav ul {
  display: flex;
  gap: 24px;
}

nav a {
  color: #fff;
  font-weight: bold;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: #ffda22;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover {
  color: #ffee9b;
}

nav a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 15px;
  }
  .logo-text strong {
    font-size: 1.2rem;
  }
  .logo-text small {
    font-size: 0.8rem;
  }    
  nav ul {
    display: none;
  }
  nav ul li a {
    color: #264399 !important;
  }
  nav ul li a:hover {
    color: #1a2f6f;
  }
}

@media (max-width: 480px) {
  .logo-text {
    max-width: 215px;
  } 
}

/* ========================================
  メインコンテンツ
======================================== */
.main-content {
  min-height: calc(100vh - 400px);
}
  
/* ========================================
   メインビジュアルスライダー
======================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
  background-color: #000;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide1.active {
  opacity: 1;
  z-index: 2;
}

.slide1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-caption {
  position: absolute;
  bottom: 80px;
  left: 50%;
  font-size: 28px;
  text-align: center;
  color: #fff;
  transform: translateX(-50%);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.slide-caption h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
  animation: fadeInUp 0.8s ease-out;
}

.slide-caption p {
  font-size: 1.3rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スライダーコントロールボタン */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: none;
  font-size: 3rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  line-height: 1;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: rgba(44, 90, 160, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

/* インジケーター */
.slider-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.indicator.active {
  background-color: #fff;
  border-color: #2c5aa0;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .hero-slider {
    height: 400px;
  }
  .slider-container {
    height: 400px;
  }
  .slide-caption {
    bottom: 60px;
    font-size: 22px;
  }
  .slide-caption h2 {
    font-size: 1.8rem;
  }
  .slide-caption p {
    font-size: 1rem;
  }
  .slider-prev,
  .slider-next {
    width: 45px;
    height: 45px;
    font-size: 2rem;
  }
  .slider-prev {
    left: 10px;
  }
  .slider-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 300px;
  }
  .slider-container {
    height: 300px;
  }
  .slide-caption {
    bottom: 40px;
    font-size: 19px;
  }
  .slide-caption h2 {
    font-size: 1.4rem;
  }
  .slide-caption p {
    font-size: 0.9rem;
  }
  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
  .indicator {
    width: 10px;
    height: 10px;
  }
  .slider-indicators {
    bottom: 20px;
    gap: 10px;
  }
}

/* ==========================================================================
  YouTube
========================================================================== */
  
.movie {
  padding-top: 120px;
  background: #faf7f3;
}

.movie-grid {
  max-width: 600px;
  margin: 0 auto;
}

.movie-item {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9の比率 */
  height: 0;
}

.movie-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {  
  .movie {
    padding-top: 80px;
  }
}

/* ==========================================================================
  お知らせ
========================================================================== */

.news {
  padding: 80px 0;
  background: #faf7f3;
}

.news h2 {
  text-align: left;
  margin-bottom: 10px;
}

.news-content {
  padding: 24px;
}

.news-contact li {
  margin-top: 16px;
  padding:0 20px 16px;
  border-bottom: 2px dotted #887663;
  max-width: 1100px;
}

.news-contact dt {
  float: left;
  width: 200px;
  padding: 0 10px 0 0;
  box-sizing: border-box;
  font-weight: bold;
}

.news-contact dd {
  text-align: left;
}

@media (max-width: 768px) {
  .news {
    padding: 60px 0;
  }
  .news-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .news-contact li {
    margin-top: 8px;
    padding: 0 8px 8px;
  }
  .news-contact dt {
    float: none;
    text-align: left;
    padding-bottom: 3px;
  }
}  

@media (max-width: 480px) {
  .news {
    padding: 40px 0;
  }
}

/* ==========================================================================
  会社情報
========================================================================== */

.about {
  padding-top: 180px;
  background: #faf7f3;
  padding-bottom: 1px;
}

.about-comment {
  padding: 60px 40px;
  color: #413e3c;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-background {
  background: url(img/about-img-1.jpg) no-repeat fixed;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* プロフィール */

.profile {
  padding-top: 1px;
  background: #faf7f3;
}

.profile-item {
  max-width: 960px;  
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 80px 48px 48px;
  margin: 180px auto 0;
  background: #fff;   
}

.profile-name {
  text-align: center;
  margin-bottom: 80px;
}

.profile h2 {
  font-size: 36px;
  color: #887663;
  margin-bottom: 10px;
  border-bottom: 3px solid #ffda22;
  display: inline-block;
  padding-bottom: 5px;
}

.profile-flex {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}

.profile h3 {
  font-size: 30px;
}

.profile h5 {
  font-size: 18px;
  margin-top: 8px;
}

.profile-left {
  width: 75%;
}

.profile-flex img {
  margin-top: 8px;
  margin-bottom: 8px;
}

.profile-work {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

/* 会社情報 */
.company {
  padding-top: 100px;
  padding-bottom: 40px;
  background: #faf7f3;
}

.company2 {
  padding: 20px 0;
  background: #faf7f3;    
}      

.company img,.company2 img {
  margin: 0 auto;
}

.company-info {
  max-width: 900px;
  margin: 40px auto;
  border-top: 1px solid #ddd;
  font-size: 1rem;
  line-height: 1.7;
}

.company-row {
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 1em 0;
}

.company-label {
  width: 200px; /* 左の固定幅 */
  font-weight: 600;
  flex-shrink: 0; /* 幅を固定 */
  color: #264399;
}

.company-content {
  flex: 1;
  color: #222;
  word-break: break-word; /* 長文で折り返し */
}

@media (max-width: 768px) {
  .about {
    padding-top: 120px;
  }
  .about-comment {
    padding: 40px;
    text-align: left;
  }
  .profile {
    padding-top: 20px;
  }
  .profile-item {
    padding: 32px 24px 24px;
    margin: 40px auto 0;   
  }
  .profile-flex {
    flex-direction: column-reverse; 
    gap: 16px;
    margin-bottom: 0;
  }
  .profile-left {
    width: 100%;
  }
  .profile-work {
    flex-direction: column;
    gap: 8px;
  }
  .profile h2 {
    font-size: 26px;  
  }
  .profile-name {
    margin-bottom: 16px;
  }
  .profile h3 {
    font-size: 24px;
  }
  .profile-flex img {
    margin:0 auto;
    max-width: 300px;
  }
  .company {
    padding-top: 20px;
    padding-bottom: 8px;
  }
  .company2 {
    padding-bottom: 24px;
  }    
  .company-row {
    flex-direction: column;
    padding: 0.8em 0;
  }
  .company-label {
    width: 100%;
    margin-bottom: 0.3em;
    font-weight: bold;
  }
  .company-label::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #F3C157;
  }
  .company-content {
    width: 100%;
  }
}

/* ==========================================================================
  ゲストハウス
========================================================================== */

.gh-top {
  position: relative;
  width: 100%;
  height: 50vh; /* 高さは画面の60%に */
  min-height: 300px;
  background-image: url("img/top-hero-img-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* テキストを右寄せ */
  padding: 0 5%;
  margin-top: 75px;
}

.gh-title {
  color: #fff;
  font-size: 4rem;
  text-align: right;
  line-height: 1.2;
}

.gh-title span {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 0.3em;
}

.gh {
  background-color: #faf7f3;
  padding: 80px 0;
  margin: 0 auto;
}

.gh-photo {
  max-width: 906px;
  margin: 0 auto;
}

.gh-grid {
  display: flex;
  flex-wrap: wrap;
  gap:40px;
  margin:0 auto 60px;
}

.gh-grid > div {
  width: calc(50% - 20px); /* 2列固定（gapの半分を引く） */
  text-align: center;
  min-width: 330px;
}

.gh-item {
  flex-direction: column;
  margin-bottom: 16px;
}

.gh-grid img {
  width: 100%;
  height: auto;
}

.gh-info {
  background: #fff;
  padding: 48px 32px;
  border-radius: 16px;
  max-width: 900px;
  margin: 60px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.gh-info h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #264399;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.gh-info h2 small {
  font-size: 0.7em;
}

.gh-price h3 {
  font-size: 1.4rem;
  color: #264399;
  margin-bottom: 0.5em;
  border-bottom: 3px solid #ffda22;
  display: inline-block;
  padding-bottom: 0.2em;
}

.gh-price p {
  line-height: 1.9;
  color: #333;
  margin-bottom: 1.1em;
}

/* テーブル（料金表） */
.gh-price table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.8em;
}

.gh-price th, .gh-price td {
  border: 1px solid #9c876f;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

.gh-price th {
  background: #887663;
  font-weight: bold;
  color: #fff;
}

.gh-note {
  font-size: 0.9em;
  text-align: center;
}

.gh-rule {
  border: 1px solid #9c876f;
  padding: 40px 40px 16px;
  margin-top: 40px;
}

.gh-txt {
  border-bottom: 1px solid #887663;
  margin-bottom: 20px;
}

.gh-reserve {
  background: linear-gradient(45deg, #887663, #b39a7f);
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 24px auto 16px;
  max-width: 300px;
  display: block;
}

.gh-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.gh-rp {
  text-align: center;
}

@media (max-width: 768px) {
  .gh-top {
    height: 40vh;
    justify-content: center;
    text-align: center;
    padding: 0 2em;
  }
  .gh-title {
    font-size: 2rem;
  }
  .gh-title span {
    display: block;
    font-size: 1rem;
    text-align: center;    
  }
  .gh {
    padding: 40px 0;
  }
  .gh-grid{
    gap: 16px;
    justify-items: center;
    flex-direction: column;
    align-items: center;  
  }
  .gh-grid > div {
    width: 100%;
  }
  .gh-info {
    margin: 24px auto;
    padding: 24px 20px;
  }
  .gh-info h2 {
    font-size: 1.3em;
  }
  .gh-info h2 small {
    font-size: 0.75em;
  }
  .gh-price table {
    font-size: 14px;
  }
  .gh-price h3 {
    font-size: 1.2em;
  }
  .gh-price th, .gh-price td {
    padding: 6px;
  }
  .gh-note {
    text-align: left;
  }
  .gh-rule {
    padding: 24px;
  }
  .gh-reserve {
    margin: 16px auto;      
  }
}

/* ==========================================================================
  Googleカレンダー
========================================================================== */

.calendar-wrapper {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px; /* iframe周囲に少し余白を取る */
}

.calendar-frame {
  display: block;
  width: 100%;
  min-height: 500px;
  border: none;
  background-color: #faf8f4;
}

@media (max-width: 599px) {
  .calendar-wrapper {
    padding: 16px 0 0;
  }
}

@media (max-width: 480px) {
  .calendar-frame {
    min-height: 400px;
  }
}

/* ==========================================================================
  レストラン
========================================================================== */

.restaurant-top {
  position: relative;
  width: 100%;
  height: 50vh; /* 高さは画面の60%に */
  min-height: 300px;
  background-image: url("img/restaurant-top.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* テキストを右寄せ */
  padding: 0 5%;
  margin-top: 75px;
}

.restaurant-title {
  color: #fff;
  font-size: 4rem;
  text-align: right;
  line-height: 1.2;
}

.restaurant-title span {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 0.3em;
}

.restaurant {
  max-width: 960px;
  padding: 80px 0;
  margin: 0 auto;
}

.food-grid {
  display: flex;
  flex-wrap: wrap;
  gap:40px;
  margin:0 auto 60px;
}

.food-grid > div {
  width: calc(50% - 20px); /* 2列固定（gapの半分を引く） */
  text-align: center;
  min-width: 330px;
}

.food-item {
  flex-direction: column;
  margin-bottom: 16px;
}

.food-grid img {
  width: 100%;
  height: auto;
}

.food-txt {
  margin-top: 8px;
}

.menu-title{
  font-size:1.3em;
  font-weight:700;
  margin-bottom:12px;
  border-left:4px solid #264399;
  padding-left:10px;
}

.menu-list{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom: 40px;
  background-color: #faf7f3;
}

.menu-list2{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom: 10px;
  background-color: #faf7f3;
}

.menu-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 20px;
}

.menu-item .name{
  font-size:18px;
  line-height:1.2;
}

.menu-item .price{
  font-size:20px;
  font-weight:700;
  min-width:80px;
  text-align:right;
}

.menu-list .menu-item,.menu-list2 .menu-item{
  border-bottom:1px dashed #887663;
}

.menu-memo {
  font-size:13px;
}

@media (max-width: 768px) {
  .restaurant-top {
    height: 40vh;
    justify-content: center; /* スマホでは中央寄せ */
    text-align: center;
    padding: 0 2rem;
  }
  .restaurant-title {
    font-size: 2rem;
  }
  .restaurant-title span {
    display: block;
    font-size: 1rem;
    text-align: center;    
  }
  .restaurant {
    padding: 40px 0;
  }
  .food-grid{
    gap: 16px;
    justify-items: center;
    flex-direction: column;
    align-items: center;  
  }
  .food-grid > div {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .menu-item .name,.menu-item .price{
    font-size: 1em;
  }  
}

/* ==========================================================================
  スパ・岩盤浴
========================================================================== */

.spa-top {
  position: relative;
  width: 100%;
  height: 50vh; /* 高さは画面の60%に */
  min-height: 300px;
  background-image: url("img/top-hero-img-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* テキストを右寄せ */
  padding: 0 5%;
  margin-top: 75px;
}

.spa-title {
  color: #fff;
  font-size: 4rem;
  text-align: right;
  line-height: 1.2;
}

.spa-title span {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 0.3em;
}

.spa {
  background-color: #faf7f3;
  padding: 80px 0;
  margin: 0 auto;
}

.spa-photo {
  max-width: 906px;
  margin: 0 auto;
}

.spa-grid {
  display: flex;
  flex-wrap: wrap;
  gap:40px;
  margin:0 auto 60px;
}

.spa-grid > div {
  width: calc(50% - 20px); /* 2列固定（gapの半分を引く） */
  text-align: center;
  min-width: 330px;
}

.spa-item {
  flex-direction: column;
  margin-bottom: 16px;
}

.spa-grid img {
  width: 100%;
  height: auto;
}

.spa-info {
  background: #fff;
  padding: 48px 32px;
  border-radius: 16px;
  max-width: 900px;
  margin: 60px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.spa-info h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #264399;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.spa-info h2 small {
  font-size: 0.7em;
}

.spa-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 1.5em;
  line-height: 1.7;
}

.spa-highlight {
  text-align: center;
  background: #ffbdbd;
  border-left: 5px solid #ff4747;
  padding: 0.8em;
  font-weight: 600;
  color: #333;
  margin-bottom: 2em;
}

.spa-feature h3,
.spa-time h3,
.spa-price h3,
.spa-rental h3,
.spa-facility h3 {
  font-size: 1.4rem;
  color: #264399;
  margin-bottom: 0.5em;
  border-bottom: 3px solid #ffda22;
  display: inline-block;
  padding-bottom: 0.2em;
}

.spa-feature p,
.spa-time p,
.spa-price p,
.spa-rental p,
.spa-facility p {
  line-height: 1.9;
  color: #333;
  margin-bottom: 1.2em;
}

.spa-p {
  color: #d71b1b;
  font-size: 1.2em;
}

/* テーブル（料金表） */
.spa-price table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.8em;
}
.spa-price th, .spa-price td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.spa-price th {
  background: #ffee9b;
  font-weight: bold;
  color: #264399;
}
.spa-note {
  font-size: 0.9em;
  color: #666;
}

/* レンタル・設備 */
.spa-rental ul,
.spa-facility ul {
  margin-left: 1em;
  margin-bottom: 1em;
}
.spa-rental li,
.spa-facility li {
  margin-bottom: 0.4em;
  list-style: disc;
  color: #333;
}

/* フッター文 */
.spa-footer {
  text-align: center;
  font-weight: 600;
  color: #264399;
  margin-top: 2em;
  font-size: 1.1em;
}

@media (max-width: 768px) {
  .spa-top {
    height: 40vh;
    justify-content: center; /* スマホでは中央寄せ */
    text-align: center;
    padding: 0 2em;
  }
  .spa-title {
    font-size: 2rem;
  }
  .spa-title span {
    display: block;
    font-size: 1rem;
    text-align: center;    
  }
  .spa {
    padding: 40px 0;
  }
  .spa-grid{
    gap: 16px;
    justify-items: center;
    flex-direction: column;
    align-items: center;  
  }
  .spa-grid > div {
    width: 100%;
  }
  .spa-info {
    margin: 24px auto;
    padding: 24px 20px;
  }
  .spa-info h2 {
    font-size: 1.3em;
  }
  .spa-info h2 small {
    font-size: 0.75em;
  }
  .spa-feature h3,
  .spa-time h3,
  .spa-price h3,
  .spa-rental h3,
  .spa-facility h3 {
    font-size: 1.2em;
  }
  .spa-footer {
    margin-top: 1em;
    font-size: 1em;
  }
}

/* ==========================================================================
  カフェ＆バー
========================================================================== */

.cb-top {
  position: relative;
  width: 100%;
  height: 50vh; /* 高さは画面の60%に */
  min-height: 300px;
  background-image: url("img/cb-top3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* テキストを左寄せ */
  padding: 0 5%;
  margin-top: 75px;
}

.cb-title {
  color: #fff;
  font-size: 4rem;
  text-align: right;
  line-height: 1.2;
}

.cb-title span {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 0.3em;
}

.cb {
  max-width: 960px;
  padding: 80px 0;
  margin: 0 auto;
}

.cb-grid {
  display: flex;
  flex-wrap: wrap;
  gap:40px;
  margin:0 auto 60px;
}

.cb-grid > div {
  width: calc(50% - 20px); /* 2列固定（gapの半分を引く） */
  text-align: center;
  min-width: 330px;
}

.cb-item {
  flex-direction: column;
  margin-bottom: 16px;
}

.cb-grid img {
  width: 100%;
  height: auto;
}

.cb-txt {
  margin-top: 8px;
}

.menu-title{
  font-size:1.3em;
  font-weight:700;
  margin-bottom:12px;
  border-left:4px solid #264399;
  padding-left:10px;
}

.menu-list2{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom: 10px;
  background-color: #faf7f3;
}

.menu-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 20px;
  border-bottom:2px dotted #887663;
}

.menu-item .name{
  font-size:18px;
  line-height:1.2;
}

.menu-item .price{
  font-size:20px;
  font-weight:700;
  min-width:80px;
  text-align:right;
}

.menu-list2 .menu-item{
  border-bottom:1px dashed #887663;
}

.menu-memo {
  font-size:13px;
}

@media (max-width: 768px) {
  .cb-top {
    height: 40vh;
    justify-content: center; /* スマホでは中央寄せ */
    text-align: center;
    padding: 0 2rem;
  }
  .cb-title {
    font-size: 2rem;
  }
  .cb-title span {
    display: block;
    font-size: 1rem;
    text-align: center;    
  }
  .cb {
    padding: 40px 0;
  }
  .cb-grid{
    gap: 16px;
    justify-items: center;
    flex-direction: column;
    align-items: center;  
  }
  .cb-grid > div {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .menu-item .name,.menu-item .price{
    font-size: 1em;
  }  
}

/* ==========================================================================
  グロリアグループ紹介
========================================================================== */

.group {
  padding: 180px 0 100px;
}

.group h2 {
  text-align: center;
  margin-bottom: 10px;
}

.group-contact {
  margin-top: 15px;
  padding-bottom:15px;
  border-bottom: 4px dotted #7A5230;
  width: 1100px;
  max-width: 100%;
}

.group-contact p {
  display: block;
  text-align: left;
}

.group-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0;
  flex-wrap: wrap;
  gap: 20px;
}

.group-all-link {
  color: #8B4513;
  font-size: 0.95rem;
  padding: 10px 25px;
  border: 2px solid #8B4513;
  border-radius: 25px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.group-all-link:hover {
  background: #8B4513;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.group-item {
  background: #faf7f3;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 4px solid #887663;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.group-item:hover {
  transform: translateY(-5px);
  border-left-color: #5b4d3d;
  border-left-width: 6px;
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.1);
}

.group-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.group-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.group-item:hover .news-image img {
  transform: scale(1.05);
}

.group-label {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(21, 48, 187, 0.8);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.group-content {
  padding: 25px;
}

.group-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.group-excerpt {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.group-tags {
  margin-top: 5px;
}

.tag {
  background: #264399;
  color: white;
  padding: 3px 12px;
  border-radius: 12px;
  margin-right: 5px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* カルーセルスライダー - クロスフェード版 */
.carousel {
  position: relative;
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.slides2,
.slides {
  position: relative;
  width: 100%;
  height: 300px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 2枚スライド用アニメーション */
.slides2 .slide:nth-child(1) {
  animation: fadeSlide2-1 10s infinite;
}

.slides2 .slide:nth-child(2) {
  animation: fadeSlide2-2 10s infinite;
}

@keyframes fadeSlide2-1 {
  0%   { opacity: 1; }
  35%  { opacity: 1; }
  50%  { opacity: 0; }
  85%  { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeSlide2-2 {
  0%   { opacity: 0; }
  35%  { opacity: 0; }
  50%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; }
}

/* 3枚スライド用アニメーション */
.slides .slide:nth-child(1) {
  animation: fadeSlide3-1 15s infinite;
}

.slides .slide:nth-child(2) {
  animation: fadeSlide3-2 15s infinite;
}

.slides .slide:nth-child(3) {
  animation: fadeSlide3-3 15s infinite;
}

@keyframes fadeSlide3-1 {
  0%   { opacity: 1; }
  23%  { opacity: 1; }
  33%  { opacity: 0; }
  90%  { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeSlide3-2 {
  0%   { opacity: 0; }
  23%  { opacity: 0; }
  33%  { opacity: 1; }
  56%  { opacity: 1; }
  66%  { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes fadeSlide3-3 {
  0%   { opacity: 0; }
  56%  { opacity: 0; }
  66%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; }
}

/* レスポンシブ対応 */
@media (max-width: 1150px) {
  .slides2,
  .slides {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .slides2,
  .slides {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .slides2,
  .slides {
    height: 250px;
  }
}

/* ==========================================================================
  お問い合わせ
========================================================================== */

.contact {
  padding: 180px 0;
  background: #faf7f3;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-icon {
  font-size: 2rem;
  min-width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #8B4513, #A0522D);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 5px;
}

.phone-number {
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: #8B4513 !important;
  margin: 8px 0 !important;
}

.phone-hours {
  font-size: 0.9rem !important;
  color: #999 !important;
}

.map-link {
  color: #8B4513;
  font-weight: 500;
  border-bottom: 1px solid #8B4513;
  transition: all 0.3s ease;
}

.map-link:hover {
  color: #A0522D;
  border-bottom-color: #A0522D;
}

/* 問い合わせフォーム */
.contact-form {
  background: white;
  padding: 40px;
  margin: 0 auto;
  max-width: 960px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.required {
  color: #e74c3c;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #264399;
  background: white;
  box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  margin-top: 20px;
  text-align: center;
}

.submit-button {
  background: linear-gradient(45deg, #887663, #b39a7f);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.privacy-note {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

.privacy-note a {
  color: #264399;
  text-decoration: underline;
}

@media (max-width: 768px) {
 .contact {
    padding: 120px 0 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-info {
    gap: 20px;
  }
  .contact-item {
    padding: 20px;
    gap: 15px;
  }
  .contact-form {
    padding: 30px 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .contact-form {
    padding: 25px 20px;
  }
}

@media (max-width: 320px) {
  .contact-form {
    padding: 20px 15px;
  }
}

/* 宿泊予約フォーム */
.reservation-fields {
  display: none;
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.reservation-fields.active {
  display: block;
}

.reservation-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #667eea;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
  フッター
========================================================================== */

footer {
  background: #264399;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 20px;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 600;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 20px;
  margin-left: 30px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.footer-logo .logo-icon {
  font-size: 1.5rem;
}

.footer-section p {
  line-height: 1.8;
  font-size: 0.9rem;
  color: #fff;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer-section a {
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 2px 0;
}

.footer-section a:hover {
  color: #ffee9b;
  font-weight: 500;
}

.footer-contact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #d4b896;
}

.footer-contact a {
  color: #fff;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid #fff;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-bottom p {
  color: #fff;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffee9b;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    margin-top: 0;
  }

  .footer-right {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }
  .footer-section h3 {
    margin: 0 auto 15px;
    text-align: center;
  }
  .footer-section h4 {
    margin: 0 auto;
    display: block;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 20px 0;
  }
}

/* ==========================================================================
  プライバシーポリシー
========================================================================== */

.privacy {
  padding: 180px 0 100px;
  color: #413e3c;
  line-height: 1.7;
}

.privacy h1 {
  text-align: left;
  font-size: 32px;
}

.privacy h2 {
  margin-top: 24px;
}

.privacy ul {
  list-style-type: disc;
  padding-left: 20px;
}

.privacy ol {
  list-style-type: decimal;
  padding-left: 20px;    
}

@media (max-width: 768px) {
  .privacy {
    padding: 120px 0 40px;
  }
  .privacy h1 {
    font-size: 24px;
  }
  .privacy h2 {
    margin-top: 16px;
    font-size: 20px;
  }
}

/* ==========================================================================
  サンクスページ
========================================================================== */

body {
  padding-top: 0;
}

.thanks {
  padding: 180px 0 400px;
  color: #413e3c;
  background: #faf7f3;
  line-height: 1.7;
  text-align: center;
}

.thanks-h2 {
  margin-bottom: 16px;
  color: #264399;
}

.thanks-btn {
  background: #264399;
  color: #fff;
  margin: 40px auto;
  padding: 10px 20px;
  width:200px;
  font-weight: bold;
  border-radius: 30px;
}

/* ==========================================================================
  アクセント
========================================================================== */

/* マーカー */
.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffea00;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

/* 文字の色 */
.a-red {
  color: #BF1733;
}

.a-blue {
  color: #264399;
}

.a-skyblue {
  color: #0161bd;
}
