@charset "utf-8";
/* ==========================================================================
   $3-1. Object -- Project
   ========================================================================== */
/* Base Font size ･･･ 14/16px) */
html {
	/*color: #333;*/
	color: #1c1c1c;
	font-size: 62.5%;
}
body {
	color: inherit;
	color: unset;
	background: #fff;
	/*font: 1.4em/1.714 Roboto, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;*/
	font: 1.4em/1.714 "Times New Roman", Times, "Sawarabi Mincho", "Roboto Slab", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	letter-spacing: .025em;
}
.ff-gothic { font-family: Roboto, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;}

/* Link Colors */
a {
	color: inherit;
	color: unset;
	word-break: break-all;
	-webkit-transition: color .2s;
	transition: color .2s;
}
a img {
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
}
a:hover { text-decoration: none;}
a:focus { outline: none;}


/* ----------------------------------
   カラーリング
   ---------------------------------- */
[data-category="top"] .btn,
[data-category="top"] .bg--primary { background-color: #c49650;}
[data-category="top"] .txt-color   { color: #c49650;}

[data-category="ilbeige"] .header      { border-bottom-color: #b5936e;}
[data-category="ilbeige"] .btn,
[data-category="ilbeige"] .bg--primary { background-color: #b5936e;}
[data-category="ilbeige"] .txt-color   { color: #b5936e;}

[data-category="infinito"] .header      { border-bottom-color: #98999a;}
[data-category="infinito"] .btn,
[data-category="infinito"] .bg--primary { background-color: #98999a;}
[data-category="infinito"] .txt-color   { color: #98999a;}

[data-category="trifoglia"] .header      { border-bottom-color: #a57b62;}
[data-category="trifoglia"] .btn,
[data-category="trifoglia"] .bg--primary { background-color: #a57b62;}
[data-category="trifoglia"] .txt-color   { color: #a57b62;}

[data-category="orient"] .header      { border-bottom-color: #5a4a3f;}
[data-category="orient"] .btn,
[data-category="orient"] .bg--primary { background-color: #5a4a3f;}
[data-category="orient"] .txt-color   { color: #5a4a3f;}

[data-category="luna"] .header { border-bottom-color: #cc9900;}
[data-category="luna"] .btn,
[data-category="luna"] .bg--primary { background-color: #cc9900;}
[data-category="luna"] .txt-color   { color: #cc9900;}

[data-category="lunab"] .header { border-bottom-color: #7e451f;}
[data-category="lunab"] .btn,
[data-category="lunab"] .bg--primary { background-color: #7e451f;}
[data-category="lunab"] .txt-color   { color: #7e451f;}

[data-category="cuori"] .header { border-bottom-color: #7fb61c;}
[data-category="cuori"] .btn,
[data-category="cuori"] .bg--primary { background-color: #7fb61c;}
[data-category="cuori"] .txt-color   { color: #7fb61c;}

[data-category="luce"] .header { border-bottom-color: #745230;}
[data-category="luce"] .btn,
[data-category="luce"] .bg--primary { background-color: #745230;}
[data-category="luce"] .txt-color   { color: #745230;}

[data-category="palm"] .header      { border-bottom-color: #00492d;}
[data-category="palm"] .btn,
[data-category="palm"] .bg--primary { background-color: #00492d;}
[data-category="palm"] .txt-color   { color: #00492d;}

[data-category="suito"] .header      { border-bottom-color: #7bc4e7;}
[data-category="suito"] .btn,
[data-category="suito"] .bg--primary { background-color: #7bc4e7;}
[data-category="suito"] .txt-color   { color: #7bc4e7;}

[data-category="green"] .header      { border-bottom-color: #4dbbaa;}
[data-category="green"] .btn,
[data-category="green"] .bg--primary { background-color: #4dbbaa;}
[data-category="green"] .txt-color   { color: #4dbbaa;}

[data-category="onoe"] .header      { border-bottom-color: #7577aa;}
[data-category="onoe"] .btn,
[data-category="onoe"] .bg--primary { background-color: #7577aa;}
[data-category="onoe"] .txt-color   { color: #7577aa;}


/* ----------------------------------
   ローディング画面
   ---------------------------------- */
#loader {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	text-align: center;
}
#loader:before {
	display: inline-block;
	content: "";
	width: 0;
	height: 100%;
	vertical-align: middle;
}
#loader:after {
	content: "Loading...";
}
#loader span {
	display: inline-block;
	position: relative;
	width: 30px;
	height: 30px;
	margin: 10px;
	vertical-align: middle;
}
.no-cssanimations #loader span {
	background: url(../img/global/loading.gif) no-repeat center center;
}
.cssanimations #loader span:before,
.cssanimations #loader span:after {
	display: inline-block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
}
.cssanimations #loader span:before {
	border: 2px solid #ddd;
}

.cssanimations #loader span:after {
	z-index: 1;
	border: 2px solid #808080;
	border-top-color: transparent;
	-webkit-animation: circle infinite .75s linear;
	animation: circle infinite .75s linear;
}
@-webkit-keyframes circle { 0% { -webkit-transform: rotate(0); transform: rotate(0);} 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg);}}
@keyframes circle { 0% { -webkit-transform: rotate(0); transform: rotate(0);} 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg);}}


/* ----------------------------------
   コンテナ
   ---------------------------------- */
.container {
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.wrapper {
	position: relative;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}
.wrapper--reset { padding: 0;}
.wrapper--narrow { max-width: 840px; margin: 0 auto;}

/* ----------------------------------
   ヘッダー
   ---------------------------------- */
.header {
	background: #fff;
	border-bottom: 3px solid;
}
.header-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/* ロゴ */
.header__logo { text-align: center;}
.header__logo img { vertical-align: top;}

/* ヘッダーナビゲーション */
.header__nav { text-align: center;}
.header__nav li a,
.header__nav li .disabled {
	display: block;
	line-height: 18px;
	padding: 6px;
	color: #808080;
	font-size: 11px;
	text-decoration: none;
}
.header__nav li .disabled { opacity: .3;}
.header__nav li a:before,
.header__nav li .disabled:before {
	display: block;
	content: attr(data-en);
	color: #222;
	font-size: 18px;
	letter-spacing: .05em;
	text-transform: uppercase;
	-webkit-transition: color .2s;
	transition: color .2s;
}
.no-touchevents .header__nav li a:hover { color: #aaa;}
.no-touchevents .header__nav li a:hover:before { color: #888;}

/* お問い合わせリンク */
.header__contact li {
	display: inline-block;
}
.header__contact li + li:before {
	display: inline-block;
	content: "";
	width: 1px;
	height: 1em;
	background: #ccc;
	vertical-align: middle;
}
.header__contact li a {
	display: inline-block;
	padding: 10px;
}
.header__label {
	font-size: 13px;
	line-height: 1.2;
}
.header__label b {
	font-size: 18px;
	font-weight: normal;
}
.header__tel {
	font-size: 13px;
	letter-spacing: .04em;
}
.header__tel span,
.header__tel a {
	font-size: 19px;
	letter-spacing: .075em;
	text-decoration: none;
}

@media screen and (max-width:60em) {
	.header__logo {
		height: 50px;
		padding: 6px;
	}
	.header__logo:before {
		display: inline-block;
		content: "";
		width: 0;
		height: 100%;
		vertical-align: middle;
	}
	.header__logo a {
		display: inline-block;
		vertical-align: middle;
	}
	.header__logo img {
		width: auto;
		height: 38px;
	}
	/*.sp-nav { position: relative;}*/
	.header__nav {
		display: none;
		position: absolute;
		top: 3px;
		left: 0;
		z-index: 900;
		width: 100%;
		padding: 20px;
		background: #fff;
		background: rgba(255,255,255,.95);
	}
	.header__nav > ul {
		max-width: 80%;
		margin: 0 auto;
	}
	.header__btns {
		position: relative;
		margin-top: 10px;
		padding-bottom: 50px;
	}
	.header__contact.has-label ul {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
	}
	.header__label {
		width: 80%;
		max-width: 290px;
		margin: 0 auto;
		padding: 10px;
		border: 2px solid transparent;
		box-shadow: inset 0 0 0 1px #b69333, 0 0 0 2px #b69333;
		color: #4d4d4d;
	}
	.header__label b {
		color: #b69333;
	}

	/* トリガーアイコン */
	.nav-toggle {
		display: block;
		position: absolute;
		right: 0;
		top: 10px;
		z-index: 901;
		width: 40px;
		height: 40px;
		padding: 0;
		background: none;
		border: 0;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		cursor: pointer;
		outline: none;
	}

	.nav-toggle__icon {
		display: block;
		position: relative;
		margin: 0 auto;
	}
	.nav-toggle__icon,
	.nav-toggle__icon:after,
	.nav-toggle__icon:before { width: 24px; height: 2px; background-color:#808080; border-radius: 1px; -webkit-transition: all .4s cubic-bezier(.19,1,.22,1); transition: all .4s cubic-bezier(.19,1,.22,1)}
	.nav-toggle__icon:after,
	.nav-toggle__icon:before{ display:block; content:""; position:absolute; left:0;}
	.nav-toggle__icon:before { top: -6px;}
	.nav-toggle__icon:after { top: 6px;}
	.is-opened .nav-toggle__icon { background-color: transparent;}
	.is-opened .nav-toggle__icon:after,
	.is-opened .nav-toggle__icon:before { top: 0;}
	.is-opened .nav-toggle__icon:before { -webkit-transform:rotate(45deg); -ms-transform:rotate(45deg); transform:rotate(45deg)}
	.is-opened .nav-toggle__icon:after { -webkit-transform:rotate(-45deg); -ms-transform:rotate(-45deg); transform:rotate(-45deg)}
}
@media print, (min-width:60.0625em) {
	.nav-toggle { display: none;}
	.header {
		position: relative;
		height: 205px;
		padding-top: 137px;
		border-bottom-width: 5px;
	}
	.header--slim {
		height: 130px;
		padding-top: 0;
	}
	.header .wrapper { position: static;}
	.header__logo {
		position: absolute;
		left: 0;
		top: 38px;
		width: 100%;
		text-align: center;
	}
	.header--slim .header__logo {
		top: 30px;
	}
	.header__nav {
		display: block;
		margin: 0 auto;
	}
	.header__nav li {
		display: inline-block;
		white-space: nowrap;
	}
	.header__nav li a,
	.header__nav li .disabled {
		line-height: 20px;
		padding: 9px 15px;
		font-size: 12px;
	}
	.header__contact {
		position: absolute;
		right: 0;
		top: 0;
		display: table;
	}
	.header__contact ul {
		padding: 0;
		background: #808080;
		text-align: center;
	}
	.header__contact li + li:before {
		height: 20px;
		background: #efefef;
	}
	.header__contact li a {
		padding: 12px 10px 10px;
		color: #fff;
	}
	.header__label {
		padding: 5px;
		background: #b69333;
		color: #fff;
	}
	.header__tel {
		padding: 6px 12px;
		background: #dfdfdf;
	}
}
@media print, (min-width:69.2525em) {
	.header__contact > ul,
	.header__btns,
	.header__tel {
		display: table-cell;
		vertical-align: middle;
	}
	.header__contact li a {
		padding: 16px 10px 14px;
	}
}
@media print {
	.header { height: auto; padding-top: 60px;}
	.header__logo { top: 0;}
	.header__logo img { width: auto; height: 48px;}
	.header__nav > ul,
	.header__contact ul { display: none;}
}

/* ----------------------------------
   フッター
   ---------------------------------- */
#pagetop {
	display: block;
	height: 50px;
	background: #e3e3e3;
	text-align: center;
}
#pagetop:before {
	display: inline-block;
	content: "";
	width: 20px;
	height: 20px;
	margin-top: 20px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all .3s;
	transition: all .3s;
}
#pagetop:hover:before {
	margin-top: 15px;
}

.footer {
	padding: 30px 0;
	background: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
}
.logo__caption {
	margin: 8px 0;
	line-height: 1.46;
	font-weight: normal;
}


/* フローティングメニュー */
.footer {
	padding-bottom: 120px;
}
.floating-nav {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	height: 92px;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.floating-nav.is-fixed {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.floating-nav ul {
	display: table;
	overflow: hidden;
	table-layout: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,.3);
}
.floating-nav li {
	display: table-cell;
	box-shadow: -2px 0 4px rgba(0,0,0,.1);
	text-align: center;
}
.floating-nav a {
	display: block;
	height: 92px;
	background-repeat: no-repeat;
	background-position: center 18px;
	background-size: 32px 32px;
	padding-top: 60px;
	color: #b69333;
	text-decoration: none;
}
.floating-nav li:nth-of-type(1) a { background-image: url(../img/global/icon_floating1.svg);}
.floating-nav li:nth-of-type(2) a { background-image: url(../img/global/icon_floating2.svg);}
.floating-nav li:nth-of-type(3) a { background-image: url(../img/global/icon_floating3.svg);}
.floating-nav li:nth-of-type(4) a {
	background-image: url(../img/global/icon_floating4.svg);
	letter-spacing: -.05em;
	white-space: nowrap;
}
.floating-nav a > .scale {
	display: inline-block;
	width: 125%;
	margin-left: -12%;
	transform: scaleX(.8);
}
.no-touchevents .floating-nav a {
	-webkit-transition: background .2s;
	transition: background .2s;
}
.no-touchevents .floating-nav a:hover {
	background-color: rgba(182,147,51,.2);
}

@media (min-width:60.0625em) {
	.floating-nav {
		position: fixed;
		right: auto;
		bottom: 50%;
		width: 125px;
		height: auto;
		margin-left: -125px;
		-webkit-transform: translateY(50%)!important;
		-ms-transform: translateY(50%)!important;
		transform: translateY(50%)!important;
		opacity: .9;
		-webkit-transition: margin .4s ease-in-out, opacity .7s;
		transition: margin .4s ease-in-out, opacity .7s;
	}
	.floating-nav.is-fixed {
		margin-left: 0;
	}
	.floating-nav:hover {
		opacity: 1;
		-webkit-transition: opacity .2s;
		transition: opacity .2s;
	}
	.floating-nav ul {
		box-shadow: 0 0 10px rgba(0,0,0,.3);
	}
	.floating-nav li {
		display: block;
		box-shadow: 0 2px 4px rgba(0,0,0,.1);
	}
	.floating-nav a {
		height: 125px;
		background-position: center 30px;
		background-size: 44px 44px;
		padding-top: 90px;
		font-size: 15px;
	}
}
@media print {
	.floating-nav { display: none; }
}

/* 他会場リンク */
.flink {
	margin: 20px 0;
	padding: 16px 0;
	border-top: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
}
.flink__heading { font-weight: normal;}
.flink__list {
	list-style: none;
	line-height: 1.33;
	margin: 0;
	padding: 0 5px;
}
.flink__list > li {
	display: inline-block;
	margin-left: -1px;
}
.flink__list > li:before,
.flink__list > li:after {
	display: inline-block;
	content: "";
	width: 1px;
	height: 1em;
	background: #999;
	vertical-align: middle;
}
.flink__list a {
	display: inline-block;
	padding: 4px 8px;
	color: #808080;
	vertical-align: middle;
	text-decoration: none;
	white-space: nowrap;
}

/* SNS */
.footer__social { margin-top: 30px;}
.social-instagram { margin-bottom: 30px;}
.social-instagram__heading {
	position: relative;
	margin-bottom: 8px;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: normal;
}
.social-instagram__heading img {
	display: block;
	margin: 0 auto;
}

/* コピーライト */
.copyright {
	margin-top: 20px;
	font-size: 11px;
	font-size: 1.1rem;
	text-align: center;
}
@media screen and (max-width:60em) {
	.footer__tel {
		line-height: 1.2;
		font-size: 16px;
		font-size: 1.6rem;
	}
	.footer__tel > span,
	.footer__tel > a {
		font-size: 1.5em;
		text-decoration: none;
	}
}
@media print, (min-width:60.0625em) {
	.footer {
		padding: 46px 0 20px;
		font-size: 13px;
		font-size: 1.3rem;
	}
	.footer__info {
		float: left;
		width: 48.33%;
		text-align: left;
	}
	.footer__social {
		float: right;
		width: 50%;
		margin-top: 0;
		text-align: left;
	}

	.footer__logo { margin-bottom: 10px;}
	.footer__logo > img {
		display: inline-block;
		vertical-align: top;
	}

	.flink {
		margin: 20px 0;
		padding: 0;
		border: none;
	}
	.social-instagram__heading {
		display: inline-block;
		text-align: left;
	}
	.social-instagram__heading img {
		display: inline-block;
		margin-right: 8px;
		vertical-align: middle;
	}
	.social-instagram__heading:after {
		display: block;
		content: "";
		position: absolute;
		right: -50px;
		top: -15px;
		width: 71px;
		height: 26px;
		background: url(../img/global/followus.png) no-repeat left top;
		background-size: cover;
	}
	.copyright { margin-top: 40px;}
}


/* ----------------------------------
   コンテンツ
   ---------------------------------- */
.content {
	padding: 30px 0 50px;
	letter-spacing: .075em;
}
@media print, (min-width:60.0625em) {
	.content { padding: 60px 0 80px;}
}

/* ページタイトル */
.page-header { padding: 25px 20px 0;}
.page-header__title {
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: normal;
	text-align: center;
}

@media print, (min-width:40em) {
	.page-header { padding: 40px 20px 0;}
	.page-header__title {
		font-size: 12px;
		font-size: 1.2rem;
	}
}

/* ページコピー・リード文 */
.page-header__lead { margin-top: 1.5em;}
.page-lead {
	margin-bottom: 2.5em;
	font-size: 13px;
	font-size: 1.3rem;
}
.page-copy {
	line-height: 1.5;
	color: #1c1c1c;
	font-size: 18px;
	font-size: 1.8rem;
}
@media (min-width:480px) and (max-width:960px) {
/* フォントサイズ計算に誤差が出るため、メディアクエリはpx指定 */
	.page-copy {
		font-size: calc( 2.5vw + 10px );
		font-size: calc( 1.8rem + 2.5vw - 10px );
	}
}
@media print, (min-width:60.0625em) {
	.page-copy {
		font-size: 30px;
		font-size: 3rem;
	}
}
@media screen and (max-width:39.9375em) {
	.page-copy { letter-spacing: .05em;}
	.page-copy br { display: none;}
	.page-header__lead { font-size: 13px; font-size: 1.3rem;}
}
@media print, (min-width:40em) {
	.page-header__lead,
	.page-lead,
	.page-copy { text-align: center;}
}


/* パンくずリスト */
.breadcrumbs { display: none;}
@media print, (min-width:40em) {
	.breadcrumbs {
		display: block;
		font-size: 13px;
		font-size: 1.3rem;
	}
	.breadcrumbs ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	.breadcrumbs li {
		display: inline-block;
		position: relative;
	}
	.breadcrumbs a,
	.breadcrumbs strong {
		display: inline-block;
		padding: 5px 0;
		vertical-align: middle;
	}
	.breadcrumbs li + li:before {
		display: inline-block;
		content: "\203A";
		margin-right: .5em;
		vertical-align: middle;
	}
	.breadcrumbs strong { font-weight: normal;}
}

/* 見出し */
h1,h2,h3,h4,h5,h6 {
	margin: 0;
	font-size: inherit;
	text-transform: none;
}
.h1 {
	margin-top: 3em;
	margin-bottom: 1em;
	font-size: 17px;
	font-size: 1.7rem;
	font-weight: normal;
	text-align: center;
}
.h1--line {
	position: relative;
}
.h1--line span {
	display: inline-block;
	position: relative;
	z-index: 1;
	padding: 0 .7em;
	background: #fff;
}
.h1--line:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	width: 100%;
	height: 1px;
	background: #666;
	background-image: -webkit-linear-gradient(left, #ccc, #333, #ccc);
	background-image: -moz-linear-gradient(left, #ccc, #333, #ccc);
	background-image: linear-gradient(to right, #ccc, #333, #ccc);
	vertical-align: middle;
}
.h2 {
	margin-top: 2em;
	margin-bottom: .5em;
	color: #808080;
	font-size: 16px;
	font-size: 1.6rem;
}
@media print, (min-width:40em) {
	.h1 {
		font-size: 26px;
		font-size: 2.6rem;
	}
	.h2 {
		font-size: 18px;
		font-size: 1.8rem;
	}
}

/* ----------------------------------
   式場トップ
   ---------------------------------- */
/* 式場トップ ビジュアル */
.visual {
	position: relative;
	overflow: hidden;
	height: 400px;
	background: #aaa;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.visual__image { height: 100%;}
.visual__layer {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 100%;
	margin-left: -50%;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.visual__layer img { width: 240px;}
@media print, (min-width:60.0625em) {
	.visual__layer img { width: 320px;}
}
@media screen and (min-width:60.0625em) {
	.visual { height: 750px;}
}
@media print {
	.visual,
	.visual__image { height: 450px !important;}
}

/* 式場トップ フェアボタン */
.fair-block {
	position: relative;
	max-width: 1000px;
	line-height: 1.38;
	margin: 0 auto;
	font-size: 11px;
	text-align: center;
}
.badge { position: relative;}
.badge a,
.badge span {
	display: block;
	height: 100px;
	padding: 10px;
	color: #fff;
	text-decoration: none;
}
.badge__more {
	position: absolute;
	left: 50%;
	bottom: 10px;
	width: 166px;
	line-height: 1;
	margin-left: -83px;
	padding: 4px;
	background: #fff;
	text-align: center;
	font-weight: bold;
}
.badge__more:after {
	display: inline-block;
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: 1px solid;
	border-right: 1px solid;
	-wetbkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.badge__title,
.badge__body { color: inherit;}

.badge--bestrate { background: #b69333;}
.badge--bestrate .badge__title {
	position: absolute;
	left: 0;
	top: 10px;
	width: 100%;
	line-height: 1;
	font-weight: normal;
}
.badge--bestrate .badge__body {
	position: absolute;
	left: 0;
	top: 50px;
	width: 100%;
	line-height: 1;
	font-weight: normal;
}
.badge--bestrate .badge__more { color: #b69333;}
.badge--fair { background: #808080;}
.badge--fair .badge__title {
	display: inline-block;
	line-height: 1;
	margin-top: -2px;
	margin-bottom: 3px;
	font-size: 33px;
	font-weight: normal;
	font-style: italic;
}
.badge--fair .badge__title:after {
	display: inline-block;
	content: "";
	width: 24px;
	height: 37px;
	margin-left: 4px;
	background: url(../img/global/pic_bride.png) no-repeat left top;
	background-size: 24px 37px;
	vertical-align: bottom;
}
.badge--fair .badge__more { color: #808080;}

@media screen and (max-width:47.9375em) {
	.fair-block { box-shadow: -6px 0 6px 3px rgba(0,0,0,.15);}
	.badge--fair { border-top: 1px solid #fff;}
}
@media print, (min-width:48em) {
	.fair-block {
		margin-top: -120px;
		font-size: 13px;
	}
	.fair-block:before,
	.fair-block:after { content: ""; display: table;}
	.fair-block:after { clear: both;}
	.badge { width: 47.5%;}
	.badge--bestrate { float: left;}
	.badge--fair { float: right;}
	.badge--bestrate .badge__body { font-size: 12px;}
}
@media print, (min-width:48em) and (max-width:60em) {
	.fair-block { margin-top: 0;}
	.badge { width: 50%;}
}

/* 式場トップ 横移動リンク */
.across-banner a {
	display: block;
	padding: 7px;
	background: #b69333;
	color: #fff;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	text-align: center;
	text-decoration: none;
}
.across-banner .num {
	font-size: 1.33em;
}
.across-banner__btn {
	display: inline-block;
	position: relative;
	width: 130px;
	margin-left: 5px;
	padding: 4px 10px 4px 4px;
	background: #fff;
	color: #b69333;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
}
.across-banner__btn:after {
	display: inline-block;
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-top: 1px solid;
	border-right: 1px solid;
	-wetbkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.index-header .contact-plan {
	position: relative;
	display: table;
	width: 100%;
	height: 60px;
	margin-bottom: 20px;
	background: url(../img/global/bnr_partyplan.jpg) no-repeat center center;
	background-size: cover;
	color: #fff;
}
.index-header .contact-plan a {
	display: table-cell;
	position: relative;
	z-index: 0;
	padding-left: 10px;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
}
.index-header .contact-plan:before {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,.5);
	content: "";
}
.index-header .contact-plan a span:after {
	display: inline-block;
	content: "";
	width: 6px;
	height: 6px;
	margin-top: -3px;
	margin-left: 6px;
	border-top: 1px solid;
	border-right: 1px solid;
	vertical-align: middle;
	-wetbkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media (max-width:60em) {
	.index-header .contact-plan {
		width: 80%;
		max-width: 290px;
		margin: 10px auto 20px;
	}
}
@media print, (min-width:60.0625em) {
	.index-header:before {
		content: "";
		display: block;
		height: 36px;
		background: #eee;
	}
	.index-header .header__contact {
		display: block;
		width: 100%;
	}
	.index-header .contact-plan {
		position: absolute;
		top: 44px;
		right: 0;
		width: 260px;
	}
	.index-header .contact-plan:before {
		top: auto;
		height: 22px;
	}
	.index-header .contact-plan:hover {
		opacity: .8;
	}
	.index-header .contact-plan a:before {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		content: "";
	}
	.index-header .contact-plan a span {
		display: block;
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		font-size: 93%;
		line-height: 22px;
	}
	.index-header .contact-upper {
		display: block;
		position: absolute;
		top: -36px;
		right: 0;
	}
	.index-header .contact-upper ul {
		display: inline-block;
		width: 260px;
		vertical-align: middle;
	}
	.index-header .contact-upper li a {
		padding-top: 0;
		padding-bottom: 0;
		line-height: 36px;
	}
	.index-header .header__label {
		display: inline-block;
		background: none;
		color: #666;
		vertical-align: middle;
	}
	.index-header .header__label br {
		display: none;
	}
	.index-header .contact-lower {
		position: absolute;
		top: 0;
		right: 0;
		width: 260px;
	}
	.index-header .header__tel {
		display: block;
		width: 100%;
	}
	.across-banner {
		position: absolute;
		left: 0;
		top: 0;
		width: 280px;
	}
	.across-banner a:hover .across-banner__btn {
		opacity: .8;
	}
}


/* 式場トップ ブロック */
.top-block {
	background: #fff;
	padding: 40px 0;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
}
.top-block .wrapper { padding: 0 30px;}
.top-block__heading {
	margin-bottom: 20px;
	font-weight: normal;
	text-align: center;
}
.top-block__heading2 {
	margin-bottom: 15px;
	font-size: 2.2rem;
	font-weight: normal;
	text-align: center;
}
.top-block__lead {
	margin: 0 -14px 16px;
	text-align: center;
}
.top-block__text { margin-bottom: 26px;}
.top-block__btn { margin-top: 30px;}

.top-block--concept { line-height: 2;}
.top-block--concept .top-block__lead { line-height: 1.66;}
.top-block--concept .top-block__text,
.top-block--concept .top-block__text :last-child { margin-bottom: 0;}
@media screen and (min-width:48em) {
	.top-block--concept .top-block__text { line-height: 2.2;}
}
.top-block--party,
.top-block--report,
.top-block--planning { background: #ebebeb;}
.top-block--fair {
	background: url(../img/global/bg_fair.jpg) repeat center center;
	box-shadow: inset 0 5px 10px rgba(0,0,0,.3);
}

@media screen and (max-width:47.9375em) {
	.top-block__lead .resImg {
		display: block;
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
	}
}
@media screen and (max-width:60em) {
	.top-block--fair { background-size: 564px 375px;}
}
@media print, (min-width:60.0625em) {
	.top-block {
		padding: 80px 0;
		font-size: 13px;
		font-size: 1.3rem;
	}
	.top-block .wrapper { padding: 0 20px;}
	.top-block__heading { margin-bottom: 40px;}
	.top-block__lead { margin-bottom: 26px;}
	.top-block__text { margin-bottom: 32px;}
	.top-block__btn { margin-top: 50px;}
}

/* 式場トップ 画像見出し */
.img-heading:before {
	display: block;
	content: "";
	width: 196px;
	height: 22px;
	margin: 0 auto 8px;
	background-repeat: no-repeat;
	background-image: url(../img/global/sprite_heading-sp@2x.png?201811);
	background-size: 196px 650px;
}
.no-bgsizecover .img-heading:before {
	background-image: url(../img/global/sprite_heading-sp.png?201811);
}
.img-heading.news:before { background-position: 0px 0px;}
.img-heading.concept:before { background-position: 0px -50px;}
.img-heading.chapel:before { background-position: 0px -100px;}
.img-heading.party:before { background-position: 0px -150px;}
.img-heading.cuisine:before { background-position: 0px -200px;}
.img-heading.fair:before { background-position: 0px -250px;}
.img-heading.access:before { background-position: 0px -300px;}
.img-heading.gallery:before { background-position: 0px -350px;}
.img-heading.report:before { background-position: 0px -400px;}
.img-heading.ceremony:before { background-position: 0px -450px;}
.img-heading.gallery:before { background-position: 0px -500px;}
.img-heading.planning:before { background-position: 0px -550px;}
.img-heading.plan:before { background-position: 0px -600px;}

@media print, (min-width:60.0625em) {
	.img-heading:before {
		width: 280px;
		height: 30px;
		margin: 0 auto 12px;
		background-image: url(../img/global/sprite_heading@2x.png?201811);
		background-size: 280px 650px;
	}
	.no-bgsizecover .img-heading:before {
		background-image: url(../img/global/sprite_heading.png?201811);
	}
}

/* 式場トップ 装飾画像 */
.top-block .wrapper { z-index: 1;}
@media screen and (max-width:60em) {
	.top-block--chapel .wrapper { padding-bottom: 40px;}
	.top-pic--chapel {
		position: absolute;
		z-index: -1;
		bottom: -50px;
		right: -30px;
	}
	.top-pic--chapel img {
		display: block;
		width: 90%;
		max-width: 500px;
		margin-left: auto;
	}
	.top-block--cuisine .wrapper { padding-bottom: 60px;}
	.top-block--cuisine { overflow: hidden;}
	.top-pic--cuisine {
		position: absolute;
		z-index: -1;
		bottom: -80px;
		left: -20px;
	}
	.top-pic--cuisine img {
		display: block;
		width: 70%;
		max-width: 400px;
		margin-right: auto;
	}
}
@media screen and (min-width:60.0625em) {
	.top-pic--chapel img,
	.top-pic--cuisine img { display: none;}
	.top-pic--chapel:before {
		display: block;
		content: "";
		position: absolute;
		right: -200px;
		bottom: -160px;
		z-index: -1;
		width: 744px;
		height: 444px;
		background: url(../img/global/pic_chapel.png) no-repeat top left;
	}
	.top-pic--cuisine:before {
		display: block;
		content: "";
		position: absolute;
		left: -110px;
		top: -170px;
		z-index: -1;
		width: 466px;
		height: 540px;
		background: url(../img/global/pic_cuisine.png) no-repeat top left;
	}
}


/* 式場トップ パララックス設定 */
@media screen {
	#bg { display: none;}
	.prlx {
		overflow: hidden;
		position: relative;
		background-attachment: fixed;
		background-color: #eee;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}
	.prlx__layer {
		position: relative;
		z-index: 10;
		padding: 0 30px;
	}

	.mobile #bg {
		display: block;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: #eee;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		-webkit-transition: height .2s;
		transition: height .2s;
	}
	.mobile .prlx { background-attachment: scroll;}
	.mobile .prlx--concept,
	.mobile .prlx--space { background: none;}

	.prlx--image {
		height: 0;
		padding-top: 50%;
	}
}
@media screen and (max-width:60em) and (orientation: landscape) {
	.prlx--image { padding-top: 37.5%;}
}
@media screen and (min-width:60.0625em) {
	.prlx.prlx--concept {
		height: 680px;
		padding: 0;
	}
	.prlx--concept:before {
		display: inline-block;
		content: "";
		height: 100%;
		vertical-align: middle;
	}
	.prlx--concept .prlx__layer {
		display: inline-block;
		vertical-align: middle;
	}
	.prlx--image {
		height: 550px;
		padding-top: 0;
	}
}
@media screen and (min-width:60.0625em) and (max-width:65em) and (orientation: landscape) {
	.prlx--image { height: 50vh; padding-top: 0;}
}

/* 式場トップ ブライダルフェア */
.fair-pickup__item {
	position: relative;
	margin-bottom: 50px;
	text-align: left;
}
.fair-pickup__item a {
	display: block;
	text-decoration: none;
}
.fair-pickup__image {
	float: left;
	overflow: hidden;
	position: relative;
	width: 270px;
	height: 270px;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(0,0,0,.5);
}
.fair-pickup__image img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fair-pickup .fair-title {
	line-height: 1.27;
	margin-bottom: 1em;
	color: #b2272d;
	font-size: 16px;
	font-size: 1.6rem;
}
.no-touchevents .fair-pickup__image:after {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.no-touchevents .fair-pickup__image:hover:after {
	background: rgba(255,255,255,.4);
}

@media screen and (max-width:47.9375em) {
	.fair-pickup { margin-top: 30px;}
	.fair-pickup__image {
		float: none;
		margin: 0 auto 16px;
	}
	.fair-pickup__btn {
		text-align: center;
		clear: both;
	}
}
@media print, (min-width:48em) {
	.fair-pickup { margin: 50px 0 0;}
	.fair-pickup__frame {
		position: absolute;
		left: -40px;
		top: -64px;
		z-index: -1;
		width: 330px;
		height: 388px;
		background: url(../img/global/pic_frame2.png) no-repeat left top;
	}
	.fair-pickup__item:first-child .fair-pickup__frame {
		left: -66px;
		top: -54px;
		background: url(../img/global/pic_frame.png) no-repeat left top;
	}
	.fair-pickup__text,
	.fair-pickup__btn {
		margin-left: 280px;
	}
	.fair-pickup .fair-title {
		font-size: 18px;
		font-size: 1.8rem;
	}
}
@media print, (min-width:60.0625em) {
	.fair-pickup { margin: 50px 0 0;}
	.fair-pickup__item {
		width: 48.33%;
		float: right;
	}
	.fair-pickup__item:first-child {
		float: left;
	}
}

/* ブライダルフェア（ゼクシィiframe） */
.fair-container,
.fair-container iframe { display: none;}
.fair-fallback { display: block;}
.fair-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 400px;
	padding-top: 80vh;
}
.fair-container iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (min-width:48em) {
	.fair-container,
	.fair-container iframe { display: block;}
	.fair-fallback { display: none;}
	.fair-container {
		width: 100%;
		height: 750px;
	}
}
@media print {
	.fair-container { display: none;}
}

/* 式場トップ ギャラリー */
.top-block__gallery-link {
	position: relative;
	width: 100%;
	height: 0;
	margin-top: 20px;
	padding-top: 50%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.top-block__gallery-link .btn {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 80%;
	max-width: 350px;
	background: #333 !important;
	background: rgba(0,0,0,.7) !important;
	border: 1px solid #fff;
	color: #fff;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
@media print, (min-width:48em) {
	.top-block__gallery-link {
		margin-top: 40px;
		padding-top: 20%;
	}
}

/* 式場トップ レポート */
.top-block--report a {
	display: block;
	text-decoration: none;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.top-block--report .report-data,
.top-block--report .report-title {
	max-width: 300px;
	margin: 0 auto;
}
.top-block--report .report-data {
	margin-top: 6px;
	margin-bottom: 2px;
	padding-bottom: 2px;
	border-bottom: 1px solid;
}
.no-touchevents .top-block--report a:hover { opacity: .75;}



/* Google Map */
.map-container {
	position: relative;
	margin: 30px auto;
	padding-top: 400px;
}
.map-container #gmap,
.map-container iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.place-name {
	line-height: 1.2;
	margin-bottom: .2em;
	font-size: 18px;
	font-size: 1.8rem;
}
.place-name small {
	display: inline-block;
	font-size: .75em;
}
.place-address2 dl,
.place-address2 dd { margin: 0;}
.place-address3 {
	max-width: 600px;
	margin: 60px auto 0;
}
.place-address3 dl {
	padding: 20px 15px;
	background: #ebebeb;
}
.place-address3 dt {
	font-size: 16px;
	font-size: 1.6rem;
}
.place-address3 dt:after {
	content: "";
	display: block;
	width: 30px;
	border-top: 1px solid #666;
	margin: 10px auto 5px auto;
}
.place-address3 dd { margin: 0;}
.place-address3 dd img { margin-right: 5px; vertical-align: -2px;}
.place-address3 dd a,
.place-address3 dd span { font-size: 2.5em;}

@media (min-width:60.0625em) {
	.map-container {
		position: relative;
		padding-top: 33.33%;
	}
	.place-name {
		font-size: 20px;
		font-size: 2rem;
	}
	.place-address {
		font-size: 15px;
		font-size: 1.5rem;
	}
	.place-address2 {
		display: inline-block;
		margin: 0;
		text-align: left;
	}
	.place-address2 dt {
		display: inline-block;
		width: 9em;
		font-weight: normal;
		text-align: justify;
		vertical-align: top;
	}
	.place-address2 dd {
		display: inline-block;
		vertical-align: top;
	}
	.place-address3 {
		max-width: none;
		display: -webkit-box;
		display: -ms-flex;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	.place-address3 dl {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 48%;
		-webkit-flex: 1 0 48%;
		flex: 1 0 48%;
		max-width: 48%;
		padding: 35px 30px 30px;
	}
}




/* ----------------------------------
   新着情報・パーティレポート
   ---------------------------------- */

/* 一覧表示 */
.news-top,
.report-top {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid #808080;
	text-align: left;
}
.news-top > li,
.report-top > li { border-bottom: 1px solid #808080;}
.news-top a,
.news-top span,
.report-top a {
	display: block;
	position: relative;
	padding: 10px 20px 10px 0;
	text-decoration: none;
}
.news-top span {
	padding-right: 10px;
}
.news-top a:after,
.news-top span:after,
.report-top a:after { content: ""; display: table; clear: both;}
.news-top a:hover,
.report-top a:hover { text-decoration: underline;}

.news-top__thumb,
.report-top__thumb {
	position: relative;
	float: left;
	width: 90px;
	height: 90px;
}
.report-top__thumb .image-wrap {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.news-top__title,
.report-top__text {
	margin-left: 106px;
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: normal;
}
.report-top .report-data {
	color: #808080;
	font-size: 11px;
	font-size: 1.1rem;
}

@media screen and (max-width:47.9375em) {
	.csstransforms .news-top a:before,
	.csstransforms .report-top a:before {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		right: 4px;
		width: 8px;
		height: 8px;
		border-top: 1px solid #808080;
		border-right: 1px solid #808080;
		-webkit-transform: translateY(-50%) rotate(45deg);
		-ms-transform: translateY(-50%) rotate(45deg);
		transform: translateY(-50%) rotate(45deg);
	}
}
@media print, (min-width:48em) {
	/* 新着情報・パーティレポート4カラム表示 */
	.news-top,
	.report-top {
		width: 103.32%;
		margin: 0 -1.66%;
		border: none;
		*zoom: 1;
	}
	.news-top:before,
	.news-top:after,
	.report-top:before,
	.report-top:after { content: ""; display: table;}
	.news-top:after,
	.report-top:after { clear: both;}

	.news-top > li,
	.report-top > li {
		clear: none;
		display: block;
		float: left;
		width: 24.16%;
		margin-bottom: 10px;
		padding: 0 1.66%;
		border: none;
	}
	.news-top > li:nth-child(4n+1),
	.report-top > li:nth-child(4n+1) {
		clear: both;
	}
	.news-top > li:nth-child(n+5),
	.report-top > li:nth-child(n+5) {
		margin-top: 20px;
	}

	.news-top a,
	.news-top span,
	.report-top a { padding: 0;}
	.news-top__thumb,
	.report-top__thumb {
		float: none;
		width: 100%;
		height: auto;
	}
	.report-top__thumb {
		height: 0;
		padding-top: 100%;
	}
	.news-top__title {
		margin: 0;
		padding: 8px 8%;
	}
	.report-top__text {
		margin: 0;
		padding: 8px 0;
	}
}

/* 新着情報　詳細ページ */
.article__title {
	font-size: 18px;
	font-size: 1.8rem;
}
.article__date {
	color: #808080;
	font-size: .9em;
}
.article__body {
	margin: 2em 0;
}
@media print, (min-width:48em) {
	.article__title {
		font-size: 24px;
		font-size: 2.4rem;
	}
}

/* レポート詳細ページ */
.report__header {
	margin-top: -20px;
	padding: 30px 0;
	background: #ebebeb;
}
.report__inner {
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}
.report__header .report-data {
	margin: 0;
	font-size: 12px;
	font-size: 1.2rem;
}
.report__image1 img,
.report__image2 img {
	width: 100%;
}
.report__message {
	margin: 40px -20px 0;
	padding: 10px 20px;
	border-top: 4px double #aaa;
	font-size: 13px;
	font-size: 1.3rem;
}
.report__message :last-child {
	margin-bottom: 0;
}
.message__title {
	margin: 1em 0;
}

@media (max-width:47.9375em) {
	.report__image1,
	.report__image2 {
		max-width: 600px;
		margin: 16px auto 0;
	}
}
@media print, (min-width:48em) {
	.report__header {
		margin-bottom: 40px;
	}
	.report__title {
		position: absolute;
		right: 20px;
		bottom: 0;
		width: 34%;
	}
	.report__image2 {
		position: absolute;
		right: 20px;
		top: 0;
		width: 34%;
	}
	.report__image1 {
		width: 60%;
	}
	.report__message {
		margin: 60px 0 0;
		padding: 30px 40px;
		border: 4px double #dfdfdf;
	}
	.message__title {
		font-size: 16px;
		font-size: 1.6rem;
	}
}


/* レポート詳細ページ（新） */
.report-new .report-title {
	font-size: 20px;
	font-size: 2rem;
	font-weight: normal;
}
.report-new .report-date {
	display: none;
}
.report-new .report__image1 {
	margin-bottom: 10px;
}
.report__slider {
	position: relative;
	margin-top: 20px;
	margin-bottom: 5%;
}
.report__slider .slick-slide {
	margin: 0 5px;
}
.report__slider .slick-next,
.report__slider .slick-prev {
	width: 30px;
	height: 100%;
	background: #98999a !important;
}
.report__slider .slick-next:before,
.report__slider .slick-prev:before {
	display: block;
	overflow: hidden;
	width: 20px;
	height: 20px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: "";
}
.report__slider .slick-next:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.report__slider .slick-prev:before {
	-webkit-transform: translateX(8px) rotate(-135deg);
	-ms-transform: translateX(8px) rotate(-135deg);
	transform: translateX(8px) rotate(-135deg);
}
.report__slider .slick-next {
	right: 0;
	z-index: 1;
}
.report__slider .slick-prev {
	left: 0;
	z-index: 1;
}
.report-new .report__point ol {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: point;
}
.report-new .report__point li {
	margin-bottom: 5%;
	counter-increment: point;
}
.report-new .point__image {
	width: 80%;
	margin: 0 auto;
}
.report-new .point__image img {
	width: 100%;
}
.report-new .point__body {
	padding: 0 10px;
}
.report-new .point__title {
	margin: 0 -10px 10px;
	padding: .2em 1em .1em;
	color: #fff;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: normal;
	text-align: center;
	line-height: 1;
}
.report-new .point__title .num {
	display: inline-block;
	position: relative;
	top: -.1em;
	width: 25px;
	height: 24px;
	margin-left: .2em;
	padding-left: .1em;
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNy40NiIgaGVpZ2h0PSIzNiIgdmlld0JveD0iMCAwIDM3LjQ2IDM2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9PC9zdHlsZT48L2RlZnM+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxOS40NiIgY3k9IjE4IiByPSIxOCIvPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTkuMzUsMjMuNDRTOC4zNCwzMy43OCwwLDM1LjlhMjgsMjgsMCwwLDAsMTkuMDctNi41NFoiLz48L3N2Zz4=) no-repeat;
	background-size: 24px 24px;
	font-weight: bold;
	line-height: 24px;
	text-align: center;
}

.report-new .point__title .num:before {
	content: counter(point);
}
.report-new .report__voice {
	padding: 6%;
	border: 1px solid #b69333;
}
.report-new .report__message {
	width: 100%;
	margin: 0 auto;
	padding: 6% 10% 4%;
	border-radius: 10px;
	border: none;
	background: #f2f2f2;
}
.report-new .message__planner {
	display: table;
	direction: rtl;
	width: 100%;
}
.report-new .planner-image,
.report-new .planner-name {
	display: table-cell;
	vertical-align: middle;
}
.report-new .planner-image {
	width: 80px;
	text-align: right;
}
.report-new .planner-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}
.report-new .planner-name {
	text-align: left;
}
@media screen and (max-width:59.9375em) {
	.report__slider .slick-next,
	.report__slider .slick-prev {
		background: transparent !important;
	}
}
@media screen and (min-width:40em) and (max-width:47.9375em) {
	.report-new .report__point li {
		float: left;
		width: 48%;
	}
	.report-new .report__point li:nth-of-type(odd) {
		clear: both;
	}
	.report-new .report__point li:nth-of-type(even) {
		float: right;
	}
}
@media print, (min-width:48em) {
	.report-new .report__title {
		position: static;
		width: 100%;
	}
	.report-new .report-title {
		margin-bottom: 10px;
		font-size: 28px;
		font-size: 2.8rem;
	}
	.report-new .report__image1 {
		float: left;
		width: 70%;
		margin-right: 2.5%;
	}
	.report-new .point__body {
		float: right;
		width: 58.695%;
		padding: 0;
	}
	.report-new .point__image {
		width: 38.043%;
		margin: 0;
	}
	.report-new .point__title {
		margin: 0 0 20px;
		font-size: 28px;
		font-size: 2.8rem;
	}
	.report-new .point__title .num {
		width: 38px;
		height: 36px;
		background-size: 38px 36px;
		line-height: 36px;
	}
	.report-new .message__title {
		font-size: 16px;
		font-size: 1.6rem;
	}
	.report-new .report__voice {
		padding: 6% 10%;
	}
	.report-new .report__message {
		width: 72.8%;
		padding: 6% 12% 4%;
		border-radius: 30px;
	}
	.report-new .planner-image {
		position: relative;
		right: -15%;
		width: 120px;
		text-align: right;
	}
	.report-new .planner-image img {
		width: 120px;
		height: 120px;
	}
}
@media (min-width:60em) {
	.report__slider {
		padding: 0 25px;
	}
	.report__slider .slick-next {
		right: -25px;
	}
	.report__slider .slick-prev {
		left: -25px;
	}
	.report__slider .slick-slide {
		margin: 0 15px;
	}
}

/* ギャラリー */
.gallery,
.report__gallery {
	list-style: none;
	margin: 0;
	padding: 1px;
}
.gallery:before,
.gallery:after,
.report__gallery:before,
.report__gallery:after { content: ""; display: table;}
.gallery:after,
.report__gallery:after { clear: both;}

.gallery > li,
.report__gallery > li {
	position: relative;
	float: left;
}
.gallery img,
.report__gallery img {
	width: 100%;
	height: auto;
}
.gallery > li,
.report__gallery > li {
	width: 50%;
	border: 1px solid #fff;
}
.gallery figure {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 0;
	padding-top: 100%;
}
.gallery .img-wrap {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.gallery figcaption {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background: rgba(0,0,0,.6);
	color: #fff;
	padding: 10px;
	text-align: center;
	opacity: 0;
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: all .3s;
	transition: all .3s;
}
.gallery figure:hover figcaption {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.gallery figcaption:before {
	display: inline-block;
	content: "";
	width: 0;
	height: 100%;
	vertical-align: middle;
}
.img-caption {
	display: inline-block;
	line-height: 1.4;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: bold;
	vertical-align: middle;
}

.report__gallery {
	max-width: 960px;
	margin: 0 auto;
}

@media (max-width:47.9375em ){
	.gallery { margin: 0 -20px;}
	.gallery li:nth-child(2n+1),
	.report__gallery li:nth-child(2n+1) { clear: both;}
}
@media print, (min-width:48em) {
	.gallery li:nth-child(3n+1),
	.report__gallery li:nth-child(3n+1) { clear: both;}
	.gallery > li {
		width: 30.33%;
		margin: 20px 1.5%;
		border: none;
	}
	.gallery .img-caption {
		font-size: 12px;
		font-size: 1.2rem;
	}
	.report__gallery {
		padding: 0 14px;
	}
	.report__gallery > li {
		float: left;
		width: 33.33%;
		padding: 8px 6px;
	}
}

/* パーティプラン */
.partyplan-box {
	margin: 30px 0;
	border: 4px double #808080;
	padding: 20px;
}
.partyplan .h1 {
	margin-top: 2em;
}
.partyplan .h1--line:after {
	max-width: 500px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.partyplan .plan-title {
	margin-bottom: 5px;
	padding: .5em;
	color: #fff;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1;
}
.partyplan .freedrink {
	padding-left: 1em;
	text-indent: -1em;
}
.partyplan .pricelist {
	width: 100%;
}
.partyplan .pricelist th {
	font-weight: normal;
}
.partyplan .pricelist td {
	white-space: nowrap;
}
.partyplan .contact {
	margin-top: 40px;
	padding: 20px;
	border: 5px solid #eee;
	text-align: center;
}
.partyplan .contact [data-action="call"] {
	font-size: 2em;
}
@media print, (min-width:48em) {
	.partyplan-box {
		margin: 50px 0;
		padding: 30px 40px;
	}
	.partyplan .contact {
		margin-top: 60px;
		padding: 30px;
		border: 8px solid #eee;
	}
}



/* ==========================================================================
   $3-2. Object -- Component
   ========================================================================== */
/**
 * 再利用可能なパーツ群
 */

/* グリッド分割
   ---------------------------------- */
.grid {
	list-style: none;
	margin: 0;
	padding: 0;
}
.grid__col,
.grid li { position: relative; padding-top: 5px;}
.grid__col + .grid__col { margin-top: 20px;}
.grid__img { margin-bottom: 20px;}
.grid__col img { width: 100%; height: auto;}
@media print, (min-width:40.0625em) {
	.grid { *zoom:1;}
	.grid:before,
	.grid:after { content: ""; display: table;}
	.grid:after { clear: both;}

	.grid-2 {
		overflow: hidden;
		width: 106%;
		margin: 0 -3%;
	}
	.grid-3 {
		overflow: hidden;
		width: 105%;
		margin: 0 -2.5%;
	}
	.grid-4 {
		overflow: hidden;
		width: 103.32%;
		margin: 0 -1.6%;
	}
	.grid-4--2palces {
		overflow: hidden;
		width: 106%;
		margin: 0 -3%;
	}
	.grid .grid__col,
	.grid > li {
		float: left;
		margin-top: 0;
		padding-top: 6px;
	}
	.grid-2 .grid__col,
	.grid-2 > li {
		width: 50%;
		padding-right: 3%;
		padding-left: 3%;
	}
	.grid-3 .grid__col,
	.grid-3 > li {
		width: 33.33%;
		padding-right: 2.5%;
		padding-left: 2.5%;
	}
	.grid-4 .grid__col,
	.grid-4 li {
		width: 25%;
		padding-right: 1.6%;
		padding-left: 1.6%;
	}
	.grid--2places .grid__col {
		width: 45%;
	}
	.grid--2places .grid__col:nth-of-type(2) {
		float: right;
	}
	.grid--2places .grid__img {
		float: left;
		width: 50%;
		margin-bottom: 40px;
	}
	.grid--2places  .btn {
		font-size: 14px;
		font-size: 1.4rem;
	}
}

/* 画像帯 */
.no-csstransforms .grid__col .grid-label,
.no-csstransforms .report-top .grid-label { display: none;}
.grid__col .grid-label,
.report-top .grid-label {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: -5px;
	width: 100%;
	height: 100%;
}
.report-top .grid-label {
	top: 5px;
}
.grid__col .grid-label > span,
.report-top .grid-label > span {
	display: block;
	position: relative;
	width: 90px;
	height: 22px;
	line-height: 23px;
	background: #c40000;
	color: #fff;
	font-family: Roboto, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	letter-spacing: 0;
	text-align: center;
	-webkit-transform: translate(-25%,50%) rotate(-45deg);
	-ms-transform: translate(-25%,50%) rotate(-45deg);
	transform: translate(-25%,50%) rotate(-45deg);
}
.grid__col .grid-label > span:before,
.grid__col .grid-label > span:after,
.report-top .grid-label > span:before,
.report-top .grid-label > span:after {
	display: block;
	content: "";
	position: absolute;
	bottom: -5px;
	border: 5px solid rgba(0,0,0,0);
	border-bottom-color: #640000;
}
.grid__col .grid-label > span:before,
.report-top .grid-label > span:before {
	left: -3px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.grid__col .grid-label > span:after,
.report-top .grid-label > span:after {
	right: -2px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media print, (min-width:40.0625em) {
	.grid__col .grid-label {
		left: calc(7.5% - 5px);
	}
}
@media (min-width:48em) {
	.report-top .grid-label {
		top: -5px;
		left: -5px;
	}
}
@media (min-width:60.0625em) {
	.grid__col .grid-label > span,
	.report-top .grid-label > span {
		width: 104px;
		height: 26px;
		line-height: 28px;
		font-size: 16px;
	}
}


/* アコーディオンモジュール
   ---------------------------------- */
.mod-acc__title { position: relative;}
.mod-acc__title a {
	display: block;
	padding: 6px 0;
}
.mod-acc__title i {
	display: inline-block;
	content: "";
	position: relative;
	width: 24px;
	height: 24px;
	margin-right: 6px;
	border-radius: 50%;
	background: #333;
	vertical-align: middle;
}
.mod-acc__title i:before,
.mod-acc__title i:after {
	display: block;
	content: "";
	position: absolute;
	background: #fff;
}
.mod-acc__title i:before {
	left: 6px;
	top: 11px;
	width: 12px;
	height: 2px;
}
.mod-acc__title i:after {
	left: 11px;
	top: 6px;
	width: 2px;
	height: 12px;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.mod-acc__title a.is-active i:after {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.mod-acc__panel { margin: 0;}

.mod-acc.theme1 { border-bottom: 1px dotted #333;}
.mod-acc.theme1 .mod-acc__title a { padding: 8px 0; border-top: 1px dotted #333; text-decoration: none;}
.mod-acc.theme1 .mod-acc__panel { padding: 8px 0 16px 0;}


/* tables
   ---------------------------------- */
.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1.286em;
}
.table th,
.table td {
	padding: .6em;
	border-bottom: 1px solid #ccc;
}

/* ボーダー付きテーブル */
.table-bordered th,
.table-bordered td { border: 1px solid #ccc;}

/* スタイルなしテーブル */
.table-flat { margin-bottom: 0;}
.table-flat th,
.table-flat td,
.table-flat caption {
	padding: 0;
	border: none;
}

/* buttons
   ---------------------------------- */
/* setting */
.btn,
a.btn {
	display: block;
	position: relative;
	overflow: visible;
	max-width: 100%;
	line-height: 1;
	margin: 0 auto;
	padding: 16px;
	border: none;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	text-transform: none;
	outline: 0 !important;
	-webkit-appearance: none;
	transition: all .2s;

	/* base theme */
	background: #808080;
	color: #fff;
}
a.btn:not(:disabled),
input.btn:not(:disabled),
button.btn:not(:disabled) {
	cursor: pointer;
}
.btn[disabled] {
	background-color: #e1e1e1 !important;
	color: #aaa;
	pointer-events:none;
}
.btn:disabled,
.btn.disabled {
	background-color: #e1e1e1 !important;
	color: #aaa;
	pointer-events:none;
}

.btn:before {
	display: inline-block;
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all .3s;
	transition: all .3s;
	opacity: 0;
}
.no-touchevents a.btn:hover,
.no-touchevents button.btn:hover {
	padding-left: 4px;
}
.no-touchevents a.btn:hover:before,
.no-touchevents button.btn:hover:before {
	opacity: 1;
	right: 10px;
}

.btn.btn--reverse:before {
	right: auto;
	left: 16px;
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.no-touchevents a.btn.btn--reverse:hover {
	padding-right: 4px;
}
.no-touchevents a.btn.btn--reverse:hover:before {
	opacity: 1;
	left: 10px;
}

.btn.btn--small {
	display: inline-block;
	width: 50%;
	max-width: 200px;
	margin: 2px 0;
	padding: 8px;
	font-size: 13px;
	font-size: 1.3rem;
}
.btn.btn--gray {
	background: #333 !important;
}
.btn.btn--border {
	padding: 16px !important;
	background: none !important;
	color: #333 !important;
	border: 1px solid;
}
.btn.btn--border:before {
	display: none;
}
.btn.btn--border:hover {
	color: #aaa !important;
}
.btn.btn--silver {
	background: #808080 !important;
	color: #fff;
}

.btn-frame {
	display: inline-block;
	width: 300px;
	height: 70px;
	padding: 22px 15px 0;
	background: url(../img/global/sprite_btnframe@2x.png) no-repeat left top;
	background-size: 300px 140px;
	font-size: 16px;
	font-size: 1.6rem;
	text-align: center;
}
.btn-frame:hover { background-position: left bottom;}
.no-bgsizecover .btn-frame { background-image: url(../img/global/sprite_btnframe.png);}

@media print, (min-width:40.0625em) {
	.btn,
	a.btn {
		width: 350px;
		font-size: 16px;
		font-size: 1.6rem;
	}
	.btn.btn--block {
		display: block;
		width: 100%;
		max-width: 100%;
	}
	.btn.btn--small {
		font-size: 15px;
		font-size: 1.5rem;
	}
}


/* labels
   ---------------------------------- */
.label {
	line-height: 1;
	padding: 4px 7px;
	border-radius: 2px;
	background-color: #eee;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	vertical-align: middle;
	white-space: nowrap;
}
.label-important {
	background-color: #b94a48;
	color: #fff;
}
.label-primary {
	background-color: #29adc1;
	color: #fff;
}


/* InstaFeed
   ---------------------------------- */
.instafeed {
	display: flex;
	display: -webkit-flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
.instafeed li {
	flex: 1 0 25%;
	max-width: 25%;
	padding: 1px;
}
.instafeed img {
	width: 100%;
	height: auto;
}
.no-flexbox .instafeed {
	display: block;
}
.no-flexbox .instafeed li {
	display: inline-block;
}

/* ==========================================================================
   $3-3. Object -- Utility
   ========================================================================== */
/**
 * スタイル調整用ヘルパー（原則編集禁止）
 * Media Query Extensions:
 *   -xs = extra small (max-width:35em)
 *   -sm = small (max-width:40em)
 *   -md = medium (min-width:40.0625em) and (max-width:64em)
 *   -lg = large (min-width:60.0625em)
*/

/* Text meant only for screen readers
   ---------------------------------- */
.sr {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.sr:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Clearing
   ---------------------------------- */
.clr { clear: both;}
.clearfix:before,
.clearfix:after { content: ""; display: table;}
.clearfix:after { clear: both;}

/* Float
   ---------------------------------- */
.u-left { float: left;}
.u-right { float: right;}
.u-center { margin-right: auto; margin-left: auto;}

/* Text Align
   ---------------------------------- */
.u-text-left   { text-align: left;}
.u-text-center { text-align: center;}
.u-text-right  { text-align: right;}

/* Lists
   ---------------------------------- */
.list-note {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}
.list-note > li {
	padding-left: 1em;
	text-indent: -1em;
}
.list-note > li:before {
	content: "\203B";
}

/* Block widths
   ---------------------------------- */
.u-width-100 { width: 100%;}
.u-width-80 { width: 80%;}
.u-width-75 { width: 75%;}
.u-width-60 { width: 60%;}
.u-width-50 { width: 50%;}
.u-width-40 { width: 40%;}
.u-width-33 { width: 33%;}
.u-width-25 { width: 25%;}
.u-width-20 { width: 20%;}
.u-width-10 { width: 10%;}

/* Text Styles
   ---------------------------------- */
.u-size-l { line-height: 1.41; font-size: 20px; font-size: 2rem;}
.u-size-m { font-size: 16px; font-size: 1.6rem;}
.u-size-s { font-size: 1.1rem; font-size: 11px;}
@media print, (min-width:40.0625em) {
	.u-size-l { font-size: 24px; font-size: 2.4rem;}
	.u-size-m { font-size: 18px; font-size: 1.8rem;}
	.u-size-s { font-size: 1.2rem; font-size: 12px;}
}

.u-txt-warning   { color: #e28327;}
.u-txt-mute      { color: #999;}
.u-txt-highlight { color: #cf314f;}

/* Margins
   ---------------------------------- */
.mt5 { margin-top:    5px !important;}
.mb5 { margin-bottom: 5px !important;}
.mts { margin-top:    10px !important;}
.mrs { margin-right:  10px !important;}
.mbs { margin-bottom: 10px !important;}
.mls { margin-left:   10px !important;}
.mtm { margin-top:    20px !important;}
.mrm { margin-right:  20px !important;}
.mbm { margin-bottom: 20px !important;}
.mlm { margin-left:   20px !important;}
.mtl { margin-top:    40px !important;}
.mrl { margin-right:  40px !important;}
.mbl { margin-bottom: 40px !important;}
.mll { margin-left:   40px !important;}
.m0,.mt0,.mv0 { margin-top:    0 !important;}
.m0,.mr0,.mh0 { margin-right:  0 !important;}
.m0,.mb0,.mv0 { margin-bottom: 0 !important;}
.m0,.ml0,.mh0 { margin-left:   0 !important;}

/* Paddings
   ---------------------------------- */
.pa0 { padding: 0 !important;}
.pt0 { padding-top: 0 !important;}
.pb0 { padding-bottom: 0 !important;}

/* Lists
   ---------------------------------- */
/*ul,ol*/.u-flat,
/*ul,ol*/.u-inline { list-style: none; padding-left: 0;}
/*ul,ol*/.u-inline li { display: inline-block; margin-right: .5em;}
/*dl*/.u-flat dt { font-weight: normal;}
/*dl*/.u-flat dd { margin-left: 0;}

/* Text Indents
   ---------------------------------- */
ul.u-indent1 { list-style: none; padding-left: 0; text-indent: 0;}
li.u-indent1,
ul.u-indent1 > li { margin-left: 1em; text-indent: -1em;}


/* Display Utility
   ---------------------------------- */
.ib { display: inline-block;}
.inline { display: inline;}
.hidden { display: none!important; visibility: hidden!important;}
.invisible { visibility: hidden!important;}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg { display: none;}

@media screen and (max-width:35em) {
	.visible-xs { display: block!important;}
	.hidden-xs { display: none!important;}
}
@media screen and (max-width:40em) {
	.visible-sm { display: block!important;}
	.hidden-sm { display: none!important;}
}
@media print, (min-width:40.0625em) {
	.visible-md { display: block!important;}
	.hidden-md { display: none!important;}
}
@media print, (min-width:60.0625em) {
	.visible-lg { display: block!important;}
	.hidden-lg { display: none!important;}
}



/* ==========================================================================
   $Print styles
   ========================================================================== */

@media print {
	* { color: #000; box-shadow: none !important; text-shadow: none !important;}
	a,a:visited { text-decoration: underline;}
	thead { display: table-header-group;}
	tr,img { page-break-inside: avoid;}
	img { max-width: 100% !important;}
	@page { margin: 0.5cm;}
	p,h2,h3 { orphans: 3; widows: 3;}
	h2,h3 { page-break-after: avoid;}
	.top-pic,
	.flink,
	.footer__social { display: none;}
}
