@charset "UTF-8";
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Reset

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
header,
main,
nav,
footer,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

input,
textarea,
select,
optgroup,
button,
table,
th,
td {
	font-size: 100%;
}

li,
ol {
	list-style: none;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Default

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

* {
	box-sizing: border-box;
}

html {
	height: 100%;
	overflow: auto;
}

body {
	font-size: 16px;
	color: #333;
	line-height: 1.6;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	counter-reset: number;
	/* 自動ナンバー付与リセット */
	overflow: hidden;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	/* 背景カラー */
	z-index: 9999;
	/* 一番手前に */
	pointer-events: none;
	/* 他の要素にアクセス可能にするためにポインターイベントは無効に */
	opacity: 0;
	/* 初期値 : 透過状態 */
	-webkit-transition: opacity .8s ease;
	/* アニメーション時間は 0.8秒 */
	transition: opacity .8s ease;
}

body.fadeout::after {
	opacity: 1;
}

.wrap {
	transition: .8s;
}

body.fadeout .wrap {
	transform: scale(1.008);
	opacity: 0;
}

/* -----------------------------
 Html5 TAG
-----------------------------*/

header,
nav,
main,
article,
aside,
section,
figure,
figcaption,
footer {
	display: block;
}

/* -----------------------------
 Title
-----------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2
}

h1 {
	font-size: 32px;
}

h2 {
	font-size: 26px;
}

h3 {
	font-size: 22px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

/* -----------------------------
 Img
-----------------------------*/

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}

svg {
	vertical-align: bottom;
}

/* -----------------------------
 a Link
-----------------------------*/

a:link {
	color: #3C6FD9;
	text-decoration: none;
}

a:hover {
	color: #CCCCCC;
	outline: none;
	text-decoration: none;
}

a:visited {
	color: #3C6FD9;
}

a:active {
	color: #3C6FD9;
}

/* -----------------------------
 Table
-----------------------------*/

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

th,
td {
	border: 1px solid #CCCCCC;
	padding: 5px 10px;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Layout

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */


.wrap {
	padding-top: 60px;
}

.pageHome .wrap {
	padding-top: 0
}

@media print,
screen and (min-width : 980px) {
	.wrap {
		padding-top: 80px;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Br

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.br320 {
	display: none;
}

.brSp {
	display: none
}

.brTab {
	display: none;
}

.brPc {
	display: block;
}

@media screen and (max-width:320px) {
	.br320 {
		display: block;
	}

	.br375 {
		display: none;
	}

	.brSp {
		display: block;
	}

	.brTab {
		display: none;
	}

	.brPc {
		display: none;
	}
}

@media screen and (max-width:480px) {
	.br320 {
		display: none;
	}

	.br375 {
		display: none;
	}

	.brSp {
		display: block;
	}

	.brTab {
		display: none;
	}

	.brPc {
		display: none;
	}
}

@media screen and (min-width:768px) {
	.br320 {
		display: none;
	}

	.br375 {
		display: none;
	}

	.brSp {
		display: none;
	}

	.br375 {
		display: none;
	}

	.brTab {
		display: block;
	}

	.brPc {
		display: block;
	}
}

@media screen and (min-width:960px) {
	.br320 {
		display: none;
	}

	.br375 {
		display: none;
	}

	.brSp {
		display: none;
	}

	.brTab {
		display: none;
	}

	.brPc {
		display: block;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Font

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
@font-face {
	font-family: 'SourceHanSerifJP-Medium';
	src: url("../fonts/SourceHanSerifJP-Medium-woff2.woff2") format('woff2'),
		url("../fonts/SourceHanSerifJP-Medium-woff.woff") format('woff');
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

TopicPath

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

ul.topicPath {
	display: none;
}

@media screen and (min-width:960px) {
	ul.topicPath {
		display: block;
		max-width: 1280px;
		margin: 0 auto;
		padding: 5px 0 10px 20px;
	}

	ul.topicPath li {
		display: inline-block;
		padding-right: 26px;
		font-size: 11px;
	}

	ul.topicPath li a {
		color: #878787;
		transition: .5s;
		position: relative;
	}

	ul.topicPath li a::after {
		content: '';
		display: block;
		width: 4px;
		height: 4px;
		margin-top: -2px;
		border-right: 1px solid #C2A587;
		border-bottom: 1px solid #C2A587;
		transform: rotate(-45deg);
		position: absolute;
		top: 50%;
		right: -15px;
	}

	ul.topicPath li a:hover {
		text-decoration: underline;
	}

	footer ul.topicPath {
		text-align: left;
		margin: 10px 0 10px 60px;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Button

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

a.btnDtlN {
	display: block;
	padding: 5px 10px;
	color: #242c3f;
	border: 1px solid #242c3f;
}

a.btnDtlW {
	display: block;
	padding: 5px 10px;
	color: #FFFFFF;
	border: 1px solid #FFFFFF;
}

@media screen and (min-width:768px) {

	a.btnDtlN,
	a.btnDtlW {
		width: 240px;
		margin: 10px auto 20px !important;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Main Visual - Category Page

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.mainVisual {
	height: 300px;
	position: relative;
}

.readNone {
	height: 200px;
}

.mainVisual div {
	padding-left: 20px;
	color: #FFFFFF;
	position: absolute;
	top: 120px;
	left: 0;
	z-index: 2;
}

.mainVisual::after {
	content: '';
	display: block;
	width: 90%;
	height: 180px;
	background: #aa9985;
	background: -moz-linear-gradient(top left, #aa9985, #decfbc);
	background: -webkit-linear-gradient(top left, #aa9985, #decfbc);
	background: linear-gradient(to bottom right, #aa9985, #decfbc);
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 0;
}

.mvSname {
	line-height: 1.1;
	font-size: 12px;
	letter-spacing: 10px;
}

.mvTtl {
	line-height: 1;
	font-size: 16px;
	letter-spacing: 2px;
}

.mvTtl span {
	display: block;
	letter-spacing: 0;
	font-size: 40px;
	font-weight: normal;
	font-family: 'Playfair Display SC', serif;
}

.mvDisc {
	padding: 0 20px;
	position: absolute;
	top: 220px;
	left: 0;
	color: #000;
}

.mainVisual img {
	width: 330px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

@media screen and (min-width:768px) {

	.mainVisual {
		height: 350px;
	}

	/* Title Box */
	.mainVisual div {
		padding-left: 0;
		top: 120px;
		left: 30px;
	}

	.mvSname {
		line-height: 1.1;
		font-size: 12px;
		letter-spacing: 10px;
		padding-left: 3px;
	}

	.mvTtl {
		line-height: 1;
		font-size: 16px;
		letter-spacing: 2px;
	}

	.mvTtl span {
		display: block;
		letter-spacing: 0;
		margin-left: -2px;
		padding-bottom: 5px;
		font-size: 60px;
		font-weight: normal;
		font-family: 'Playfair Display SC', serif;
	}

	.mvDisc {
		padding: 0 0;
		top: 230px;
		left: 30px;
		color: #FFF;
		z-index: 3;
	}

	/* Bg Sheet */
	.mainVisual::after {
		width: 90%;
		height: 280px;
		top: 40px;
		left: 0;
	}

	/* Image */
	.mainVisual img {
		width: 600px;
		margin-left: -150px;
		left: 50%;
	}

}

@media screen and (min-width:960px) {

	.mainVisual {
		height: 600px;
	}

	/* Title Box */
	.mainVisual div {
		padding-left: 0;
		margin-left: -480px;
		top: 200px;
		left: 50%;
	}

	.mvSname {
		line-height: 1.1;
		font-size: 12px;
		letter-spacing: 14px;
	}

	.mvTtl {
		line-height: 1;
		font-size: 16px;
		letter-spacing: 2px;
	}

	.mvTtl span {
		display: block;
		letter-spacing: 0;
		font-size: 72px;
		font-weight: normal;
		font-family: 'Playfair Display SC', serif;
	}

	.mvDisc {
		padding: 0 0;
		margin-left: -480px;
		top: 330px;
		left: 50%;
		color: #FFF;
		z-index: 3;
	}

	/* Bg Sheet */
	.mainVisual::after {
		width: 90%;
		height: 400px;
		top: 80px;
		left: 0;
	}

	/* Image */
	.mainVisual img {
		width: 900px;
		margin-left: -260px;
		left: 50%;
	}

}

/*----------------------------------------
Sub Page
----------------------------------------*/

.mainVisual.mvSub {
	height: 120px;
	overflow: hidden;
}

.mainVisual.mvSub div {
	top: 40px;
}

@media screen and (min-width:768px) {

	.mainVisual.mvSub {
		height: 200px;
	}

	.mainVisual.mvSub div {
		top: 80px;
	}

	.mainVisual.mvSub .mvSname {
		font-size: 10px;
	}

	.mainVisual.mvSub .mvTtl span {
		font-size: 36px !important;
	}

	.mainVisual.mvSub::after {
		top: 30px;
		left: 0;
	}

	.mainVisual.mvSub img {
		top: -80px;
		margin-left: -200px;
	}
}

@media screen and (min-width:960px) {

	.mainVisual.mvSub {
		margin-bottom: 40px;
	}

	.mainVisual.mvSub div {
		top: 100px;
	}

	.mainVisual.mvSub .mvSname {
		display: none;
	}

	.mainVisual.mvSub .mvTtl span {
		font-size: 48px !important;
	}

	.mainVisual.mvSub::after {
		top: 80px;
		left: 0;
	}

	.mainVisual.mvSub img {
		top: -120px;
		margin-left: -250px;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Title Set - Centering

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.blockTtl {
	text-align: center;
}

.blockTtl h1,
.blockTtl h2 {
	text-align: center;
	padding: 0 40px 20px 40px;
	display: inline-block;
	letter-spacing: 2px;
	font-size: 16px;
	position: relative;
}

.blockTtl h1 span,
.blockTtl h2 span {
	display: block;
	color: #c2a587;
	letter-spacing: 0;
	font-size: 36px;
	font-weight: normal;
	font-family: 'Playfair Display SC', serif;
}

.blockTtl h1::before,
.blockTtl h2::before,
.blockTtl h1::after,
.blockTtl h2::after {
	display: block;
	content: '';
	width: 26px;
	height: 1px;
	background: #c2a587;
	position: absolute;
	top: 25px;
}

.blockTtl h1::before,
.blockTtl h2::before {
	left: 0;
}

.blockTtl h1::after,
.blockTtl h2::after {
	right: 0;
}

@media print,
screen and (min-width : 980px) {

	.blockTtl h1,
	.blockTtl h2 {
		padding: 0 120px 20px 120px;
	}

	.blockTtl h1 span,
	.blockTtl h2 span {
		font-size: 48px;
	}

	.blockTtl h1::before,
	.blockTtl h2::before,
	.blockTtl h1::after,
	.blockTtl h2::after {
		width: 100px;
		top: 30px;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Read Text

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.ReadBlock {
	padding: 20px;
}

.readTxt {
	padding: 0 20px 20px;
	text-align: left;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

補足テキスト・リスト

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.attTxt {
	font-size: 12px;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Modal Window

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/*----------------------------------------
Over Lay ::: Modal Element
----------------------------------------*/
.modalwindow {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	overflow: auto;
	z-index: 1001;
	width: 100%;
	/* SP 対応 */
	height: calc(100% + 100px);
	background: rgba(20, 17, 14, 0.95);
	border-bottom: 100px solid transparent;
	cursor: pointer;
	opacity: 1;
}

.modalwindow.no_overlay_close {
	cursor: default;
}

/*----------------------------------------
Modal Body
----------------------------------------*/
.modalwindow .body {
	position: absolute;
	left: 50%;
	top: 5%;
	width: 90%;
	height: 90%;
	margin-left: -45%;
	background: #fff;
	cursor: default;
	box-shadow: 0 2px 2px rgba(43, 31, 25, 0.20);
	transform: translateY(-20px);
	animation: 800ms modalwindow_body_out;
	position: relative;
}

@media screen and (min-width: 960px) {
	.modalwindow .body {
		top: 100px;
	}
}

.modalwindow.is_visible .body {
	transform: translateY(0px);
	animation: 800ms modalwindow_body_in;
}

/* 開く時の.bodyのアニメーション */
@keyframes modalwindow_body_in {
	0% {
		opacity: 0;
		transform: scale(0.95);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes modalwindow_body_out {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(0.8);
	}
}

/*----------------------------------------
Close Button
----------------------------------------*/
.closeModal {
	width: 100%;
	line-height: 40px;
	font-size: 14px;
	margin-left: -50%;
	color: #FFF;
	background: #C2A587;
	position: absolute;
	bottom: -3px;
	left: 50%;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Menu Modal Content

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.modalwindow .body {
	padding: 20px 10px;
}

.modalwindow .body div {
	height: 80%;
	overflow: scroll;
}

.modalwindow h4 {
	display: inline-block;
	padding: 0 20px;
	color: #C2A587;
	font-weight: normal;
	font-family: 'Playfair Display SC', serif;
	position: relative;
}

.modalwindow h4::before,
.modalwindow h4::after {
	content: '';
	display: block;
	width: 30px;
	height: 1px;
	background: #C2A587;
	position: absolute;
	top: 13px;
}

.modalwindow h4::before {
	left: -30px;
}

.modalwindow h4::after {
	right: -30px;
}

.modalwindow p {
	font-weight: bold;
}

.modalwindow ul {
	padding: 20px;
}

.modalwindow ul li {
	padding-bottom: 15px;
	line-height: 1.4;
	font-size: 14px;
}

@media print,
screen and (min-width : 480px) {
	.modalwindow .body div {
		height: 45vh;
	}
}

@media screen and (min-width: 768px) {

	.modalwindow h4 {
		font-size: 24px;
		padding-top: 40px;
	}

	.modalwindow h4::before,
	.modalwindow h4::after {
		top: 55px;
	}

	.modalwindow ul li {
		padding-bottom: 10px;
		line-height: 1.6;
		font-size: 16px;
	}
}

@media screen and (min-width: 960px) {

	.modalwindow h4 {
		padding-top: 0px;
	}

	.modalwindow h4::before,
	.modalwindow h4::after {
		top: 15px;
	}

	.modalwindow .body {
		width: 600px;
		height: 600px;
		margin-left: -300px;
	}

	.modalwindow .body div {
		height: 500px;
	}

	.modalwindow ul li {
		font-size: 14px;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	Header

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

header {
	width: 100%;
	height: 60px;
	text-align: center;
	background: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
	transition: .3s;
}

.pageHome header,
.pageWedding header {
	background: transparent;
	box-shadow: none;
}

header.scrollrd {
	background: #FFFFFF !important;
	box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}

@media print,
screen and (min-width: 1200px) {

	header {
		box-shadow: none;
		height: 70px;
	}

	.headInner {
		width: 1200px;
		margin: 0 auto;
		overflow: hidden;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	Header Logo

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.logoHead {
	width: 100px;
	padding-top: 10px;
	transition: .1s;
}

@media print,
screen and (min-width: 960px) {

	.pageHome .logoHead {
		display: none;
	}

	.pageHome header.scrollrd .logoHead {
		display: block;
	}

	.logoHead {
		float: left;
		width: 170px;
		padding-top: 40px;
		transition: all .4s ease 0;
	}

	.logoHead:hover {
		opacity: 0.6;
	}

	header.scrollrd .logoHead {
		width: 100px !important;
		padding-top: 10px;
	}

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	Site ID

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.siteId h1 {
	display: none;
}

@media print,
screen and (min-width: 980px) {

	.siteId h1 {
		font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
		padding: 25px 0 0 60px;
		float: left;
		display: block;
		text-align: left;
		font-weight: normal;
		line-height: 1.4;
		font-size: 11px;
	}

	header.scrollrd .siteId h1 {
		font-size: 11px;
		padding: 23px 0 0 60px;
	}

	.pageHome header .siteId h1 {
		color: #FFF;
	}

	.pageHome header.scrollrd .siteId h1 {
		color: #000;
	}

	.pageHome header .siteId h1,
	.pageWedding header .siteId h1 {
		padding-top: 70px;
	}

	.pageHome header.scrollrd .siteId h1,
	.pageWedding header.scrollrd .siteId h1 {
		padding-top: 23px;
	}

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	Navigation Button SP

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.navBtnSP {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 1000;
}

.navBtnIco {
	width: 26px;
	height: 20px;
	margin: 0 auto;
	position: relative;
}

.navBtnIco span {
	display: block;
	width: 100%;
	height: 1px;
	background: #c2a587;
	position: absolute;
	transition: .4s;
}

.navBtnIco span:nth-of-type(2)::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #c2a587;
	position: absolute;
	transition: .4s;
}

.navBtnIco span:nth-of-type(1) {
	top: 0;
}

.navBtnIco span:nth-of-type(2) {
	top: 10px;
}

.navBtnIco span:nth-of-type(3) {
	bottom: 0;
}

/* Tap Animation */
.open .navBtnIco span:nth-of-type(2) {
	transform: rotate(-45deg);
}

.open .navBtnIco span:nth-of-type(2)::after {
	transform: rotate(90deg);
}

.open .navBtnIco span:nth-of-type(1) {
	display: none;
}

.open .navBtnIco span:nth-of-type(3) {
	display: none;
}

.navBtnSP p {
	padding-top: 5px;
	font-size: 10px;
	text-align: center;
	letter-spacing: 1px;
	color: #c2a587;
}

@media print,
screen and (min-width: 960px) {
	.navBtnSP {
		display: none;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	Navigation

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

header nav.navSp {
	background: rgba(255, 255, 255, 1);
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}

header nav.navSp ul {
	padding: 130px 20px 0;
}

header nav.navSp ul li {
	text-align: left;
	opacity: 0;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	background: #C2A587;
	position: relative;
}

header nav.navSp ul li::after {
	content: '';
	display: block;
	width: 26px;
	height: 1px;
	margin-top: -1px;
	background: #C2A587;
	transform: rotate(-70deg);
	position: absolute;
	top: 50%;
	left: 15px;
}

header nav.navSp ul li:nth-child(1) {
	animation: navAni .9s ease 0.5s 1 forwards;
}

header nav.navSp ul li:nth-child(2) {
	animation: navAni .9s ease 0.6s 1 forwards;
}

header nav.navSp ul li:nth-child(3) {
	animation: navAni .9s ease 0.7s 1 forwards;
}

header nav.navSp ul li:nth-child(4) {
	animation: navAni .9s ease 0.8s 1 forwards;
}

header nav.navSp ul li:nth-child(5) {
	animation: navAni .9s ease 0.9s 1 forwards;
}

header nav.navSp ul li:nth-child(6) {
	animation: navAni .9s ease 1s 1 forwards;
	border-bottom: none;
}

@keyframes navAni {
	100% {
		opacity: 1;
		background: none;
		transform: translateY(-10px);
	}
}

header nav.navSp ul li a {
	display: block;
	padding: 13px 0 13px 50px;
	color: #000 !important;
	letter-spacing: 5px;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	font-size: 18px;
}

.navPc {
	display: none;
}

@media print,
screen and (max-width : 320px) {
	header nav.navSp ul {
		padding: 80px 20px 0;
	}
}

@media print,
screen and (min-width: 980px) {
	header nav.navPc {
		display: block;
	}

	.pageHome header.scrollrd nav.navPc ul,
	.pageWedding header.scrollrd nav.navPc ul,
	header nav.navPc ul {
		padding-top: 17px;
		text-align: right;
	}

	.pageHome header nav.navPc ul,
	.pageWedding header nav.navPc ul {
		padding-top: 60px;
	}



	header nav.navPc ul li {
		display: inline-block;
		font-family: 'Roboto', sans-serif;
		font-weight: 300;
		position: relative;
		vertical-align: bottom;
	}

	header nav.navPc ul li::after {
		content: '';
		display: block;
		width: 30px;
		height: 1px;
		margin-top: -1px;
		background: #C2A587;
		transform: rotate(-70deg);
		position: absolute;
		top: 50%;
		right: -15px;
	}

	header nav.navPc ul li:nth-of-type(5) a {
		/* padding-right: 0; */
	}

	header nav.navPc ul li:nth-of-type(6)::after {
		display: none;
	}

	header nav.navPc ul li a {
		padding: 10px 15px;
		color: #000;
		letter-spacing: 3px;
		font-size: 15px;
		font-weight: 500;
		position: relative;
		display: inline-block;
		transition: .5s;
	}

	/*plan*/
	header nav.navPc ul li:nth-of-type(4) a {
		padding: 14px 35px 6px!important;
	}

	header nav.navPc ul li span {
		font-size: 10px;
		display: block;
		position: absolute;
		top: 3px;
		left: 50%;
		text-align: center;
		width: 150px;
		margin-left: -75px;
		letter-spacing: 2px;
	}

	/* Home */
	.pageHome header nav.navPc ul li a {
		color: #FFF;
	}

	/* Home - Scroll */
	.pageHome header.scrollrd nav.navPc ul li a {
		color: #000;
	}

	header.scrollrd nav.navPc ul li a {
		padding: 10px 20px;
	}

	/* header.scrollrd nav.navPc ul li:nth-of-type(3) a {
		padding: 14px 35px 6px;
	} */

	header nav.navPc ul li a:hover {
		text-decoration: none;
	}

	header nav.navPc ul li a:before,
	header nav.navPc ul li a:after {
		position: absolute;
		bottom: 10px;
		content: "";
		display: inline-block;
		width: 0;
		height: 1px;
		background: #C2A587;
		transition: .2s;
	}

	header nav.navPc ul li a:before {
		left: 40%;
	}

	header nav.navPc ul li a:after {
		right: 40%;
	}

	header nav.navPc ul li a:hover:before,
	header nav.navPc ul li a:hover:after {
		width: 40%;
	}

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Pagetop Button

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 320px) {
	.pagetopBtn {
		display: none;
	}
}

.pagetopBtn {
	display: none;
	width: 200px;
	font-size: 10px;
	letter-spacing: 10px;
	font-family: 'Playfair Display SC', serif;
	position: fixed;
	right: -90px;
	transform: rotate(-90deg);
	z-index: 400;
}

.pagetopBtn a {
	display: block;
	color: #000;
	position: relative;
	transition: .5s;
}

.pagetopBtn a:hover {
	padding-left: 10px;
	opacity: 0.6;
}

.pagetopBtn:hover::before,
.pagetopBtn:hover::after {
	opacity: 0.6;
}

.pagetopBtn::before,
.pagetopBtn::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	transition: .5s;
}

.pagetopBtn::before {
	width: 50px;
	height: 1px;
	background: #000;
	top: 50%;
}

.pagetopBtn::after {
	width: 4px;
	height: 4px;
	margin-top: -2px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
	top: 50%;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Action Area

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.actionArea {
	padding: 10px 20px 0;
	text-align: center;
	color: #cdbeb1;
	background: rgba(20, 45, 71, 0.95);
	position: fixed;
	bottom: -20px;
	width: 100%;
	height: 63px;
	z-index: 600;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	opacity: 0;
	animation: actionFooter 1s ease 1.5s 1 forwards;
}

@keyframes actionFooter {
	100% {
		opacity: 1;
		bottom: 0;
	}
}

.aaInBox {
	position: relative;
}


/* Online Reserve */
.onlineRes {
	margin-right: 70px;
}

.onlineRes h2 {
	display: none;
	padding-bottom: 10px;
	font-size: 12px;
	letter-spacing: 2px;
}

.onlineRes ul {
	overflow: hidden;
}

.onlineRes ul li {
	float: left;
	width: 50%;
	padding: 0 1px;
}

.onlineRes ul li a {
	display: block;
	padding: 0;
	line-height: 36px;
	font-size: 14px;
	letter-spacing: 3px;
	color: #FFFFFF;
	background: #bd6363;
}

/* TEL */
.tel {
	display: none;
	margin-top: 30px;
	padding: 15px 0;
	border: 1px solid #cdbeb1;
	position: relative;
}

.tel p {
	display: inline-block;
	width: 260px;
	margin-left: 15px;
	padding: 0 0 0 20px;
	font-size: 22px;
	letter-spacing: 1px;
	background: url(../../img/common/ico_tel.svg) no-repeat left center;
	background-size: 20px;
}

.tel span {
	font-size: 14px;
}

.tel h2 {
	width: 240px;
	margin-left: -120px;
	font-size: 16px;
	position: absolute;
	top: -10px;
	left: 50%;
	background: #142D47;
}

/* Ico */
.telIco {
	width: 60px;
	height: 60px;
	padding-top: 16px;
	border-radius: 50%;
	background: #C2A587;
	box-shadow: 10px 10px 40px 0 rgba(0, 0, 0, 0.2);
	position: absolute;
	top: -15px;
	right: 0;
}

.telIco img {
	width: 26px;
}

@media screen and (min-width: 768px) {

	.actionArea {
		padding: 10px 40px 20px;
		height: 90px;
		background: #142D47;
	}

	.aaInBox {
		width: 100%;
		padding: 0;
		margin: 0;
		overflow: hidden;
	}

	/* Online Reserve */
	.onlineRes {
		float: right;
		width: 370px;
		margin-right: 0;
		padding-top: 10px;
	}

	.onlineRes ul {
		width: 100%;
		padding-left: 20px;
	}

	.onlineRes ul li {
		float: left;
		width: 95%;
		padding: 0 1px;
	}

	.onlineRes ul li a {
		padding: 8px 0;
		font-size: 18px;
	}

	/* TEL */
	.tel {
		display: block;
		float: left;
		width: 300px;
		margin-top: 10px;
		padding: 10px 0 6px;
		border: 1px solid #cdbeb1;
	}

	.tel h2 {
		font-size: 12px;
		letter-spacing: 2px;
		top: -7px;
	}

	.tel a {
		color: #cdbeb1;
	}

	.telIco {
		display: none;
	}

}

@media screen and (min-width: 980px) {

	.aaInBox {
		width: 960px;
		margin: 0 auto;
		padding: 5px 110px 0;
	}

	.onlineRes {
		padding-top: 5px;
	}

	.onlineRes ul li a {
		padding: 6px 0;
		line-height: 20px;
		font-size: 16px;
		letter-spacing: 3px;
		transition: 0.4s;
	}

	.onlineRes ul li a:hover {
		background: #C88282;
		letter-spacing: 2px;
	}

	.onlineRes h2 {
		display: block;
		padding: 0 0 5px;
	}

	/* TEL */
	.tel {
		display: block;
		float: left;
		width: 360px;
		margin-top: 10px;
		padding: 10px 0 6px;
		border: 1px solid #cdbeb1;
	}

	.tel p {
		font-size: 18px;
	}

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Footer

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

footer {
	padding-top: 40px;
	padding-bottom: 70px;
	text-align: center;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	/*	box-shadow: 0 10px 40px 0 rgba(0,0,0,0.1) inset;*/
}

.footLogo {
	width: 100px;
	padding-bottom: 30px;
}

footer h2 {
	font-size: 16px;
	padding-bottom: 5px;
}

footer .footHotel {
	width: 240px;
}

footer .hotelFloor {
	color: #463165;
	font-size: 14px;
	font-weight: bold;
}

footer .hotelFloor span {
	display: inline-block;
	padding: 0 5px;
	margin-left: 5px;
	line-height: 16px;
	font-size: 12px;
	color: #FFFFFF;
	background: #463165;
}

footer ul {
	padding-top: 40px;
	padding-left: 20px;
	text-align: left;
}

footer ul li {
	font-size: 9px;
}

footer p.copyright {
	margin-top: 20px;
	padding: 15px 0;
	border-top: 1px solid #d9d9d9;
	font-size: 10px;
}

@media screen and (min-width: 768px) {
	footer {
		padding-bottom: 90px;
	}

	footer ul {
		text-align: center;
	}

	footer ul li {
		font-size: 12px;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	header ie用

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
@media all and (-ms-high-contrast:none) {
	.onlineRes ul li a {
		padding: 8px 0 2px;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Pagetop Button

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

@media screen and (max-width: 320px) {
	.pagetopBtn {
		display: none;
	}
}

.pagetopBtn {
	display: none;
	width: 200px;
	font-size: 10px;
	letter-spacing: 10px;
	font-family: 'Playfair Display SC', serif;
	position: fixed;
	right: -90px;
	transform: rotate(-90deg);
	z-index: 400;
}

.pagetopBtn a {
	display: block;
	color: #000;
	position: relative;
	transition: .5s;
}

.pagetopBtn a:hover {
	padding-left: 10px;
	opacity: 0.6;
}

.pagetopBtn:hover::before,
.pagetopBtn:hover::after {
	opacity: 0.6;
}

.pagetopBtn::before,
.pagetopBtn::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	transition: .5s;
}

.pagetopBtn::before {
	width: 50px;
	height: 1px;
	background: #000;
	top: 50%;
}

.pagetopBtn::after {
	width: 4px;
	height: 4px;
	margin-top: -2px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
	top: 50%;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Action Area

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.actionArea {
	padding: 10px 20px 0;
	text-align: center;
	color: #cdbeb1;
	background: rgba(20, 45, 71, 0.95);
	position: fixed;
	bottom: -20px;
	width: 100%;
	height: 80px;
	z-index: 600;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	opacity: 0;
	animation: actionFooter 1s ease 1.5s 1 forwards;
}

@keyframes actionFooter {
	100% {
		opacity: 1;
		bottom: 0;
	}
}

.aaInBox {
	position: relative;
}


/* Online Reserve */
.onlineRes {
	margin-right: 70px;
}

.onlineRes h2 {
	display: none;
	padding-bottom: 10px;
	font-size: 12px;
	letter-spacing: 2px;
}

.onlineRes ul {
	overflow: hidden;
}

.onlineRes ul li {
	float: left;
	width: 100%;
	padding: 0 1px;
}

.onlineRes ul li a {
	display: block;
	padding: 0;
	line-height: 36px;
	font-size: 14px;
	letter-spacing: 3px;
	color: #FFFFFF;
	background: #bd6363;
}

/* TEL */
.tel {
	display: none;
	margin-top: 30px;
	padding: 15px 0;
	border: 1px solid #cdbeb1;
	position: relative;
}

.tel p {
	display: inline-block;
	width: 320px;
	margin-left: 15px;
	padding: 0 0 0 20px;
	font-size: 22px;
	letter-spacing: 1px;
	background: url(../../img/common/ico_tel.svg) no-repeat left center;
	background-size: 20px;
}

.tel span {
	font-size: 14px;
}

.tel h2 {
	width: 240px;
	margin-left: -120px;
	font-size: 16px;
	position: absolute;
	top: -10px;
	left: 50%;
	background: #142D47;
}

/* Ico */
.telIco {
	width: 60px;
	height: 60px;
	padding-top: 16px;
	border-radius: 50%;
	background: #C2A587;
	box-shadow: 10px 10px 40px 0 rgba(0, 0, 0, 0.2);
	position: absolute;
	top: -15px;
	right: 0;
}

.telIco img {
	width: 26px;
}

.tel_sp {
	font-size: 0.8em;
	margin: 10px 0 0;
}

@media screen and (min-width: 768px) {

	.actionArea {
		padding: 10px 40px 20px;
		height: 90px;
		background: #142D47;
	}

	.aaInBox {
		width: 100%;
		padding: 0;
		margin: 0;
		overflow: hidden;
	}

	/* Online Reserve */
	.onlineRes {
		float: right;
		width: 370px;
		margin-right: 0;
		padding-top: 10px;
	}

	.onlineRes ul {
		width: 100%;
		padding-left: 20px;
	}

	.onlineRes ul li {
		float: left;
		width: 95%;
		padding: 0 1px;
	}

	.onlineRes ul li a {
		padding: 8px 0;
		font-size: 18px;
	}

	/* TEL */
	.tel {
		display: block;
		float: left;
		width: 300px;
		margin-top: 10px;
		padding: 10px 0 6px;
		border: 1px solid #cdbeb1;
	}

	.tel h2 {
		font-size: 12px;
		letter-spacing: 2px;
		top: -7px;
	}

	.tel a {
		color: #cdbeb1;
	}

	.telIco {
		display: none;
	}

}

@media screen and (min-width: 980px) {

	.aaInBox {
		width: 960px;
		margin: 0 auto;
		padding: 5px 110px 0;
	}

	.onlineRes {
		padding-top: 5px;
	}

	.onlineRes ul li a {
		padding: 6px 0;
		line-height: 20px;
		font-size: 16px;
		letter-spacing: 3px;
		transition: 0.4s;
	}

	.onlineRes ul li a:hover {
		background: #C88282;
		letter-spacing: 2px;
	}

	.onlineRes h2 {
		display: block;
		padding: 0 0 5px;
	}

	/* TEL */
	.tel {
		display: block;
		float: left;
		width: 350px;
		margin-top: 10px;
		padding: 10px 0 6px;
		border: 1px solid #cdbeb1;
	}

	.tel p {
		font-size: 18px;
	}

	.tel_sp {
		display: none;
	}

}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

Footer

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

footer {
	padding-top: 40px;
	padding-bottom: 70px;
	text-align: center;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	/*	box-shadow: 0 10px 40px 0 rgba(0,0,0,0.1) inset;*/
}

.footLogo {
	width: 100px;
	padding-bottom: 30px;
}

footer h2 {
	font-size: 16px;
	padding-bottom: 5px;
}

footer .footHotel {
	width: 240px;
}

footer .hotelFloor {
	color: #463165;
	font-size: 14px;
	font-weight: bold;
}

footer .hotelFloor span {
	display: inline-block;
	padding: 0 5px;
	margin-left: 5px;
	line-height: 16px;
	font-size: 12px;
	color: #FFFFFF;
	background: #463165;
}

footer ul {
	padding-top: 40px;
	padding-left: 20px;
	text-align: left;
}

footer ul li {
	font-size: 9px;
}

footer p.copyright {
	margin-top: 20px;
	padding: 15px 0;
	border-top: 1px solid #d9d9d9;
	font-size: 10px;
}

@media screen and (min-width: 768px) {
	footer {
		padding-bottom: 90px;
	}

	footer ul {
		text-align: center;
	}

	footer ul li {
		font-size: 12px;
	}
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	footer ie用

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
@media all and (-ms-high-contrast:none) {
	.onlineRes ul li a {
		padding: 8px 0 2px;
	}
}