@charset "UTF-8";


/*=======================================================*/
/*      		セクション毎のCSS   			  		  */
/*======================================================*/

/*============ 共通 =========== */
/*タイトル(共通)*/
.spot-heading01{
	/*font-size: clamp(50px,5vw,60px);*/	/*英字*/
	/*font-size: clamp(33px,3.5vw,40px);*/	/*日本語*/
	font-size: clamp(28px,3vw,35px);/*今回のみ*/
	line-height: 1.3em;
	font-style: italic;
	text-align: center;
	font-weight: 600;
	color: #e18585;
	font-family: 'Kiwi Maru';
}
.spot-heading02{
	/*font-size: clamp(22px, 2.7vw, 30px);*/
	font-size: clamp(20px, 2.5vw, 27px);
	line-height: 1em;
	font-weight: 400;
	text-align: center;
	color: #999;
	/*font-family: 'YakuHanJPs','Noto Sans Japanese',sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial,Helvetica, Verdana;*/
	font-family: 'Noto Serif JP', serif;

}
.spot-heading02+p{
	margin-top: 0.5em;
	margin-bottom: 1em;
	font-size: 22px;
	font-weight: bold;
	inline-size: fit-content;
	margin-inline: auto;
	font-family: 'YakuHanJPs','Noto Sans Japanese',sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial,Helvetica, Verdana;
}
.line{
	width: 1px;
	height: auto;
	padding-top: 3.5%;
	background-color: #2d2d2d;
	margin: 1% auto;
}
@media (max-width: 768px) {
	.line{
		padding-top: 7.5%;
	}
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 3.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}
/*印刷には表示されない*/
@media print{
	.print_none{
		display: none;
	}
}
/**/
.adjus{
	padding-top: 5px;
}
/*パンくず*/
.sec_pankuzu{
	padding: 0px;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}
/*アイコン画像*/
.i-icon01 {
	display: inline-block;
	width: 80px;
	vertical-align: middle;
	margin: 0 0 2px 0;
}
/*画像角丸*/
img.borad {
	border-radius: 7px;
}
/*よく使うリスト*/
.list-design {
	list-style: none;
	padding: 0 .8em .5em;
	position: relative;
	margin: 0 auto;
}
.list-design li {
	border-bottom: 1px dashed #6f6f6f;
	padding: .5em 0 .5em 2em;
	/*padding: .1em 0 .1em 2em;*/
	color: #fff;/*今回のみ*/
	font-size: clamp(14px, 1.6vw, 17px);
}
.list-design li:before {
	color: #67bdc3;
	content: "\f138";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left : 1em;
	margin: 3px 0;
	position: absolute;
}

@media (max-width: 768px)  {
	ul.list-design {
		padding: 0 .8em;
	}
}
/*見出し装飾*/
.puti{
	font-size: clamp(21px, 2.5vw, 27px);
	position: relative;
	/*display: inline-block;*/
	/*padding: 0 2em;*/
	text-align: center;
	margin: 0 auto 10px auto;
}
.puti:before,
.puti:after {
	font-family: 'Font Awesome 5 Free';
	line-height: 1;
	/*position: absolute;
	top: calc(50% - .5em);*/
	color: #eb6100;
}
.puti:before {
	left: 0;
	content: '\f101';
}
.puti:after {
	right: 0;
	content: '\f100';
}

/**/
.kukuri{
	padding: 10px 20px;
	margin: 20px auto;
	border: 1px solid #ccc;
	background: rgba(255, 255, 255, 0.5);
}
.kukuri p {
	margin: 10px auto 5px auto;
	font-size: clamp(16px, 1.6vw, 17px);
	line-height: 1.5;
}






/*======= ご挨拶 ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 150px 0;
	background-color: var(--base-color);
	background-image: url(../img/bg_02.jpg);
	background-position: 0% bottom;
	background-repeat: no-repeat;
	/*background-size: cover;*/
}
/**/
p.grp{
	font-size: 14px;
	/*padding: 15px 20px;*/
	margin: 0 auto;
	/*border: 1px solid #ccc;*/
	color: #777;
	width: fit-content;
}
/*3つ*/
.line-container3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.line-container3 div.lc3 {
	width: calc(33.3% - 20px);
}
@media (max-width: 768px) {
	.line-container3 div.lc3 {
		width: calc((100% - 10px) / 2);
	}
}
/*印刷時の為に今回だけ*/
@media print{
	.line-container3 div.lc3 {
		width: calc(33.3% - 20px);
	}
}
/**/
div.lc3 h4{
	font-size: clamp(15px, 1.7vw, 18px);
	text-align: center;
	border-radius: 25px;
	background-color: #fbf0da;
	border: 0;
	margin: 5px 0;
	padding: 3px 5px;
	line-height: 1.2;
	height: 3em;
	display: grid;
	align-items: center;
}

/*2つ*/
.gr-item-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5px 20px;
}
@media (max-width: 868px) {
	.gr-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
/*印刷時の為に今回だけ*/
@media print{
	.gr-item-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 5px 20px;
	}
}
.gr-item {
	box-sizing: border-box;
	margin-top: 20px;
}
.gr-item div {
	box-shadow: 3px 3px 6px 0px rgba(145, 117, 82, 0.3);
	border-radius: 55px;
	padding: 10px;
	background: rgba(255, 247, 218, 0.3);
}
@media (max-width: 868px) {
	.gr-item div {
		padding: 20px 30px;
	}
}
.gr-item div p{
	font-size: clamp(16px, 2vw, 20px);
	font-weight: bold;
	line-height: 1.3;
	color: #ea5f0a;
}
/*テキストcenter→justify*/
.tx-ctj2 {
	margin: 5px auto;
	text-align: center;
}
@media (max-width: 568px) {
	.tx-ctj2 {
		text-align: justify;
	}
}


/*矢印*/
.arrow_bottom {
	/*display: inline-block;*/
	width: 35px;
	height: 35px;
	background: #fdddb7;
	clip-path: polygon(0 48.2%, 31% 48.2%, 31% 0, 69% 0, 69% 48.2%, 100% 48.2%, 50% 100%);
	margin: 20px auto 10px auto;
}




/*＼　／でタイトルを囲む*/
.kochira {
	display: flex;
	justify-content: center;
	align-items: end;
	font-size: clamp(17px, 1.8vw, 19px);
	text-align: center;
	border: 0;
	line-height: 1.3;
	margin-bottom: 10px;
	color: var(--accent-color1);
}
.kochira::before,
.kochira::after {
	content: '';
	width: 2px;
	height: 25px;
	background-color: var(--accent-color3);
}
.kochira::before {
	margin-right: 20px;
	transform: rotate(-35deg)
}
.kochira::after {
	margin-left: 20px;
	transform: rotate(35deg)
}
@media screen and (max-width: 568px) {
	.kochira {
		font-size: 17px;
	}
	.kochira::before {
		margin-right: 15px;
	}
	.kochira::after {
		margin-left: 15px;
	}
}







/*======= パレットハウスみうらの魅力 Features ======*/
/*sec1*/
.sec1 {
	padding: 0 0 var(--v-space) 0;
	background-color: var(--accent-color2);

}

/* 下層 */
.lowerPage-heading-decoration2{
	font-size: clamp(40px, 4.5vw, 55px);
	min-height: 0vw;
	text-align:center;
	font-weight: 400;
	line-height: 1.3;
	color: var(--main-color);
	font-family: "Montserrat", sans-serif;
}
.lowerPage-heading-decoration2::after {
	display: block;
	content: '';
	width: 160px;
	height: 0px;
	border-top: solid 2px var(--accent-color1);
	margin-right:auto;
	margin-left:auto;
}
.lowerPage-heading-decoration2 + p {
	margin-top: 0.5em;
	margin-bottom: 3em;
	color: #454545;
	text-align:center;
	font-size: clamp(17px, 1.3vw, 25px);
}
/*朝夜アイコン画像*/
.i-icon02 {
	display: inline-block;
	width: 40px;
	vertical-align: middle;
	margin: 0 5px 2px 0;
}
/*テーブル*/
table.tbl01b {
	margin: 10px auto;
	border-top: 1px solid #e1d0c1;
	border-right: 1px solid #e1d0c1;
	/*width: fit-content;*/
}
table.tbl01b tr th {
	font-size: clamp(15px, 1.6vw, 17px);
	line-height: 1.4;
	padding: 10px 17px;
	/*padding-left: 20px;*/
	border-bottom: 1px solid #e1d0c1;
	border-left: 1px solid #e1d0c1;
	background-color: #19a9ff24;
}
table.tbl01b tr td {
	font-size: clamp(15px, 1.6vw, 17px);
	line-height: 1.4;
	padding: 10px 17px;
	border-bottom: 1px solid #e1d0c1;
	background-color: #a9e3ff24;
	text-align: center;
}

@media screen and (max-width: 910px) {
	table.tbl01b {
		width:100%;
	}
	table.tbl01b tr th {
		padding: 10px 17px;
	}
}
/*2つ*/
.sec1-item-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 20px;
}
@media (max-width: 568px) {
	.sec1-item-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
.sec1-item {
	box-sizing: border-box;
	margin-top: 20px;
}




/*======= 周辺環境 ======*/
/*sec2*/
.sec2 {
	padding: 0 0 var(--v-space) 0;
	background-color: var(--accent-color2);
}

/*3つ*/
.sec2-item-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
@media (max-width: 568px) {
	.sec2-item-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
.sec2-item {
	box-sizing: border-box;
}
/*印刷時の為に今回だけ*/
@media print{
	.sec2-item-container {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
}






/*======= 部屋・設備 Room ======*/
/*sec3*/
.sec3 {
	padding: var(--v-space) 0;
	background-image: url(../img/bg_04.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}

/**/
h4{
	font-size: clamp(16px, 1.7vw, 18px);
	margin: 0px 0 10px 0;
	color: #454545;
	border-bottom: 1px dotted #7b7b7b;
	background-color: #f2efdb75;
}
/*□装飾*/
.cp_h4title {
	position: relative;
	padding: 2px 2px 2px 29px;
}
.cp_h4title::before,
.cp_h4title::after {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	border: 2px solid #D2CC6B;
}
.cp_h4title::before {
	top: 6px;
	left: 5px;
}
.cp_h4title::after {
	top: 10px;
	left: 10px;
}

/*テーブル*/
table.tbl02 {
	margin: 10px 0 5px 0;
}
table.tbl02 tr th {
	text-align: left;
	font-size: clamp(15px, 1.5vw, 16px);
	line-height: 1.4;
	padding: 5px 5px 5px 7px;
	border-bottom: 1px solid #999;
	background: rgba(255, 255, 255, 0.3);
}
table.tbl02 tr td {
	text-align: right;
	font-size: clamp(18px, 1.8vw, 19px);
	line-height: 1.4;
	padding: 5px;
	border-bottom: 1px solid #999;
	background: rgba(255, 255, 255, 0.3);
}
table.tbl02 tr td span {
	font-size: clamp(11px, 1.3vw, 13px);
}





/*======= よくある質問 FAQ ======*/
/* よくある質問 FAQ */
.faq_sec1 {
	/*padding: clamp(50px, 4vw, 50px) 0;*/	/*ページ内カテゴリーの場合*/
	padding: var(--v-space) 0;
	/*padding: 0px 0 100px 0;*/	/*別ページの場合*/
	background-color: #f1f4df;
	background-image: url(../img/bg_03.png);
	background-position: top left;
	background-repeat: no-repeat;
	background-size: cover;
}
/**/
div.faq2{
	padding: 10px 0 0 0;
}

/*通常デザイン*/
/*
div.faq2 p.b {
	font-weight: 600;
	color: #000;
}
div.faq2 p.b::first-letter {
	color: var(--accent-color1);
	font-weight: 600;
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1em;
	padding-left: 1em;
	display: block;
	color: #555;
}
div.faq2 p::first-letter {
	color: #d99c64;
	font-weight: 600;
}
*/

/*枠付きデザイン*/
/**/
.onecours{
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	padding: 15px 20px;
	margin: 20px 0;
}
.onecours:first-child{
	margin: 0px;
}
/**/
hr.faqHr2 {
	height: 0px;
	border-bottom: 1px dotted #7b7b7b;
	margin: 5px auto;
}

div.faq2 p.b {
	font-weight: 600;
	color: #000;
}
div.faq2 p.b::first-letter {
	color: var(--accent-color1);
	font-weight: 600;
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: justify;
	text-indent: -1em;
	padding-left: 1em;
	display: block;
	color: #555;
}
div.faq2 p::first-letter {
	color: #df8b8b;
	font-weight: 600;
	font-size: 115%;
}






/*======= 概要 Information ======*/
/*info_sec1*/
.info_sec1{
	padding: var(--v-space) 0;
	background-image: url(../img/bg_01.jpg);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
}
/**/
.bg_b{
	background: rgba(255, 255, 255, 0.9);
	padding: 40px 50px;
}
@media screen and (max-width: 568px) {
	.info_sec1{
		background-position: 21% 100%;
	}
	.bg_b {
		background: rgba(255, 255, 255, 0.93);
		padding: 20px;
	}
}
/**/
.kukuri p.tx-ctj {
	font-size: clamp(14px, 1.5vw, 15px);
	margin: 5px auto;
	line-height: 1.5;
	text-align: center;
}
@media (max-width: 968px) {
	.kukuri p.tx-ctj {
		text-align: justify;
	}
}
/*印刷時の為に今回だけ*/
@media print{
	.kukuri p.tx-ctj {
		font-size: clamp(14px, 1.5vw, 15px);
		margin: 5px auto;
		line-height: 1.5;
		text-align: center;
	}
}
/* 概要・アクセス部分のテーブル */
/*アイコン画像*/
.if-ico {
	display: inline-block;
	width: 30px;
	vertical-align: middle;
	margin: 0 7px 0 0;
}
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #5e5e5e;
	padding: 15px 3px;
	width: 7.25em;
	font-size: clamp(17px, 1.6vw, 18px);
	box-sizing: border-box;
/*font-family: 'Kiwi Maru';*/
}
.info2 {
	font-size: clamp(16px, 1.7vw, 18px);
	border-bottom: 1px dashed #8a8a8a;
	padding: 15px 3px;
	width: 400px;
	box-sizing: border-box;
font-family: "Sawarabi Gothic", "M PLUS 1p", sans-serif;
}

@media screen and (max-width: 768px) {
	.if-ico {
		width: 27px;
	}
	td.info1 {
		display: block;
		padding: 5px 0px 4px 5px;
		width: 100%;
		background-color: #eaeaea75;
		mix-blend-mode: multiply;
	}
	.info2 {
		display: block;
		padding: 10px 2px 10px 5px;
		width: 99%;
	}
}



/*======= Access アクセス ======*/
/**/
.access_sec1{
	padding: var(--v-space) 0 70px 0;
	background-color: var(--accent-color2);

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/*カード*/
.access_sec1-card__item{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px 20px;
}
@media only screen and (max-width: 768px) {
	.access_sec1-card__item{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
.access_sec1-card__item div{
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	/*ここまで*/

	padding: 20px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	box-sizing: border-box;
	margin-bottom: 10px;
}
.access_sec1-card__item img{
	width: 30%;/*アイコンの場合*/
	/*width: 100%;*/
	margin: 0 auto;
}
.access_sec1-card__item h4{
	color: var(--main-color);
	padding: 5px 0;
	margin-bottom: 5px;
	font-size: clamp(18px,1.9vw,20px);
	font-weight: 600;
	text-align: center;
	border-top: 2px dotted #9eaca2;
	border-bottom: 2px dotted #9eaca2;
	background-color: #ffffff75;
}




