@charset "Shift_JIS";
figure {
	margin: 0;
	padding: 0;
}

#stage {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*-------------------------------
  mv
-------------------------------*/
.mv {
	position: relative;
	text-align: center;
	border-top: 1px #fff solid;
	background-color: #010101;
}

.mv-txtBox {
	position: absolute;
	top: 90px;
	left: 50%;
	margin-left: 40px;
	width: 514px;
	text-align: center;
}

.mv-ttl {
	margin: 30px 0;
}

.mv .anchorList {
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 30px 0;
	border-top: 1px #fff solid;
	border-bottom: 1px #fff solid;
}

.anchorList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.anchorItem {
	width: 210px;
}

.anchorItem a {
	display: block;
	background: url(../images/pc/anch_bg.png) 0 0 no-repeat;
	background-size: contain;
	position: relative;
	-webkit-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}

.anchorItem a:after {
	content: " ";
	background: url(../images/pc/anch_icon_arrow.png) 0 0 no-repeat;
	display: block;
	width: 12px;
	height: 12px;
	position: absolute;
	bottom: 7px;
	left: 50%;
	margin-left: -6px;
	-webkit-transition: -webkit-transform .2s ease-out;
	transition: -webkit-transform .2s ease-out;
	transition: transform .2s ease-out;
	transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

.anchorItem a:hover:after {
	-webkit-transform: translateY(3px);
	transform: translateY(3px);
}

.anchorItem a:hover {
	opacity: .7;
}

#ytplayer {
	pointer-events: none;
	width: 228px;
	height: 128px;
}

#mvPlayer img {
	position: absolute;
	bottom: 12px;
	right: 12px;
}

.youtube_prayer {
	cursor: pointer;
}

.playbtn {
	position: fixed;
	top: 160px;
	right: 40px;
}

/*-------------------------------
  section-common
-------------------------------*/
section.cnt {
	padding: 80px 0 140px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	background: #3b3e40 url(../images/pc/cnt_bg.jpg) top center no-repeat;
}

section.cnt .main,
section.cnt .resultBox {
	width: 1000px;
	margin: 0 auto;
	color: #fff;
	font-size: 1.6rem;
}

section.cnt .main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

section.cnt .main .subttl {
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	margin: 25px 0;
}

section.cnt .main .lead {
	text-align: center;
	line-height: 1.8;
}

section.cnt .moreBtn {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 300px;
	height: 60px;
	margin: 30px auto 0;
	color: inherit;
	font-size: 1.8rem;
	background: url(../images/pc/moreBtn_bg.png) 0 0 no-repeat;
	-webkit-transition: .2s opacity ease-out;
	transition: .2s opacity ease-out;
}

section.cnt .moreBtn:after {
	content: " ";
	background: url(../images/pc/moreBtn_icon_arrow.png) 0 0 no-repeat;
	display: block;
	width: 12px;
	height: 21px;
	position: absolute;
	top: 50%;
	margin-top: -10.5px;
	right: 30px;
	-webkit-transition: .2s transform ease-out;
	transition: .2s transform ease-out;
}

section.cnt .moreBtn:hover {
	opacity: .7;
}

section.cnt .moreBtn:hover:after {
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
}

section.cnt .resultBox {
	margin-top: 80px;
}

section.cnt .resultBox h3 {
	text-align: center;
	margin-bottom: 30px;
}

.resultItems {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.resultItem {
	width: 490px;
	background: #fff;
}

.resultItem:nth-child(3),
.resultItem:nth-child(4) {
	margin-top: 20px;
}

.resultItem-ttl {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	padding: 20px 0;
	background: #28282a;
	color: #fff;
}

.resultItem-lead {
	color: #000;
	text-align: center;
	padding: 20px 0;
	font-size: 1.4rem;
}

.resultItem-lead.twoLine {
	padding-top: 32px;
}

.captionList {
	margin-top: 25px;
}

.captionItem {
	font-size: 1.2rem;
	text-indent: -1em;
	padding-left: 1em;
}

.localNav {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: rgba(40, 40, 42, 0.9);
	padding: 10px 0;
	/*	display: none;*/
	z-index: 1;
	opacity: 0;
	-webkit-transform: translateY(100px);
	transform: translateY(100px);
	-webkit-transition: -webkit-transform .4s ease-out;
	transition: -webkit-transform .4s ease-out;
	transition: transform .4s ease-out;
	transition: transform .4s ease-out, -webkit-transform .4s ease-out;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform;
}

.localNav.fix {
	display: block;
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	z-index: 5;
}

.localNav-ttl {
	text-align: center;
}

.localNavList {
	margin-top: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.localNavItem {
	width: 210px;
	position: relative;
}

.localNavItem a {
	display: block;
	height: 58px;
	background: url(../images/pc/lnav_bg.png) 0 0 no-repeat;
	position: relative;
	-webkit-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}

.localNavItem.first a {
	background: url(../images/pc/lnav_bg_02.png) 0 0 no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	justify-content: center;
}

.localNavItem a:after {
	content: " ";
	background: url(../images/pc/lnav_icon_arrow.png) 0 0 no-repeat;
	display: block;
	width: 10px;
	height: 16px;
	position: absolute;
	right: 30px;
	top: 50%;
	margin-top: -8px;
	-webkit-transition: -webkit-transform .2s ease-out;
	transition: -webkit-transform .2s ease-out;
	transition: transform .2s ease-out;
	transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

.localNavItem a:hover {
	opacity: .7;
}

.localNavItem a:hover:after {
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
}

.localNav .closeBtn {
	position: absolute;
	top: 10px;
	left: 50%;
	margin-left: 483px;
	cursor: pointer;
}

.localNav .closeBtn:hover {
	opacity: .7;
}


/*-------------------------------
  section-common
-------------------------------*/
section.cnt.faceEPL {
	padding-bottom: 0;
}

.bodyEPL .main-txtBox,
.bodySHP .main-txtBox {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}

.bodyEPL .main-imgBox,
.bodySHP .main-imgBox {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}


/*-------------------------------
  colum
-------------------------------*/
.super {
	background: url(../images/pc/bg_white.png) 0 0 repeat;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 50px 0;
	margin-top: 80px;
}

.colum-imgBox {
	width: 360px;
	margin-right: 40px;
}

.colum-txtBox {
	width: 600px;
}

.colum-txtBox .txtBox-ttl {
	color: #aa7a13;
	font-size: 2.4rem;
	font-weight: bold;
}

.colum-txtBox .txtBox-txt {
	font-size: 1.5rem;
	margin: 15px 0 0;
	line-height: 1.8;
	letter-spacing: -.2px;
}

.colum-txtBox .txtBox-txt a {
	float: right;
	font-size: 1.8rem;
	border-bottom: 1px solid #000;
	line-height: 1;
	padding-bottom: 7px;
	margin-top: 25px;
	color: inherit;
	padding-right: 20px;
	position: relative;
	-webkit-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}

.colum-txtBox .txtBox-txt a:after {
	content: " ";
	background: url(../images/pc/colum_icon_arrow.png) 0 0 no-repeat;
	width: 12px;
	height: 21px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: -webkit-transform .2s ease-out;
	transition: -webkit-transform .2s ease-out;
	transition: transform .2s ease-out;
	transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

.colum-txtBox .txtBox-txt a:hover {
	opacity: .7;
}

.colum-txtBox .txtBox-txt a:hover:after {
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
}


/*-------------------------------
  campaign
-------------------------------*/
.campaign {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 80px 0 100px;
	background: url(../images/pc/bg_white.png) 0 0 repeat;
	position: relative;
}

.campaign-ttl {
	text-align: center;
}

.campaign-subttl {
	text-align: center;
	font-size: 1.8rem;
	line-height: 1;
	margin-top: 15px;
}

.cmpList {
	width: 1000px;
	margin: 30px auto 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.cmpItem {
	width: 230px;
	border: 1px solid #d9d9d9;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

}

.cmpItem a {
	color: #000;
	position: relative;
	display: block;
	height: 100%;
	-webkit-transition: background .2s ease-out;
	transition: background .2s ease-out;
}

.cmpItem a:after {
	content: " ";
	background: url(../images/pc/campaign_icon_arrow.png) 0 0 no-repeat;
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -20px;
}

.cmpItem a:hover {
	background: #d9d9d9;
}

.cmpItem .thum {
	margin-top: -1px;
	margin-left: -1px;
}

.cmpItem-txtBox {
	padding: 20px 15px 35px;
}

.cmpItem-name {
	font-size: 1.5rem;
}

.cmpItem-price {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 7px 0 10px;
}

.cmpItem-price span {
	font-size: 1.1rem;
	font-weight: normal;
}

.cmpItem-lead {
	font-size: 1.3rem;
	line-height: 1.6;
}


/*-------------------------------
  service
-------------------------------*/
.service {
	padding: 80px 0;
	background: #181818;
	color: #fff;
	font-size: 1.3rem;
	position: relative;
}

.service-ttl {
	text-align: center;
}

.service-subttl {
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.6;
	margin-top: 15px;
}

.serviceList {
	width: 980px;
	margin: 40px auto 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.serviceItem {
	width: 300px;
}

.serviceItem-name {
	color: #a08250;
	font-size: 1.5rem;
	margin-top: 20px;
	font-weight: bold;
}

.serviceItem-lead {
	margin-top: 10px;
	line-height: 1.8;
}

.service .moreBtn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	width: 250px;
	height: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #fff;
	margin: 20px auto 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-size: 1.5rem;
	-webkit-transition: background .2s ease-out;
	transition: background .2s ease-out;
	-webkit-transition-property: background, color;
	transition-property: background, color;
}

.service .moreBtn:after {
	content: " ";
	background: url(../images/pc/service_icon_arrow.png) 0 0 no-repeat;
	display: block;
	width: 11px;
	height: 21px;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -10.5px;
	-webkit-transition: -webkit-transform .2s ease-out;
	transition: -webkit-transform .2s ease-out;
	transition: transform .2s ease-out;
	transition: transform .2s ease-out, -webkit-transform .2s ease-out;
	-webkit-transition-property: background, -webkit-transform;
	transition-property: background, -webkit-transform;
	transition-property: transform, background;
	transition-property: transform, background, -webkit-transform;
}

.service .moreBtn:hover {
	background: #fff;
	color: #000;
}

.service .moreBtn:hover:after {
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
	background: url(../images/pc/service_icon_arrow_on.png) 0 0 no-repeat;
}


/*-------------------------------
  news
-------------------------------*/
.news {
	padding: 80px 0;
	background: url(../images/pc/bg_white.png) 0 0 repeat;
	position: relative;
}

.news.disable {
	display: none;
}

.news-ttl {
	text-align: center;
}

.news ul {
	width: 1000px;
	margin: 30px auto 0;
	border-top: 1px #d9d9d9 solid;
}

.news ul li {
	text-align: center;
	padding: 1em 0;
	border-bottom: 1px #d9d9d9 solid;
	font-size: 1.5rem;
}

.news ul li:before {
	display: inline-block;
	height: 3em;
	content: '';
	vertical-align: middle;
}

.news ul li a {
	line-height: 1.4;
	display: inline-block;
	vertical-align: middle;
	color: #000;
	transition: opacity .2s ease-out;
}

.news ul li a:hover {
	opacity: .7;
}

.news .moreBtnBox {
	width: 1000px;
	margin: 20px auto 0;
}

.news .moreBtn {
	color: #000;
	font-size: 1.5rem;
	float: right;
	display: inline-block;
	position: relative;
	-webkit-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}

.news .moreBtn:after {
	content: " ";
	background: url(../images/pc/news_icon_arrow.png) 0 0 no-repeat;
	display: block;
	width: 6px;
	height: 8px;
	position: absolute;
	left: -15px;
	top: 50%;
	margin-top: -4px;
	-webkit-transition: -webkit-transform .2s ease-out;
	transition: -webkit-transform .2s ease-out;
	transition: transform .2s ease-out;
	transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

.news .moreBtn:hover {
	opacity: .7;
}

.news .moreBtn:hover:after {
	-webkit-transform: translateX(3px);
	transform: translateX(3px);
}

#mvPlayer {
	position: absolute;
	top: 20px;
	right: 20px;
	border: 2px solid #fff;
	display: block;
	width: 228px;
	height: 128px;
}

#movieModal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.5);
}

#movieModal > iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

#movieModal > a {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -285px;
	margin-left: 340px;
}

.hover {
	opacity: 1;
	-webkit-transition-duration: 0.8s;
	-ms-transition-duration: 0.8s;
	transition-duration: 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	-ms-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.hover:hover {
	opacity: 0.6;
}

.bnr_socie {
	position: absolute;
	top: 20px;
	right: 20px;
	border: 2px solid #fff;
	display: block;
	width: 228px;
	height: 128px;
	z-index: 10;
}

section.cnt .section-2 .main {
	display: block;
	padding-top: 80px;
}

section.cnt .section-2 .main .subttl {
	border: 1px solid #fff;
	line-height: 1.3;
	padding: 24px 0;
	margin: 25px 0 50px;
}

section.cnt .section-2 .main .subttl span {
	font-size: 20px;
}

section.cnt .section-2 .main .subttl.title-yellow {
	border: none;
	line-height: 1.5;
	font-style: italic;
	padding-top: 15px;
	margin-bottom: 5px;
	padding-bottom: 0;
}

section.cnt .section-2 .main .subttl.title-yellow span {
	font-size: 34px;
}

.bold-yellow {
	font-size: 41px;
	font-weight: bold;
	font-style: italic;
}

.bold-yellow span {
	border-bottom: 2px solid #fff100;
	padding-bottom: 5px;
}

.title-gold {
	color: #cc9841;
	font-size: 20px;
	font-weight: bold;
	position: relative;
}

.title-gold::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	margin-top: -1px;
	background-color: #cc9841;
}

.title-gold span {
	position: relative;
	z-index: 1;
	padding: 0 10px;
	background-color: #3b3e40;
}

.flex-before_after {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.area-before ._text,
.area-after ._text {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	padding: 17px 0;
}

.area-before ._text {
	color: #a08250;
	background-color: #f0e8dc;
}

.area-after ._text {
	color: #fff;
	background-color: #a08250;
}

.note-white {
	font-size: 12px;
	line-height: 24px;
	color: #fff;
}

section.cnt .moreBtn._yellow {
	width: 438px;
	height: 70px;
	background: url(../images/pc/moreBtn_bg-yellow.png) 0 0 no-repeat;
	font-size: 28px;
	font-weight: bold;
	font-style: italic;
	color: #000;
	margin-top: 55px;
}

section.cnt .moreBtn._yellow:after {
	background: url(../images/pc/moreBtn_icon_arrow-black.png) 0 0 no-repeat;
}

.pick_up {
	width: 1000px;
	margin: 0 auto 80px;
}

.pick_up h4 {
	color: #fff;
	text-align: center;
	font-size: 2.0rem;
	line-height: 60px;
	position: relative;
	background: #9e8250;
	transition: 0.5s;
	cursor: default;
}

.pick_up h4:hover {
	background: #bdbdbd;
}

.pick_up h4:after {
	content: "";
	width: 21px;
	height: 100%;
	background: url(../images/pc/arrow_03.png) no-repeat center center;
	background-size: 21px 10px;
	position: absolute;
	top: 0;
	right: 15px;
}

.pick_up h4.open:after {
	content: "";
	width: 21px;
	height: 100%;
	background: url(../images/pc/arrow_04.png) no-repeat center center;
	background-size: 21px 10px;
	position: absolute;
	top: 0;
	right: 15px;
}

.pick_up-cont {
	display: none;
	background: #eee;
	padding: 40px 20px 45px;
}

section.cnt .pick_up .resultBox {
	margin-top: 0;
	width: 100%;
	color: #000;
}

.pick_up-cont .resultItem {
	width: 470px;
}

.text-center {
	text-align: center;
}

.text-white {
	color: #fff;
}

.text-yellow {
	color: #fff100;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-55 {
	margin-bottom: 55px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mb-70 {
	margin-bottom: 70px;
}

.w-492 {
	width: 492px;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.mv-img {
	max-width: 100%;
	min-width: 1400px;
}

.mv-button {
	max-width: 1580px;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

.mv-button a {
	position: absolute;
	top: 53%;
	left: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	margin-left: 16%;
	font-size: 18px;
	color: #fff;
	border: 1px solid #fff;
	padding: 8px 30px 8px 10px;
	max-width: 323px;
	width: 100%;
	box-sizing: border-box;
	transition: .3s;
}

.mv-button a::before {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	display: inline-block;
	width: 11px;
	height: 17px;
	background-image: url(../images/pc/icon-mv-button.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.mv-button a:hover {
	opacity: .75;
}
