@charset "utf-8";


/*############################################*/
/*（1）文字設定-共有*/
/*############################################*/
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
html{
	font-size:14px;
	letter-spacing:0em;
	line-height:180%;
	_font-family: 'Noto Serif JP', serif;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	_font-weight:400;
	color:#5a5a5a;
	-webkit-text-size-adjust: none;
	-moz-osx-font-smoothing: grayscale;
}
.large{ font-size:16px; }
.larger{ font-size:18px; }
.smaller{ font-size:12px; }
a:link{
	color:#5c93d7;
	text-decoration:none;
}
a:visited{
	color:#5c93d7;
	text-decoration:none;
}
/*ホバー*/
a:hover{
	color:#df5d5d;
	text-decoration:none;
}
/*文字色*/
.aka{
	color:#cc2222;
}
.kuro{
	color:#000000!important;
}
.ao{
	color:#69a9e1;
}
.bold{
	font-weight:bold;
}
.serif,
.serif span{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


/*############################################*/
/*（2）サイト全体-共有*/
/*############################################*/
html,
body{
	height:100%;
}
/* IE7でpadding指定 */
*:first-child+html body {
	padding-left:1px;
}
/* IE6以下でpadding指定 */
*html body {
	padding-left:1px;
}
img, h1, h2, h3, h4, h5, h6, p, form{
	border:none;
	margin:0;
}
img{
	vertical-align: top;
}
ul,dl{
	margin:0;
	padding:0;
	list-style:none;
}
table,
h1,h2,h3,h4,h5,h6{/*これないと、IEでbodyのフォントサイズが引き継がれない*/
	font-size:100%;
}
/*floatキャンセル*/
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
.tt{
	border:solid 1px #dbdbdb;
	_border-width:0 1px 1px 0px;
	border-collapse:collapse;
}
.tt td,
.tt th{
	padding: 6px 12px;
	border:solid 1px #dbdbdb;
	_border-width:1px 0 0 1px;
}
.scrollMargin{
	margin-top:-78px;
	padding-top:78px;
}

/*############################################*/
/*（3）共通アニメーション*/
/*############################################*/
/*ボタン拡大-----------*/
.kakudaiBtn:hover{
	animation:maruHvr;
	animation-duration: 0.7s;
	animation-timing-function: ease;
	animation-fill-mode:forwards;
}
@keyframes maruHvr{
	from{
		opacity:1;
		transform:scale(1.0,1.0); 
	}
	to{
		opacity:1;
		transform:scale(1.2,1.2);
	}
}
/*背景拡大-----------*/
.rollOverTransBox{
	display:block;
	position:absolute;
	overflow:hidden;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	z-index:0;
}
.rollOverTransInner{
	position: absolute;
	display:block;
	width: 100%;
	height:100%;
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
	transition: all 0.7s ease-out;
	transform: matrix3d(
		1, 0, 0, 0,
		0, 1, 0, 0,
		0, 0, 1, 0,
		0, 0, 0, 1
	);
	will-change: transform;
}
.rollOverTransInner.hv:hover {
	transform: matrix3d(
		1, 0, 0, 0,
		0, 1, 0, 0,
		0, 0, 1, 0,
		0, 0, 0, 0.8
	);
	opacity:1;
}




/*############################################*/
/*（3）ヘッダーとか基本構成*/
/*############################################*/
body{
	padding:0;
	margin:0;
	text-align:center;
}
#body{
	min-width:1192px;
}


/*ヘッダー----------------------------------------------------------------------*/
.headWrapper{
	width:100%;
	min-width:1192px;
	height:142px;
	position: fixed;
	background-color: #fff;
	z-index: 1000;
}
@media screen and (max-width: 768px) {
	.headWrapper {
		min-width: auto;
		height: auto;
		position: static;
	}
  }
  
.headWrapper h1{
	position:relative;
	width:calc(100% - 146px);
	height:142px;
	margin:0 auto;
}
.headWrapper h1 .logo{
	position:absolute;
	top:28px;
	left:0;
	right:0;
	margin:0 auto;
}
.headWrapper h1 .siteTitle{
	position:absolute;
	top:54px;
	left:20px;
	text-align:left;
	font-family: 'Abel', sans-serif;
	font-weight:normal;
	font-size:11.4px;
	letter-spacing:0.11em;
}
.headWrapper h1 .siteTitle p{
	font-weight:300;
	font-family: 'Lato', sans-serif;
	font-size:24.4px;
	letter-spacing:0.1em;
}

/*tel----------------------------------------------------------------------*/
.footUeWrapper{
	position:relative;
	width:calc(100% - 146px);
	min-width:1192px;
	margin:0 auto;
	padding:30px 0 30px;
}
.footUeWrapper .right{
	position:absolute;
	right:calc(50% - 450px);
	top:37px;
}
/*foot----------------------------------------------------------------------*/
footer{
	position:relative;
	width:calc(100% - 146px);
	min-width:1192px;
	margin:0 auto;
	padding:30px 0 0px;
}
footer .footBox{
	padding:50px 0 70px;
	background:#f6f6f6;
}
footer .footBox .inner{
	display:flex;
	justify-content:space-between;
	align-items:center;
	background:#f6f6f6;
}
footer .footBox .inner div{
	flex-basis:33%;
}
footer .siteTitle{
	padding:0 0 0 10vw;
	text-align:left;
	font-family: 'Abel', sans-serif;
	font-weight:normal;
	font-size:11.4px;
	letter-spacing:0.11em;
}
footer .siteTitle p{
	font-weight:300;
	font-family: 'Lato', sans-serif;
	font-size:24.4px;
	letter-spacing:0.1em;
}
footer .copyWrapper{
	padding:40px 0;
	font-size:12px;
}
/**/
footer .rightBtnBox a{
	display:block;
	width:80px;
}
footer .rightBtnBox a img{
	transition: all .4s;
}
footer .rightBtnBox a:hover img{
	transform: scale(1.3,1.3);
}


/*共通----------------------------------------------------------------------*/
.chapterBox{
	display:block;
	position:relative;
	font-family: 'Cormorant Infant', serif;
	font-size:30px;
	color:#999;
	letter-spacing:0.05em;
}
.chapterBox span{
	padding-right:6px;
	font-size:19px;
}
.chapterBox::after{
	position:absolute;
	content:"";
	bottom:-10px;
	left:0;
	right:0;
	margin:0 auto;
	width:30px;
	height:3px;
	background:#818181;
}
.pBox{
	background-size:cover;
	background-position:center center;
}

/*ボタン-ライン処理***********************************/
.basicBtn{
	position: relative;
	cursor: pointer;
	display:block;
	width:245px;
	height:53px;
	padding:12px 0 0 0;
	font-family: 'Lato', sans-serif;
	font-size:16px;
	letter-spacing:0.05em;
	text-align:center;
	background:rgba(242,240,236,0);
	border:solid 1px #e4e4e4;
}
.basicBtn:link,
.basicBtn:visited,
.basicBtn:hover{
	color:#818181;
}
.basicBtn:hover{
	color:#b8ab91;
}
.basicBtn span{
	display: block;
	width:245px;
}
.basicBtn::before,
.basicBtn::after{
	content:"";
	width: 0;
	height: 1px;
	position: absolute;
	transition: all 0.2s linear;
	background: #b8ab91;
	transition-delay: 0s;
}
.basicBtn span::before,
.basicBtn span::after{
	content:"";
	width:1px;
	height:0;
	position: absolute;
	transition: all 0.2s linear;
	background: #b8ab91;
	transition-delay: 0.2s;
}
.basicBtn:hover::before,
.basicBtn:hover::after{
	width: 100%;
	transition-delay: 0.2s;
}
.basicBtn:hover span::before,
.basicBtn:hover span::after{
	height: 100%;
	transition-delay: 0s;
}
/*下の辺の背景と一緒に動かす用*/
.sitaWrapper .innerBox a:hover .basicBtn::before,
.sitaWrapper .innerBox a:hover .basicBtn::after{
	width: 100%;
	transition-delay: 0.2s;
}
/*下の辺の背景と一緒に動かす用*/
.sitaWrapper .innerBox a:hover .basicBtn span::before,
.sitaWrapper .innerBox a:hover .basicBtn span::after{
	height: 100%;
	transition-delay: 0s;
}
.basicBtn::before{
	right: 0;
	top: -1px;
}
.basicBtn::after{
	left: 0;
	bottom: -1px;
}
.basicBtn span::before{
	left: -1px;
	top: 0;
}
.basicBtn span::after{
	right: -1px;
	bottom: 0;
}


/*サイドナビ----------------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 0px;
    bottom: 0;
    width: 50vw;
    background-color: #fff;
}
/*左*/
.sidebar.left {
	left: -50vw;
	text-align:center;
}
.sidebar.left .wrapper{
	display:flex;
	width:500px;
	margin:0 auto;
}
/*左メニューバーガー*/
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 40px;
	height: 25px;
	margin-top:4px;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #000;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 11px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
/**/
.menu-trigger.active {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
	width:19px;
	_opacity:0.3;
	left:9px;
}
.menu-trigger.active span:nth-of-type(2) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
width:19px;
	_opacity:0.3;
	left:9px;
}
.menu-trigger.active span:nth-of-type(3) {
	opacity: 0;
}
/*左の左*/
.sidebar.left .wrapper .left{
	flex-basis:50%;
}
.sidebar.left .wrapper .left .inner{
	margin: 50vh auto 0;
	transform: translateY(-50%);
}
.accessBox{
	display:flex;
	justify-content:center;
}
.accessBox p{
	padding:5px 0 0 10px;
	font-weight:300;
	font-family: 'Lato', sans-serif;
	font-size:17px;
	letter-spacing:0.07em;
	color:#5a5a5a;
}
/*左の右*/
.sidebar.left .wrapper .right{
	flex-basis:50%;
	margin: 50vh auto 0;
	transform: translateY(-50%);
}
.pcmenuLogo{
	margin-bottom:10px;
}
.pcmenu{
	position:relative;
	width:96%;
	margin:20px  auto;
	padding:36px 0;
	color:#5a5a5a;
	font-size:15px;
	line-height:2.2em;
}
.pcmenu li a:link,
.pcmenu li a:visited,
.pcmenu li a:hover{
	position:relative;
	display:block;
	color:#5a5a5a;
}
.pcmenu li a:before{
	position:absolute;
	content:"";
	bottom:1px;
	left:0;
	right:0;
	margin:0 auto;
	width:0px;
	height:1px;
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(184,171,145,1) 50%, rgba(255,255,255,1) 100%);
	transition: all 0.4s ease-out;
}
.pcmenu li a:hover:before{
	width:200px;
}
.pcmenu:before{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	height: 26px;
	background: #ccc;
}
.pcmenu:after{
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	height: 26px;
	_border-radius:3px;
	background: #ccc;
}
/*右*/
.sidebar.right {
    right: -50vw;
    text-align:center;
}
.sidebar.right .inner{
	margin: 50vh auto 0;
	transform: translateY(-50%);
}
.telBox p:nth-child(1){
	position:relative;
	margin-bottom:10px;
	font-family: 'Abel', sans-serif;
	font-size:20px;
}
.telBox p:nth-child(1):after{
	position: absolute;
	content: "";
	bottom: -8px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 30px;
	height: 3px;
	
}
.telBox p:nth-child(1) span,
.telBox p:nth-child(1) span a,
.telBox p:nth-child(1) span a:link,
.telBox p:nth-child(1) span a:visited{
	padding-left:2px;
	font-family: 'Abel', sans-serif;
	font-size:29px;
	letter-spacing:0.07em;
	color:#5a5a5a;
}
.telBox p:nth-child(2){
	font-family: 'Abel', sans-serif;
	font-size:20px;
}
/**/
.sidebar.right .btnBox{
	width:245px;
	margin:40px auto 0;
}
.sidebar.right .btnBox a{
	display:block;
	padding:24px 0 6px;
	font-weight:300;
	font-family: 'Lato', sans-serif;
	font-size:15px;
	color:#5a5a5a;
	border:solid 1px #e4e4e4;
	background-size:16px auto;
	background-repeat:no-repeat;
}
.sidebar.right .btnBox a:hover{
	color:#b8ab91;
}
.sidebar.right .btnBox .calendar a {
    margin-bottom: 30px;
    background-image: url(../img/share/pict_calendar.png);
    background-position: center 10px;
}
.sidebar.right .btnBox .request a {
    margin-bottom: 30px;
    background-image: url(../img/share/pict_request.png);
    background-position: center 10px;
}
.sidebar.right .btnBox .inq a{
	margin-bottom:30px;
	background-image:url(../img/share/pict_mail.png);
	background-position:center 10px;
}
.sidebar.right .btnBox .insta a{
	background-image:url(../img/share/pict_insta.png);
	background-position:center 8px;
}
/*左右のメニュー開閉ボタン*/
.leftMenu{
	position:fixed;
	top:0;
	left:0;
	width:73px;
	height:100vh;
	text-align:center;
	background:#fff;
	z-index:3001;
	cursor: pointer
}
.leftMenu div{
	margin:calc(50vh - 42px) auto 0;
	font-weight: 400;
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-align:center;
}
.rightMenu{
	position:fixed;
	top:0;
	right:0;
	width:73px;
	height:100vh;
	text-align:center;
	background:#fff;
	z-index:3001;
	cursor: pointer
}
.rightBtnBox{
	font-weight: 400;
	font-family: 'Lato', sans-serif;
	font-size: 10.5px;
	letter-spacing: 0.05em;
	text-align:center;
}
.rightMenu .rightBtnBox{
	margin:calc(50vh - 100px) auto 0;
	transition: all .4s;
}
.rightBtnBox a{
	display:block;
	margin:10px auto;
}
.rightMenu .rightBtnBox a{
	pointer-events: none;
}
.rightBtnBox a:nth-of-type(1){
	margin:10px auto 0;
		transition: all .4s;
}
.rightBtnBox a:nth-of-type(2){
	margin:20px auto 26px;
	transition: all .4s;
}
.rightBtnBox a:nth-of-type(3){
	margin:10px auto 0;
	transition: all .4s;
}
/*active*/
.rightMenu.active div{
	_margin:calc(50vh - 200px) auto 0;
	transform: scale(-1, 1);
}
.rightMenu.active div a:nth-of-type(1){
	_margin:50px auto 0;
}
.rightMenu.active div a:nth-of-type(2){
	_margin:60px auto 80px;
}
.rightMenu.active div a:nth-of-type(3){
	_margin:40px auto 0;
}
/*メイン次階層----------------------------------------------------------------------*/
.mainNextWrapper{
	position:relative;
	width:calc(100% - 146px);
	min-width:1192px;
	height:38vw;
	min-height:452px;
	margin:0 auto;
	_background:url(https://www.jrhtb.hotelokura.co.jp/wedding/css/images/main.jpg) center center no-repeat;/*画像は個別cssに記述*/
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
}
.mainCopyBox{
	position:absolute;
	bottom:4vw;
	left:0;
	right:0;
}
.mainCopyBox h2,
.mainCopyBox h3{
padding:0 3%;
	font-weight:300;
	font-family: 'Lato', sans-serif;
	font-size:40px;
	_letter-spacing:0.1em;
	color:#fff;
	text-shadow: 0 0 10px rgba(0,0,0,0.9);
	line-height: 1.15em;
	letter-spacing:0.1em;
}
.mainCopyBox h2 + p,
.mainCopyBox h3 + p{
	_padding-top:12px;
	font-family: 'Abel', sans-serif;
	font-size:11px;
	letter-spacing:0.2em;
	color:#fff;
	text-shadow: 0 0 6px rgba(0,0,0,1);
}
/*ページ内移動ボタン----------------------------------------------------------------------*/
.innerLinkBtn{
	display:flex;
	justify-content:center;
	padding:50px 0 30px;
}
.innerLinkBtn a{
	position:relative;
	display:flex;
	justify-content:center;
	padding:20px 50px;
	color:#818181;
	font-size:18px;
	background:url(../img/share/naname.png);
	line-height:1em;
	background-position:center center;
	background-repeat:no-repeat;
	_background-color:#f00;
}
.innerLinkBtn a::after{
	position:absolute;
	content:'';
	bottom:-10px;
	left:0;
	right:0;
	margin:0 auto;
	width:70px;
	height:3px;
	background:#c9c9c9;
}
.innerLinkBtn a p:nth-child(1){
	padding:0px 0 10px 0;
	font-family: 'Cormorant Infant', serif;
	letter-spacing:0.05em;
}
.innerLinkBtn a p:nth-child(2){
	padding:20px 0 0 10px;
	font-style:italic;
}
/*集裁ち切りの写真*/
.largeP{
	position:relative;
	width:calc(100% - 146px);
	min-width:1192px;
	height:38vw;
	min-height:452px;
	margin:0 auto 80px;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
}
.largeP::after{
	position:absolute;
	content:'';
	bottom:-37px;
	left:0;
	right:0;
	margin:0 auto;
	width:60px;
	height:3px;
	background:#c9c9c9;
}
.largeP .mainCopyBox{
	bottom:30px;
}














/**/
.drawer-hamburger{
	display:none;
}
/*responsive---------------------------------------------------------------------------------------*/
.ip5{
	display:none;
}
.img100per{
	width:100%;
	height: auto;
}
.img-sp100per{
}
.img-max100per{
	display: block;
	max-width: 100%;
	height: auto;
}
/*############################################*/
/*  */
/*############################################*/
.sp{
	display:none;
}
@media (max-width: 992px) {

}
@media only screen and (max-width: 767px) {
	.scroll_position{
		_margin-top:0px;
		_padding-top:0px;
	}
	body{
		font-size:14px;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	.img100per{
		width:100%;
		height: auto;
	}
	.img-sp100per{
		width:100%;
		height: auto;
	}
	.img-max100per{
		display: block;
		max-width: 100%;
		height: auto;
	}

	/*############################################*/
	/*（3）共通アニメーション*/
	/*############################################*/
	/*ボタン拡大-----------*/
	.kakudaiBtn:hover{
		animation:none;
	}
	/*背景拡大-----------*/
	.rollOverTransBox{
	}
	.rollOverTransInner{
		transition: none;
		will-change: none;
	}
	.rollOverTransInner.hv:hover {
		transform:none;
	}

	/*############################################*/
	/*（3）ヘッダーとか基本構成*/
	/*############################################*/
	html,
	body{
		height:auto;
		padding:0;
		margin:0;
		text-align:center;
		_overflow:hidden;/*これがあると、AndroidのChromeでスクロールしなくなる*/
	}
	#body{
		width:100%;
		min-width:100%;
		overflow:hidden;
	}

	/*ヘッダー----------------------------------------------------------------------*/
	.headWrapper{
		width:100%;
		min-width:0px;
		height:162px;
	}
	.headWrapper h1{
		position:relative;
		width:100%;
		height:auto;
		margin:0 auto;
	}
	.headWrapper h1 .logo{
		position:relative;
		top:auto;
		left:auto;
		right:auto;
		width:90px;
		margin:20px auto 0;
	}
	.headWrapper h1 .siteTitle{
		position:relative;
		top:auto;
		left:auto;
		padding:18px 0 0;
		text-align:center;
		letter-spacing:0.11em;
	}
	.headWrapper h1 .siteTitle p{
		display:inline-block;
		font-size:30px;
		letter-spacing:0.3em;
		margin:0 auto;
		text-align:center;
		_background:#999;
	}
	.headWrapper h1 .siteTitle span{
		display:block;
		_display:none;
		line-height:1em;
	}
	
	/*tel----------------------------------------------------------------------*/
	.footUeWrapper{
		position:relative;
		width:100%;
		min-width:0px;
		margin:0 auto;
		padding:30px 0 30px;
	}
	.footUeWrapper .right{
		display:block;
		position:relative;
		right:auto;
		top:auto;
		margin:30px auto 0;
	}
	/*foot----------------------------------------------------------------------*/
	footer{
		position:relative;
		width:100%;
		min-width:0;
		margin:0 auto;
		padding:30px 0 0px;
	}
	footer .footBox{
		padding:50px 0 70px;
		background:#f6f6f6;
	}
	footer .footBox .inner{
		display:flex;
		flex-wrap:wrap;
		justify-content:space-between;
		align-items:center;
		background:#f6f6f6;
	}
	footer .footBox .inner div{
		flex-basis:100%;
	}
	footer .siteTitle{
		display:none;
		padding:0 0 0 10vw;
		text-align:left;
		font-family: 'Abel', sans-serif;
		font-weight:normal;
		font-size:11.4px;
		letter-spacing:0.11em;
	}
	footer .siteTitle p{
		font-weight:300;
		font-family: 'Lato', sans-serif;
		font-size:24.4px;
		letter-spacing:0.1em;
	}
	footer .copyWrapper{
		padding:40px 0;
		font-size:12px;
	}
	footer .footBox .inner div:nth-of-type(3){
		padding-top:60px;
	}
	
	/*共通----------------------------------------------------------------------*/
	.chapterBox{
		display:block;
		position:relative;
		font-family: 'Cormorant Infant', serif;
		font-style:italic;
		font-size:30px;
		color:#999;
		letter-spacing:0.05em;
	}
	.chapterBox span{
		padding-right:6px;
		font-size:19px;
	}
	.chapterBox::after{
		position:absolute;
		content:"";
		bottom:-10px;
		left:0;
		right:0;
		margin:0 auto;
		width:30px;
		height:3px;
		background:#818181;
	}
	.pBox{
		background-size:cover;
		background-position:center center;
	}
	
	/*ボタン-ライン処理***********************************/
	.basicBtn{
		position: relative;
		cursor: pointer;
		display:block;
		width:245px;
		height:53px;
		padding:12px 0 0 0;
		font-family: 'Lato', sans-serif;
		font-size:16px;
		letter-spacing:0.05em;
		text-align:center;
		background:rgba(242,240,236,0);
		border:solid 1px #e4e4e4;
		_transition: all 0.4s
	}
	.basicBtn:link,
	.basicBtn:visited,
	.basicBtn:hover{
		color:#818181;
	}
	.basicBtn:hover{
		_background:rgba(242,240,236,1);
		_transition-delay: .4s;
		color:#b8ab91;
	}
	.basicBtn span{
		display: block;
		width:245px;
		_background:rgba(242,240,236,0);
	}
	.basicBtn::before,
	.basicBtn::after{
		content:"";
		width: 0;
		height: 1px;
		position: absolute;
		transition: all 0.2s linear;
		background: #b8ab91;
		transition-delay: 0s;
	}
	.basicBtn span::before,
	.basicBtn span::after{
		content:"";
		width:1px;
		height:0;
		position: absolute;
		transition: all 0.2s linear;
		background: #b8ab91;
		transition-delay: 0.2s;
	}
	.basicBtn:hover::before,
	.basicBtn:hover::after{
		width: 100%;
		transition-delay: 0.2s;
	}
	.basicBtn:hover span::before,
	.basicBtn:hover span::after{
		height: 100%;
		transition-delay: 0s;
	}
	.basicBtn::before{
		right: 0;
		top: -1px;
	}
	.basicBtn::after{
		left: 0;
		bottom: -1px;
	}
	.basicBtn span::before{
		left: -1px;
		top: 0;
	}
	.basicBtn span::after{
		right: -1px;
		bottom: 0;
	}
	
	
	/*サイドナビ----------------------------------------------------------------------*/
	.sidebar {
		display:none;
	}
	.leftMenu{
		display:none;
	}
	.rightMenu{
		display:none;
	}


	/*ナビ----------------------------------------------------------------------*/
	/*drawer追記分のみ*/
	.drawer-hamburger{
		position:fixed;
		display:block;
		top:0;
		right:0;
		padding:15px 15px 25px;
		z-index:20;
		background:rgba(255,255,255,0.8);
	}
	.drawer-hamburger:before{
	}
	.drawer-nav{
		_padding:20px 0;
		z-index:14;
		_background:rgba(255,255,255,0.95);
		background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,1) 100%);
	}
	.drawer-hamburger-icon, .drawer-hamburger-icon::after, .drawer-hamburger-icon::before {
		height:3px;
		background:rgba(90,90,90,1);
	}
	.drawer-nav .drawer-menu{
		margin:0px 0 0px;
		padding:20px 0;
	}
	.drawer-nav .drawer-menu li{
	}
	.drawer-nav .drawer-menu li a{
		color:#5a5a5a;
		font-size:16px;
		line-height:2.2em;
	}
	.drawer--top.drawer-open .drawer-nav {
	}
	/**/
	.drawer-menu .logo{
		margin-bottom:20px;
	}
	/**/
	.firstBtnBox{
		display:flex;
		justify-content:space-between;
		width:96%;
		margin:4px auto 0;
	}
	.firstBtnBox a{
		display:block;
		flex-basis:49%;
		padding:24px 0 6px;
		font-weight:300;
		font-family: 'Lato', sans-serif;
		font-size:15px;
		color:#5a5a5a;
		border:solid 1px #e4e4e4;
		background-size:16px auto;
		background-repeat:no-repeat;
	}
	.firstBtnBox a:nth-child(1){
		background-image:url(../img/share/pict_calendar.png);
		background-position:center 10px;
	}
	.firstBtnBox a:nth-child(2){
		background-image:url(../img/share/pict_request.png);
		background-position:center 8px;
	}
	.firstBtnBox a:nth-child(3){
		background-image:url(../img/share/pict_mail.png);
		background-position:center 8px;
	}
	.firstBtnBox a:nth-child(4){
		background-image:url(../img/share/pict_insta.png);
		background-position:center 8px;
	}
	.spNavSquare{
		position:relative;
		width:96%;
		margin:20px  auto;
		padding:36px 0;
	}
	.spNavSquare:before{
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 1px;
		height: 26px;
		_border-radius:3px;
		background: #ccc;
	}
	.spNavSquare:after{
		position: absolute;
		content: "";
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 1px;
		height: 26px;
		_border-radius:3px;
		background: #ccc;
	}
	/**/
	.spNavAccess{
		display:block;
		padding:20px 0;
		border-top:solid 1px #e4e4e4;
	}
	.spNavAccess p{
		padding-top:4px;
		font-weight:300;
		font-family: 'Lato', sans-serif;
		font-size:17px;
		letter-spacing:0.07em;
		color:#5a5a5a;
	}
	/**/
	.spNavSita{
		padding:30px 0 10px;
		border-top:solid 1px #e4e4e4;
	}

	/*メイン次階層----------------------------------------------------------------------*/
	.mainNextWrapper{
		width:100%;
		min-width:0;
		height:100vw;
		min-height:0;
	}
	.mainCopyBox{
	}
	.mainNextWrapper h2{
		padding:0 3%;
		font-size:40px;
		line-height:1.15em;
		letter-spacing:0.1em;
	}
	.mainNextWrapper h2 + p{
		padding-top:0px;
	}

	/*ページ内移動ボタン----------------------------------------------------------------------*/
	.innerLinkBtn{
		flex-direction:column;
		padding:0px 0 10px;
	}
	.innerLinkBtn a{
		margin:0 0 10px 0;
	}
	.innerLinkBtn a::after{
		bottom:-5px;
	}
	.innerLinkBtn a p:nth-child(1){
	}
	.innerLinkBtn a p:nth-child(2){
	}
	/*集裁ち切りの写真*/
	.largeP{
		width:100%;
		min-width:0;
		height:70vw;
		min-height:0;
		margin:0 auto 70px;
	}
	.largeP::after{
	}
	.largeP .mainCopyBox{
	}













} /* /@media */
@media only screen and (max-width: 374px) {
	/*iPhone5サイズ*/


	/*なぜかdrawer内の文字サイズがおかしくなるので*/
	/*
	と思ったけど、以下をhtmlに指定することで解決
	-webkit-text-size-adjust: none;
	どうもiPhoneの文字サイズ自動調整機能みたい
	
	.firstBtnBox a{
		font-size:8px;
		line-height:1.8em;
	}
	.drawer-nav .drawer-menu li a{
		font-size:10px;
		line-height:2.2em;
	}
	.spNavSita p:nth-child(1){
		font-size:8px;
	}
	*/


} /* /@media */





/* ヘッダーボタン追加 */
.headWrapper h1 .link {
    position: absolute;
    top: 54px;
    right: 20px;
    text-align: left;
    font-family: 'Abel', sans-serif;
    font-weight: normal;
    font-size: 8.4px;
    letter-spacing: 0.11em;
}
.headWrapper h1 .link ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}
.headWrapper h1 .link ul li {
    margin: 0;
}
.headWrapper h1 .link a.btn {
    display: inline-block;
    padding: 12px 12px;
    background-color: #666666;
    color: white;
    text-decoration: none;
    font-size: 12px;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

/* 式場グロナビ追加（プラン、ギャラリー、レポート） */
@media screen and (max-width: 767px) {
    .fixed-btn {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        display: flex;
    }
    .fixed-btn>p {
        width: 100%;
        margin: 0;
    }
    .fixed-btn>p a {
        display: block;
        padding: 1.0rem;
        text-align: center;
        color: #fff;
        background: #696969;
        text-decoration: none;
        font-size: 1.0rem;
    }
    .fixed-btn>p+p {
        border-left: 1px solid #fff;
    }
	.fixed-btn>p.fixed-btn-line a {
        background: #696969;
    }
}
@media screen and (min-width: 768px) {
    .fixed-btn {
        display: none;
    }
}


svg:not(:root).svg-inline--fa {
    overflow: visible;
}
.svg-inline--fa.fa-w-16 {
    width: 1em;
}
.svg-inline--fa {
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
}