@charset "UTF-8";

body { padding-top: 0; }

span.title_manseki { /*お知らせブログをトップページで表示させた際に、タイトル横につける満席をアイコン化*/
	display: inline-block;
	vertical-align: text-bottom;
	margin-right: 5px;
	padding: 2px 0px;
	border-radius: 3px;
	background: gray;
	font-size: 0.7em;
	letter-spacing: -0.5px;
	color: white;
}

@media screen and (max-width:559px){
	body { font-size: 14px; padding-top: 0; }
	span.title_manseki { /*お知らせブログをトップページで表示させた際に、タイトル横につける満席をアイコン化*/
		display: inline-block;
		vertical-align: middle;
		margin-right: 5px;
		padding: 2px 0px;
		border-radius: 3px;
		background: gray;
		font-size: 0.9em;
		letter-spacing: -0.5px;
		color: white;
	}
}

/*#header { position: fixed; bottom: 0; }*/


/*keyVisual*/
.news #keyVisual {display: none;}
#keyVisual { position: relative; width: 100%; height: 100vh; overflow: hidden; /*background: url("../img/keyVisual_pc.jpg") no-repeat 50% 50%; background-size: cover;*/ background-attachment: fixed; background:#222;}
#keyVisual h1 { position: absolute; width: 290px; height: 79px; top: 50%; bottom: 50%; right: 50%; left: 50%; margin: -39.5px 0 0 -145px; z-index:2; }
#keyVisual h1 img { display: block; width: 290px; margin: 0 auto;}
/*@media screen and (max-width:767px) and (orientation: landscape) {
	#keyVisual { background: url("../img/keyVisual_sp.jpg") no-repeat 50% 50%;}
}*/
@media screen and (max-width:559px){
	/*#keyVisual { background: url("../img/keyVisual_sp.jpg") no-repeat 50% 50%;}*/
	#keyVisual h1 { font-size: 20px; }
}

/*パンくず*/
#breadcrumb {
	font-size: 12px;
	text-align: left;
	margin: 10px auto;
	font-family: var(--tfg-gothic);
}

#breadcrumb ul {
	margin: 0 auto;
}

#breadcrumb ul li {
	display: inline-block;
}

#breadcrumb ul li:after {
	content: " > ";
}

#breadcrumb ul li:last-of-type:after {
	content: "";
}

@media screen and (max-width:559px) {
	#breadcrumb {
		display: none;
	}
}

/*pageDown*/
#pageDown { position: absolute; width: 45px; bottom: 35px; right: 50%; left: 50%; margin-left: -22.5px; font-size: 13px; z-index:2;  }
#pageDown a { display: block; text-decoration: none; text-align: center; color: #fff; margin: 0 auto; }


/*pageDown-Animation*/
#pageDown a {
    -webkit-animation: translate 3s;
    -webkit-animation-iteration-count: infinite;
	animation: translate 3s;
    animation-iteration-count: infinite;
    }

@keyframes translate {
    0% { transform: translate(0px, 0px); }
    25% { transform: translate(0px, 10px); }
    40% { transform: translate(0px, 0px); }
    100% { transform: translate(0px, 0px); }
  }
  @-webkit-keyframes translate {
    0% { -webkit-transform: translate(0px, 0px); }
    25% { -webkit-transform: translate(0px, 10px); }
    40% { -webkit-transform: translate(0px, 0px); }
    100% { -webkit-transform: translate(0px, 0px); }
  }
/*END pageDown-Animation*/

#pageDown a img { display: block; width: 25px; margin: 0 auto;}
@media screen and (max-width:767px) and (orientation: landscape) {
	#pageDown { bottom:auto; top:70vh;}
}
@media screen and (max-width:559px){
	#pageDown { bottom:auto; top:77vh;}
}

/* お知らせ */
#homeInformation { padding-top: 100px; }
.news #homeInformation {padding-top:60px;}
#homeInformation nav { text-align: right; }
#homeInformation nav a { text-decoration: underline; }
#homeInformation nav a:hover { text-decoration: none; }
#homeInformation .clearfix:after {content: none;}
#homeInformationBox { background: #f7f5f1/*8e6e2*/; }
#homeInformation .inner { max-width: 840px; width: 80%; padding: 30px 0; }
#homeInformation .inner > h1 {
	text-align: center;
	margin-bottom: 30px;
	color: #333;
}
@media screen and (max-width:768px){
	#homeInformationBox .inner {width:calc(100% - 10px * 2);}
}
@media screen and (max-width:559px){
	#homeInformation { padding-top: 60px;}
}

/*記事一覧*/
.flex-articles {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	gap: 1em 1em;
}
@media screen and (max-width:559px){
	.flex-articles { gap: 10px 10px; }
}
/*記事*/
.article {
	margin: 0 0;
	width: calc(100% / 3 - 1em);
	background-color: white;
}
.article a:hover { filter: alpha(style=0,opacity=80); opacity: 0.8; }
@media screen and (max-width: 768px){
	.article { width: calc(100% / 3 - 1em); }
}
@media screen and (max-width:768px){
	.articleBody h1 {font-size:15px;  letter-spacing:0; }
}
@media screen and (max-width:559px){
	.article { width: calc(100% / 2 - 5px); }
}
@media screen and (max-width:280px){
	.article { width: 100%; }
}

/* 記事｜上段 プレイスホルダー */
.placeholder {
	background-color: #cfcfcf;
	width: 100%;
	aspect-ratio: 1;
	position: relative;
}
.placeholder::after {
	position:absolute;
	bottom: 0;
	right: 0.5em;
	content:"Loading...";
	color:black;
	z-index: 0;
}
.article a:hover .placeholder::after {
	opacity: 0; /* 透け防止 */
}
.placeholder img {
	display: none;
	width: 100%;
	height: auto;
}


/* 記事｜上段 サムネイル */
.article img {
	display: block;
	position: absolute; /* z-index を効かせる abs*/
	width: 100%;
	z-index: 1;
}

/* 記事｜下段 テキスト部分 */
.articleBody { position:relative; padding: 5%; text-align: left; }

/* 記事｜タイトル */
.articleBody h1 { font-size:16px; line-height:1.7; margin-bottom:10px; height:3.4em; overflow:hidden; }
@media screen and (max-width:768px){
	.articleBody h1 {font-size:15px;  letter-spacing:0; }
}
@media screen and (max-width:559px){
	.articleBody h1 {font-size:13px;}
}
@media screen and (max-width:280px){
	.articleBody h1 {font-size:18px; letter-spacing: 1px;}
}

/* ラッパー（カテゴリー ＆ ステイタス） */
.articleBottomWrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 5px;
}

/* 状況（ステイタス）*/
.itemStatus {
	position:relative;
	margin: 0 0 0 auto;
	display: block;
	/*vertical-align: text-bottom;*/
	padding: 0px 5px;
	border-radius: 5px;
	background-color: #666;
	color: white;
	font-family: YakuHanJP,"dnp-shuei-gothic-gin-std","游ゴシック","Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Hiragino Sans","Meiryo UI","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic","Droid Sans",sans-serif;
	line-height:inherit;
	font-size: 12px;
	letter-spacing: 0;
}
/*.statusColor {JS側でスタイル付与}*/
@media screen and (max-width: 768px){
	.itemStatus {
		margin: 0 0 0 auto;
		position: relative;
		display: block;
		width: fit-content;
		max-width: 100%;
		font-size: 13px;
		line-height: inherit;
	}
}
@media screen and (max-width: 559px){
	.itemStatus {
		font-size: 12px;
		line-height: 20px;
	}
}

/*赤丸アイコン*/
.article a { display: block; background: #fff url("../img/arwRed.png") no-repeat 95% 97%; background-size: 25px; cursor: pointer; }
.article a { background: #fff;} /*アイコン無し*/
@media screen and (max-width:768px){
	.article a {background-size: 22px;}
}
@media screen and (max-width:559px){
	.article a {background-size: 18px;}
}
@media screen and (max-width:280px){
	.article a {background-size: 22px;}
}

/*カテゴリ*/
.articleBody .postCat { display:block; font-size:15px; line-height:1.3; color:#5B5B5B; letter-spacing:0;}
@media screen and (max-width:768px){
	.articleBody .postCat {letter-spacing: 0;}
}
@media screen and (max-width:559px){
	.articleBody .postCat {font-size:12px;}
}
@media screen and (max-width:280px){
	.articleBody .postCat {font-size:16px; letter-spacing:1px;}
}

/* ブログナビ */

.blog_nav {
	margin-top: 2em;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 30px 0
}

.blog_navL {
	height: 70px;
	width: 50%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.blog_navR {
	height: 70px;
	width: 50%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border-left: 1px solid #ccc;
}

/* 帯状バナー */
#homeNav { margin-bottom: 70px; }
#homeNav ul li { margin-bottom: 3px; position: relative; overflow: hidden; width: 100%; /*height: 152px;*/ height:200px; background: #231815; }
#homeNav ul li:after { position: absolute; content: ""; display: block; width: 100%; height: 100%; top: 0; opacity: .5; background-repeat: no-repeat; background-position: 50% 50%;
	-webkit-background-size: cover; -moz-background-size: cover; -ms-background-size: cover; background-size: cover;
	-webkit-transition: all .3s ease-out; -moz-transition: all .3s ease-out; -ms-transition: all .3s ease-out; transition: all .3s ease-out; }
#homeNav ul li:hover:after { opacity: .8; -moz-transform: scale(1.05); -webkit-transform: scale(1.05); -ms-transform: scale(1.05); transform: scale(1.05); }
#homeNav ul li div { z-index: 1; position: relative; }

#homeNav ul li a { display: block; color: #fff; text-align: center; /*padding: 30px 0 !important;*/ overflow: hidden; position: relative; height: 200px; box-sizing: border-box;display:flex; flex-direction:column; justify-content:center; align-items:center;}
#homeNav ul li a span { display: block; text-align: center; font-size: 16px; line-height: 1.5; }
#homeNav ul li a span em { display: block; text-align: center; font-size: 22px; font-weight: normal; }
#homeNav ul li a span img { display: block; width: 25px; margin: 10px auto 0; }
#homeNav01:after { background-image: url("../img/homeNav01.jpg"); }
#homeNav02:after { background-image: url("../img/homeNav02.jpg"); }
#homeNav03:after { background-image: url("../img/homeNav03.jpg?2022"); }
#homeNav04:after { background-image: url("../img/homeNav04.jpg"); }
#homeNav05:after { background-image: url("../img/homeNav05.jpg"); }
#homeNav06:after { background-image: url("../img/homeNav06.jpg"); }
#homeNav07:after { background-image: url("../img/homeNav07.jpg"); }
#homeNav08:after { background-image: url("../img/homeNav08.jpg"); }
#homeNav09:after { background-image: url("../img/homeNav09.jpg"); }
#homeNav10:after { background-image: url("../img/homeNav10.jpg"); }
#homeNavBento:after { background-image: url("../img/homeNavBento.jpg"); }
#homeNav11:after { background-image: url("../img/homeNav11.jpg"); }
@media screen and (max-width:559px){
	#homeNav {margin-bottom: 4em;}
	#homeNav ul li { height:fit-content; }
	#homeNav ul li a { display: block; color: #fff; text-align: center; padding: 20px 0; height:fit-content; display:flex; flex-direction:column; justify-content:center; align-items:center;}
	#homeNav ul li a span { font-size: 20px; line-height: 1.5; }
	#homeNav ul li a span em { font-size: 14px; }
}
body.english #homeNav { padding-top: 100px; }
body.english #homeNav ul li a span { display: block; text-align: center; font-size: 29px; line-height: 1.5; }
@media screen and (max-width:559px){
	body.english #homeNav { padding-top: 60px; }

}

#homeInstagram { width: 100%; max-width: 600px; margin: 0 auto 60px; }

#homeInstagram .insta_title h1 { cursor: pointer; margin-bottom: 20px;}
#homeInstagram .insta_title ul { margin:0 0 20px 0; padding:0; }
#homeInstagram .insta_title ul li { margin:0; padding:0; width:100%; display:block; box-sizing:border-box; background: #f7f5f1;}
#homeInstagram .insta_title ul li:hover { background: #e4ded1; }
#homeInstagram .insta_title ul li a { display:block; text-align:center; padding:10px 0; margin:0; width:100%; box-sizing:border-box;}
#homeInstagram .insta_title ul li:nth-child(2) { border-left:1px solid #fff; border-right:1px solid #fff;}

#homeInstagram .insta_thumbnail_box {width:100%;}
#homeInstagram .insta_thumbnail_box #instafeed ul { width:100%; display:flex; flex-wrap:wrap; justify-content:space-between;}
#homeInstagram .insta_thumbnail_box #instafeed ul li { width:33%; }

@media screen and (max-width:767px) {
	/*#insta_wedding,*/
	#insta_lounge,
	#insta_restaurant,
	#insta_heigoro { float: none; width: 33%; }
	#instafeed { display: flex; flex-flow:row wrap; height:auto!important;}
	#homeInstagram ul li { display: block; width: 100%; height:auto; /*float: left;*/}
	#homeInstagram ul li img { height: 33vmin; object-fit: cover;}

	#homeInstagram {display: flex; flex-direction: column; }
	#homeInstagram .insta00 { order: 2;}
	#homeInstagram .insta_title { order: 1;}

	#homeInstagram .insta_title ul { margin:0 0 0 0; display:block;}
	#homeInstagram .insta_title ul li { margin:0 auto; padding:0; width:100%; background:#f7f5f1;}
	#homeInstagram .insta_title ul li a { width:100%;  margin:0 auto; display:block; background:#f7f5f1;}
	#homeInstagram .insta_title ul li:nth-child(2) { border:none; border-top:1px solid #fff; border-bottom:1px solid #fff;}
}

@media screen and (min-width:768px){

	#instafeed li{
	position: relative;
	}

	#instafeed a{
	display:block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	}

	#instafeed img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	}

}


/* 円形バナー */
#homeBanner ul { width: 60%; max-width: 800px; margin: 0 auto; }
#homeBanner ul li { float: left; width: 28%; margin: 0 0 10px 8%; }
#homeBanner ul li:nth-of-type(3n+1) { margin: 0 0 10px; }
#homeBanner ul li a { display: block;  -webkit-border-radius: 200px;  -moz-border-radius: 200px; border-radius: 200px;}
#homeBanner ul li img { display:block; margin:0 auto; width: 100%; border-radius:50%;}
#bnrHeigoro a { background: url("../img/bnrHeigoroBG.png") no-repeat; background-size: cover; }
#bnrFujiya a { background: url("../img/bnrFujiyaBG.png") no-repeat; background-size: cover; }
#bnrKaoawase a { background: url("../img/bnrKaoawaseBG.png") no-repeat; background-size: cover; }
#bnrTicket a { background: url("../img/bnrTicketBG.png") no-repeat; background-size: cover; }

.webp #bnrHeigoro a { background: url("../img/bnrHeigoroBG.png.webp") no-repeat; background-size: cover; }
.webp #bnrFujiya a { background: url("../img/bnrFujiyaBG.png.webp") no-repeat; background-size: cover; }
.webp #bnrKaoawase a { background: url("../img/bnrKaoawaseBG.png.webp") no-repeat; background-size: cover; }
.webp #bnrTicket a { background: url("../img/bnrTicketBG.png.webp") no-repeat; background-size: cover; }

.english #homeBanner ul { width:480px; max-width: 800px; margin: 0 auto; }
.english #homeBanner ul li { float: left; width: 224px; margin:0; }
.english #homeBanner ul li:nth-of-type(2) { float:right;}
@media screen and (max-width:559px){
	#homeBanner ul {display:flex; flex-wrap:wrap; justify-content:space-around; width:calc(100% - 20px);}
	#homeBanner ul li { float: none; width: calc(100% / 2 - 20px); margin: 0 0 20px; font-size:16px; letter-spacing:0; }
	#homeBanner ul li:nth-child(1) { order: 1;}
	#homeBanner ul li:nth-child(2) { order: 2;}
	#homeBanner ul li:nth-child(3) { order: 3;}
	#homeBanner ul li:nth-child(4) { order: 4;}
	#homeBanner ul li:nth-child(5) { order: 5;}
	#homeBanner ul li:nth-child(6) { order: 6;}
	.english #homeBanner ul li { float: none; width: 100%; margin: 0 0 20px; font-size:18px; }
	.english #homeBanner ul { width:60%; display: flex; flex-direction:column;}

}

/* その他 */
span.icon-new {
	margin-left:3px; font-size:.7em; font-weight:600; vertical-align:super; color:#ee0000;
}
