@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/


/*======= 共通 ======*/

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}



/*======= TOP ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space);
	background-color: var(--base-color);
	position: relative; /* sectionの位置を相対的にする*/
	z-index: 1; /* 背景画像より上に表示 */
}

.greeting-spot {
	color: var(--accent-color1);
	font-size: 1.2em;
}



/*======= コンテンツ ======*/



/*======= Rooms 客室 ======*/
.secR {
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
	background-color: #f7f7f7;
	background-image: repeating-linear-gradient(0deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 15px), repeating-linear-gradient(90deg, #e6e6e6 0, #e6e6e6 1px, transparent 1px, transparent 15px);
	background-size: 15px 15px;
}
@media screen and (max-width: 568px) { 
	.h3sp{
		margin-top:-2em;
	}
}
h4.title{
	font-weight:500;
}
@media screen and (max-width: 568px) { 
	h4.title{
		font-size:1.2em;
	}
}
/*======= Facilities 設備 ======*/
.secF {
	padding: var(--v-space) 0;
	background-color: #fff;
}


/*======= Price ご利用料金プラン ======*/
.secP {
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;

	/* ベースをほんのり緑 */
	background-color: #f5f9f6;

	/* 極薄グリーングリッド */
	background-image:
	repeating-linear-gradient(
	0deg,
	#e3efe7 0,
	#e3efe7 1px,
	transparent 1px,
	transparent 15px
	),
	repeating-linear-gradient(
	90deg,
	#e3efe7 0,
	#e3efe7 1px,
	transparent 1px,
	transparent 15px
	);

	background-size: 15px 15px;
}
.price{
	font-size:2em;
	font-weight:600;
	color:var(--main-color);
}
@media screen and (max-width: 568px) { 
	.price{
		font-size:1.5em;
	}
}
h5.title{
	text-align:center;
	font-size:1.2em;
	padding-bottom:10px;
}

@media screen and (min-width: 570px) and (max-width: 799px) {
	br.tab {
		display: block;
		margin-bottom: 1em;
	}
}
@media screen and (max-width: 568px) { 
	h3.heading-decoration3{
		font-size:20px;
		margin-top:3em;
	}
}

.waku60{
	margin:0 auto;
	width:60%;
    padding: 10px;
    background-color: var(--base-color);
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, .05);
}

@media screen and (max-width: 568px) { 
	.waku60{
		width:initial;
	}
}



/*カード*/
.secP-card__item{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.secP-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secP-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secP-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	//	display: grid;
	//	grid-template-rows: subgrid;
	//	grid-row: span 3;
	/*ここまで*/

	padding: 10px;
	background-color: var(--base-color);
	border-radius: 10px;
	box-sizing: border-box;

	box-shadow: 0 6px 6px 0 rgba(0, 0, 0, .05);
}
.secP-card__item H4{
	margin: -10px -10px 10px;
	padding: 5px 0;

	font-size: clamp(18px,1.5vw,19px);
	font-weight: 500;
	line-height: 1.3;
	text-align: center;

	background-color: var(--accent-color1);
	border-bottom: 1px dashed var(--accent-color1);
	border-radius: 10px 10px 0 0;
	color:white;
}

.secP-card__item p{
	display: block;
	font-size: 15px;
	line-height: 1.5;
}
.p-plan{
	display: block;
	/* width:100%; ← 削除する */
	margin: -10px -10px 0;
	padding: 5px 0;

	text-align: center !important;
	background-color: var(--accent-color1);
	color:white;
}


/*======= Food 食事 ======*/
.secFo {
	padding: var(--v-space) 0;
	background-color: #fff;
}
/*テーブル*/
.pr, .pr td, .pr th {
	border-collapse: collapse;
	border: 1px solid #ddd !important; 
	text-align:center;
	padding:10px;
}
/*1行目のみ指定*/
.pr td:first-child {
	font-weight: bold;          /* 文字を太字に */
	width:20%;
	background-color:var(--accent-color2);
}
.contentsbg2a{
	padding-top:0 !important;
}

/*カード*/
.secF-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:10px;
}
@media only screen and (max-width: 968px) {
	.secF-card__item{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 568px) {
	.secF-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.secF-card__item div{
	padding: 10px;
	background-color: var(--base-color);
	border-radius: 10px;
	box-sizing: border-box;
}
.secF-card__item H3{
	padding: 5px 0;
	font-size: clamp(16px,1.5vw,17px);
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
}

.secF-card__item p{
	display: inline-block;
	font-size: 15px;
	line-height: 1.5;
}

/*======= Gallery 館内のご案内 ======*/
.secG {
	padding: var(--v-space) 0;
	background-color: var(--accent-color2);
}


.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}
@media only screen and (max-width: 567px) {
	.card-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}
@media print {
	.card-grid {
		display: grid;
		grid-template-columns: repeat(4,1fr);
		gap: 1.5rem;
	}
}

.card {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	row-gap: 0.5rem;
	text-align: center;
}

.card img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.card-title {
	font-size: clamp(0.8rem,1.6vw,1rem);
	margin: 0;
}


/*======= Around 周辺情報 ======*/
.secA {
	padding: var(--v-space) 0;
	background-color: #fff;
}

/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #EAF5EC;

	position: relative;
	z-index: 1;
	background-color: #f1faf5;
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #cde7d7, #cde7d7 1px, #f1faf5 1px, #f1faf5);
}

.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 5px;
}

.faq-label {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 110%;
	line-height: 1.5;
	border-radius: 3px;
	width: 1.5em;
	text-align: center;
	align-self: start;
	/* lavelを上揃えに */
}

.faq-label.q {
	background-color: var(--main-color);
}

.faq-label.a {
	background-color: var(--accent-color1);
}

.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.6;
	text-align: justify;
}

.faq-question {
	font-weight: bold;
}

hr.faqHr {
	height: 0px;
	border: 1px dashed var(--accent-color1);
	margin: 20px auto;
}


/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;
	background-image: url(../img/bg_04.jpg);
	background-size:cover;
	background-position: bottom;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.info_sec1::before {
	content: "";
	position: absolute;
	inset: 0; /* top:0;right:0;bottom:0;left:0 */
	background-color: rgba(255, 255, 255, 0.6); /* 白を60%透過 */
	z-index: -1; /* 背景の下に置く */
}


/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed var(--accent-color2);
	padding: 5px;
	width: 5.25em;
}
.info2 {
	border-bottom: 1px dashed var(--accent-color2);
	padding: 5px;
	width: 400px;
}
.info1a,.info2a{
	border-bottom: 1px dashed var(--accent-color1);
}

@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.info2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}

.info-sec1-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px 5px;
}

@media (min-width: 568px) {
	.info-sec1-container {
		grid-template-columns: repeat(6, 1fr);
	}
}

/*会社概要*/
.bg_b{
	background: rgba(77, 150, 119, 0.8);
	padding:40px;
	border-radius: 20px;
}
@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px;
	}
}

.access_sec1{
	padding: var(--v-space) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/*======= 調整 ======*/
.l-c {
	margin-right: auto;
	margin-left: auto;
}

.spot-heading01 {
	font-size: clamp(40px, 6vw, 60px);
	font-style: italic;
	text-align: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.spot-heading02 {
	font-size: clamp(22px, 2.7vw, 30px);
	line-height: 1em;
	font-weight: 700;
	text-align: center;
	font-family: 'YakuHanJPs', 'Noto Sans Japanese', sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial, Helvetica, Verdana;
}

/*全共通*/

strong{
	font-weight:normal;
}

h3{
	font-weight:500;
	font-style:normal;
}

.waku80{
	margin:0 auto;
	width:80%;
}

@media screen and (max-width: 568px) { 
	.waku80{
		width:initial;
	}
}

h5{
	border-bottom:1px dashed #aaa;
	margin-bottom:-0.5em;
	margin-top:1em;
	color:#666;
}
@media screen and (max-width: 568px) { 
	h5{
		margin-bottom:-0.3em;
	}
}

h4.title::after {
	display: block;
	content: '';
	width: 100px;
	height: 0px;
	margin-top: 0.3em;
	margin-bottom: 0.2rem;
	border-bottom: 5px solid var(--main-color);
	font-weight: bold;
	font-size: 26px;
}
