/*
Theme Name: IKOINOMORI
Theme URI: NA
Author: Asian Bridge
Author URI: NA
Description: NA
Version: 1.0.0
*/
@charset "utf-8";
/*FONTS
=============================================== */
.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: bold;
}
.rounded-font {
	font-family: 'Kosugi Maru', sans-serif;
}
.vdl-admin{
font-family: "vdl-admin", sans-serif;
font-weight: 400;
font-style: normal;
}
/*
COLORS
================================================ */
:root {
/* Color */
	--beige: #F6F2E6;
	--dark: #200C00;
	--dark-orange: #CB6500;
	--white: #fff;
	--black: #000;
	--green: #319968;
	--dark-gray: #636363;
	
/* Border Radius Size */
	--round-sm: 6px;
	--round-md: 20px;
	--round-lg: 50%;
}
/*
GENERAL STYLING
================================================ */
html {
  scroll-behavior: smooth;
}

body {
	color: var(--dark);
  max-width: 1366px;
	width: 100%;
	margin: 0 auto;
	padding-top: 120px;
	line-height: 1.5;
	font-size: var(--font-md);  
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

 body.no-scroll {
	overflow: hidden;
} 

section {
	max-width: 1366px;
	width: 100%;
	margin: 0 auto;
}
/*
COMMON
================================================ */
a {
	text-decoration: none;
	color: var(--dark);
}
h3,h2 {
	text-align: center;
	margin-bottom: 10px;
}
h3 img{
		height: 30px;
		text-align: center;
}
h3,h2 p {
	font-weight: bold;
	font-size: small;
}
.ads-pops {
	font-family: "ads-pops", sans-serif;
	font-weight: 500;
	font-style: normal;
	color: var(--dark-orange);
}
h2 img{
	margin-top: 30px;
	height: 40px;
	text-align: center;
}
img {
 user-select:none;
 -webkit-user-select:none;
 -ms-user-select: none;
 -moz-user-select:none;
 -khtml-user-select:none;
 -webkit-user-drag:none;
 -khtml-user-drag:none;
}

.section-header {
	text-align: center;
	margin-bottom: 30px;
}
.section-header h2 {
	font-size: 2.5rem;
	margin: 0 auto;
	letter-spacing: -0.02em;
}
.section-header h3 {
	font-size: 1.8rem;
	margin: 0 auto;
	letter-spacing: -0.02em;
}
.section-header p {
	font-size: 0.9rem;
	letter-spacing: 0.12em;
}

/*
HEADER
================================================ */
#header {
  height: 120px;
  background: var(--beige);
  display: grid;
  place-items: center;
	position: fixed;
  top: 0;
  margin: 0 auto;
	width: 100%;
	max-width: 1366px;
  z-index: 2000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); 
	overflow-y: hidden; 

}

.header-container {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
	display: flex;
	gap: 15px;
	text-align: center;

}
.site-title p {
	line-height: 1.5rem;
	padding-top: 1.1rem;
}
.site-title p span {
	font-size: 1rem;	
}

.site-title .logo {
  max-width: 100%;
  height: auto;
}

.header-right {
  line-height: 40px;
  width: 70%; 
  max-width: 100%;
  display: flex;
  flex-direction: column; 
  align-items: flex-end; 
  position: relative;	
}

.head-info {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.header-right nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.btn-reserve {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 24px;
  background: var(--dark);
  color: var(--beige);
  border-radius: 5px;
  text-decoration: none;
}

.btn-reserve:hover {
  background: #a94e00;
}

.body-nav {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.body-nav li a {
  padding: 8px 0; 
  line-height: 1.2; 
	font-weight: bold;
	color: var(--dark);
	text-decoration: none;
	transition: color 0.3s ease;
}
.body-nav li a:hover {
	color: var(--dark-orange);
}


/*-------------------------------------------
  ハンバーガーメニュー
-------------------------------------------*/

.hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}

.hamburger span {
  position: absolute;
  left: 5px;
  width: 30px;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

.hamburger span:nth-of-type(1) {
  top: 10px;
}
.hamburger span:nth-of-type(2) {
  top: 19px;
}
.hamburger span:nth-of-type(3) {
  bottom: 10px;
}

/* ハンバーガーボタンがアクティブ時（×印に変化） */
.hamburger.is-active span:nth-of-type(1) {
  top: 19px;
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-of-type(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* スマホメニューコンテナ（初期状態：画面右外に隠す） */
.sp-nav-container {
  position: fixed;
  top: 0;
  right: 0;
  width: 90%;
  height: 100vh;         /* メニューの高さを画面いっぱいに */
  max-height: 100vh;     /* 念のため最大値も指定 */
  padding: 80px 30px 30px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}

/* メニューコンテナがアクティブ時（画面内に表示） */
.sp-nav-container.is-active {
  transform: translateX(0);
}

/*-------------------------------------------
  レスポンシブ設定 (画面幅 960px 以下)
-------------------------------------------*/
@media screen and (max-width: 960px) {
	.header-right {
    width: 20%; 
  }

	.site-title .logo {
    width: 100px; 
  }

	.site-title p {
		font-size: 1.8rem;
		line-height: 1.3rem;
		padding-top: 1.5rem;
	}

	.site-title p span {
		font-size: 0.9rem;	
	}
   
  /* PC用のナビゲーションを非表示 */
  .header-right .head-nav {
    display: none;
  }

  /* ハンバーガーボタンを表示 */
  .hamburger {
    display: block;
  }

  /* スマホメニュー項目のスタイル */
  .sp-nav-container .body-nav {
    display: block;
    text-align: left;
  }

  .sp-nav-container .body-nav li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #ddd;
  }

  .sp-nav-container .body-nav li a {
    display: block;
    padding: 18px 0;
    color: #333;
    text-decoration: none;
  }

  .sp-contact {
    width: 250px;
    margin-top: 30px;
  }

  .sp-tel {
    font-weight: bold;
  }
	
	.sp-contact p {
		line-height: 1rem;
		margin-bottom: 1.5rem;
	}
}

@media screen and (max-width: 600px) {
  .site-title .logo {
    width: 80px; /* さらに小さく */
  }
  .site-title p {
		font-size: 1.6rem;
		line-height: 1.2rem;
		padding-top: 0.9rem;
	}

	.site-title p span {
		font-size: 0.8rem;	
	}
}

/* メニューが開いている時の背景スクロール防止 
.no-scroll {
  overflow: hidden;
}*/
/*
MAIN-VISUAL
================================================ */
#main-image {
    position: relative;
}

.main-visual {
    position: relative; /* 子要素の配置の基準点 */
    opacity: 0; /* 初期状態で非表示 */
    transition: opacity 0.5s ease;
}

.main-visual.loaded {
    opacity: 1;
}

 .font-logo {
    position: absolute;
    z-index: 2; /* スライダーより前面に表示 */
    top: 30px;
    left: 50px;
    width: 42%; /* 画面幅に対する相対的なサイズ */
    min-width: 300px; /* 最小サイズを指定 */
		max-width: 90vw; /* はみ出し防止 */
    height: auto; /* アスペクト比を保持 */
}

/* 画面が狭い場合の調整 */
@media (max-width: 960px) {
  .font-logo {
    left: 3vw;
    width: 60vw;
    max-width: 95vw;
    top: 10px;
  }
}
@media (max-width: 450px) {
  .font-logo {
    left: 50%;
    top: 20px;
    width: 90vw;
    min-width: 0;
    max-width: 90vw;
    transform: translateX(-50%);
    margin: 0;
  }
}
/* CTAボタンのスタイル */
.cta {
    position: absolute;
    bottom: -7%;
    right: 5%;
    display: inline-block;
    width: 20%;
    min-width: 150px;
    z-index: 2;
		transition: transform 0.3s ease, filter 0.3s ease; 
}

/* ホバー時のデザイン */
.cta:hover {
    transform: translate(-3px, -3px);
  	filter: brightness(0.8); /* 80%の明度で暗くする */
}

.slider-item {
    width: 100%;
    height: 600px; /* 固定の高さを指定 */
    position: relative; /* 子要素の配置の基準点 */
    overflow: hidden; /* はみ出た部分を隠す */
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Slick初期化前の制御 */
.slider1:not(.slick-initialized) {
    height: 600px;
    overflow: hidden;
}

.slider1:not(.slick-initialized) .slider-item:not(:first-child) {
    position: absolute;
    top: 0;
    left: -100%;
    opacity: 0;
    visibility: hidden;
}

/*
INFORMATION
================================================ */
#information {
	padding-top: 100px;
	position: relative;
}
.elements-left{
	position: absolute;
	top: -30px;
	left: 0;
	width: 22%;;
}
#news {
	width: 100%;
	max-width: 1200px;
	background-color: var(--beige);
	padding-bottom: 30px;
	padding-top: 20px;
	z-index: 100;
	margin: 0 auto;
}

#news .news_area {
	background-color: white;
	border-radius: 12px;
	padding: 20px;
	margin: 0 auto;
	width: 90%;
}

#news .news_area .news {
	display: block; 
  margin-bottom: 20px;
}

#news .news_area .news .date {
  display: block;
  margin-bottom: 4px;
}

#news .news_area .news .title
{
	margin-left: 20px;
}

#news .news_area .news
{
	margin-bottom: 20px;
}

#news .news_area a
{
	cursor: pointer;
	text-decoration: underline;
}
#news .news_area .news .title,
#news .news_area .news a.title {
  display: block;
  margin-left: 0;
}
.close-popup {
  font-size: 1.4rem;
	cursor: pointer; 
} 


/* Instagram セクションのスタイル */
#instagram {
    padding: 60px 0;
}

.instagram-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* プロフィール部分 */

.instagram-profile {
    display: flex;
		gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.insta-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
		flex-shrink: 0;
}

.insta-username {
    font-weight: 600;
    color: #333;
    flex-grow: 1;
		font-size: 1.1rem;
    white-space: nowrap;
}

.account-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.insta-follow-btn {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.insta-follow-btn:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* 投稿グリッド */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.instagram-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* 画像部分 */
.post-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 80%;
    overflow: hidden;
		height: auto;
}

.post-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover .post-image {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* テキスト部分 */
.post-content {
    padding: 5px;
}

.post-caption {
  font-size: 0.9rem;
  line-height: 1.2; 
  width: 100%;
  text-align: left;
  display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  min-height: unset;           /* 高さ指定があれば解除 */
}

.post-date {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

/* エラーメッセージ */
.error-message {
    text-align: center;
    padding: 40px 20px;
    background: #ffebee;
    color: #c62828;
    border-radius: 8px;
    margin: 20px 0;
}

.no-posts {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    #instagram {
        padding: 40px 0;
    }
    
    .instagram-section {
        padding: 0 15px;
    }
    
    .instagram-profile {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }
    
    .insta-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .insta-username {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .insta-follow-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .post-content {
        padding: 12px;
    }
    
    .post-caption {
        font-size: 13px;
        min-height: 30px;
    }
		.account-info {
        display: flex; /* 横並びを維持 */
        align-items: center;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        gap: 12px;
    }
    
    .post-content {
        padding: 10px;
    }
    
    .post-caption {
        font-size: 12px;
        min-height: 25px;
    }
}

.message {
	margin: 2rem auto;
	padding: 2rem;
}
.message h1 {
	font-size: 1.8rem;
	text-align: center;
	font-weight: bold;
	margin-bottom: 40px;
}
.message-contents {
	display: flex;
	justify-content: center;
	gap: 30px;
	align-items: center;
	max-width: 1200px; 
	margin: 0 auto;
	
}

.message-contents p {
  width:45%;
  height: auto;
	line-height: 2.5;
	
}
.message-contents img {
  width:45%;
  height: auto;
}
@media screen and (max-width: 960px) {
	.message-contents {
		display: flex;
		flex-direction: column;
		gap:20px;
	}
	.message-contents p {
		width: 100%;
		height: auto;
		line-height: 2;
		margin: 0 auto 50px;
		text-align: center;
		
	}
	.message-contents img {
		width:90%;
		max-width: 700px;
		height: auto;
	}
}

@media screen and (max-width: 768px) {
	.message h1 {
		font-size: 1.5rem;
		margin-bottom: 30px;
	}
	.message-contents p {
		width: 95%;
		text-align: left;
	}
	.message-contents img {
		width:95%;
	}
}

/* ギャラリーセクション全体 */
#gallery {
    padding: 40px 20px;
    overflow: hidden;
}

.gallery-images {
    width: 100%;
    margin: 0 auto;
}
/*
fACILITIES
================================================ */
#facilities {
	padding: 100px 0 200px;
	background-color: var(--beige);
	background-image: url(../../../assets/img/illust-cars.png);
	background-position: 95% 98%;
	background-repeat: no-repeat;
	background-size: 50%;
	position: relative;
	width: 100%;
}

.elements-right{  /* 飾り */
	position: absolute;
	top: 0;
	right: 0;
	width: 20%;
}
.facilities-wrapper {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-around;
	gap: 5%;
	margin-top: 50px;
}

.facility-image {
	position: relative;
	margin: 0 auto 50px;
	width: 50%;	
}

.main-image {
  width: 100%;         
  height: 400px;       
  object-fit: cover;
  display: block;
  border-radius: 12px; 
	transition: opacity 0.2s; 
  opacity: 1;
}

.main-image.is-fading {
  opacity: 0;
}

.thumbnail-gallery {
	display: flex;
	gap: 20px;
	margin-top: 0; 
	justify-content: center;
	position: absolute;
	margin: 0 auto;
	bottom: -40px;
	right: 15%; 
	z-index: 2;
}

.thumbnail {
	width: 120px;
	height: 90px;
	object-fit: cover;
	border-radius: 10px;
	cursor: pointer;
	border: 6px solid var(--white);
	transition: all 0.4s ease;
}

 .thumbnail.selected {
  filter: brightness(0.6);
  transition: filter 0.2s;
  outline: 2px solid #cb6500;
}

.facility-info {
	padding: 10% 5%;
	width: 40%;
}
.facility-title {
	font-size: 1.5rem;
	font-weight: 500;
	border-bottom: 8px solid rgb(235, 148, 61);
	display: inline-block;
}
.facility-subtitle {
	font-size: 1rem;
	margin-left: 10px;
}
.facility-description {
	margin-top: 30px;
}				

.ikoino-yu,.bungalow {
	flex-direction: row-reverse;
}

@media screen and (max-width: 960px) {
	#facilities {
		background-size: 55%;
	}
		
	.facilities-wrapper {
		flex-direction: column;
		gap: 0;
	}

	.facility-title {
		font-size: 1.8rem;
	}
	
	.facility-info {
		padding: 0 15% 10%;
		width: 100%;
	}

	.thumbnail-gallery {
		justify-content: center;
		position: initial;
		gap: 10px;
		margin: 0 auto;
	}		

	.description-item {
		font-size: 1rem;
	}

  .facility-image {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
	#facilities {
		background-size: 65%;
	}
	.thumbnail-gallery {
		gap: 10px;
		margin: 0 auto;
	}
	.thumbnail {
	width: 100px;
	height: 80px;
	}
	.facility-info {
		padding: 0 5% 10%;
	}
}

/*
ACTIVITY
================================================ */
#activity {
	width: 100%;
	position: relative;
	padding-top: 100px;
}
.elements-left2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 20%;
}
.activity-contents {
	width: 90%;
	margin: 80px auto 0;
	display: flex;
	justify-content: center;
	gap: 30px;
}
.activity-image {
	display: grid;
	width: 85%;
	max-width: 700px;
	height: auto;
	place-items: center;
	border-radius: var(--round-md);
}        
.activity-info {
	width: 50%;
}
.activity-title {
	font-size: 1.5rem;
	display: inline-block;
}
.activity-description {
	margin-top: 20px;
}
.activity2-price {
	font-weight: bold;
	font-size: 1.2rem;
	color: var(--dark-orange);
	margin-top: 10px;
}
@media screen and (max-width: 960px) {
	.activity-contents {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 30px;
	}
	.activity-image {
		width: 95%;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	.activity-info {
		width: 90%;
		
	}
}
@media screen and (max-width: 768px) {
	.activity-image {
		width: 100%;
	}
	.activity-info {
		width: 100%;
	}
}
  
/*
CHARGES
================================================ */
#charges {
	position: relative;
	background: linear-gradient(to bottom, transparent 80%, var(--green) 100%);
}

.charges-header {
	width: 100%;
	height: 500px;
	background-image: url(../../../assets/img/charge-back-back.jpg);
	background-size: cover;
	background-position: center;
	margin-top: 80px;
}
.charges-header .section-header {
	width: 20rem;
	height: 8rem;
	background-color: var(--beige);
	border-radius: var(--round-md);
	line-height: 1.5rem;
	position: absolute;
	top: 200px;
	left: 50%;
	transform: translateX(-50%);
}
.charges-header .section-header h2 {
	margin-top: 35px;
	margin-bottom: 20px;
}
.charge-back-front {
	position: absolute;
	top: 290px;
	left: -10%;
	z-index: 1;
	width: 50%;  /* 画面幅の50%のサイズに */
  height: auto;  /* アスペクト比を保持 */
  max-width: 600px;  /* 最大サイズを制限 */
  min-width: 300px;  /* 最小サイズを制限 */
}
.charge-animals {
	position: absolute;
	top: 405px;
	z-index: 1;
  right: 15%;
}
.charges-body {
	position: relative;
	top: -5px;
	background-color: var(--green);
	overflow: hidden;	
}
.sites {
	position: relative;
  padding-bottom: 50px;
}
.sites .section-header,
.rentals .section-header {
	width: 18rem;
	height: 3rem;
	background-color: var(--beige);
	border-radius: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px auto 20px;
}
.sites .section-header h3,
.rentals .section-header h3{
	margin:0 1rem 0;	
}
.sites .section-header p,
.rentals .section-header p{
	letter-spacing: -0.02rem;
	padding-top: 5px;
}


.kanrinin-comment {
	position: absolute;
	top: -3%;
	right: 5%;
	width: 20%;
	height: auto;
	z-index: 2;
}
.kanrinin {
	position: absolute;
	top: 5%;
	right: 5%;
	width: 25%; 
	height: auto;
	transform: rotate(7deg);
	z-index: 1;
}

.sites-charge-comment {
	text-align: center;
	color: var(--beige);
	font-size: 1.2em;
	padding: 20px 0;
}

@media screen and (max-width: 768px) {
	.kanrinin-comment {
		top: 0.5%;
		right: 0.8%;
		width: 30%;
}
	.kanrinin {
		position: absolute;
		top: 8%;
		right: -2%;
		width: 40%;
	}
	.sites-charge-comment {
		padding-left: 10%;
		font-size: 0.9rem;
		width: 70%;
	}
}
@media screen and (max-width: 590px) {
	.kanrinin-comment {
		top: 10%;
		right: 1.5%;
		transform: rotate(-7deg);
}
	.kanrinin {
		top: 15%;
		width: 35%;
		transform: initial;
	}
	.sites-charge-comment {
		text-align: left;
		padding-left: 5%;
		padding-top: 0;
		width: 65%;
	}
}
/* 宿泊料のテーブルのスタイリング */
.table-container {	
	margin: 0 auto;	
	overflow: hidden;
	position: relative;
  z-index: 2; 
}

.table-container table {
	width: 100%;
	max-width: 950px;
	border-collapse: separate;
	border-spacing: 0;
	background-color: var(--white);
	margin: 0 auto;
	border-radius: var(--round-md); 
	overflow: hidden;	
}


/* ヘッダー行のスタイル */
.table-container thead th {
	background-color: var(--dark-orange);
	color: var(--beige);
	padding: 15px;
	font-size: 1.3rem;
	font-weight: normal;
	text-align: center;
}

.table-container thead th:first-child {
	border-top-left-radius: var(--round-md);
}

.table-container thead th:last-child {
	border-top-right-radius: var(--round-md);
}

/* 通常の行のスタイル */
.table-container tbody tr {
	background-color: var(--beige);
	font-size: 1.2rem;
}

.table-container td {
	padding: 12px 15px;
}

.table-container tbody tr:last-child td:first-child {
	border-bottom-left-radius: var(--round-md);
}

.table-container tbody tr:last-child td:last-child {
	border-bottom-right-radius: var(--round-md);
}
/* 最初の行のスタイル */
.table-container tbody tr:first-child td {
	padding-top: 20px;  /* 最後の行の下部パディングを広めに */
}
/* 最後の行のスタイル */
.table-container tbody tr:last-child td {
	padding-bottom: 20px;  /* 最後の行の下部パディングを広めに */
}

/* 各列の幅調整 */
.table-container .facility-name {
	width: 45%;
	padding-left: 5%;
}

/* 各列の幅調整 */
.table-container .facility-name {
	width: 45%;
	padding-left: 5%;
}

.table-container .capacity {
	width: 25%;
	text-align: center;
}

.table-container .price {
	width: 30%;
	text-align: right;
	padding-right: 10%;
	font-weight: bold;
	font-size: 1.3rem;
}

.small-text {
	font-size: 0.8rem;
}

.rentals {
	max-width: 100%;
	padding-bottom: 100px;
}
.tebura-set {
  max-width: 1300px;
  margin: 0 auto;
}

.tebura-set-contents {
  max-width: 95%;
  padding: 30px 15px;
  margin: 15px auto;
  background-color: rgb(255, 240, 185);
  border-radius: var(--round-md);
}

.tebura-set-contents h2 {
  width: 100%;
  background-color: var(--dark-orange);
  border-radius: 2rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.tebura-title {
  color: var(--beige);
  font-size: 1.8rem;
  padding-top: 8px;
}

.tebura-memo {
  color: var(--beige);
  font-size: 1rem;
  line-height: 2rem;
  padding-bottom: 8px;
}

.tebura-information {
  width: 100%;
  margin: 0 auto;
  background-image: url(../../../assets/img/rentarl-elements.svg);
  background-position: 95% 15%;
  background-repeat: no-repeat;
  background-size: 30%;
  position: relative;
}

.tebura-set-contents h4 {
  font-size: 1.3rem;
  padding: 20px 10% 0;
  font-weight: bold;
}

.yoyaku-note {
  color: red;
  font-weight: bold;
  padding: 10px 10%;
}

.tebura-set-contents ul {
  width: 80%;
  padding: 15px;
  margin: 0 auto;
}

.tebura-set-contents ul li {
  list-style: none;
  font-weight: bold;
}

.tebura-set-contents ul li:first-child {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.tebura-set-reserve-button {
  position: absolute;
  z-index: 2;
  bottom: 5%;
  right: 10%;
  width: 25%;
  min-width: 200px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.tebura-set-reserve-button:hover {
  transform: translate(-3px, -3px);
  filter: brightness(0.8);
}

.rental-items {
  max-width: 1300px;
  margin: 100px auto 0;
}

.rental-items h2 {
  max-width: 800px;
  height: 3rem;
  background-color: var(--dark-orange);
  border-radius: 1.5rem;
  color: var(--beige);
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 3rem;
  margin: 50px auto;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 10px;
}

.item-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.item-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.item-card-content {
  padding: 15px;
}

.item-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: bold;
}

.item-card p {
  font-size: 13px;
  line-height: 1.4;
}
/* レスポンシブ対応 */
@media screen and (max-width: 960px) {
.items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
	.table-container {
		margin: 0 15px;
	}
	
	.table-container thead th,
	.table-container td {
		padding: 10px;
		font-size: 0.9rem;
	}
	.table-container .price {
		width: 30%;
		text-align: right;
		padding-right: 5%;
		font-weight: bold;
		font-size: 1rem;
	}

  .tebura-set-contents {
    padding: 20px 10px;
	}
	
	.tebura-set-contents h4 {
  font-size: 1.3rem;
  padding: 20px 10% 0;
  font-weight: bold;
	}

	.yoyaku-note {
		color: red;
		font-weight: bold;
		padding: 10px 10%;
	}

	.tebura-set-contents ul {
		width: 80%;
		padding: 15px;
		margin: 0 auto;
	}

	.tebura-set-contents ul {
		width: 95%;
		margin: 15px auto;
		padding: 20px;
	}

	.tebura-set-contents ul li {
		margin-bottom: 15px;
	}

	.tebura-set-contents h2 {
		font-size: 1.3rem;
	}

	.tebura-information {
		background-position: 98% 70%;
	}

  .tebura-set-reserve-button {
    position: initial;
    display: block;
    margin: 0 auto;
    width: 60%;
    min-width: 120px;
  }
}

@media screen and (max-width: 600px) {
  .tebura-title {
		font-size: 1.6rem;
	}
	.tebura-title .colon {
    display: none;
  }
  .tebura-title .price {
    display: block;
    margin-top: 4px;
  }
}

@media (max-width: 500px) {
  .tebura-information {
    background-image: none;
  }

  .items-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}



/*
OPTIONS-PRICES
================================================ */
#options-prices {
	background-color: var(--beige);
	padding-top: 100px;
	padding-bottom: 100px;
}
.plan1-contents-top {
	display: flex;
	justify-content: space-around;
	padding: 50px 0 0;
	max-width: 1200px;
	margin: 0 auto;
}

.plan1-contents-top-left {
	flex: 0.5;
	position: relative;
}

.plan1-1-image {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	object-fit: cover;
	top: 5%;
	left: 5%;
	z-index: 2;
}
.plan1-2-image {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	object-fit: cover;
	bottom: 10%;
	right: 0;
	z-index: 1;
}
.plan1-contents-top-right {
	flex: 0.4;
	padding: 10px;
}
.plan1-contents-top-right h3 {
	font-size: 1.5rem;
	text-align: left;
}
.plan1-contents-top-right p {
  margin-top: 40px;
	font-size: 1.1rem;
	line-height: 1.8;
}
/*下段
/////////////////*/
.plan1-contents-bottom {
	display: flex;
	justify-content: center;
	gap: 5%;
	align-items: top;
	max-width: 1200px;
	padding: 5%;
	margin: 0 auto;
}

.plan1-contents-bottom-left {
	display: inline-flex;
	justify-content: center;
	gap: 3%;
	flex: 0.5;
}

.plan1-3-image {
	width: 300px;
	height: auto;
	border-radius: var(--round-md);
	object-fit: cover;
}

.plan1-4-image {
	height: 200px;
	border-radius: var(--round-md);
	object-fit: cover;
}

.plan1-contents-bottom-right {
	flex: 0.5;
}
.plan1-contents-bottom-right p {
	font-size: 1.1rem;
	line-height: 1.8;
	padding-top: 30px;
}
span.example {
	font-size: 1.2rem;
	font-weight: bold;
}

@media screen and (max-width: 960px) {
	.plan1-contents-top {
		flex-direction: column;
		align-items: center;
	}
	.plan1-top-left {
		display: block;
    margin: 0 auto; /* 必要に応じて中央寄せ */    
  }

	.plan1-1-image,
	.plan1-2-image {
		position: static; /* absoluteを解除 */
	}

	.plan1-contents-top-right {
		width: 90%;
	  padding: 5%;
		margin: 0 auto;
	}
	
	.plan1-3-image {
		width: 100%;
	}
	.plan1-4-image {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.plan1-1-image {
		position: static; /* absoluteを解除 */
		width: 100%;
		max-width: 350px; 
    aspect-ratio: 1 / 1;   /* 正円を維持 */
    height: auto;        
	}

	.plan1-2-image {
		display: none;
	}

	.plan1-contents-bottom-left {
		display: none;
	}

	.plan1-contents-bottom-right {
		flex: 1;
	}
	.plan1-contents-bottom-right p {
		width: 100%;
		padding: 10px;
	}
	
}

/*
ACCESS
================================================ */
#access {
	padding: 100px 0;
	min-height: 500px;
	}

.google-map {
  width: 90%;
  margin: 30px auto;
	text-align: center;
}

.google-map p {
	font-size: 1.5rem;
	margin: 0 auto;
	text-align: center;
}


.google-map iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--round-md);
  border: none;
  display: block;
}
/*
PAYMENT
================================================ */
#payment {
	padding: 50px 0;
}

.payment-methods {
  display: flex;
  gap: 5%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
	margin-top: 50px;
}

.payment-methods img {
  max-width: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
/*
FAQ
================================================ */
#faq{
	padding: 100px 0;
}

.faq-list {
	max-width: 100%;
	height: 100%;
	padding: 10% 5%;
	margin: 50px auto;
	background-color: var(--beige);
	border-radius: var(--round-md);
}
.faq-list dl dt {
	font-weight: bold;
	font-size: 1.2rem;
	margin-bottom: 10px;
	border-bottom: dashed 1px var(--dark);
	padding-bottom: 5px;
	padding-left: 2%;
}
.faq-list dl dd {
	margin-bottom: 35px;
	font-size: 1.1rem;
	line-height: 1.6;
	border-bottom: dashed 1px var(--dark);
	padding-bottom: 5px;
	padding-left: 2%;
}
.faq-list dl dd:last-child {
	margin-bottom: 0;
}
/*CONTACT
================================================ */
#contact {
	margin: 0 auto 100px;
	padding: 2%;
	height: 100%;
}

.mail-contact,
.tel {
	width: 90%;
	max-width: 500px;
	margin: 0 auto 24px auto;
	text-align: center;
}

.mail-contact h2,
.tel h2 {
	margin-top: 50px;
	margin-bottom: 0;
	font-size: 1.2rem;
}

.tel1 p{
	font-size: 1.2rem;	
}	

.map-button,
.contact-button {
  display: inline-block;
	height: 4rem;
	width: 90%;
	max-width: 300px;
  background: var(--dark-orange);
  color: var(--beige);
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
	margin: 20px auto;
	line-height: 4rem;
	font-size: 1.5rem;
}

.map-button:hover,
.contact-button:hover {
  background: #a94e00;
}

.totop-button {
	position: fixed;
	right: 1%;
	bottom: 1%;
	width: 85px;
	height:85px;
	z-index: 1000;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	background: var(--dark-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s;
}
.totop-button.show {
	opacity: 1;
	pointer-events: auto;
}
.totop-button img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

/*
FOOTER
================================================ */
footer {	
	margin: 0 auto;
	padding: 20px;
	height: auto;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../../../assets/img/footer-back.jpg);
	background-size: cover;
	background-position: center;	
}

.footer-contents {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 10%;
	align-items: top;
	z-index: 1;
	color: var(--beige);
	padding: 30px;
	margin: 0 auto;
}
.footer-left {
	flex: 0.4;
}

.site-name {
	font-size: 1.3rem;
	font-weight: bold;
	padding-top: 0;
}

.footer-left address {
	font-style: normal;
	font-size: 1rem;
	margin: 20px auto 0;
		
}
.footer-illust-container {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 40px;
	margin-top: 50px;
}

.footer-illust {
  width: 200px;
  height: auto;
}

.instagramIcon {
  width: 60px;
  height: 60px;
}

.footer-right {
	flex: 0.4;
	text-align: center;
	position: relative;
}

.footer-nav {
	list-style: none;
	width: auto;
}

.footer-nav li {
	padding-bottom: 10px;
}

.footer-nav li a {	
	color: var(--beige);
}

.footer-reserve-button {
	position: absolute;
	z-index: 3;
  bottom: -3rem;
  right: 20%;
  width: 60%;
  min-width: 200px;
	height: auto;
	transition: transform 0.3s ease, filter 0.3s ease;

}

.footer-reserve-button:hover {
  transform: translate(-3px, -3px);
	filter: brightness(0.8); /* 80%の明度で暗くする */
}

.copy {
	text-align: center;
	margin: 50px auto;
}

.copy p{
	color: var(--beige);
	padding: 50px 0;
}

@media screen and (max-width: 768px) {
	.footer-contents {
		display: flex;
		flex-direction: column;
	}

	.footer-left {
		padding-bottom: 10vw;
		align-items: center; 
    margin: 0 auto;
		width: 95%;
		text-align: center;
	}

	.footer-nav	{
		text-align: center;
	}

	.footer-right .button-area {
		display: flex;
		justify-content: center;
	}

	.footer-reserve-button {
		position: initial;
		width: 50%;
		margin: 10vw auto;;
	}

	.copy	{
		margin-bottom: 0;
	}

}


/*
(.slider1)メインビジュアルのスライダー設定
////////////////////////////////////////////////*/
.slider1 .slick-prev, 
.slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
} 
.slider1 .slick-prev {
	left: 10px;
	z-index: 1;
}
.slider1 .slick-next {
	right: 10px;
	z-index: 1;
} 
.slider1 .slick-prev:before, 
.slick-next:before {
	font-family: 'slick';
	font-size: 20px;
	line-height: 1;
	opacity: .75;
	color: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
} 
.slider1 .slick-prev:before {
	content: '←';
} 
.slider1 .slick-next:before {
	content: '→';
} 
.slider1 .slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	color: transparent;
	outline: none;
	background: transparent;
} 
.slider1 .slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
	opacity: 1;
} 
.slider1 .slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
	opacity: .25;
}
.slider1 .slick-dots {
	bottom: -40px;
}
.slider1 .slick-dots li button:before {
	font-size:8px;
}
/*
(.slider2)galleryのスライダー設定
////////////////////////////////////////////////*/
.slider2 {
	width: 100%;
	margin: 20px auto;		
}
.slider2 .slick-track {
	display: flex;
	align-items: center;
	gap: 20px;
}
/* スライダー2の各アイテム */
.slider2 .slick-slide {
	height: 200px;  /* 高さを固定 */    
}
.slider2 .slick-slide img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
}