/* Variables */
:root {
	/* Font */
	--font-family--primary: 'Noto Sans JP', sans-serif;
	
	/* Colors */
	--color-primary: #66899b;
	--color-black: #000000;
	--color-white: #ffffff;
}

/* CSS Document */
* {
	padding: 0px;
	margin:0px;
	outline: none;
	/*widows: 1000;*/
}

html {
  scroll-behavior: smooth;
}


body {
	font-family: var(--font-family--primary);
	font-size: .875rem;
	font-weight: 500;
	line-height: 1.8rem;
	color: var(--color-black);
}
img {
	max-width: 100%;
}
a{
	color: var(--color-black);
	text-decoration:none;
	transition:0.5s;
}
	
a img {
	border-style:none;
	}

a:hover,
a:hover img{
	opacity:0.5;
	transition:0.5s;
}

.floor-top a:hover,
.floor-top a:hover img{
	opacity:1.0;
	transition:1.0s;
}

a.btn_site{
	display:block;
	width:334px;
	margin:0 auto;
}

a.btn_site:hover{
	opacity:0.5;	
}

p.indent{
	padding-left:1em;
	text-indent:-1em;
}

p .yel{
	color:#FFF100;
}

ul li,
dl dt,
dl dd{
	font-size:14px;
	line-height:160%;
}

h3{
	font-size:14px;
	letter-spacing:1px;
	line-height:149%;
	color: #595A5A;
}

.cen{
	text-align:center;
}

.top_10m{margin-top:10px;}
.top_20m{margin-top:20px;}
.top_30m{margin-top:30px;}
.top_40m{margin-top:40px;}
.top_50m{margin-top:50px;}
.top_60m{margin-top:60px;}
.top_70m{margin-top:70px;}
.top_80m{margin-top:80px;}
.top_90m{margin-top:90px;}
.bot_10m{margin-bottom:10px;}
.bot_20m{margin-bottom:20px;}
.bot_30m{margin-bottom:30px;}
.bot_40m{margin-bottom:40px;}
.bot_50m{margin-bottom:50px;}
.bot_60m{margin-bottom:60px;}
.bot_70m{margin-bottom:70px;}
.bot_80m{margin-bottom:80px;}
.bot_90m{margin-bottom:90px;}

.mb-0 {margin-bottom: 0;}

.pc_blc {
  display: none;
}
.sp_blc {
  display: block;
}
@media (max-width: 520px) {
  .pc_blc {
    display: block;
  }
  .sp_blc {
    display: none;
  }
  
}

/* pc,sp/on_off */
.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}


/** content
===================================*/
.boxcont{
	margin:0 auto;
	font-family:"ヒラギノ角ゴ Pro W3" , "ＭＳ Ｐゴシック" , "MS PGothic" ,"Meiryo UI" , "メイリオ" , Meiryo ,  Osaka ;
	color: #000;
}

.boxcont .min{
	font-family: 'Kozuka Mincho Pro', 'Kozuka Mincho Std', '小塚明朝 Pro R', '小塚明朝 Std R', 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro W3', 'ＭＳ Ｐ明朝', 'Times', 'Times New Roman', serif;
	font-weight:bold;
}

.boxcont .maru{
	font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
	font-weight:bold;
}

.boxcont {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
	padding: 0 0 30px 0;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.box_main .main_bg .main_chara .open{
	transform-origin:center top;
	animation:showopen 2s both;
}

@keyframes showopen {
	0% {
		transform:translate(0,3.5em);
		opacity:0;
		text-shadow:0 0 0 #0f0;
	}
	
	100% {
		transform:translate(0,0);
		opacity:1;
		text-shadow:none;
	}
}


.box_main .main_bg .main_chara .open2{
	transform-origin:center top;
	animation:showopen2 2s both;
}
@keyframes showopen2 {
	0% {
		transform:translate(0,0);
		opacity:0;
		text-shadow:0 0 0 #0f0;
	}
	
	100% {
		transform:translate(0,0);
		opacity:1;
		text-shadow:none;
	}
}


.box_main .main_bg .main_chara .chara01{
	z-index:100; position:absolute; top:0px; left:0px; animation-delay:0s;
}

.box_main .main_bg .main_chara .chara02{
	z-index:99; position:absolute; top:0px; left:0px; animation-delay:2s;
}

.box_main .main_bg .main_chara .chara03{
	z-index:101; position:absolute; bottom:-150px; left:0px; animation-delay:0s;
}

.box_main .main_bg .main_chara .chara04{
	z-index:101; position:absolute; bottom:-130px; left:0px; animation-delay:0s;
}



/* アニメーションのスタイル */
.ani-scUp {
	/*-webkit-transform: translateY(40px);
	transform: translateY(40px);*/
	-webkit-transform: translate3d(0px,-60px,0px);
	transform: translate3d(0px,-60px,0px);
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.ani-scUp.ani-on {
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	opacity: 1;
}

.ani-scDown {
	-webkit-transform: translate3d(0px,60px,0px);
	transform: translate3d(0px,60px,0px);
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.ani-scDown.ani-on {
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	opacity: 1;
}

.ani-scLeft {
	-webkit-transform: translate3d(0px,60px,0px);
	transform: translate3d(60px,0px,0px);
	opacity: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.ani-scLeft.ani-on {
	-webkit-transform: translate3d(0px,0px,0px);
	transform: translate3d(0px,0px,0px);
	opacity: 1;
}




/*topへ戻る*/
#page-top{
    width:90px;
    height:50px;
    display:none;
    position:fixed;
    right:20px;
    bottom:50px;
	z-index:50;
}
  
#page-top p{
    margin:0;
    padding:0;
    text-align:center;
    -webkit-transition:all 0.3s;
    -moz-transition:all 0.3s;
    transition:all 0.3s;
    border-radius: 0px;
    background: #707070;
	border:none;
    behavior: url(PIE.htc);
    text-decoration:none;
    color:#000;
	border-radius:5px;
}

#page-top p.bnr{
	border:none;
	margin:0 0 20px 0;
}

#page-top p a{
	color:#fff;
}

#page-top p a:hover{
	color:#fff;
}

#page-top p:hover{
    background: #414162;
	color:#fff;
	opacity: 0.5;
}

#page-top p.bnr:hover{
	background:none;
}
  
#move-page-top{
	font-size:10px;
    line-height:30px;
    text-decoration:none;
    display:block;
    cursor:pointer; 
}

/** header
===================================*/
header{
	background: #8a804c; min-height: 70px;
}

nav {
	padding: 10px 0 10px 0;
	}
	
nav ul{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	padding: 10px 0 10px 0;
}

nav ul li{
	padding: 0 30px;
}

nav ul li a{
	color: #fff;
}

.logo_sp{
	text-align: center;
	margin: 0px 0 0 0;
	    padding: 10px 0 10px 0;
}

/*SPメニュー*/
.menu-btn {
    position: fixed;
    top: 7px;
    right: 7px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color:#8a804c;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color:#8a804c;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    /*border-bottom: solid 1px #ffffff;*/
    list-style: none;
	text-align: center;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
   /* border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);*/
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #8a804c;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

.menu-content .menu-tit{
	font-size: 30px;
	margin: 15px auto -40px auto;
	text-align: center;
	color: #fff;
}

/** footer
===================================*/

#footer_over{
	width:100%;
	float:left;
	clear:both;
	margin:0 auto;
	background-color:#FFFFFF}


#footer {
		background:url(http://www.princehotels.co.jp/common/imgs/module_parts/parts_footer/bg01.gif) repeat-x;
		padding:20px 0px 15px 0px;
		width:100%;
}

*:first-child+html #footer {
	padding:18px 0px 15px 0px;
	}

#copyright {
	width: 100%;
	text-align:center;
	margin:0px auto;
	color: #888;
	font-weight: 400;
}
@media(max-width: 767px) {
	#footer {
		padding-top: 15px;
	}
	#copyright {
		font-size: 0.68rem;
	}
}

/*コンテンツ トップ
---------------------------------------*/
.boxcont .inner{
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
}

.boxcont h1{
	text-align: center;
	margin: 70px auto;
}


@media screen and (max-width: 960px) {

	.boxcont h1{
		text-align: center;
		margin: 30px auto;
	}

	.boxcont h1 img{
		width: 100%;
	}

}


@media screen and (max-width: 520px) {

}

/*コンテンツ　トップ　お問い合わせ*/
.boxcont .enquiry{
	width: 100%;
    max-width: 1500px;
    margin: 0 auto 30px auto;
	text-align: center;
}

.boxcont .enquiry h2{
	font-size: 20px;
	font-weight: normal;
	margin: 0 0 10px 0;
}

.boxcont .enquiry .txt{
	font-size: 15px;
	font-weight: normal;
	margin: 0 0 20px 0;
}

.boxcont .enquiry .inner{
	display: flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
}

.boxcont .enquiry .inner .tel{
	padding:10px 20px 0 20px;
	width: 420px;
	border-right: 1px #000 solid;
}

.boxcont .enquiry .inner .tel .tit{
	font-size: 15px;
}

.boxcont .enquiry .inner .tel .telnum{
	font-size: 28px;
}

.boxcont .enquiry .inner .tel .teltime{
	font-size: 15px;
}

.boxcont .enquiry .inner .mail{
	padding:0 20px;
	width: 420px;
}

.boxcont .enquiry .inner .mail .tit{
	font-size: 15px;
}

@media screen and (max-width: 520px) {
.boxcont .enquiry .inner .tel{
	padding:10px 20px 20px 20px;
	width: 90%;
	border-right: none;
}

.boxcont .enquiry .inner .tel .tit{
	font-size: 15px;
}

.boxcont .enquiry .inner .tel .telnum{
	font-size: 28px;
}

.boxcont .enquiry .inner .tel .teltime{
	font-size: 15px;
}

.boxcont .enquiry .inner .mail{
	padding:0 20px;
	width: 90%;
}

.boxcont .enquiry .inner .mail .tit{
	font-size: 15px;
}

.boxcont .enquiry .inner .mail .btn{
	
}
}

/*コンテンツ 宴会場のご案内
---------------------------------------*/
.bnq_photo_a{
	margin: 0 0 30px 0;	
}

.bnq_photo_b{
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	margin: 0 0 50px 0;	
}

.bnq_photo_b p{
	padding: 0 20px;
	margin: 0 0 15px 0;
}

.btn{
	text-align: center;
	margin: 0 auto;
}

.box_ac{

	width: 100%;
	max-width: 490px;
	margin: 0  auto;
}
.btn_ac{
	text-align: center;
	margin: 0 auto;
	
}


.btn_txt_01{
	text-align: center;
	    margin: 0 auto 10px auto;
	font-size: 16px;
}

.btn_txt_02{
	text-align: center;
	    margin: 0 auto 10px auto;
	font-size: 12px;
}

.box_ac img{
	width: 90%;
}

@media screen and (max-width: 520px) {

.bnq_photo_a img{
	width: 80%;
}

.bnq_photo_b{
	display: block;
	    text-align: center;
}
.bnq_photo_b img{
	width: 90%;
}



}


/*コンテンツ トップ（宴会場のご案内・ご宴会・ミーティングプラン）
---------------------------------------*/
.boxcont .cont_area{
	width: 100%;
}

.boxcont .bg{
	background: #f7f4f0;
}

.boxcont .cont_area .inner{
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
    padding: 50px 0 20px 0;
}

.boxcont .cont_area .inner h2{
	width: 60%;
	font-size: 32px;
	font-weight: normal;
	padding: 0 0 35px 0;
    margin: 0 auto 70px auto;
    text-align: center;
    border-bottom: 1px solid #707070;
}
.boxcont .cont_area .plan_over{
	margin: 20px auto 0px auto;
}
.boxcont .cont_area .plan_list{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

.boxcont .cont_area .plan_list .plan {
	width: 46%;
	margin: 0 0 50px 0;
}

.boxcont .cont_area .plan_list .plan img{
	width: 100%;
	margin: 0 0 10px 0;
}

.boxcont .cont_area .plan_list .plan h3{
	font-size: 18px;
	text-align: center;
	font-weight: 100;
	margin: 10px auto;
}

.boxcont .cont_area .plan_list .plan p.txt{
	font-size: 15px;
	min-height: 90px;
}

.boxcont .cont_area .plan_list .plan p.txt_02{
	font-size: 15px;
	min-height: 0px;
}

.boxcont .cont_area .plan_list .plan a.btn{
	width: 285px;
	height: 35px;
	text-align: center;
	margin: 0 auto;
	border: 1px solid #707070;
	color: #595A5A;
	display:flex;
	justify-content: center;
	align-items: center;
}

.boxcont .cont_area .plan_list .plan a.btn:hover{
	background: #707070;
	color: #fff;
}

.boxcont .cont_area .pamir{
	width: 100%;
	text-align: center;
    margin: 20px auto 50px auto;
}

.boxcont .cont_area .plan_over .box_inquiry{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0 40px 0;
}

.boxcont .cont_area .plan_over .box_inquiry .data{
	border: 1px solid #C7C7C7;
    margin-bottom: 25px;
    padding: 23px;
}

.boxcont .cont_area .plan_over .box_inquiry .data li{
	margin-bottom: 5px;
}

.boxcont .cont_area .plan_over .box_inquiry .data li a{
	color:  #707070;
}

.boxcont .cont_area .plan_over .box_inquiry .data li span{
	font-weight: bold;
}

.boxcont .cont_area .plan_over .box_inquiry .data li span.ico{
	font-weight: normal;
	font-size: 8px;
	padding: 0 3px 0 0;
    vertical-align: top;
}

.boxcont .cont_area .plan_over .box_inquiry a.btn{
	width: 285px;
	height: 35px;
	text-align: center;
	margin: 0 auto 20px auto;
	border: 1px solid #707070;
	color: #595A5A;
	display:flex;
	justify-content: center;
	align-items: center;
}

.boxcont .cont_area .plan_over .box_inquiry a.btn:hover{
	background: #707070;
	color: #fff;
}

@media screen and (max-width: 520px) {

.boxcont .cont_area .inner{
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
    padding: 50px 0 20px 0;
}

.boxcont .cont_area .inner h2{
	width: 80%;
	font-size: 22px;
	font-weight: normal;
	padding: 0 0 15px 0;
    margin: 0 auto 40px auto;
    text-align: center;
    border-bottom: 1px solid #707070;
}

.boxcont .cont_area .plan_list{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: block;
    justify-content: space-around;
    align-items: start;
    flex-wrap: wrap;
}

.boxcont .cont_area .plan_list .plan {
	width: 90%;
	margin: 0 auto 50px auto;
}

.boxcont .cont_area .plan_list .plan img{
	width: 100%;
	margin: 0 0 10px 0;
}

.boxcont .cont_area .plan_list .plan h3{
	font-size: 16px;
	text-align: center;
	font-weight: 100;
	margin: 10px auto;
}

.boxcont .cont_area .plan_list .plan p.txt{
	font-size: 13px;
	min-height: 100%;
	margin: 0 0 10px 0;
}

.boxcont .cont_area .plan_list .plan p.txt_02{
	font-size: 13px;
	min-height: 0px;
}

.boxcont .cont_area .plan_list .plan a.btn{
	width: 100%;
	height: 100%;
	padding: 10px 0 10px 0;
	text-align: center;
	margin: 0 auto;
	border: 1px solid #707070;
	color: #595A5A;
	display:flex;
	justify-content: center;
	align-items: center;
}

.boxcont .cont_area .plan_list .plan a.btn:hover{
	background: #707070;
	color: #fff;
}

.boxcont .cont_area .pamir{
	width: 90%;
    margin: 0 auto 50px auto;
}

.boxcont .cont_area .pamir img{
	width: 100%;
}


.boxcont .cont_area .plan_over .box_inquiry{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0 20px 0;
}

.boxcont .cont_area .plan_over .box_inquiry a.btn{
	width: 100%;
	height: 35px;
	text-align: center;
	margin: 0 auto 20px auto;
	border: 1px solid #707070;
	color: #595A5A;
	display:flex;
	justify-content: center;
	align-items: center;
}

.boxcont .cont_area .plan_over .box_inquiry a.btn:hover{
	background: #707070;
	color: #fff;
}


}

/*コンテンツ 宴会場
---------------------------------------*/
.boxcont h1.detail{
	width: 60%;
    font-size: 32px;
    font-weight: normal;
    padding: 0 0 35px 0;
    margin: 60px auto 20px auto;
	line-height: 160%;
    text-align: center;
    border-bottom: 1px solid #707070;
}

.boxcont .detail_read{
	text-align: center;
    margin: 0 auto 10px auto;
    line-height: 270%;
    letter-spacing: 3px;
}

.boxcont .box_price{
	text-align: center;
	
}

.boxcont .box_price h3{
	font-size: 25px;
	font-weight: normal;
	color:#707070;
	margin: 0 0 15px 0;
}

.boxcont .box_price .table_wrap{
/*overflow-x: scroll;*/
    width: 90%;
    margin: 0 auto;
}

.boxcont .box_price .charges{
	margin: 0 auto 30px auto;
	width: 1290px;
	border-collapse: collapse;
	white-space: nowrap;
}

.boxcont .box_price .charges th{
	font-size: 18px;
	padding: 25px 0;
	background: #e0d6c8;
	font-weight: normal;
	border-right: 1px solid #b4b4b4;
}

.boxcont .box_price .charges td{
	font-size: 14px;
	padding: 10px 0;
	border-right: 1px solid #b4b4b4;
	line-height: 160%;
}

.boxcont .box_price table.charges tr:nth-child(odd) td {
	background: #f7f4f0;
}

.boxcont .box_price .charges th.end{
	border-right:none;
}

.boxcont .box_price .charges td.end{
	border-right:none;
}


.boxcont .box_price .charges th.col01{
	width: 450px;
}

.boxcont .box_price .charges th.col02{
	width: 80px;
}

.boxcont .box_price .charges th.col03{
	width: 80px;
}

.boxcont .box_price .charges th.col04{
	width: 170px;
}

.boxcont .box_price .charges th.col05{
	width: 170px;
}

.boxcont .box_price .charges th.col06{
	width: 170px;
}

.boxcont .box_price .charges th.col07{
	width: 170px;
}

.boxcont .box_price a.btn {
    width: 285px;
    height: 35px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid #707070;
    color: #595A5A;
    display: flex;
    justify-content: center;
    align-items: center;
}

.boxcont .box_price a.btn:hover{
	background: #707070;
	color: #fff;
}

.boxcont .box_txt{
	width: 1200px;
	margin: 0 auto;
}

.boxcont .box_txt .attent{
	margin: 30px 0 30px 0;
}

.boxcont .box_txt .attent li{
padding-left:1em;
text-indent:-1em;
}

.boxcont .box_txt .facilities{
	margin: 30px 0 30px 0;
}

.boxcont .box_txt .facilities dd{
	padding-left:1em;
text-indent:-1em;
}

@media screen and (max-width: 960px) {

.boxcont .box_price .table_wrap{
overflow-x: scroll;
    width: 90%;
    margin: 0 auto;
}
}

@media screen and (max-width: 520px) {
.boxcont h1.detail{
	width: 80%;
    font-size: 22px;
    font-weight: normal;
    padding: 0 0 15px 0;
    margin: 0 auto 20px auto;
	line-height: 160%;
    text-align: center;
    border-bottom: 1px solid #707070;
}

.boxcont .detail_read{
	text-align: center;
    margin: 0 auto 0px auto;
   width: 85%;
    font-size: 0.8em;
}

.boxcont .box_price h3{
	font-size: 16px;
	font-weight: normal;
	color:#707070;
	margin: 0 0 15px 0;
}

.boxcont .box_price .table_wrap{
overflow-x: scroll;
    width: 90%;
    margin: 0 auto;
}

.boxcont .box_price .charges{
	margin: 0 auto 0px auto;
	width:700px;
	border-collapse: collapse;
	white-space: nowrap;
}

.boxcont .box_price .charges th{
	font-size: 14px;
	padding: 15px 0;
	background: #e0d6c8;
	font-weight: normal;
	border-right: 1px solid #b4b4b4;
}

.boxcont .box_price .charges td{
	font-size: 13px;
	padding: 10px 0;
	border-right: 1px solid #b4b4b4;
}

.boxcont .box_price table.charges tr:nth-child(odd) td {
	background: #f7f4f0;
}

.boxcont .box_price .charges th.end{
	border-right:none;
}

.boxcont .box_price .charges td.end{
	border-right:none;
}


.boxcont .box_price .charges th.col01{
	width: 200px;
}

.boxcont .box_price .charges th.col02{
	width: 50px;
}

.boxcont .box_price .charges th.col03{
	width: 50px;
}

.boxcont .box_price .charges th.col04{
	width: 100px;
}

.boxcont .box_price .charges th.col05{
	width: 100px;
}

.boxcont .box_price .charges th.col06{
	width: 100px;
}

.boxcont .box_price .charges th.col07{
	width: 100px;
}

.boxcont .box_price a.btn {
    width: 90%;
    height: 100%;
    text-align: center;
    margin: 30px auto 0 auto;
    border: 1px solid #707070;
    color: #595A5A;
    display: flex;
    justify-content: center;
    align-items: center;
}
.boxcont .box_txt{
	width: 90%;
	margin: 0 auto;
}

.boxcont .box_txt .attent{
	margin: 30px 0 30px 0;
}

.boxcont .box_txt .attent li{
padding-left:1em;
text-indent:-1em;
}

.boxcont .box_txt .facilities{
	margin: 30px 0 30px 0;
}

.boxcont .box_txt .facilities dd{
	padding-left:0.5em;
text-indent:-0.5em;
}

}

/*その他汎用 画像調整
---------------------------------------*/

.boxcont .img_basis{
    width: 100%;
    margin: 0 auto 30px auto;
    text-align: center;
}
.boxcont .img_basis img{
	width: 100%;
}

@media screen and (max-width: 520px) {

.boxcont .img_basis img{
    width: 100%;
}

.boxcont .img_basis img.w90{
    width: 90%;
}


}

.link {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.link p {
    text-align: center;
    color:#000;
    padding: 18px 0px 20px 0px;
}

.link a {
    color:#000;
    font-size: 12px;
    text-decoration: none;
}
@media screen and (max-width: 520px) {


.link a {
    font-size: 11px;
}

}

/*
CUSTOM
*/
.page-top .boxcont {
	font-family: var(--font-family--primary);
}
.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  box-sizing: border-box;
}

.intro {
	text-align: center;
	margin: 70px auto;
}
.intro h1 {
	font-size: 1.7rem;
	line-height: 240%;
	letter-spacing: .3rem;
	font-weight: 400;
	margin-bottom: .5rem;
	color: var(--color-primary);
}
.intro h1 span {
	font-size: 2.6rem;
}
.intro p {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color-primary);
	letter-spacing: .3rem;
}

@media(max-width: 768px) {
	.intro {
		margin: 30px 0;
	}
	.intro h1 {
		font-size: 0.9rem;
		letter-spacing: 0;
		line-height: 190%;
		margin-bottom: 0;
	}
	.intro h1 span {
		font-size: 1.05rem;
	}
	.intro p {
		font-size: .7rem;
		letter-spacing: 0;
	}
}

.about {
	margin-bottom: 30px;
}
.about-inner {
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
}
.about-inner:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 70%;
	height: 82%;
	background-color: #e5f3ef;
	z-index: 1;
}
.about-grid {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: nowrap;
	gap: 1rem;
	max-width: 960px;
	margin: 0 auto;
}
@media(max-width: 992px) {
	.about.container {
		padding: 0;
	}
	.about-grid {
		padding: 0 15px;
	}
	.about-inner:before {
		height: 97%;
		width: 85%;
	}
	.about-grid__img {
		width: 33.33%;
	}
}
@media(max-width: 767px) {
	.about {
		margin-bottom: 30px;
	}
	
	.about-grid {
		padding: 0;
		flex-direction: column;
	}
	.about-inner {
		padding-top: 0;
	}
	.about-inner:before {
		width: 100%;
		height: 100%;
	}
	.about-grid__img {
		order: 1;
		width: 100%;
	}
	.about-grid__text {
		order: 2;
		padding: 0 15px 15px;
	}
}

.title-heading {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: .3rem;
	position: relative;
	padding-top: 90px;
	color: var(--color-primary);
	margin-bottom: 40px;
	text-align: center;
	text-transform: uppercase;
}
.title-heading:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 30px;
	width: 1px;
	background-color: var(--color-primary);
}
.title-heading.heading-style2 {
	padding-top: 155px;
}
.title-heading.heading-style2:before {
	height: 95px;
}
@media(max-width: 768px) {
	.title-heading {
		font-size: 1.2rem;
		line-height: 180%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.title-heading,
	.title-heading.heading-style2 {
		padding-top: 50px;
		margin-bottom: 20px;
	}
	.title-heading.heading-style2::before {
		height: 30px;
	}
}

.mice {
	margin-bottom: 70px;
}
.mice-inner {
	text-align: center;
}
.mice-inner__des {
	margin-bottom: 50px;
}
.mice-inner__img {
	display: flex;
	flex-direction: column;
	gap: 70px;
}

.mice-resort .mice-inner__des {
	margin-bottom: 100px;
}
.mice-resort .mice-inner__img {
	margin-bottom: 70px;
}
@media(max-width: 768px) {
	.mice {
		margin-bottom: 30px;
	}
	.mice-inner__img {
		gap: 30px;
	}
	.mice-inner__des {
		margin-bottom: 30px;
	}
	.mice-resort {
		margin-bottom: 50px;
	}
	.mice-resort .mice-inner__des {
		margin-bottom: 30px;
	}
	.mice-resort .mice-inner__img {
		gap: 30px;
		margin-bottom: 30px;
	}
	.mice-inner__des,
	.mice-resort .mice-inner__bot
	.mice-resort .mice-inner__des,
	.mice-resort .mice-inner__link,
	.access_des {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.btn-button {
	display: inline-block;
	border: 1px solid var(--color-black);
	letter-spacing: .5rem;
	padding: 15px 20px;
	color: var(--color-black);
	width: 353px;
	box-sizing: border-box;
}
@media(max-width: 767px) {
	.btn-button {
		width: 100%;
	}
}

.banquet_gallery {
	position: relative;
	padding: 0 70px 0 60px;
	display: inline-flex;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 70px;
	background-color: #333333;
	color: var(--color-white);
}
.banquet_gallery:before,
.banquet_gallery:after {
	position: absolute;
	content: "";
	top: 0;
	height: 70px;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.banquet_gallery:before {
	left: 0;
	width: 60px;
	background-image: url(../images/icon-1.png);
}
.banquet_gallery:after {
	right: 0;
	width: 70px;
	background-image: url(../images/icon-2.png);
}
.banquet_gallery > span {
	padding: 0 20px;
}
@media(max-width: 768px) {
	.banquet {
		margin: 30px 0 0;
	}
}

.telnum {
	margin: .5rem 0;
}
.telnum > a {
	font-weight: 400;
}

.mail .btn-button {
	border: 1px solid var(--color-black);
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	justify-self: center;
	max-width: fit-content;
	padding: 16px 37px;
	letter-spacing: 0;
	font-size: 1.5rem;
}
.mail .icon-mail {
	display: inline-block;
	width: 39px;
	height: 28px;
	background-image: url(../images/icon-3.png);
	background-repeat: no-repeat;
	background-size: cover;
}