@charset "utf-8";
/* CSS Document */



div#plan a:link,
div#plan a:visited,
div#plan a:hover,
div#plan a:active {
	color: transparent;
	text-decoration: none;
}

section {
	text-align: left;
    margin: 0px auto 80px;
}
section:first-of-type {
	background-color: #F5FDFF;
	background-image: url("../images/plan/recommend_bg.png");
	padding: 80px 0;
	position: relative;
}
section:first-of-type:before {
content: "";
	display: inline-block;
	background-image: url("../images/plan/recommend_title.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -25px;
	left: 0;
	right: 0;
	margin: auto;
	width: 250px;
	height: 50px;
}
section > div {
	width: 1000px;
	display: grid;
	grid-template-columns: 450px 550px; /*列*/
	grid-template-rows: minmax(auto, auto) minmax(auto, 185px) max-content;
	gap: 20px;
	margin: 0px auto;
    box-sizing: border-box;
}
section > div > div:nth-of-type(1) { /*タイトル*/
	grid-row: 1 / 2;
	grid-column: 2 / 3;
	font-size: 22px;
}

section > div > div:nth-of-type(1) > span {
	display: block;
	font-family: bodoni-urw, serif;
	font-style: normal;
	line-height: 160%;
	border-bottom: #D9D9D9 2px solid;
	padding-bottom: 7px;
}
section > div > div:nth-of-type(1) > span > small { /*タイトル*/
	font-size: 20px;
}
section > div > div:nth-of-type(1) > span > i {
	display: block;
	font-size: 85%;
	font-style: normal;
}
section > div > div:nth-of-type(2) { /*写真*/
	grid-row: 1 / 4;
	grid-column: 1 / 2;
}
section > div > div:nth-of-type(2) > img {
	width: 100%;
	height: auto;
}
section > div > div:nth-of-type(3) { /*概要*/
	grid-row: 2 / 3;
	grid-column: 2 / 3;
}
section > div > div:nth-of-type(3) > p.lead {
	font-size: 14px;
	line-height: 200%;
}
section > div > div:nth-of-type(3) > dl {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch; /*高さ揃え*/
	margin: 20px 0 0;
}
section > div > div:nth-of-type(3) > dl > dt {
	width: 15%;
	font-size: 14px;
	line-height: 180%;
}
section > div > div:nth-of-type(3) > dl > dd {
	width: 85%;
	font-size: 14px;
	line-height: 180%;
}
section > div > div:nth-of-type(4) { /*予約*/
	grid-row: 3 / 4;
	grid-column: 2 / 3;
	 align-self: end;
	text-align: left;
}
section > div > div:nth-of-type(4) > a.btn {
	display: inline-block;
	min-width: 230px;
	color: #01B2E3!important;
	background-color: #fff;
	border: #01B2E3 2px solid;
	border-radius: 50px;
	text-align: center;
	margin: 0px 10px 20px 0;
	padding: 16px 0;
	box-sizing: border-box;
	position: relative;
}
section > div > div:nth-of-type(4) > a.btn:after {
	content: "";
	display: inline-block;
	background-image: url(../images/plan/arrow_b.png);
	width: 27px;
	height: 5px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
    right: 27px;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
}
section > div > div:nth-of-type(4) > a.btn:nth-of-type(2n) {
	margin: 0;
}
section > div > div:nth-of-type(4) > a.tel {
	display: inline-block;
	color: #53585a!important;
	border: #53585a 1px solid;
	background-color: #fff;
	text-align: center;
	margin: 0 0 20px 0;;
	padding: 10px 20px;
}
.notes > li {
	font-size: 14px;
	text-indent:-1em;
	padding-left:1em;
	margin: 10px 0;
}
	@media only screen and (max-width: 768px) {
		div#kv > div {
			width: 100%;
			height: 420px;
		}
		div#kv > div > img {
			width: auto;
			height: 100%;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
		}
		div#lead {
			width: 100%;
			margin: 40px 0 70px;
		}
		div#lead > div {
			width: 90%;
		}
		div#lead > div > h2 {
			font-size: 4vw!important;
			margin: 60px 0 20px;
		}
		div#lead > div > h2 > span {
			font-size: 9vw;
		}
		div#lead > div > ul.notes > li {
			font-size: 3.5vw;
			line-height: 160%;
		}
		section {
			text-align: left;
			margin: 0px auto 40px;
		}
		section:first-of-type {
			background-image: url("../images/plan/recommend_bg.png");
			padding: 40px 0;
			position: relative;
		}
		section:first-of-type:before {
		content: "";
			display: inline-block;
			background-image: url("../images/plan/recommend_title.png");
			background-repeat: no-repeat;
			background-size: cover;
			position: absolute;
			top: -25px;
			left: 0;
			right: 0;
			margin: auto;
			width: 250px;
			height: 50px;
		}
		section > div {
			width: 90%;
			display: block;
			grid-template-columns: none;
			grid-template-rows: none;
			gap: 0;
		}
		section > div > div:nth-of-type(1) { /*タイトル*/
			font-size: 5vw;
		}
		section > div > div:nth-of-type(3) > p.lead {
			margin-top: 20px;
		}
		section > div > div:nth-of-type(3) > dl {
			margin: 20px 0 30px;
		}
		section > div > div:nth-of-type(3) > dl > dt {
			width: 25%;
		}
		section > div > div:nth-of-type(3) > dl > dd {
			width: 75%;
		}
		section > div > div:nth-of-type(4) { /*予約*/
			text-align: center;
		}
		section > div > div:nth-of-type(4) > a.btn {
			width: 90%;
			min-width: 90%;
			margin: 0px auto 20px;
		}
		section > div > div:nth-of-type(4) > a.btn:nth-of-type(2n) {
			margin: 0px auto 20px;
		}
		section > div > div:nth-of-type(4) > a.tel {
			display: inline-block;
			color: #53585a!important;
			border: #53585a 1px solid;
			background-color: #fff;
			text-align: center;
			margin: 0 0 20px 0;;
			padding: 10px 20px;
		}
		.notes > li {
			line-height: 160%;
			margin-bottom: 30px;
		}
}

/* 下部プランボタン ※「2食付き」を表示する場合はこちらを有効に
section#plan_btn {
	width: 100%;
	background-color: #F7F6F3;
	margin: 0;
	padding: 0;
}
section > div#btn_area {
	display: flex;
	flex-wrap: wrap;
	width: 600px;
	margin:  0 auto 90px;
	padding: 40px 0;
}
section > div#btn_area > div > a {
	display: block;
	width: 100%;
	color: inherit;
	position: relative;
}

section > div#btn_area > div:nth-of-type(1),
section > div#btn_area > div:nth-of-type(2),
section > div#btn_area > div:nth-of-type(3) {
	display: flex;
	flex: 1;
	width: 33%;
	font-size: 15px;
	color: #222;
	text-align: center;
	background-color: #fff;
	border: #444 1px solid;
	border-radius: 30px;
	padding: 12px 0;
	position: relative;
}
section > div#btn_area > div:nth-of-type(4) {
	width: 100%;
	font-size: 15px;
	color: #222;
	text-align: center;
	margin-top: 10px;
}
section > div#btn_area > div:nth-of-type(4) > a {
	display: inline-block;
	width: fit-content;
	border-bottom: #222 2px dotted;
	padding-bottom: 2px;
} 
section > div#btn_area > div:before {
	content: "";
	display: inline-block;
	width: 25px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
    left: 16px;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
}
section > div#btn_area > div:nth-of-type(1):before {
	background-image: url(../images/plan/plan_btn_01.png);
}
section > div#btn_area > div:nth-of-type(2):before {
	background-image: url(../images/plan/plan_btn_02.png);
}
section > div#btn_area > div:nth-of-type(3):before {
	background-image: url(../images/plan/plan_btn_03.png);
}

section > div#btn_area > div:nth-of-type(1):after,
section > div#btn_area > div:nth-of-type(2):after,
section > div#btn_area > div:nth-of-type(3):after {
	content: "";
	display: inline-block;
	background-image: url(../images/plan/plan_btn_b.png);
	width: 20px;
	height: 11px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
    right: 0px;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
}
section > div#btn_area > div:nth-of-type(4) > a:after {
	content: "";
	display: inline-block;
	background-image: url(../images/plan/plan_btn_b.png);
	width: 20px;
	height: 11px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
    right: -18px;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
}
	@media only screen and (max-width: 768px) {
		section#plan_btn {
			width: 100%;
		}
		section > div#btn_area {
			display: block;
			flex-wrap: nowrap;
			width: 80%;
			margin:  0 auto;
			padding: 40px 0;
		}
		section > div#btn_area > div:nth-of-type(1),
		section > div#btn_area > div:nth-of-type(2),
		section > div#btn_area > div:nth-of-type(3) {
			display: block;
			flex: 0;
			width: 100%;
			margin-bottom: 12px;
		}
		section > div#btn_area > div:nth-of-type(4) {
			margin-top: 30px;
		}
}*/

/* 下部プランボタン（暫定対応・「2食付き」が復活した場合上記を有効にする） */
section#plan_btn {
	width: 100%;
	background-color: #F7F6F3;
	margin: 0;
	padding: 0;
}
section > div#btn_area {
	display: flex;
	flex-wrap: wrap;
	width: 600px;
	margin:  0 auto 90px;
	padding: 40px 0;
}
section > div#btn_area > div > a {
	display: block;
	width: 100%;
	color: inherit;
	position: relative;
}

section > div#btn_area > div:nth-of-type(1),
section > div#btn_area > div:nth-of-type(2){
	display: flex;
	flex: 1;
	width: 50%;
	font-size: 15px;
	color: #222;
	text-align: center;
	background-color: #fff;
	border: #444 1px solid;
	border-radius: 30px;
	padding: 12px 0;
	position: relative;
}
section > div#btn_area > div:nth-of-type(3) {
	width: 100%;
	font-size: 15px;
	color: #222;
	text-align: center;
	margin-top: 10px;
}
section > div#btn_area > div:nth-of-type(3) > a {
	display: inline-block;
	width: fit-content;
	border-bottom: #222 2px dotted;
	padding-bottom: 2px;
} 
section > div#btn_area > div:before {
	content: "";
	display: inline-block;
	width: 25px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
    left: 16px;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
}
section > div#btn_area > div:nth-of-type(1):before {
	background-image: url(../images/plan/plan_btn_02.png);
}
section > div#btn_area > div:nth-of-type(2):before {
	background-image: url(../images/plan/plan_btn_03.png);
}

section > div#btn_area > div:nth-of-type(1):after,
section > div#btn_area > div:nth-of-type(2):after {
	content: "";
	display: inline-block;
	background-image: url(../images/plan/plan_btn_b.png);
	width: 20px;
	height: 11px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
    right: 0px;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
}
section > div#btn_area > div:nth-of-type(3) > a:after {
	content: "";
	display: inline-block;
	background-image: url(../images/plan/plan_btn_b.png);
	width: 20px;
	height: 11px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
    right: -18px;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
}
	@media only screen and (max-width: 768px) {
		section#plan_btn {
			width: 100%;
		}
		section > div#btn_area {
			display: block;
			flex-wrap: nowrap;
			width: 80%;
			margin:  0 auto;
			padding: 40px 0;
		}
		section > div#btn_area > div:nth-of-type(1),
		section > div#btn_area > div:nth-of-type(2) {
			display: block;
			flex: 0;
			width: 100%;
			margin-bottom: 12px;
		}
		section > div#btn_area > div:nth-of-type(3) {
			margin-top: 30px;
		}
}


/*----------------------
画像
------------------------*/
section > div > div:nth-of-type(2) {
	position: relative;
}
.mod_thumlist_photo{
 height: 0!important;
}
.mod_thumlist_photo_entry{
	position:absolute;
	width:450px;
	top:0;
}
.mod_thumlist_photo_entry img{
	width:100%;
	height:auto;
}
.mod_thumlist_photo_entry p{
	margin-top: -30px;
	padding-right: 1em;
	text-align:right;
	color:#fff;
	font-weight: bold;
}
.mod_thumlist ul {
	width: 100%;
}
.mod_thumlist li{
	width: calc(100% / 6);
	float:left;
	background:none;
	margin-bottom: 10px;
	overflow: hidden;
}
.mod_thumlist li img {
	display:block;
	width: 69px;
	min-height: 69px;
	opacity: .7;
	object-fit: cover;
    object-position: 50% 50%;
    font-family: 'object-fit: cover; object-position: center;'
}

.mod_thumlist li a{
	display:block;
}
.mod_thumlist li a:link    {}
.mod_thumlist li a:visited {}
.mod_thumlist li a:hover   {opacity:0.8;}
.mod_thumlist li a:active  {opacity:0.8;}
/* IE用 ↓*/
.mod_thumlist li a:hover img {filter:alpha(opacity=80);}


/* clearfix：float解除＆親要素に高さを算出させる
-----------------------------------------*/
.ex_clearfix_cap:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}
.ex_clearfix_cap {
  min-height: 1px;
  margin-top: 310px;
}
* html .ex_clearfix_cap {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}

	@media only screen and (max-width: 750px){
		.mod_thumlist_photo{
		 height: 0!important;
		}
		.mod_thumlist_photo_entry{
			position:absolute;
			width:100%;
		}
		.mod_thumlist li{
				width: calc(100% / 6);
				margin-right: 10px;
			}
		.mod_thumlist li img {
			display:block;
			width: 100%;
			min-height: 50px;
			opacity: .7;
			object-fit: cover;
			object-position: 50% 50%;
			font-family: 'object-fit: cover; object-position: center;'
		}
		.ex_clearfix_cap {
		  min-height: 1px;
		  margin-top: 0px;
		  padding-top: 70%;
		}
		
		
	}

	


/* 電話発信 */
@media only screen and (min-width: 768px){
	a.tel {
		pointer-events: none;
		color: #53585a!important;
		border:none;
	}
}
@media only screen and (max-width: 768px) {
	a.tel {
		color: #53585a!important;
		border-bottom:#333 1px solid;
	}
}

.ppt {
	padding-top: 20px;
}
	@media only screen and (max-width: 768px) {
		.ppt {
			padding-top: 0px;
		}
	}
.f20 {
	font-size: 20px!important;
}