@charset "UTF-8";
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* -----------------------------------------------------------
reset
----------------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
}

html {
	overflow-y: scroll;
}

div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li, form, input, textarea, button, table, tr, th, td, article, aside, footer, header, hgroup, nav, section, a, span {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

q:before, q:after {
	content: '';
}

object,
embed {
	vertical-align: top;
}

hr, legend {
	display: none;
	border: none;
}

abbr, acronym, fieldset {
	border: 0;
}

tr, th, td, caption {
	vertical-align: top;
	font-style: normal;
	font-weight: normal;
	text-align: left;
}

ol, ul {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
}

img {
	border: 0;
	font-size: 0;
	line-height: 0;
	vertical-align: bottom;
}

body {
	font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "YuGothic M", "Noto Sans Japanese", "Avenir Next", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS P Gothic",Verdana,Arial, Helvetica, sans-serif;
	font-weight: normal;
	line-height: 1.6;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #000;
	color: #FFF;
}

@media screen and (max-width: 750px) {
	body {
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
		-webkit-touch-callout: none;
	}
}

.mincho {
	font-family: "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" ,"ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: normal;
}

.fjalla {
	font-family: 'Fjalla One', sans-serif;
}

.georgia {
	font-family: Georgia,Times,Times New Roman,serif;
}

/* bottom footer
----------------------------------------*/
body,
html {
	height: 100%;
}

.container {
	position: relative;
	height: auto !important;
	height: 100%;
	min-height: 100%;
}

@media screen and (max-width: 750px) {
	.container {
		padding-top: 92px;
	}
}

.contents {
	width: 100%;
	min-width: 1200px;
	max-width: 1800px;
	margin: 0 auto;
	padding-bottom: 60px;
	overflow: hidden;
}

@media screen and (max-width: 750px) {
	.contents {
		max-width: none;
		min-width: 0;
		padding-bottom: 115px;
	}
}

/*/
///////////////////////////////////////
汎用class
////////////////////////////////////////*/
@media screen and (min-width: 751px) {
	.only-sp {
		display: none;
	}
}

@media screen and (max-width: 750px) {
	.only-pc {
		display: none;
	}
}

img {
	vertical-align: top;
}

img.box-fit {
	width: 100%;
	height: auto;
}

.tpl-text {
	line-height: 1.8em;
}

@media screen and (max-width: 750px) {
	.tpl-text {
		font-size: 24px;
		font-size: 3.2vw;
		text-align: center}
}

.tpl-text-15 {
	font-size: 15px;
	line-height: 1.8em;
}

@media screen and (max-width: 750px) {
	.tpl-text-15 {
		font-size: 24px;
		font-size: 3.2vw;
	}
}

.hidden {
	display: none !important;
}

/* header
----------------------------------------*/
.header {
	position: fixed;
	top: 0;
	width: 100%;
	min-width: 1200px;
	height: 86px;
	padding-left: 40px;
	padding-right: 40px;
	z-index: 100;
}

@media screen and (max-width: 750px) {
	.header {
		min-width: 0;
		height: auto;
		padding: 18px 0 14px;
		border-bottom: 1px solid #3f3f3f;
		transition: top 0.3s ease-out;
	}
}

.header:before {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #000;
	opacity: 0;
	transition: opacity 0.8s ease-out;
}

@media screen and (max-width: 750px) {
	.header:before {
		opacity: 1;
	}
}

.header .header-inner {
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

@media screen and (max-width: 750px) {
	.header .header-inner {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.header.active:before {
	opacity: 1;
}

.header .header-main {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (max-width: 750px) {
	.header .header-main {
		width: 100%;
	}
}

.header .logo-tullys {
	position: relative;
	width: 220px;
	height: 26px;
	display: block;
}

@media screen and (max-width: 750px) {
	.header .logo-tullys {
		width: 155px;
		height: auto;
		margin-bottom: 20px;
		margin-left: 20px;
	}
}

.header .header-sub {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (max-width: 750px) {
	.header .header-sub {
		width: 100%;
	}
}

.header .menu-list {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	padding-right: 10px;
}

@media screen and (max-width: 750px) {
	.header .menu-list {
		width: 100%;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		padding-left: 20px;
		padding-right: 20px;
	}
}

.header .menu-list:after {
	content: '';
	position: absolute;
	display: block;
	width: 2px;
	height: 20px;
	background-color: #333;
	right: 0;
	top: 0;
}

@media screen and (max-width: 750px) {
	.header .menu-list:after {
		display: none;
	}
}

.header .menu-list li {
	position: relative;
	padding: 0 10px 0;
}

@media screen and (max-width: 750px) {
	.header .menu-list li {
		padding: 0;
	}
}

.header .menu-list a {
	position: relative;
	display: block;
	color: #FFF;
	text-decoration: none;
	font-size: 14px;
	padding: 0 8px 0;
	white-space: nowrap;
}

@media screen and (max-width: 750px) {
	.header .menu-list a {
		font-size: 9px;
		padding: 0 4px 0;
	}
}

.header .menu-list a:after {
	content: '';
	position: absolute;
	display: block;
	bottom: -5px;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 1px;
	background-color: #fff;
	transition: width 0.3s ease-out;
}

@media screen and (max-width: 750px) {
	.header .menu-list a:after {
		height: 2px;
		bottom: -15px;
	}
}

.header .menu-list a.current:after {
	width: 100%;
}

.is-pc .header .menu-list a:hover:after {
	width: 100%;
}

.header .sns-btns {
	position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	margin-left: 15px;
}

@media screen and (max-width: 750px) {
	.header .sns-btns {
		position: absolute;
		right: 22px;
		top: 15px;
		margin-left: 0;
	}
}

.header .sns-btns a.sns-btn {
	display: block;
	width: 26px;
	height: 26px;
	margin-left: 15px;
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (max-width: 750px) {
	.header .sns-btns a.sns-btn {
		width: 24px;
		height: 24px;
	}
}

.header .sns-btns a.sns-btn.sns-btn-instagram {
	background-image: url("../img/ig-icon.png");
}

.header .sns-btns a.sns-btn.sns-btn-facebook {
	background-image: url("../img/fb-icon.png");
}

.header .sns-btns a.sns-btn.sns-btn-line {
	background-image: url("../img/icon-share-ln.png");
}

@media screen and (max-width: 750px) {
	.header.sp-shrink {
		top: -48px;
	}
}

/* footer
----------------------------------------*/
.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 60px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding-left: 20px;
	padding-right: 80px;
}

@media screen and (max-width: 750px) {
	.footer {
		height: auto;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 0;
	}
}

.footer .footer-main {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (max-width: 750px) {
	.footer .footer-main {
		-webkit-justify-content: center;
		justify-content: center;
		width: 100%;
		height: 45px;
	}
}

.footer .logo-itoen {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	color: #FFF;
	font-size: 14px;
	text-decoration: none;
}

@media screen and (max-width: 750px) {
	.footer .logo-itoen {
		font-size: 12px;
	}
}

.footer .logo-itoen:before {
	content: '';
	display: block;
	width: 75px;
	height: 18px;
	background-image: url("../img/logo-itoen.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.footer .logo-itoen:after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-image: url("../img/icon-blank.png");
	background-repeat: no-repeat;
	background-size: cover;
	margin-left: 5px;
}

@media screen and (max-width: 750px) {
	.footer .logo-itoen:after {
		width: 10px;
		height: 10px;
	}
}

.footer .btn-line-account {
	color: #FFF;
	font-size: 12px;
	text-decoration: none;
	margin-left: 30px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

.footer .btn-line-account:before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url("../img/line-icon.png");
	background-repeat: no-repeat;
	background-size: cover;
	margin-right: 5px;
}

.footer .btn-tw-account:after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	background-image: url("../img/icon-blank.png");
	background-repeat: no-repeat;
	background-size: cover;
	margin-left: 7px;
}

@media screen and (max-width: 750px) {
	.footer .btn-tw-account:after {
		width: 10px;
		height: 10px;
	}
}

.footer .footer-sub {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (max-width: 750px) {
	.footer .footer-sub {
		width: 100%;
		height: 45px;
		padding-left: 4vw;
	}
}

.footer .footer-sub > div {
	display: -webkit-flex;
	display: flex;
}

@media screen and (max-width: 750px) {
	.footer .footer-sub > div {
		display: block;
	}
}

.footer .footer-sub .notice {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
	margin-right: 20px;
}

@media screen and (max-width: 750px) {
	.footer .footer-sub .notice {
		font-size: 10px;
		margin-right: 0;
		width: 100%;
	}
}

.footer .footer-sub .copyright {
	font-size: 10px;
	color: #666;
}

@media screen and (max-width: 750px) {
	.footer .footer-sub .copyright {
		font-size: 9px;
	}
}

.footer .footer-sub .copyright sup {
	vertical-align: top;
}

/* page-top-btn
----------------------------------------*/
.page-top-btn {
	position: fixed;
	bottom: 0;
	width: 100%;
	min-width: 1200px;
	height: 60px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.8s ease-out;
}

.page-top-btn.active {
	opacity: 1;
}

@media screen and (max-width: 750px) {
	.page-top-btn {
		min-width: 0;
		height: 45px;
	}
}

.page-top-btn a {
	position: absolute;
	display: block;
	right: 0;
	pointer-events: all;
	width: 60px;
	height: 60px;
	background-color: #393939;
	cursor: pointer;
	transition: background-color 0.3s ease-out;
}

.is-pc .page-top-btn a:hover {
	background-color: #393939;
}

@media screen and (max-width: 750px) {
	.page-top-btn a {
		width: 45px;
		height: 45px;
	}
}

.page-top-btn a:after {
	content: '';
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	top: 8px;
	bottom: 0;
	margin: auto;
	width: 10px;
	height: 10px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

@media screen and (max-width: 750px) {
	.page-top-btn a:after {
		top: 6px;
		width: 6px;
		height: 6px;
	}
}

/* section
----------------------------------------*/
/* tpl-btn
----------------------------------------*/
.tpl-btn {
	position: relative;
	height: 50px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 750px) {
	.tpl-btn {
		height: 40px;
	}
}

.tpl-btn a {
	display: block;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	border: 1px solid #FFF;
	color: #FFF;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	transition: color 0.3s ease-out;
	line-height: 50px;
	cursor: pointer;
}

@media screen and (max-width: 750px) {
	.tpl-btn a {
		line-height: 38px;
		font-size: 12px;
	}
}

.tpl-btn a > div {
	position: relative;
	height: 100%;
}

.tpl-btn a > div span {
	display: inline-block;
}

.tpl-btn a:after, .tpl-btn a:before {
	content: '';
	position: absolute;
	display: block;
	background-color: #FFF;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 10px;
}

.tpl-btn a:before {
	left: 0;
	width: 0;
}

.is-pc .tpl-btn a:hover {
	color: #000;
}

.is-pc .tpl-btn a:hover:before {
	animation: btn-on-x 0.3s ease-out 0s alternate forwards, btn-on-y 0.3s ease-out 0.3s alternate forwards;
}

@media screen and (max-width: 750px) {
	.tpl-btn a {
		transition: background-color 0.3s ease-out;
	}
	.tpl-btn a.sp-hover {
		background-color: #333;
	}
}

.tpl-btn.tpl-btn-navi a:after {
	right: 0;
	width: 4px;
}

.tpl-btn.tpl-btn-blank a > div:after {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 20px;
	background-image: url("../img/icon-blank.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-color: transparent;
	vertical-align: middle;
}

@media screen and (max-width: 750px) {
	.tpl-btn.tpl-btn-blank a > div:after {
		width: 8px;
		height: 8px;
		margin-left: 10px;
	}
}

.is-pc .tpl-btn.tpl-btn-blank a:hover > div:after {
	background-image: url("../img/icon-blank-b.png");
}

.tpl-btn.tpl-btn-dark a {
	border-color: #000;
	color: #000;
}

.tpl-btn.tpl-btn-dark a:after, .tpl-btn.tpl-btn-dark a:before {
	background-color: #000;
}

.is-pc .tpl-btn.tpl-btn-dark a:hover {
	color: #FFF;
}

@media screen and (max-width: 750px) {
	.tpl-btn.tpl-btn-dark a.sp-hover {
		background-color: #ccc;
	}
}

.tpl-btn.tpl-btn-search a > div {
	position: relative;
}

.tpl-btn.tpl-btn-search a > div:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 14px;
	height: 14px;
	background-image: url("../img/icon-search.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-color: transparent;
	margin-left: 10px;
}

@media screen and (max-width: 750px) {
	.tpl-btn.tpl-btn-search a > div:after {
		width: 10px;
		height: 10px;
		margin-left: 10px;
	}
}

.is-pc .tpl-btn.tpl-btn-search:hover:after {
	background-image: url("../img/icon-search-w.png");
}

.tpl-btn.tpl-btn-lineup a {
	border-color: #333;
	font-size: 15px;
}

@media screen and (max-width: 750px) {
	.tpl-btn.tpl-btn-lineup a {
		font-size: 24px;
		font-size: 3.2vw;
	}
}

.tpl-btn.tpl-btn-share a > div {
	position: relative;
}

.tpl-btn.tpl-btn-share a > div:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: transparent;
	margin-right: 20px;
}

@media screen and (max-width: 750px) {
	.tpl-btn.tpl-btn-share a > div:before {
		width: 12px;
		height: 12px;
		margin-right: 10px;
	}
}

.tpl-btn.tpl-btn-share.tpl-btn-share-tw a > div:before {
	background-image: url("../img/icon-sns-tw.png");
}

.is-pc .tpl-btn.tpl-btn-share.tpl-btn-share-tw a:hover > div:before {
	background-image: url("../img/icon-sns-tw-b.png");
}

.tpl-btn.tpl-btn-share.tpl-btn-share-fb a > div:before {
	background-image: url("../img/icon-sns-fb.png");
}

.is-pc .tpl-btn.tpl-btn-share.tpl-btn-share-fb a:hover > div:before {
	background-image: url("../img/icon-sns-fb-b.png");
}

@keyframes btn-on-x {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

@keyframes btn-on-y {
	from {
		height: 10px;
	}
	to {
		height: 100%;
	}
}

.movie-modal-btn {
	position: relative;
	display: block;
}

.movie-modal-btn:before {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 0.3s ease-out;
}

.movie-modal-btn:after {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 92px;
	height: 92px;
	background-image: url("../img/icon-movie-btn.png");
	background-repeat: no-repeat;
	background-size: cover;
	transition: transform 0.3s ease-out;
}

@media screen and (max-width: 750px) {
	.movie-modal-btn:after {
		width: 12.26667vw;
		height: 12.26667vw;
	}
}

.is-pc .movie-modal-btn:hover:before {
	background-color: rgba(0, 0, 0, 0.3);
}

.is-pc .movie-modal-btn:hover:after {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

@media screen and (max-width: 750px) {
	.movie-modal-btn.sp-hover:before {
		background-color: rgba(0, 0, 0, 0.3);
	}
}

/* sec-salon
----------------------------------------*/
.sec-salon {
	position: relative;
	width: 100%;
	height: 400px;
	background-color: #2a2725;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

@media screen and (max-width: 750px) {
	.sec-salon {
		display: block;
		height: 64vw;
		padding: 0 4vw;
		background-color: inherit;
	}
}

@media screen and (min-width: 751px) {
	.sec-salon:before {
		content: '';
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, #110d0e 0%, #110d0e 50%, #2e2923 50%, #2e2923 100%);
	}
	.sec-salon:after {
		content: '';
		position: absolute;
		display: block;
		width: 294px;
		height: 293px;
		background-image: url("../");
		right: 0;
		top: 0;
		pointer-events: none;
	}
}

.sec-salon .sec-salon-inner {
	position: relative;
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	-webkit-align-items: center;
	align-items: center;
	background-image: url("../img/salon-bg-pc.jpg");
	background-repeat: no-repeat;
	background-position: center top;
}

@media screen and (max-width: 750px) {
	.sec-salon .sec-salon-inner {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		display: block;
		background-image: url("../img/salon-bg-sp.jpg");
	}
}

.sec-salon .salon-btn-box {
	width: 50%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (max-width: 750px) {
	.sec-salon .salon-btn-box {
		width: 100%;
		display: block;
	}
}

.sec-salon .salon-btn {
	width: 300px;
	height: 70px;
	margin: 0;
}

@media screen and (max-width: 750px) {
	.sec-salon .salon-btn {
		position: absolute;
		bottom: 6.66667vw;
		left: 0;
		right: 0;
		margin: auto;
		width: 56vw;
		height: 40px;
	}
}

.sec-salon .salon-btn a {
	line-height: 68px;
}

@media screen and (max-width: 750px) {
	.sec-salon .salon-btn a {
		line-height: 38px;
	}
}

/* モーダルを閉じるボタン
----------------------------------------*/
.close-btn-wrapper {
	margin: 80px auto 0;
}

@media screen and (max-width: 750px) {
	.close-btn-wrapper {
		margin-top: 8vw;
	}
}

.close-modal-btn {
	width: 260px;
}

@media screen and (max-width: 750px) {
	.close-modal-btn {
		width: 52vw;
	}
}

.close-movie-btn {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -80px;
	margin: auto;
}

@media screen and (max-width: 750px) {
	.close-movie-btn {
		bottom: -60px;
	}
}

/* magnific-popup
----------------------------------------*/
/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.7;
}

.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

.mfp-container {
	padding: 0;
}

.mfp-container .mfp-content .mfp-iframe-holder .mfp-close,
.mfp-container .mfp-content button.mfp-close {
	opacity: 1;
	font-size: 0;
	width: 44px;
	height: 44px;
	top: -64px;
	opacity: 1;
	transition: opacity 0.3s ease-out;
}

.mfp-container .mfp-content .mfp-iframe-holder .mfp-close:before, .mfp-container .mfp-content .mfp-iframe-holder .mfp-close:after,
.mfp-container .mfp-content button.mfp-close:before,
.mfp-container .mfp-content button.mfp-close:after {
	content: '';
	position: absolute;
	left: -21%;
	top: 50%;
	width: 63px;
	height: 2px;
	background-color: #FFF;
}

.mfp-container .mfp-content .mfp-iframe-holder .mfp-close:before,
.mfp-container .mfp-content button.mfp-close:before {
	-webkit-transform: rotateZ(-45deg);
	transform: rotateZ(-45deg);
}

.mfp-container .mfp-content .mfp-iframe-holder .mfp-close:after,
.mfp-container .mfp-content button.mfp-close:after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}

.mfp-container .mfp-content .mfp-iframe-holder .mfp-close:hover,
.mfp-container .mfp-content button.mfp-close:hover {
	opacity: 0.7;
}

@media screen and (max-width: 750px) {
	.mfp-container .mfp-content .mfp-iframe-holder .mfp-close,
	.mfp-container .mfp-content button.mfp-close {
		width: 8vw;
		height: 8vw;
		top: -13.33333vw;
		right: 0;
	}
	.mfp-container .mfp-content .mfp-iframe-holder .mfp-close:before, .mfp-container .mfp-content .mfp-iframe-holder .mfp-close:after,
	.mfp-container .mfp-content button.mfp-close:before,
	.mfp-container .mfp-content button.mfp-close:after {
		content: '';
		position: absolute;
		left: -21%;
		top: 50%;
		width: 12vw;
		height: 2px;
		background-color: #FFF;
	}
	.mfp-container .mfp-content .mfp-iframe-holder .mfp-close:before,
	.mfp-container .mfp-content button.mfp-close:before {
		-webkit-transform: rotateZ(-45deg);
		transform: rotateZ(-45deg);
	}
	.mfp-container .mfp-content .mfp-iframe-holder .mfp-close:after,
	.mfp-container .mfp-content button.mfp-close:after {
		-webkit-transform: rotateZ(45deg);
		transform: rotateZ(45deg);
	}
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	right: 0;
}

/* modal
----------------------------------------*/
.inline-popup {
	position: relative;
	width: 1040px;
	margin: 0 auto 0;
}

@media screen and (max-width: 750px) {
	.inline-popup {
		width: 96vw;
	}
}

.modal-detail {
	background-color: #FFF;
}

.modal-head {
	width: 100%;
	font-size: 22px;
	padding: 24px 0;
	text-align: center;
	color: #FFF;
	background-color: #b29b2d;
}

@media screen and (max-width: 750px) {
	.modal-head {
		padding: 4vw 0;
		font-size: 34px;
		font-size: 4.53333vw;
	}
}

.modal-content {
	padding: 60px 80px 40px;
	color: #333;
}

@media screen and (max-width: 750px) {
	.modal-content {
		padding: 6.66667vw 6vw 8vw;
	}
}

.modal-content .block + .block {
	margin-top: 30px;
}

@media screen and (max-width: 750px) {
	.modal-content .block + .block {
		margin-top: 8vw;
	}
}

.modal-content .block .head {
	position: relative;
	font-size: 22px;
	padding-bottom: 16px;
	margin-bottom: 30px;
	border-bottom: 2px solid #e4e4e4;
}

@media screen and (max-width: 750px) {
	.modal-content .block .head {
		font-size: 32px;
		font-size: 4.26667vw;
		padding-bottom: 2.66667vw;
		margin-bottom: 5.33333vw;
		border-width: 1px;
	}
}

.modal-content .block .head:after {
	content: '';
	position: absolute;
	display: block;
	line-height: 0;
	overflow: hidden;
	left: 0;
	bottom: -2px;
	width: 140px;
	border-bottom: 2px solid #b29b2d;
}

@media screen and (max-width: 750px) {
	.modal-content .block .head:after {
		bottom: -1px;
		width: 22.1519%;
	}
}

/* tpl-mainvisual
----------------------------------------*/
.tpl-mainvisual {
	width: 100%;
	height: 510px;
	background-position: center top;
	background-repeat: no-repeat;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

@media screen and (max-width: 750px) {
	.tpl-mainvisual {
		height: 66.66667vw;
		background-size: cover;
	}
}

.tpl-mainvisual .main-title {
	text-align: center;
}

.tpl-mainvisual .main-title span {
	display: block;
	margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
	.tpl-mainvisual .main-title span {
		margin-bottom: 2.66667vw;
		width: 85.33333vw;
	}
	.tpl-mainvisual .main-title span img {
		width: 100%;
	}
}

.tpl-mainvisual .main-title p {
	font-size: 18px;
}

@media screen and (max-width: 750px) {
	.tpl-mainvisual .main-title p {
		font-size: 12px;
	}
}

/* tpl-white-box
----------------------------------------*/
.tpl-white-box {
	position: relative;
	background-color: #FFF;
	width: 1200px;
	margin: 0 auto;
	padding: 60px 80px 120px;
	color: #333;
}

@media screen and (max-width: 750px) {
	.tpl-white-box {
		width: 92vw;
		padding: 9.33333vw 4vw 14.66667vw;
	}
}

.tpl-white-box-division {
	margin-top: 60px;
	margin-bottom: 80px;
}

@media screen and (max-width: 750px) {
	.tpl-white-box-division {
		margin-top: 8vw;
		margin-bottom: 10.66667vw;
	}
}

.tpl-white-box-division:first-child {
	margin-top: 0;
}

.tpl-white-box-division:last-child {
	margin-bottom: 0;
}

.tpl-white-box-division-head {
	display: inline-block;
	width: 100%;
	font-size: 26px;
	color: #333;
	text-align: center;
	line-height: 2em;
	margin-bottom: 40px;
}

@media screen and (max-width: 750px) {
	.tpl-white-box-division-head {
		font-size: 28px;
		font-size: 3.73333vw;
		margin-bottom: 5.33333vw;
	}
}

.tpl-white-box-division-head .small {
	font-size: 22px;
}

@media screen and (max-width: 750px) {
	.tpl-white-box-division-head .small {
		font-size: 28px;
		font-size: 3.73333vw;
	}
}

.tpl-white-box-division-head span {
	vertical-align: bottom;
	display: inline-block;
	position: relative;
	left: 0;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.tpl-white-box-division-head span:after {
	display: block;
	position: absolute;
	z-index: -1;
	bottom: 0px;
	content: '';
	width: 100%;
	height: 2px;
	background-color: #fff;
	opacity: 1;
}

.flex-between-area {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

@media screen and (max-width: 750px) {
	.flex-between-area {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.flex-between-area.reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.flex-between-area + .flex-between-area {
	margin-top: 80px;
}

@media screen and (max-width: 750px) {
	.flex-between-area + .flex-between-area {
		margin-top: 10.66667vw;
	}
}

.flex-between-area .flex-between-box {
	width: 500px;
}

@media screen and (max-width: 750px) {
	.flex-between-area .flex-between-box {
		width: 100%;
	}
	.flex-between-area .flex-between-box + .flex-between-box {
		margin-top: 6.66667vw;
	}
}

.flex-between-area .flex-between-box.text-box {
	width: 520px;
}

@media screen and (max-width: 750px) {
	.flex-between-area .flex-between-box.text-box {
		width: 100%;
	}
}

.flex-between-area .flex-between-box.text-box .head {
	font-size: 22px;
	margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
	.flex-between-area .flex-between-box.text-box .head {
		font-size: 34px;
		font-size: 4.53333vw;
		margin-bottom: 2.66667vw;
	}
}

.flex-between-area .flex-between-box.text-box .tpl-btn-wrap {
	margin-top: 30px;
}

@media screen and (max-width: 750px) {
	.flex-between-area .flex-between-box.text-box .tpl-btn-wrap {
		margin-top: 6.66667vw;
	}
}

@media screen and (min-width: 751px) {
	.flex-between-area .flex-between-box.text-box .tpl-btn-wrap .tpl-btn {
		margin: 0;
	}
}

.flex-between-area .flex-between-box.text-box .gray-box {
	margin-top: 20px;
	background-color: #f5f4f2;
	padding: 20px;
	font-size: 15px;
}

@media screen and (max-width: 750px) {
	.flex-between-area .flex-between-box.text-box .gray-box {
		margin-top: 4vw;
		padding: 5.33333vw;
		font-size: 24px;
		font-size: 3.2vw;
	}
}

.flex-between-area .flex-between-box.text-box .gray-box .gray-box-head {
	font-weight: bold;
	margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
	.flex-between-area .flex-between-box.text-box .gray-box .gray-box-head {
		margin-bottom: 2.66667vw;
	}
}

.flex-between-area .flex-between-box.text-box .gray-box dl {
	display: table;
	margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
	.flex-between-area .flex-between-box.text-box .gray-box dl {
		margin-bottom: 2.66667vw;
	}
}

.flex-between-area .flex-between-box.text-box .gray-box dl:last-child {
	margin-bottom: 0;
}

.flex-between-area .flex-between-box.text-box .gray-box dl dt {
	display: table-cell;
	width: 2em;
}

.flex-between-area .flex-between-box.text-box .gray-box dl dd {
	display: table-cell;
}

.flex-between-area .flex-between-box.image-box {
	width: 480px;
}

@media screen and (max-width: 750px) {
	.flex-between-area .flex-between-box.image-box {
		width: 100%;
	}
}

.tpl-box-800 {
	width: 800px;
	margin: 0 auto;
}

@media screen and (max-width: 750px) {
	.tpl-box-800 {
		width: 100%;
	}
}

.tpl-movie-item {
	position: relative;
	width: 100%;
}

.tpl-movie-item .movie-modal-btn {
	display: block;
	margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
	.tpl-movie-item .movie-modal-btn {
		margin-bottom: 2.66667vw;
	}
}

.tpl-movie-item .movie-title {
	width: 100%;
	text-align: center;
	font-size: 15px;
	color: #333;
	font-weight: bold;
}

@media screen and (max-width: 750px) {
	.tpl-movie-item .movie-title {
		font-size: 24px;
		font-size: 3.2vw;
	}
}

.tpl-movie-item .movie-caption {
	width: 100%;
	text-align: center;
	font-size: 14px;
	color: #333;
	margin-top: 20px;
}

@media screen and (max-width: 750px) {
	.tpl-movie-item .movie-caption {
		margin-top: 2.66667vw;
		font-size: 22px;
		font-size: 2.93333vw;
	}
}

.tpl-white-box-lead {
	font-size: 18px;
	line-height: 1.8em;
	color: #333;
	text-align: center;
	margin-bottom: 60px;
}

@media screen and (max-width: 750px) {
	.tpl-white-box-lead {
		font-size: 24px;
		font-size: 3.2vw;
		margin-bottom: 8vw;
	}
}

/* scroll animation
----------------------------------------*/
.animation-fade {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animation-fade.active {
	opacity: 1;
	transform: translateY(0);
}

/* hover
----------------------------------------*/
.hover-fade {
	transition: opacity 0.3s ease-out;
}

.is-pc .hover-fade:hover {
	opacity: 0.7;
}

@media screen and (max-width: 750px) {
	.hover-fade.sp-hover {
		opacity: 0.7;
	}
}

.sp-hover-fade {
	transition: opacity 0.3s ease-out;
}

@media screen and (max-width: 750px) {
	.sp-hover-fade.sp-hover {
		opacity: 0.7;
	}
}

/* sec-renewal
----------------------------------------*/
.sec-renewal {
	padding-top: 86px;
	margin-top: -86px;
}

@media screen and (max-width: 750px) {
	.sec-renewal {
		padding-top: 30px;
		margin-top: -30px;
	}
}

.sec-renewal .sec-renewal-inner {
	padding: 100px 0 100px;
	background-color: #2c2c2c;
}

@media screen and (max-width: 750px) {
	.sec-renewal .sec-renewal-inner {
		padding: 10.66667vw 0 12vw;
	}
}

.sec-renewal .sec-renewal-head {
	text-align: center;
	margin-bottom: 60px;
}

@media screen and (max-width: 750px) {
	.sec-renewal .sec-renewal-head {
		width: 63.73333vw;
		margin: 0 auto 8vw;
	}
	.sec-renewal .sec-renewal-head img {
		width: 100%;
	}
}

.sec-renewal .renewal-point-list {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}

@media screen and (max-width: 750px) {
	.sec-renewal .renewal-point-list {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 0 10vw 0;
	}
}

.sec-renewal .renewal-point {
	width: 380px;
}

@media screen and (max-width: 750px) {
	.sec-renewal .renewal-point {
		width: 100%;
	}
}

.sec-renewal .renewal-point + .renewal-point {
	margin-left: 30px;
}

@media screen and (max-width: 750px) {
	.sec-renewal .renewal-point + .renewal-point {
		margin-left: auto;
		margin-top: 8vw;
	}
}

.sec-renewal .renewal-point .renewal-point-img {
	margin-bottom: 30px;
}

.sec-renewal .renewal-point .renewal-point-img img {
	width: 100%;
}

@media screen and (max-width: 750px) {
	.sec-renewal .renewal-point .renewal-point-img {
		margin-bottom: 5.33333vw;
	}
}

.sec-renewal .renewal-point p.indent {
	padding-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 750px) {
	.sec-renewal .renewal-point p {
		font-size: 24px;
		font-size: 3.2vw;
	}
}

/*# sourceMappingURL=common.css.map */
