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

/* 宿泊プランページ */
.underline-red {
	text-decoration: underline;
	text-decoration-color: #C80003;
}

.line-height150 { display: block; line-height:150% !important;}

div.restaurant-box {
  padding: 3% 5% 5%;
  text-align: left;
  line-height: 170%;
}

div.restaurant-box p {padding: 10px 0 15px;}

/* 今月のレストラン情報 */
.catch {
    width: 100%;
}
.catch p {
    display: inline-block;
    width: auto;
    padding: 7px 15px;
	margin: 0 3px 3%;
    color: #000;
    background-color: #f6e9c9;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s;
    position: relative;
    z-index: 1;
	font-size: 100%;
	line-height: 100%;
}

.catch p.lunch {
	color: #fff;
    background-color: #C00;
}

.catch p.dinner {
	color: #fff;
    background-color: #336699;
}

div.oshinagaki { margin-top: 3%;}

.restaurant_box-one .restaurant_box-two_left , .restaurant_box-one .restaurant_box-two_right {
	background: rgba(255,255,255,0);
	padding: 0%;
}

#restaurant-content img {
    width: 100%;
    margin: 0 0;
}

/* レストラン 1枠BOX */
.restaurant_box-one {
	width: 100%;
	height: auto;
	padding: 5%;
	margin-bottom: 3%;
	background: rgba(255,255,255,0.8);
}

.restaurant_box-one img {
  width: 100%;
}

.restaurant_box-one h4 {
  font-size: 120%;
  padding: 0 0 2% 0;
}

.restaurant_box-one h5 , .restaurant_box-two h5 {
  font-size: 110%;
  padding: 0 0 2% 0;
}



/* レストラン 朝食2枠BOX */
.restaurant_box-two_morning {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: auto;
  flex-wrap: wrap;
}
.restaurant_box-two_morning_left {
  width: 50%;
  padding: 4% 2% 0 0;
  background: rgba(255,255,255,0.8);
}
.restaurant_box-two_morning_left img {
  width: 100%;
}
.restaurant_box-two_morning_right {
  width: 50%;
  padding: 4% 0 0 2%;
  background: rgba(255,255,255,0.8);
}
.restaurant_box-two_morning_right h4 {
  font-size: 120%;
  padding: 0 0 2% 0;
}

.inquiry_box {
	text-align: center;
	background-color: #fff1d0;
	padding: 50px;
}

.inquiry_box dt {
	font-size: 140%;
	margin-bottom: 10px;
}

.inquiry_box dd.tel {
	font-size: 140%;
	margin-bottom: 10px;
}

.inquiry_box dd {
	font-size: 120%;
}

.orchidBrand { position: relative;}
.orchidBrandLogo {
	position: absolute;
	top: 7%;
	right: 7%;
	text-align: right;
}

.orchidBrandLogo img {
	width: 20%;
}


/* イベント枠BOX */
.event-cont img{
    width: 100%;
    margin: 0 0;
}

.event-cont {
  margin: 2% 3% 5% 3%;
}

.event-cont h4 {
  font-size: 130%;
  font-weight: 500;
  margin-bottom: 2%;
}
.event-cont h5 {
  font-size: 130%;
  font-weight: 500;
  margin-bottom: 2%;
}

.event-menu { font-size: 90%;}
.event-menu-title { font-size: 110%; font-weight: 700; display: block; padding-top: 15px;}

/* イベント枠flexbox */
.restaurant-event-flexbox {
	display: flex;
	flex-direction: column;
}

.restaurant-event-flexbox div {
	flex: 1;
}

.restaurant-event-flexbox img {
	width: 100%;
}

.restaurant-event-flexbox-text {
	padding: 10px 0 0 0;
}



/*宴会*/
#banquetAccordion .accordion-box {
	flex-direction: column;
	padding: 10px;
}

#banquetAccordion .accordion-item {
	margin-bottom: 0;
	padding: 2% 2% 0;
}

/*ニューイヤーバイキング*/
.new-years_viking-qr {
	display: flex;
	flex-direction: row;
	width: 100%;
	text-align: center;
}
.new-years_viking-qr img{
	width: 100%;
}

.pb2 { padding-bottom: 2%;}
.pb3 { padding-bottom: 3%;}
.pb4 { padding-bottom: 4%;}
.pb5 { padding-bottom: 5%;}

.underline-d { border-bottom: #d2c2b9 dotted 1px;}

.restaurantPage_eventCont { }

.restaurantPage_eventCont .cont-one {
	width: 100%;
	text-align: left;
}

.restaurantPage_eventCont .cont-one .cont-inner{
	padding: 30px 30px 0;
}

.restaurantPage_eventCont .cont-one h4 { font-size: 140%; font-weight: 600;}
.restaurantPage_eventCont .cont-one h5 { font-size: 120%; font-weight: 600; margin: 30px 0 20px;}

/* ポップアップの基本スタイル */
.popup {
    display: none;  /* 初期状態で非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 背景を半透明に */
    justify-content: center;
    align-items: center;
	z-index: 10;
}

/* ポップアップの中身 */
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;  /* 相対配置（閉じるボタン用） */
    width: auto;
	width: 400px;
}

/* バツ印の閉じるボタン */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: black;
}

.close-btn:hover {
    color: red; /* ホバー時に赤色 */
}

/* ボタンのスタイル */
span.openPopup {
	padding: 6.5% 8%;
  font-size: 100%;
  background-color: #927666;
  border: solid 1px #c7b8af;
  border-radius: 6px;
  color: #fff;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 400;

}

span.openPopup:hover {
  background-color: #990000;
  color: #fff;
  cursor: pointer;
}

.reservation-btn span {
	padding: 6% 9%;
	font-size: 110%;
}

div.innnerButton {
	width: 100%;
	margin: 10px 0;
	display: block;
    color: #ffffff;
	background-color: #990000;
}

div.innnerButton:hover {
	opacity: 0.7;
  cursor: pointer;
}

div.innnerButton a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 3% 5%;
	background-color: inherit;
    border: none;
    border-radius:0;
	color: #ffffff;
}

div.innnerButton a:hover{
	background-color: inherit;
	color: #ffffff;
}

/* 閉じるボタンのスタイル */
#closePopup {
    color:#000000;
}

#closePopup:hover {
    color:#990000;
}

.headerGnavi > li span {
  color: #583c2c;
  font-size: 0.9em;
  text-decoration: none;
  font-weight: 400;
  position: relative;
  display: inline-block;
  transition: .3s;
}

.headerGnavi > li span:hover {
	cursor: pointer;
}

.headerGnavi > li span::after{
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #c09c3b;
  transition: .3s;
  transform: translateX(-50%);
}
.headerGnavi .menu__second-level > li span::after{
  position: absolute;
  bottom: initial;
  left: initial;
  content: initial;
  width: initial;
  height: initial;
  background-color: initial;
  transition: initial;
  transform: initial;
}
.headerGnavi > li span:hover::after{
  width: 100%;
}

/* 下線が動く */
.headerGnavi .menu__second-level span {
  padding: 0 0 5px 15px;
  line-height: 150%;
  color: #555;
  position: relative;
  display: inline-block;
  transition: .3s;
  font-weight: 500 ;
}
.headerGnavi .menu__second-level span::before {
  content:"";
  position: absolute;
  left: 0px;
  top: 8px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #c09c3b;
  border-right: 2px solid #c09c3b;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  -o-transition: left 0.2s ease;
  transition: left 0.2s ease;
}
.headerGnavi .menu__second-level span:hover::before{
  left: 3px;
}

.flexbox {display: flex; flex-direction: column; width: 100%;}
.flexbox div.w40 { width: 40%;}
.flexbox div.w50 { width: 50%;}
.flexbox div.w60 { width: 60%;}
.flexbox div.right { padding-left: 30px;}

.centerText {text-align: center;}

.program_list {margin: 50px auto 50px; text-align: center; padding: 0 10px;}
.program_list li { margin-bottom: 30px;}
.program_list li dl dt {font-size: 120%; margin-bottom: 10px;}
.program_list li dl dd {font-size: 140%;}

/* 団体プランページ */
.group-box {
	display: flex;
	flex-direction: column;
	height: 0;
	overflow: hidden;
	overflow-y: auto;
	/*max-height: 500px;*/
	opacity: 0;
	transition: all .5s;
	color: #333;
	border-bottom: dotted 1px #e2e2e2;
}
.accordion-check:checked~.group-box {
  height: auto;
  opacity: 1;
  padding: 1rem 0.5rem;
}

.group-imgbox {
	width: 100%;
}

.group-imgbox img {
	width: 100%;
	margin: 0 auto;
}

.group-imgbox div {
	margin: 10px 0 50px;
}

.group-imgbox div h4 {
	font-size: 110%;
}

/* レストラン 2枠BOX、2パターン目 */
.trentanove-staff_box-two {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  flex-wrap: wrap;
}
.trentanove-staff_box-two_left {
  width: 100%;
  padding: 4% 3% 0.5%;
  background: rgba(255,255,255,0.8);
}
.trentanove-staff_box-two_left img {
  width: 50%;
	margin: 20px auto 20px;
	display: block;
}
.trentanove-staff_box-two_right {
  width: 100%;
  padding: 2% 5% 8%;
  margin-bottom: 5%;
  background: rgba(255,255,255,0.8);
}
.trentanove-staff_box-two_right h4 {
  font-size: 120%;
  padding: 0 0 2% 0;
}

/* 朝食ちょこっとポイント */
.choko-p01 { 
	display: flex;
	flex-direction: row;
	width: 100%;
	background-color: #fdf3dd;
	border-radius: 30px;
	margin-top: 20px;
}
.choko-p02 { 
	display: flex;
	flex-direction: row;
	width: 100%;
	background-color: #fdf3dd;
	border-radius: 30px;
	margin-top: 20px;
}
.choko-p01 div { width: 25%; padding: 10px;}
.choko-p02 div { width: 25%; padding: 10px;}
.choko-p01 div img , .choko-p02 div img  { width: 100%;}
.choko-p01 dl { width: 85%;  padding: 20px 20px 20px 0;}
.choko-p02 dl { width: 75%;  padding: 20px 20px 20px 0;}
.choko-p01 dt , .choko-p02 dt { font-size: 105%;}
.choko-p01 dd , .choko-p02 dd { font-size: 90%;}
.yasai-text { width: 90%; margin: 0 auto; font-size: 120%; text-align: center;}

/*===========================================*/
@media (min-width: 768px) {
	
div.restaurant-box {
  font-size: 110%;
  padding: 3% 5%;
  text-align: left;
  line-height: 170%;
}
	
div.restaurant-box dl { display: flex; flex-direction: row; width: 100%; padding-bottom: 10px;}
div.restaurant-box dl dt { width: 20%;}
div.restaurant-box dl dd { width: 80%;}

div.oshinagaki dl { display: flex; flex-direction: row; width: 100%;}
div.oshinagaki dl dt { width: 7rem;}
div.oshinagaki dl dd { width: auto;}
	
.restaurant_box-one .restaurant_box-two_left {
  padding: 3% 3% 0 0;
}
.restaurant_box-one .restaurant_box-two_right {
  padding: 3% 0 0 0;
}
	
/* レストラン 1枠BOX */
.restaurant_box-one {
	padding: 3%;
}
	
.restaurant_box-one h4 {
  font-size: 130%;
  font-weight: 500;
  padding: 0 0 2% 0;
}
	
.restaurant_box-one h5 , .restaurant_box-two h5 {
  font-size: 120%;
  font-weight: 500;
  padding: 0 0 2% 0;
}

/* レストラン 朝食2枠BOX */
.restaurant_box-two_morning {
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: row;
}
.restaurant_box-two_morning_left {
  width: 50%;
  padding: 3% 2% 0 0;
  margin-bottom: 3%;
}

.restaurant_box-two_morning_right {
  width: 50%;
  padding: 3% 0 0 2%;
  margin-bottom: 3%;
}
.restaurant_box-two_morning_right h4 {
  font-size: 130%;
  font-weight: 500;
  padding: 0 0 2% 0;
}
	
/* レストラン 横 リンクボタン */
.trentanove-staff_box-two_right .reservation-btn,
.trentanove-staff_box-two_right .link-btn {
  margin: 5% 0 5%;
}
.trentanove-staff_box-two_right .reservation-btn a,
.trentanove-staff_box-two_right .link-btn a {
  padding: 5% 10%;
}
/* レストラン 2枠BOX */
.trentanove-staff_box-two {
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: row;
}
.trentanove-staff_box-two_left {
  width: 30%;
  padding: 3%;
  margin-bottom: 3%;
}	
.trentanove-staff_box-two_left img{
	width: 80%;
}
.trentanove-staff_box-two_right {
  width: 70%;
  padding: 4% 3% 4% 0;
  margin-bottom: 3%;
}
.trentanove-staff_box-two_right h4 {
  font-size: 130%;
  font-weight: 500;
  padding: 0 0 2% 0;
}
	
.align-center {text-align: center;}
	
.orchidBrandLogo {
	position: absolute;
	top: 70px;
	right: 70px;
	text-align: right;
}

.orchidBrandLogo img {
	width: 30%;
}
	
/* イベント枠BOX */
.event-cont img {
  width: 100%;
}

.event-cont {
  max-width: 1200px;
  margin: 0 auto;
}

.event-cont h4 {
  font-size: 150%;
}
.event-cont h5 {
  font-size: 130%;
}
	
/*宴会*/
#banquetAccordion .accordion-box {
	flex-direction: column;
	padding: 20px;
}
	
#banquetAccordion .accordion-item {
	margin-bottom: 0;
	padding: 2% 2% 0;
}
	
.accordion-box .monthly-box {
max-width: 100%;
}
	
.restaurantPage_eventCont .cont-one {
	width: 70%;
}
	
span.openPopup {
	padding: 5% 8%;
}
	
.reservation-btn span {
	padding: 2.6% 4.6%;
}
	
.flexbox {display: flex; flex-direction: row;}
	
.program_list {margin: 100px auto 100px; text-align: center;}
.program_list li { margin-bottom: 50px;}
.program_list li dl dt {font-size: 150%; margin-bottom: 20px;}
.program_list li dl dd {font-size: 180%;}
	
/* 朝食ちょこっとポイント */
.choko-p01 { 
	display: flex;
	flex-direction: row;
	width: 60%;
	background-color: #fdf3dd;
	border-radius: 30px;
	margin-top: 20px;
}
.choko-p02 { 
	display: flex;
	flex-direction: row;
	width: 100%;
	background-color: #fdf3dd;
	border-radius: 30px;
	margin-top: 20px;
}
.choko-p01 div { width: 20%; height: auto; padding: 10px;}
.choko-p02 div { width: 25%; height: auto; padding: 10px;}
.choko-p01 div img , .choko-p02 div img  { width: 90%; margin: 0 auto;}
.choko-p01 dl { width: 80%; height: auto; padding: 20px 20px 20px 0;}
.choko-p02 dl { width: 75%; height: auto; padding: 20px 20px 20px 0;}
.choko-p01 dt , .choko-p02 dt { font-size: 105%;}
.choko-p01 dd , .choko-p02 dd { font-size: 90%;}

/* イベント枠flexbox */
.restaurant-event-flexbox {
	flex-direction: row;
}

.restaurant-event-flexbox-text {
	padding: 0 0 0 20px;
}

}