@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 "Times New Roman", Times, "Sawarabi Mincho", "Roboto Slab", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", serif; */
	font-family: "Helvetica Neue", Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size: 1.4em;
	line-height: 1.714;
	letter-spacing: .025em;
}

.ff-serif {
	font-family: "Times New Roman", Times, "Sawarabi Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", 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: #b39d5a;
}

[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;
}

.txt-gold {
	color: #b69333;
}

/* ----------------------------------
   ローディング画面
   ---------------------------------- */
#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;
}

#loader span:before,
#loader span:after {
	display: inline-block;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
}

#loader span:before {
	border: 2px solid #ddd;
}

#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-family: "Times New Roman", Times, "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
	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) {
	.container {
		padding-top: 53px;
	}

	.header {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 101;
		width: 100%;
	}

	.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;
		overflow: scroll;
		position: absolute;
		top: 50px;
		left: 0;
		z-index: 900;
		width: 100%;
		max-height: calc(100vh - 50px);
		padding: 20px;
		background: #fff;
		box-shadow: 0 5px 10px rgba(0, 0, 0, .08);
	}

	.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);
		transform: rotate(45deg)
	}

	.is-opened .nav-toggle__icon:after {
		-webkit-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);
	transform: rotate(-45deg);
	-webkit-transition: all .3s;
	transition: all .3s;
}

#pagetop:hover:before {
	margin-top: 15px;
}

.footer {
	padding: 30px 0;
	background: #fff;
	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;
	z-index: 100;
	background: #333;
	-webkit-transition: transform .4s ease-in-out;
	transition: transform .4s ease-in-out;
}

.floating-nav.is-fixed {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.floating-nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #333;
	color: #fff;
	font-size: 1.4rem;
	text-decoration: none;
}

@media (max-width:60em) {
	.floating-nav {
		right: 0;
		bottom: 0;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		box-shadow: 0 0 10px rgba(0, 0, 0, 0);
	}

	.floating-nav.is-fixed {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	}

	.floating-nav ul {
		display: flex;
		overflow: hidden;
		width: 100%;
		margin: 0;
	}

	.floating-nav li {
		flex: 1;
		padding: 0 10px;
	}

	.floating-nav li:nth-of-type(n+2) {
		border-left: 1px solid #eee;
	}

	.floating-nav a {
		position: relative;
		width: 100%;
		height: 60px;
		margin: 0 auto;
	}

	.floating-nav a::after {
		display: inline-block;
		content: "";
		position: absolute;
		right: 8px;
		top: 50%;
		width: 8px;
		height: 8px;
		margin-top: -4px;
		border-top: 2px solid #ddd;
		border-right: 2px solid #ddd;
		transform: rotate(45deg);
	}
}

@media (min-width:60.0625em) {
	.floating-nav {
		position: fixed;
		left: 0;
		top: 50%;
		-webkit-transform: translate(-60px, -50%);
		transform: translate(-60px, -50%);
		width: 60px;
	}

	.floating-nav.is-fixed {
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
		box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	}

	.floating-nav li:nth-of-type(n+2) {
		border-top: 1px solid #eee;
	}

	.floating-nav a {
		height: 170px;
		font-size: 16px;
		line-height: 1;
		-webkit-transition: background .2s;
		transition: background .2s;
	}

	.floating-nav a span {
		text-align: center;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
	}

	.no-touchevents .floating-nav a:hover {
		background: #4d4d4d;
	}
}

@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: 1.2rem;
	font-weight: normal;
}

.social-instagram__heading img {
	display: block;
	margin: 0 auto;
}

/* コピーライト */
.copyright {
	margin-top: 20px;
	font-size: 1.1rem;
	text-align: center;
}

@media screen and (max-width:60em) {
	.footer__tel {
		line-height: 1.2;
		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: 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: 1.1rem;
	font-weight: normal;
	text-align: center;
}

.page-header__title::before {
	content: attr(data-en);
	display: block;
	margin-bottom: 3px;
	color: #333;
	font-family: "Times New Roman", Times, "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1;
}

@media print,
(min-width:40em) {
	.page-header {
		padding: 40px 20px 0;
	}

	.page-header__title {
		font-size: 1.2rem;
	}

	.page-header__title::before {
		font-size: 38px;
	}
}

/* ページコピー・リード文 */
.page-header__lead {
	margin-top: 1.5em;
}

.page-lead {
	margin-bottom: 2.5em;
	font-size: 1.3rem;
}

.page-copy {
	line-height: 1.5;
	color: #1c1c1c;
	font-size: 1.8rem;
	text-align: center;
}

@media (min-width:480px) and (max-width:960px) {

	/* フォントサイズ計算に誤差が出るため、メディアクエリはpx指定 */
	.page-copy {
		font-size: calc(.8rem + 2vw);
	}
}

@media print,
(min-width:60.0625em) {
	.page-copy {
		font-size: 2.5rem;
	}
}

@media screen and (max-width:39.9375em) {
	.page-copy {
		letter-spacing: .05em;
	}

	/* .page-copy br { display: none;} */
	.page-header__lead {
		font-size: 1.3rem;
	}
}

@media print,
(min-width:40em) {

	.page-header__lead,
	.page-lead {
		text-align: center;
	}
}


/* パンくずリスト */
.breadcrumbs {
	display: none;
}

@media print,
(min-width:40em) {
	.breadcrumbs {
		display: block;
		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: 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: 1.6rem;
}

@media print,
(min-width:40em) {
	.h1 {
		font-size: 2.6rem;
	}

	.h2 {
		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%;
}

@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);
	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: 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: 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);
	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);
	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: 1.2rem;
	text-align: center;
}

.top-block[data-bg="gray"] {
	background: #f5f5f5;
}

.top-block .wrapper {
	padding: 0 30px;
}

.top-block__heading {
	margin-bottom: 20px;
	font-weight: normal;
	text-align: center;
}

.top-block__heading::before {
	content: attr(data-en);
	display: block;
	margin-bottom: 3px;
	color: #333;
	font-family: "Times New Roman", Times, "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1;
}

.top-block__heading2 {
	margin-bottom: 15px;
	font-size: 2.2rem;
	font-weight: normal;
	text-align: center;
}

.top-block__image {
	margin-bottom: 30px;
}

.top-block__lead {
	margin: 0 -14px 16px;
	text-align: center;
}

.top-block__text {
	margin-bottom: 26px;
}

.top-block__btn {
	margin-top: 30px;
}

@media screen and (max-width:47.9375em) {
	.top-block__lead .resImg {
		display: block;
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
	}
}

@media print,
(min-width:40em) {
	.top-block__heading::before {
		font-size: 38px;
	}
}

@media print,
(min-width:48em) {
	.top-block__image {
		overflow: hidden;
		position: relative;
		max-width: 1000px;
		height: 0;
		margin: 0 auto 30px;
		padding-top: 50%;
	}

	.top-block__image img {
		position: absolute;
		left: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

@media print,
(min-width:60.0625em) {
	.top-block {
		padding: 80px 0;
		font-size: 1.3rem;
	}

	.top-block .wrapper {
		padding: 0 20px;
	}

	.top-block__heading {
		margin-bottom: 40px;
	}

	.top-block__heading+.top-block__image {
		margin-top: -20px;
	}

	.top-block__lead {
		margin-bottom: 26px;
	}

	.top-block__text {
		margin-bottom: 32px;
	}

	.top-block__btn {
		margin-top: 50px;
	}
}

/* SP時スライダー */
@media screen and (max-width:40em) {
	.js-slider {
		margin-right: -30px;
		margin-left: -30px;
	}

	.js-slider .slick-slide {
		padding: 0 15px;
	}
}

@media screen and (min-width:40.0625em) {
	.js-slider {
		margin-right: -2.5%;
		margin-left: -2.5%;
	}

	.js-slider .slick-slide {
		padding: 0 2.5%;
	}

	.top-block .js-slider {
		margin-right: -15px;
		margin-left: -15px;
	}
}

/* 式場トップ ブライダルフェア */
.fair-pickup {
	position: relative;
	padding-top: 3px;
}

.fair-pickup img {
	width: 100%;
}

.fair-pickup figcaption {
	margin-top: 10px;
	text-align: left;
}

.fair-pickup a {
	display: block;
	text-decoration: none;
	-webkit-transition: all .2s;
	transition: all .2s;
}

.fair-pickup .date {
	position: absolute;
	left: 10px;
	top: -3px;
	padding: 15px 5px 0;
	background: #fff;
	box-shadow: 2px 2px 0 rgba(0, 0, 0, .1);
	line-height: 1.2;
	text-align: center;
}

.fair-pickup .date-year {
	font-size: 1.1rem;
}

.fair-pickup .date-day {
	position: relative;
	width: 3em;
	margin: 5px 0;
	padding: 2px 0;
	border-top: 1px solid;
	border-bottom: 1px solid;
	font-size: 2rem;
	letter-spacing: -.025em;
}

.fair-pickup .date-day .slash {
	margin: 0 3px;
}

.fair-pickup .date-weekday {
	font-size: 1.1rem;
	letter-spacing: .1em;
}

.fair-pickup .date-pickup {
	position: relative;
	margin: 5px -5px 0 -5px;
	padding: 0 5px;
	background: #ef5757;
	color: #fff;
}

.fair-pickup .date-year,
.fair-pickup .date-day,
.fair-pickup .date-pickup {
	font-family: "Times New Roman", Times, "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
}

.fair-pickup__text {
	font-size: calc(1em + .1rem);
}

.no-touchevents .fair-pickup a:hover {
	opacity: .75;
}

@media print,
(min-width:60.0625em) {
	.fair-pickup .date-year {
		font-size: 1.1rem;
	}

	.fair-pickup .date-day {
		font-size: 2.8rem;
	}

	.fair-pickup .date-weekday {
		font-size: 1.1rem;
	}
}

/* 式場トップバナー */
.top-banner {
	width: 90%;
	max-width: 500px;
	margin: 40px auto;
}

@media print,
(min-width:60.0625em) {
	.top-banner {
		max-width: 1000px;
	}
}

/* ブライダルフェア（ゼクシィ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--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;
}

/* 式場トップ プラン */
.plan-item {
	display: block;
	text-align: left;
	text-decoration: none;
	-webkit-transition: all .2s;
	transition: all .2s;
}

.plan-item .plan-text {
	position: relative;
	z-index: 1;
	padding-top: 10px;
	text-align: left;
}

.plan-item .plan-title {
	font-size: calc(1em + .1rem);
	line-height: 1.5;
}

.plan-item .plan-deal {
	position: absolute;
	left: 0;
	bottom: 100%;
	padding: 1px 15px;
	background: #ef5757;
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: .025em;
}

.no-touchevents .plan-item a:hover {
	opacity: .75;
}

@media print,
(min-width:40.0625em) {
	.plan-item .plan-text {
		position: relative;
	}

	.plan-item .plan-deal {
		font-size: 1.2rem;
	}

	.plan-top .grid__col:nth-of-type(3n+1) {
		clear: both;
	}

	.plan-top .grid__col:nth-of-type(n+4) {
		margin-top: 40px;
	}
}

/* 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: 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: 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: 2rem;
	}

	.place-address {
		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: 1.3rem;
	font-weight: normal;
}

.report-top .report-data {
	color: #808080;
	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);
		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,
	.report-top__text {
		margin: 0;
		padding: 8px 0;
	}
}

/* 新着情報　詳細ページ */
.article__title {
	font-size: 1.8rem;
}

.article__date {
	color: #808080;
	font-size: .9em;
}

.article__hero {
	margin-bottom: 25px;
}

.article__body {
	margin: 2em 0;
}

@media print,
(min-width:48em) {
	.article__title {
		font-size: 2.4rem;
	}
}

/* 積み上げCMS用 */
.article__body>:first-child {
	margin-top: 0
}

.article__body [class*=unit-]+[class*=unit-] {
	margin-top: 20px
}

.article__body .unit-image figure {
	margin-bottom: 20px
}

.article__body .unit-image img {
	width: 100%
}

.article__body .unit-image figcaption {
	margin-top: 10px;
	font-size: 1.3rem
}

.article__body .unit-image figcaption:empty {
	display: none
}

.article__body .unit-image[class*=side-] .body {
	margin-bottom: 20px
}

.article__body .unit-map {
	position: relative
}

.article__body .unit-map iframe {
	width: 100%;
	height: 450px
}

.article__body h2 {
	position: relative;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
}

.article__body h3 {
	font-size: 1.8rem;
	font-weight: 700;
}

.article__files {
	margin-top: 40px;
	padding: 30px 15px;
	background: #f2f2f2;
}

.article__files>:last-child {
	margin-bottom: 0;
}

@media print,
(min-width:40.0625em) {
	.article__body [class*=unit-]+[class*=unit-] {
		margin-top: 40px;
	}

	.article__body .unit-image {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		margin-right: -10px;
		margin-left: -10px;
	}

	.article__body .unit-image figure {
		margin-bottom: 0
	}

	.article__body .unit-image>figure {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
		padding: 0 10px;
	}

	.article__body .unit-image[class*=side-] .body {
		-webkit-box-flex: 1;
		-webkit-flex: 1 0 60%;
		-ms-flex: 1 0 60%;
		flex: 1 0 60%;
		max-width: 60%;
		margin-bottom: 0;
		padding: 0 10px;
	}

	.article__body .unit-image[class*=side-] .image {
		-webkit-box-flex: 1;
		-webkit-flex: 1 0 40%;
		-ms-flex: 1 0 40%;
		flex: 1 0 40%;
		max-width: 40%;
		padding: 0 10px;
	}

	.article__body .unit-image.side-l {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
}

/* レポート詳細ページ */
.report__header {
	margin-top: -20px;
}

.report__inner {
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}

@media print,
(min-width:48em) {
	.report__header {
		margin-bottom: 40px;
	}

	.report__title {
		position: absolute;
		right: 20px;
		bottom: 0;
		width: 34%;
	}
}

.report-new .report-title {
	font-size: 2rem;
	font-weight: normal;
}

/* ----------------------------------
   チャペル／パーティ会場／料理
   ---------------------------------- */
.introduction {
	margin-top: -20px;
}

.introduction__header {
	position: relative;
	margin: 0 -20px 20px;
}

.introduction__header .text {
	padding: 30px 20px;
	font-size: 1.3rem;
}

.introduction-slider {
	margin: 60px -5px !important;
}

.introduction-slider .slick-slide {
	padding: 0 5px;
}

.introduction-slider .slick-prev {
	left: 15px;
	z-index: 1;
}

.introduction-slider .slick-next {
	right: 15px;
	z-index: 1;
}

@media (max-width:40em) {
	.introduction .row:nth-of-type(even) {
		position: relative;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.introduction .row:nth-of-type(even)::before {
		content: "";
		display: block;
		position: absolute;
		top: -10px;
		bottom: 0;
		left: 50%;
		z-index: -1;
		width: 100vw;
		margin-left: -50vw;
		background: #f5f5f5;
	}
}

@media print,
(min-width:48em) {
	.introduction__header {
		position: relative;
		margin: 0 0 60px 0;
	}

	.introduction__header .image {
		width: 80%;
		margin-left: auto;
	}

	.introduction__header .text {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 40%;
		margin-top: 0;
		padding: 30px 30px 0 0;
		background: #fff;
	}

	.introduction-slider {
		margin: 100px -10px !important;
	}

	.introduction-slider .slick-slide {
		padding: 0 10px;
	}
}

@media print,
(min-width:60.0625em) {
	.introduction__header {
		margin-bottom: 100px;
	}

	.introduction__header .text {
		padding: 40px 60px 0 0;
	}
}

/* ----------------------------------
   プラン
   ---------------------------------- */
.bridalplan {
	margin-top: -20px;
	margin-bottom: 20px;
}

.bridalplan__image img {
	width: 100%;
}

@media screen and (max-width:47.9375em) {
	.bridalplan__image {
		margin-right: -20px;
		margin-left: -20px;
	}
}

@media print,
(min-width:48em) {
	.bridalplan {
		direction: rtl;
		display: table;
		width: 100%;
		margin-bottom: 60px;
	}

	.bridalplan__image {
		display: table-cell;
		width: 40%;
		vertical-align: top;
	}

	.bridalplan__text {
		direction: ltr;
		display: table-cell;
		width: 60%;
		padding-right: 5%;
		vertical-align: top;
	}
}

.bridalplan-intro .plan-deal {
	display: inline-block;
	margin-bottom: 10px;
	padding: 1px 15px;
	background: #ef5757;
	color: #fff;
	font-size: 1.4rem;
	letter-spacing: .025em;
}

.bridalplan-intro .plan-title {
	margin-bottom: 1em;
	font-size: 1.5rem;
}

.bridalplan-detail {
	max-width: 900px;
	margin: 0 auto;
	padding: 15px;
	border: 1px solid #ccc;
}

.bridalplan-detail table {
	width: 100%;
	margin-bottom: 0;
	line-height: 1.5;
}

.bridalplan-detail th {
	font-size: 1.2rem;
	white-space: nowrap;
	vertical-align: top;
}

.bridalplan-detail td {
	font-size: 1.3rem;
	vertical-align: top;
}

.bridalplan-detail tr:last-child>* {
	border-bottom: none;
}

.bridalplan-detail-list ul {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style: none;
	margin: 10px -5px 0;
	padding: 0;
}

.bridalplan-detail-list li {
	-webkit-flex: 1 0 50%;
	-ms-flex: 1 0 50%;
	flex: 1 0 50%;
	max-width: calc(50% - 10px);
	margin: 0 5px 10px;
	padding: 15px 10px;
	background: #f5f5f6;
	font-size: 1.3rem;
	line-height: 1.5;
}

@media screen and (max-width:47.9375em) {
	.bridalplan-intro {
		position: relative;
		z-index: 1;
		margin-top: -40px;
		padding: 20px;
		background: #fff;
	}

	.bridalplan-intro p {
		margin-top: 20px;
		font-size: 1.2rem;
	}

	.bridalplan-detail {
		padding: 5px 15px;
	}

	.bridalplan-detail table,
	.bridalplan-detail tbody,
	.bridalplan-detail tr,
	.bridalplan-detail th,
	.bridalplan-detail td {
		display: block;
		width: 100%;
	}

	.bridalplan-detail th {
		padding: 1em .6em .6em !important;
		border-bottom: none !important;
	}

	.bridalplan-detail th br {
		display: none;
	}

	.bridalplan-detail td {
		padding: 0 .6em 1em !important;
	}
}

@media print,
(min-width:48em) {
	.bridalplan-intro {
		margin-bottom: 30px;
	}

	.bridalplan-intro .plan-title {
		font-size: 1.8rem;
	}

	.bridalplan-detail {
		padding: 0;
		border-right: 0;
		border-left: 0;
	}

	.bridalplan-detail-list {
		padding: 10px 30px;
		border: 1px solid #ccc;
	}

	.bridalplan-detail-list li {
		flex: 1 0 33.3333%;
		max-width: calc(33.3333% - 10px);
		padding: 20px;
		font-size: 1.4rem;
	}
}

@media (min-width:60.0625em) {
	.bridalplan-detail-list li {
		flex: 1 0 25%;
		max-width: calc(25% - 20px);
		margin: 0 10px 20px;
		padding: 20px 30px;
	}
}

/* ----------------------------------
   ギャラリー
   ---------------------------------- */
.gallery {
	list-style: none;
	margin: 0;
	padding: 1px;
}

.gallery:before,
.gallery:after {
	content: "";
	display: table;
}

.gallery:after {
	clear: both;
}

.gallery>li {
	position: relative;
	float: left;
}

.gallery img {
	width: 100%;
	height: auto;
}

.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);
	transform: scale(1.2);
	-webkit-transition: all .3s;
	transition: all .3s;
}

.gallery figure:hover figcaption {
	opacity: 1;
	-webkit-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: 1.1rem;
	font-weight: bold;
	vertical-align: middle;
}

@media (max-width:47.9375em) {
	.gallery {
		margin: 0 -20px;
	}

	.gallery li:nth-child(2n+1) {
		clear: both;
	}
}

@media print,
(min-width:48em) {
	.gallery li:nth-child(3n+1) {
		clear: both;
	}

	.gallery>li {
		width: 30.33%;
		margin: 20px 1.5%;
		border: none;
	}

	.gallery .img-caption {
		font-size: 1.2rem;
	}
}

/* ----------------------------------
   パーティプラン
   ---------------------------------- */
.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%);
	transform: translateX(-50%);
}

.partyplan .plan-title {
	margin-bottom: 5px;
	padding: .5em;
	color: #fff;
	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 (max-width:40em) {
	.grid-sm-half {
		overflow: hidden;
		width: calc(100% + 16px);
		margin: 0 -10px;
	}

	.grid-sm-half .grid__col,
	.grid-sm-half>li {
		float: left;
		width: 50%;
		margin-top: 0;
		margin-bottom: 20px;
		padding-right: 10px;
		padding-left: 10px;
	}
}

@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--2places {
		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: 1.4rem;
	}
}

/* 画像帯 */
.report-item {
	display: block;
	position: relative;
	padding-top: 5px;
}

.report-item .grid-label,
.report-top .grid-label {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: -5px;
	width: 100%;
	height: 100%;
}

.report-top .grid-label {
	top: 5px;
}

.report-item .grid-label>span,
.report-top .grid-label>span {
	display: block;
	position: relative;
	width: 90px;
	height: 22px;
	line-height: 23px;
	background: #c40000;
	color: #fff;
	letter-spacing: 0;
	text-align: center;
	-webkit-transform: translate(-25%, 50%) rotate(-45deg);
	transform: translate(-25%, 50%) rotate(-45deg);
}

.report-item .grid-label>span:before,
.report-item .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;
}

.report-item .grid-label>span:before,
.report-top .grid-label>span:before {
	left: -3px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.report-item .grid-label>span:after,
.report-top .grid-label>span:after {
	right: -2px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media (min-width:48em) {
	.report-top .grid-label {
		top: -5px;
		left: -5px;
	}
}

@media (min-width:60.0625em) {

	.report-item .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: 10px 0;
}

.mod-acc__panel {
	margin: 0;
}

.mod-acc.theme1 {
	border-bottom: 1px dotted #333;
}

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

.theme1 .mod-acc__title i {
	position: absolute;
	right: 5px;
	top: 50%;
	width: 24px;
	height: 24px;
	margin-top: -12px;
}

.theme1 .mod-acc__title i:before,
.theme1 .mod-acc__title i:after {
	display: block;
	content: "";
	position: absolute;
	background: #333;
}

.theme1 .mod-acc__title i:before {
	left: 6px;
	top: 11px;
	width: 12px;
	height: 2px;
}

.theme1 .mod-acc__title i:after {
	left: 11px;
	top: 6px;
	width: 2px;
	height: 12px;
	-webkit-transition: all .2s;
	transition: all .2s;
}

.theme1 .mod-acc__title a.is-active i:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.mod-acc.theme1 .mod-acc__panel {
	padding: 8px 0 16px 0;
}

.mod-acc.theme2 .mod-acc__title a {
	text-decoration: none;
}

.theme2 .mod-acc__title i {
	display: inline-block;
	position: relative;
	margin-right: 5px;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	text-align: center;
}

.theme2 .mod-acc__title i:before {
	display: inline-block;
	content: "";
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 10px;
	height: 10px;
	border-right: 1px solid #333;
	border-bottom: 1px solid #333;
	vertical-align: top;
}

.theme2 .mod-acc__title .is-active i:before {
	transform: translateY(5px) rotate(225deg);
}

/* よくあるご質問 */
.mod-acc.faq-acc {
	margin-bottom: 60px;
}

.mod-acc.faq-acc .mod-acc__title a {
	padding: 20px 30px 20px 30px;
	text-decoration: none;
	line-height: 1.5;
}

.mod-acc.faq-acc .mod-acc__title a:before {
	content: "Q";
	position: absolute;
	left: 0;
	top: 20px;
}

.mod-acc.faq-acc .mod-acc__title i {
	top: 20px;
	margin-top: 0;
}

.mod-acc.faq-acc .mod-acc__panel+.mod-acc__title {
	border-top: 1px solid #ccc;
}

.mod-acc.faq-acc .mod-acc__panel {
	position: relative;
	margin-top: 10px;
	padding: 0 30px 30px 30px;
}

.mod-acc.faq-acc .mod-acc__panel::before {
	content: "A";
	position: absolute;
	left: 0;
	top: 0;
	color: #b69333;
	font-weight: bold;
}


/* ==========================================================================
   $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: 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: 2rem;
}

.u-size-m {
	font-size: 1.6rem;
}

.u-size-s {
	font-size: 1.1rem;
}

@media print,
(min-width:40.0625em) {
	.u-size-l {
		font-size: 2.4rem;
	}

	.u-size-m {
		font-size: 1.8rem;
	}

	.u-size-s {
		font-size: 1.2rem;
	}
}

.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,
.mobile-only {
	display: none;
}

.mobile .mobile-hidden {
	display: none;
}

.mobile .mobile-only {
	display: block;
}

@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;
	}
}