@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');/* =====================
   Hero
===================== */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden; /* 背景のはみ出しをカット */
  background-color: #fff; /* 背景のベースを白に */
}
/* 下部の境界をぼかすグラデーション */
/*
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  z-index: 5;
  pointer-events: none;
}
*/

.content_wrap{
}


@media (max-width: 768px) {
  .hero { border-radius: 0; }
}





/* =====================
   Blob SVG — PC / SP 切り替え
===================== */
.blob-svg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

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



/* =====================
   Content
===================== */
.content {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 60px);
  width: 90%;
  max-width: 700px;
}

.content h1{
	margin:0 auto 50px;
	max-width: 460px
}

.headline {
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  animation: fadeUp 1s ease 0.25s both;
}
.headline img{
    max-width: 400px;
    height: auto;
}
.headline::before{
    background: url(../img/hiro_dot3.svg) no-repeat center center;
    content: "";
    width: 100px;
    height: 80px;
    -moz-background-size:contain;background-size:contain;
    margin: 0 auto 20px;
    display: block;
}
.sub {
  font-size:25px;
  letter-spacing: 0.04em;
  line-height: 1.8;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-swiper {
    width: 85%;
    height: 60vh;
    border-radius: 0 80px 80px 0;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    margin: 0;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content_wrap {
	  position: relative;
	  z-index: 10;
	  width: 100%;
	  height: 100%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  flex-direction: row-reverse
	}

/*
    .hero-swiper {
        width: 55%;
        height: 50vh;
        margin: 0;}
*/
    
    
    .headline::before{
	    width: 200px;
		height: 80px; 
    }
    
    

@media screen and (max-width: 767px) {
	.hero-swiper{
		margin: 75px 0 0;
	}
	.sub {
  font-size:20px;}
/*
	.content{
		position: absolute;
		top: 20px;
		margin: 0 auto;
		padding: 230px 20px 0 0;
		display: flex;
		flex-direction: row-reverse;
		justify-content: flex-start;
		align-items: flex-end
	}
	.content h1{
		position: absolute;
		top:0;
		left: 0;
		right: 0;
		width: 80%;
	}
	.sub{
		writing-mode: vertical-rl;
		padding: 5em 0 0;
	}
	.headline img{
		height: 300px;
		width: auto
	}
*/
}	

@media print, screen and (min-width: 768px) {
	.content {
        width: 50%;
    }
}

@media print, screen and (min-width: 1024px) {}	


h2.sectitle{
	text-align: center;
	font-size: 2rem
}

h2.sectitle span{
	display: block;
	font-size: .6em;
	color: var(--color-point1);
	letter-spacing: .15em
}


/* =====================
   Scroll Hint
===================== */
.scroll-hint {
  position: absolute;
  bottom: 0px;
  left: 30px;
  z-index:10
}
@media screen and (max-width: 767px) {}	

@media print, screen and (min-width: 768px) {
	.scroll-hint{
		left: 0;
		right: 0;}
}	

@media print, screen and (min-width: 1024px) {}	


.scroll_down {
  position: relative;
  height: 100vh;
}

.scroll_down:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg,rgba(#745024, 0) 0, rgba(#745024, .8) 80%, rgba(#745024, .8) 100%);
  }
	
	
.scroll_down span {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 15px;
  padding: 10px 0 60px;
  color: #745024;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: .2s;
  overflow: hidden;
  margin: auto;
}

.scroll_down span:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 50px;
  background: #ddd;
}

.scroll_down span:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 50px;
  background:#82623a;
}


#type01 span:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

    /* Blob drift */
    @keyframes driftO  { from { transform: translate(0,0) rotate(0deg) scale(1); }    to { transform: translate(18px,14px) rotate(3deg) scale(1.04); } }
    @keyframes driftG  { from { transform: translate(0,0) rotate(0deg) scale(1); }    to { transform: translate(-14px,-30px) rotate(-4deg) scale(1.05); } }
    @keyframes driftOs { from { transform: translate(0,0); } to { transform: translate(-8px,12px); } }
    @keyframes driftGs { from { transform: translate(0,0); } to { transform: translate(10px,-8px); } }
    @keyframes driftOr { from { transform: translate(0,0) rotate(0deg); } to { transform: translate(12px,-14px) rotate(5deg); } }
    @keyframes driftGr { from { transform: translate(0,0) rotate(0deg); } to { transform: translate(-12px,10px) rotate(-3deg); } }
    
  
  
    
/* ------------------------------
 #facilities
------------------------------ */

#facilities{
	padding: 7% 0;
}


.read{
	background-image: url("../img/handline_yg30.png");
	background-position: center top;
	line-height: 40px;
	margin:2em auto 5em;
	max-width: 620px;
	padding: 0 .5em
}    
    

#facilities > ul{
	width: 90%;
	margin: 0 auto
	}
	


.page-link a{
	border: solid 2px var(--color-main);
	color: var(--color-main);
	width:-moz-fit-content;
	width:fit-content;
	padding: 1em 3em 1em 1.8em;
	line-height: 1;
	border-radius: 50px;
	position: relative;
	display: block;
	margin: 0 auto;
	text-align: left;
	-webkit-transition: all .3s;
	transition: all .3s;
	min-width: 300px;
	text-align: center;
	background: #fff
	}
	
.page-link a::after{
font-family: icomoon;
content: "\e977";
position: absolute;
right: 1em
}

.page-link a:hover{
	background: var(--color-main);
	color: #fff;
	transform: translateY(-5px);
}


@media screen and (max-width: 667px) {
	.read{
		width: 90%;
	}
	.read br { display: none; }
	
	#facilities ul,
	#facilities ul li{
		flex-direction: column
	}
	
	#facilities ul li{
		padding: 1em;
		box-shadow: 0px 0px 6px #ccc;
		border-radius: 10px;
		position: relative;
		margin-bottom: 2em;
		background: #fff
	}
	
	#facilities ul li .linkbox{
		width: 100%;
		position: relative;
		margin: -50px auto 0;
		align-items: center
	}
	
	#facilities ul li .linkbox .page-thumbnail{
		max-width: 200px;
		margin: 0 auto 1em
	}
	#facilities ul li .linkbox .page-link p{
		text-align: center;
		margin: 0 auto 1em
	}
/*
	.page-link::after{
		position: absolute;
		font-family: icomoon;
		content: "\e977";
		font-size: 30px;
		right: 0px;
	}
*/


}	

@media print, screen and (min-width: 668px) {
	.read{
	background-image: url("../img/handline_yg.png");
	line-height: 50px;
	text-align: center;
	} 

	#facilities > ul{
	display: flex;
	flex-direction: column;
	gap:20px;
	justify-content: space-around;
	max-width: 1000px;
	}
	
	#facilities > ul > li{
		text-align: center;
		display: flex;
		align-items: center
	}

	
	#facilities > ul > li:nth-child(odd){
		flex-direction: row-reverse
	}
	
	#facilities > ul > li figure{
		width: 60%;
	}
	#facilities > ul > li .linkbox{
		width: 40%;
		padding: 2em
	}
	.page-link p{
	padding: 1em;}
	
}	

@media print, screen and (min-width: 1024px) {
	#facilities ul{
		max-width: 1000px;
	}
}

/* ------------------------------
 #column
------------------------------ */

#column{
	background: rgba(245, 242, 211, 0.6);
	padding: 6% 0;
}

.column-list {
	margin: 3em auto 0;
}
.column-list > ul{
	display: flex;
	gap:30px;
	width: min(90%, 1200px);
	margin-inline: auto
}

.column-list > ul > li{
	flex: 1
}

.column-list > ul > li figure{
	position: relative
}

.new-circle {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 10;
    
    /* 丸いデザインの調整 */
    background-color: #ff4500;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    
    /* 文字の中央揃え */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* 文字の装飾 */
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}



.column-list > ul > li figure img{
	border-radius: 8px;
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4.5 / 3;
	-webkit-transition: all .3s;
	transition: all .3s;
	box-shadow: 0px 0px 8px #eee;s
}

.column-list > ul > li .column-title{
	padding: 1em .2em 0
}

.column-list > ul > li .column-title h3{
	font-size: 1.4rem
}

ul.meta{
	display: flex;
	gap:10px;
}

#column .page-link{
	margin: 3em 0 0
}


@media screen and (max-width: 667px) {
	#column{padding: 10% 0;}
	.column-list > ul{
		flex-direction: column
	}
}	

@media print, screen and (min-width: 768px) {}	

@media print, screen and (min-width: 1024px) {}	


/* ------------------------------
 #about
------------------------------ */

#about{
	padding: 7% 0;
}



/* ------------------------------
 #history
------------------------------ */

#history{
	margin-bottom: 10%
}

/* 1. 一番外側のコンテナ */
.history_wrap {
    width: 100%;
    padding: 2em 0;
    /* ここでは text-align: center は使わない */
}

/* 2. 全てのdlを包む「中身にフィットする箱」 */
.history_inner {
    display: table;    /* 中身の最大幅に自動で合わせる魔法のプロパティ */
    margin: 0 auto;    /* この箱ごと中央に寄せる */
    text-align: left;  /* 中の文字はすべて左揃え */
}

/* 3. 各行の設定 */
.history_wrap dl {
    display: flex;
    padding: 1em;
    line-height: 1.5;
    border-bottom: solid 1px #eee
}

/* 4. 日付：ここを固定すれば頭が揃う */
.history_wrap dt {
    width: 200px;
    flex-shrink: 0;
    font-weight: bold;
    text-align: left; /* 左揃えを徹底 */
    color: var(--color-point1);
}

/* 5. 内容 */
.history_wrap dd {
    margin: 0;
    padding-left: 20px;
    text-align: left;
}

/* スマホ用 */
@media screen and (max-width: 640px) {
    .history_inner {
        display: block;
        width: 90%;
    }
    .history_wrap dl {
        display: block;
        padding: .8em;
    }
    .history_wrap dt {
        width: 100%;
        margin-bottom: 5px;
    }
    .history_wrap dd {
        padding-left: 0;
    }
}