
.head_wrapper{
 background: var(--color-main-dark);
}

.separate_section {
	padding:20px 0;
	text-align: center;
}
.separate_section img {
	width:75%;
}

.three-cols {
  display: flex;
  width: 100%;
  height: 300px;
}

.col {
  display: flex;
  align-items: center;       /* 縦中央 */
  justify-content: center;   /* 横中央 */
  overflow: hidden;
color: var(--color-main-white);
}

/* ===== 幅指定 ===== */
.col1 {
  flex: 2;   /* 左だけ幅広く */
}

.col2,
.col3 {
  flex: 1;
}

/* ===== 2番目だけ padding ===== */
.col2 {
  padding: 0.2em;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.5;
}

/* ===== 画像カラム ===== */
.image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 縦いっぱい・横トリミング */
}




/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .three-cols {
    flex-wrap: wrap;
    height: auto;
  }

  /* 1個目は100% */
  .col1 {
    flex: 0 0 50%;
    height: 200px;
  }
 .col2 {
    flex: 0 0 35%;
    height: 200px;
	 padding: 0;
    font-size: 1rem;
  }
	
  .col3 {
    flex: 0 0 100%;
    height: 200px;
  }
	
	
.separate_section {
	padding:20px 10px;
	text-align: center;
}
.separate_section img {
	width:100%;
}

}




.title_block{
	color:var(--color-main-dark);
	font-size:4.5rem;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.06em;
	padding:10px 0;
}
.title_sironuki{
	background: var(--color-main-brown);
	text-align: center;
	color:var(--color-main-white);
	font-size:1.4rem;
}




.illust_wrap {
  position: relative;
  /*overflow: hidden;*/
}
.illust {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* 左 */
.illust_left {
  left: 0;
  width: 140px;
}

/* 右 */
.illust_right {
  right: 2%;
  width: 100px;
}

/* 中身 */
.illust_wrap .content {
  position: relative;
  z-index: 1;
}




/* 左 */
#gallery .title_block img.illust_left {
	top:35%;
  left: 100px;
  width: 120px;
}

/* 右 */
#gallery .title_block img.illust_right {
  right: 100px;
  width: 100px;
	top:35%;
}










.schedule_title{
	display: inline-block;
	background: #00a0e9;
	color: white;
	padding: 0 10px;
	font-family: var(--font-marugo);
	font-size: 1.6rem;
	margin-bottom: 10px;
}
.schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  gap: 2px;
	background: gray;
}

.cell {
	background: white;
	display: grid;
  grid-template-rows: auto 1fr;
}

.month {
  background: #00a0e9;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 0;
  position: relative;
	font-family: var(--font-marugo);
}

.mark {
  color: #ffe100;
  font-size: 28px;
  position: absolute;
  right: 12px;
  top: 8px;
}

.dates {
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 10px 5px;
  line-height: 1.2;
	align-self: center;
}
.dates span {
	font-family: var(--font-marugo);
  font-weight: lighter;
}
.dates span.gappi {
  font-size: 1.4rem;
}
.sat,
.sun,
.fri {
  display: inline-block;
  text-align: center;
  font-size: 0.9rem;
  padding: 0;
  color: #fff;
	position: relative;
	top:-2px;
}
/* 曜日カラー */
.sat {
  background: #00a0e9;
}

.sun {
  background: #e60012;
}

.fri {
  background: #000;
}










h1.main_title {
  position: relative;
  display: block;
  padding-bottom: 12px;
  font-size: 2.6rem;
	text-align: center;
}

h1.main_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px dotted #000;
}
.kaimasu_title_block h1.main_title{
  font-size: 3rem;
	color:var(--color-main-brown);
}
.kaimasu_title_block .illust {
  top: 30%;
}

/* 左 */
.kaimasu_title_block .illust_left {
  left: 0;
  width: 150px;
}

/* 右 */
.kaimasu_title_block .illust_right {
  right: 0;;
  width: 220px;
}


.four-cols {
  display: flex;
  justify-content: center; /* 全体を中央寄せ */
  gap: 30px;               /* 列同士の間隔（自由に調整） */
}
/* 残り3列は少し狭く */
.four-cols .col {
  flex: 0.8;
}
/* 2列目だけ少し広く */
.four-cols .col:nth-child(2) {
  flex: 2;
}
/* 3列目だけ少し狭く */
.four-cols .col:nth-child(3) {
  flex: 0.4;
}




.click-image {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.click-image img {
  width: 100%;
  display: block;
}

.area {
  position: absolute;
  display: block;
}

/* 左 */
.left {
  left: 0;
  top: 0;
  width: 66%;
  height: 100%;
}

/* 右上 */
.right-top {
  right: 0;
  top: 0;
  width: 34%;
  height: 70%;
}

/* 右下 */
.right-bottom {
  right: 0;
  bottom: 0;
  width: 34%;
  height: 20%;
}



.banner_gellery ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
margin: 40px 0 20px;
}

.banner_gellery li {
  flex: 1;
  aspect-ratio: 4 / 3;   /* ← ここで高さを統一（比率は好みで） */
  overflow: hidden;
}

.banner_gellery img {
  width: 100%;
  height: 230px;
  object-fit: cover;     /* はみ出しはトリミング */
  display: block;
}



@media screen and (max-width: 768px) {
  .banner_gellery ul {
    flex-direction: column;
  }

  .banner_gellery li {
    aspect-ratio: auto;  /* 高さ固定を解除 */
  }

  .banner_gellery img {
  display: block;
	width:80%;
    height: auto;
	  margin: 0 auto;
  }
}




.gallery_list{
	text-align: center;
	margin-bottom: 20px;
}
.gallery_image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px;
  max-width: 1000px;
  margin: 0 auto;
}


.gallery_image-grid img {
  width: 100%;
  aspect-ratio: 4 / 4;   /* ← 高さを揃える核心 */
  object-fit: cover;    /* トリミングして揃える */
  display: block;
}


.two_row-images ul {
  display: flex;
  gap: 40px;              /* 画像同士の間隔 */
  align-items: center;    /* 念のため */
	margin-bottom: 40px;
}

.two_row-images ul li:nth-child(1) { width: 60%; }
.two_row-images ul li:nth-child(2) { width: 40%; }




@media screen and (max-width: 768px) {
  .two_row-images ul {
    flex-direction: column;
	  margin: 20px 0;
  }
	  .two_row-images ul li {
    display: block;
		  margin: 0 auto;
  }
	
.two_row-images ul li:nth-child(1) { width: 100%; }
.two_row-images ul li:nth-child(2) { width: 80%; }
}


.schedule_jikan{
	font-family: var(--font-san_serif);
	font-size: 1.4rem;
	background: #bae3f9;
	color:var(--color-main);
	text-align: center;
	font-weight: bold;
}
.schedule_caption{
	font-family: var(--font-san_serif);
	font-size: 1.1rem;
	font-weight: 600;
}
.schedule_jikan span{
	font-family: var(--font-base);
}


.kaitori_block01{
	text-align: center;
}
.kaitori_block02{
	position: relative;
	padding: 20px 80px;
	font-size: 1.1rem;
}
.kaitori_block02 img.kaitori_block02_usagi{
	position: absolute;
	right:0;
	top:-20px;
	width: 120px;
}
.tel_no_block{
	position: relative;
	width: 100%;
	margin: 40px auto;
}

.tel_no_block ul li,.tel_no_block ul li a img{
	display: block;
	height:40px;
	width: auto;
	margin: 0 auto;
	padding: 5px 0;
}
.tel_no_block ul li:first-child{
	position: absolute;
	top:-80px;
	left:0;
	width:150px;
	height: auto;
	padding: 0;
}
.tel_no_block ul li:last-child{
	position: absolute;
	top:-20px;
	right:0;
	width:160px;
	height: auto;
	padding: 0;
}


	
.kaitori_banner_wrapper > ul {
  display: flex;
  gap: 16px; /* 左右の隙間。不要なら消してOK */
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: stretch; /* 高さを揃える */
}

.kaitori_banner_wrapper > ul > li {
  display: flex;
}

.kaitori_banner_right {
  display: flex;
  width: 100%;
}
/* 右側（2つ積む側） */
.kaitori_banner_right > ul {
  display: flex;
  flex-direction: column;
  gap: 16px; /* 上下の隙間 */
  margin: 0;
  padding: 0;
  list-style: none;
  flex-direction: column;
  height: 100%;
}
.kaitori_banner_right > ul > li {
  flex: 0.5;
}

/* 画像共通 */
.kaitori_banner_wrapper img {
  width: 100%;
  height: auto;
  display: block;
}


@media screen and (max-width: 768px) {
  .kaitori_banner_wrapper > ul {
    flex-direction: column;
  }

  .kaitori_banner_wrapper > ul > li {
    flex: none;
    display: block;
	  text-align: center;
  }

  .kaitori_banner_right,
  .kaitori_banner_right > ul {
    height: auto;
  }

  .kaitori_banner_right > ul > li {
    flex: none;
	  padding: 10px 0;
  }
 .kaitori_banner_right > ul > li img{
	 display: block;
	 margin: 0 auto;
	 width:50%;
	}
}



	



.kaitori_three-images ul{
  display: flex;
  justify-content: space-evenly;
  align-items:center;
  margin: 0 auto;
	width:100%;
}

.kaitori_three-images ul li {
  width: 18%; 
  height: auto;
}

.kaitori_three-images ul li img {
  width: 100%; 
  height: auto;
}






.footer_two-cols {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.footer_two-cols .left-col {
  width: 75%;
}

.footer_two-cols .left-col img {
  width: 100%;
  height: auto;
  display: block;
}
.footer_two-cols .left-col .text {
  margin-top: 24px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 14px;
  line-height: 1.9;
}
.footer_two-cols .right-col {
  width: 25%;
}

.footer_two-cols .right-col img {
  width: 100%;
  height: auto;
  display: block;
}


.footer_title{
	font-size: 2.7rem;
	text-align: center;
	color:var(--color-main-brown);
	margin-top: 10px;
}
.footer_address{
	font-size: 1.4rem;
}
.footer_caption{
	font-family: var(--font-san_serif);
	font-size: 0.8rem;
	text-align: right;
	margin-top: 10px;
}












/* スマホ */
@media (max-width: 768px) {
.title_block{
	font-size:1.9rem;
	padding: 20px 0;
}
.title_sironuki{
	padding: 5px;
	font-size:1.2rem;
}



.illust {
  top: 50%;
}

/* 左 */
.illust_left {
  width: 60px;
}

/* 右 */
.illust_right {
  width: 40px;
}




/* 左 */
#gallery .title_block img.illust_left {
	top:35%;
  left: 0;
  width: 100px;
}

/* 右 */
#gallery .title_block img.illust_right {
	top:35%;
  right: 0;
  width: 70px;
}

	
	
.gallery_list{
	text-align: center;
	margin-bottom: 20px;
}
.gallery_image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
  max-width: 100%;
  margin: 0 auto;
}


.gallery_image-grid img {
  width: 100%;
  aspect-ratio: 4 / 4;   /* ← 高さを揃える核心 */
  object-fit: cover;    /* トリミングして揃える */
  display: block;
}

	
	
	

h1.main_title {
  padding-bottom: 12px;
  font-size: 1.7rem;
}

h1.main_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px dotted #000;
}
.kaimasu_title_block h1.main_title{
  font-size: 1.5rem;
}
.kaimasu_title_block .illust {
  top: 25%;
}

/* 左 */
.kaimasu_title_block .illust_left {
  left: 0;
  width: 80px;
}

/* 右 */
.kaimasu_title_block .illust_right {
  right: 0;;
  width: 100px;
}
	
.four-cols {
  display: block;
	text-align: left;
	margin: 20px 0 0;
}
.four-cols .col{
		padding: 10px 0;
	}
/* 残り3列は少し狭く */
.four-cols .col a img {
	display: block;
	margin: 0 auto;
  width:50%;
}
/* 2列目だけ100%表示 */
.four-cols .col:nth-child(2) a img {
  width:100%;
}
/* 3列目は一番小さく */
.four-cols .col:nth-child(3) img {
	display: block;
	margin: 0 auto;
   width:20%;
}
	
	
	
	
.kaitori_block02{
	position: relative;
	padding: 20px;
	font-size: 1rem;
}
.kaitori_block02 img.kaitori_block02_usagi{
	position: absolute;
	right:0;
	top:200px;
	width: 100px;
}
.tel_no_block{
	position: relative;
	width: 100%;
	margin: 0 auto 60px;
}

.tel_no_block ul li,.tel_no_block ul li a img{
	height:auto;
	width: 90%;
	margin: 0 auto;
	padding: 5px 0;
}
.tel_no_block ul li:first-child{
	position: relative;
	top:0;
	left:0;
	right:0;
	height:auto;
	width: 100px;
	padding: 0;
}
.tel_no_block ul li:last-child{
	position: relative;
	top:0;
	left:0;
	right:0;
	height:auto;
	width: 120px;
	padding: 0;
}


	

.kaitori_three-images ul {
  display: block;
  margin: 40px auto;
	width:100%;
	text-align: center;
}

.kaitori_three-images ul li {
  width: 200px; 
  height: auto;
  display: block;
	margin: 20px auto;
}
.kaitori_three-images ul li:nth-child(2n) {
  width: 100px; 
  height: auto;
}






.footer_two-cols {
  display: block;
  max-width: 100%;
}
.footer_two-cols .left-col {
  width: 100%;
}

.footer_two-cols .left-col img {
  width: 100%;
  height: auto;
  display: block;
}
.footer_two-cols .left-col .text {
  margin-top: 24px;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 14px;
  line-height: 1.9;
}
.footer_two-cols .right-col {
  width: 100%;
}

.footer_two-cols .right-col img {
  width: 60%;
  height: auto;
  display: block;
	margin: 40px auto;
}


.footer_title{
	font-size: 1.8rem;
	margin: 20px 0;
}
.footer_address{
	font-size: 1.2rem;
	text-align: center;
}
.footer_caption{
	font-size: 0.8rem;
	text-align: center;
	margin-top: 20px;
}

	
	

.schedule_title{
	display: block;
	font-size: 1.2rem;
}
.schedule {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  max-width: 100%;
  gap: 2px;
	background: gray;
}


.month {
  background: #00a0e9;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
  position: relative;
	font-family: var(--font-marugo);
}

.mark {
  color: #ffe100;
  font-size: 15px;
  position: absolute;
  right: 12px;
  top: 8px;
}

.dates {
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 20px 10px;
}
.dates span.gappi {
  font-size: 1rem;
}
.sat,
.sun,
.fri {
	top:-1px;
}
.schedule_jikan{
	font-size: 1.2rem;
}

}