@charset "UTF-8";

/*---------------------------------------------------------*/
/*---------------------------------------------------------*/

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
img,legend{border:0}legend,td,th{padding:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}table{border-collapse:collapse;border-spacing:0}

/*---------------------------------------------------------*/
/*---------------------------------------------------------*/

:root {
	--base-gray: #19191B;
	--base-gray-bk: #303031;
	--base-gray-line: #474749;
	--base-gold: #A88B2F;
	--base-gold-font: #c1a13c;
	--base-orange: #EC691A;
	--base-gray-font: #959595;
	--base-transition: .5s;
	--base-letterspacing: 0.08em;
}

/*---------------------------------------------------------*/
/*---------------------------------------------------------*/

body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: 'Noto Serif JP', "游明朝体" , "ゆう明朝" ,ゆう明朝, "ヒラギノ明朝 Pro " , "ヒラギノ明朝 Pro" , "MS P明朝" , "MS PMincho " , serif;
	color: #fff;
	background-color: var(--base-gray);
	min-height: 100vh;
	position: relative;
	letter-spacing: 0.08em;
}
*,
*::before,
*::after {box-sizing: border-box;}

h1,h2,h3,h4,h5,h6,p {margin:0;padding:0;}

p,pre,blockquote,ul,ol,dl,dt,dd,hr,form,input {
	margin:0;
	padding:0;
}

img,figure {
	display: block;
	margin:0;
	padding:0;
	border:0;
}

table {
	margin:0;
	padding:0;
	border:0;
	border-collapse:collapse;
	border-spacing:0;
	empty-cells:show;
	table-layout: fixed;
}

strong {font-weight: bold;}
li {list-style:none;}

address {font-style:normal;}

img {
	margin:0;
	padding:0;
	border:none;
	vertical-align:bottom;
}

main a:link,
main a:visited {
	color: var(--base-gold-font);
	transition: var(--base-transition);
}
main a:hover {
	background-color: var(--base-gold-font);
	text-decoration: none;
	color: #fff;
}

/*---------------------------------------------------------*/

@media screen and (min-width: 1px) and (max-width: 768px) {

	a {-webkit-tap-highlight-color:transparent;}

}

@media screen and (max-width: 768px) {
	body {
		letter-spacing: 0;
	}
}

.inline-block {
	display: inline-block;
}

.caption {
	font-size: 12px;
	line-height: 1.2;
	color: var(--base-gray-font);
}

/*---------------------------------------------------------*/
/*---------------------------------------------------------*/

header {
	position: fixed;
	top: 0;
	left: 0;
	/* width: 100vw; */
	width: 100%;
	z-index: 9980;
	transition: background-color var(--base-transition);
}
header h1 img {
	width: 260px;
	height: auto;
}
header nav {
	font-weight: bold;
	line-height: 1.2;
}
header nav a {
	color: #fff;
	text-decoration: none;
}
.header-hasBK header {
	background-color: rgba(0, 0, 0, .7);
}

@media screen and (min-width: 1450px) {
	header {
		display: flex;
		align-items: center;
		height: 100px;
		/* padding: 0 25px 0 40px; */
		padding: 0 40px 0 40px;
	}
	header nav {
		margin-left: auto;
		font-size: 18px;
	}
	header ul {
		display: flex;
		align-items: center;
	}
	header nav a {
		position: relative;
		display: flex;
		align-items: center;
		height: 40px;
		/* padding: 0 20px; */
		/* font-size: 18px; */
		/* 2024/08/23 */
		padding: 0 10px;
		font-size: 16px;
		line-height: 1;
	}
	header nav li:not(.gold):not(.lang) a:after {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		content: '';
		width: 0;
		height: 1px;
		background-color: #fff;
		transition: var(--base-transition);
	}
	header nav li:not(.gold):not(.lang) a:hover:after {
		width: 100%;
	}
	header nav .gold {
		/* margin-left: 20px; */
		/* 2024/08/23 */
		margin-left: 10px;
	}
	header nav .gold a {
		border-radius: 10px;
		background-color: var(--base-gold);
		transition: var(--base-transition);
	}
	header nav .gold a:hover {
		color: #000;
		background-color: #fff;
	}
	/* 2024/09/18 */
    header nav .tel {
        padding-left: 20px;
    }
    /* 2024/09/18 */
}
@media screen and (max-width: 1449px) {
	header h1 {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 60px;
	}
	header h1 img {
		width: calc( 100vw - 220px );
		max-width: 240px;
		height: auto;
	}
	header nav {
		position: absolute;
		top: 60px;
		right: -100%;
		width: 100%;
		max-height: calc( 100vh - 60px );
		/* overflow-y: scroll; */
		transition: right var(--base-transition);
	}
	header ul {
		display: flex;/* 2024/09/18 */
        flex-wrap: wrap;/* 2024/09/18 */
		background-color: #101010;
	}
	/* 2024/09/18 */
    header li {
        width: 100%;
    }
    header li:nth-child(2n):not(.gold):not(.iconset):not(.tel):not(.lang):not(.odd) {
        border-left: 1px solid #2e2e31;
    }
    header li:not(.gold):not(.iconset):not(.tel):not(.lang):not(.odd) {
        width: 50%;
    }
    /* 2024/09/18 */
	header a {
		display: block;
		padding: 20px;
		text-align: center;
		border-top: 1px solid #2e2e31;
		transition: background-color var(--base-transition);
	}
	header li:not(.iconset):not(.tel) a:hover {
		background-color: #2e2e31;
	}
	header .gold a {
		background-color: var(--base-gold);
	}
	#sp-trigger {
		display: block;
		position:absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto;
		width: 50px;
		height: 50px;
		cursor: pointer;
		transition: var(--base-transition);
	}
	#sp-trigger::before, #sp-trigger::after, #sp-trigger span {
		position: absolute;
		display: block;
		left: 13px;
		content: "";
		width: 24px;
		height: 2px;
		background: #fff;
	}
	#sp-trigger::before {
		top: 17px;
	}
	#sp-trigger span {
		top: 31px;
	}
	#sp-trigger::after {
		top: 24px;
	}
	#sp-trigger::before, #sp-trigger::after, #sp-trigger span {
		-webkit-transition-duration: 0.3s;
		-webkit-transition-property: transform, top, bottom, left, opacity;
		-webkit-transition-timing-function: ease;

		transition-duration: 0.3s;
		transition-property: transform, top, bottom, left, opacity;
		transition-timing-function: ease;
	}
	.sb-active #sp-trigger::before, .sb-active #sp-trigger::after {
		top: 25px;
	}
	.sb-active #sp-trigger span {
		opacity: 0;
	}
	.sb-active #sp-trigger::before {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.sb-active #sp-trigger::after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.sb-active header nav {
		right: 0;
	}
}

/* 2024/06/24 */
header nav .iconset img {
    display: block;
    width: 36px;
    height: auto;
}
header nav .iconset {
    display: flex;
    justify-content: center;
	margin-left: 10px;
}
header nav .iconset a {
    width: 36px;
	/* 2024/08/23 */
	border: none;
}
header nav .iconset a::after,
header nav .tel a::after {
    display: none;
}
header nav .iconset a + a {
    margin-left: 10px;
}
@media screen and (max-width: 1449px) {
    header nav .iconset a {
        padding: 20px 0;
    }
    header nav .iconset a:hover {
        background-color: #101010;
    }
    header nav .iconset a + a {
        margin-left: 20px;
    }
	/* 2024/09/18 */
	header nav .tel img {
		margin: 0 auto;
	}
	/* 2024/09/18 */
}
/*  */

/*---------------------------------------------------------*/
/*---------------------------------------------------------*/

#fv {
	position: relative;
	background-color: #000;
}
#fv h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
#fv img {
	width: 100%;
	object-fit: cover;
	filter: opacity(.7);
}
@media screen and (min-width: 1280px) {
	#fv {
		height: 340px;
	}
	#fv h2 {
		height: calc( 100% - 100px );
		font-size: 32px;
	}
	#fv img {
		height: 340px;
	}
}
@media screen and (max-width: 1279px) {
	#fv {
		height: 340px;
	}
	#fv h2 {
		height: calc( 100% - 60px );
		font-size: calc(18px + 14 * (100vw - 300px) / 1250);
	}
	#fv img {
		height: 340px;
	}
}
@media screen and (max-width: 1024px) {
	#fv {
		height: 300px;
	}
	#fv img {
		height: 300px;
	}
}
@media screen and (max-width: 768px) {
	#fv {
		height: 200px;
	}
	#fv img {
		height: 200px;
	}
}

/*---------------------------------------------------------*/
/*---------------------------------------------------------*/

main {
	line-height: 1.6;
}
main section {
	position: relative;
	padding: 120px 0;
}
.contact-rewrite main section,
.contact-confirm main section,
.contact-thanks main section {
	padding-top: 160px;
}
main section.section-bk {
	background-color: var(--base-gray-bk);
}
main .section-inner {
	width: calc( 100vw - 20% );
	min-width: 280px;
	max-width: 1040px;
	margin: auto;
}

/*---------------------------------------------------------*/
/*---------------------------------------------------------*/

section .title {
	margin-bottom: 80px;
	text-align: center;
}
section .title h2 {
	position: relative;
	margin-bottom: .8em;
	padding-bottom: .8em;
	font-size: 36px;
	color: var(--base-gold-font);
	line-height: 1.0;
}
section .title h2::before {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	content: '';
	width: 20px;
	height: 1px;
	background-color: #fff;
	transform: rotate(-45deg);
}
section .title h2::after {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	content: '';
	width: 60px;
	height: 1px;
	background-color: #fff;
}
section .title > div {
	line-height: 1;
	letter-spacing: .1em;
	color: #fff;
}

@media screen and (max-width: 1279px) {
	section .title h2 {
		font-size: calc(20px + 16 * (100vw - 300px) / 1250);
	}
	section .title > div {
		font-size: calc(10px + 6 * (100vw - 300px) / 1250);
	}
}
@media screen and (max-width: 768px) {
	section .title {
		margin-bottom: 40px;
	}
	section .title h2::after {
		width: 40px;
	}
}

@media screen and (max-width: 1024px) {
	main section {
		padding: 100px 0;
	}
	.contact-rewrite main section,
	.contact-confirm main section,
	.contact-thanks main section {
		padding: 140px 0 40px 0;
	}
}
@media screen and (max-width: 768px) {
	main section {
		padding: 60px 0 40px 0;
	}
	.contact-rewrite main section,
	.contact-confirm main section,
	.contact-thanks main section {
		padding: 100px 0 40px 0;
	}
	.document main section {
		padding: 40px 0;
	}
}

/*---------------------------------------------------------*/
/*---------------------------------------------------------*/

.catchbox {
	position: relative;
	width: 100%;
	max-width: 760px;
	margin: 80px auto;
	border: 1px solid var(--base-gold);
	background-color: rgba(168, 139, 47, .2);
}
.catchbox-first {
	margin-top: 0;
}
section .catchbox:last-child {
	margin-bottom: 0;
}
.catchbox::before,
.catchbox::after,
.catchbox > div::before,
.catchbox > div::after {
	position: absolute;
	width: 50px;
	height: 50px;
	content: '';
	background-color: var(--base-gray);
	transform: rotate(45deg);
}
.section-bk .catchbox::before,
.section-bk .catchbox::after,
.section-bk .catchbox > div::before,
.section-bk .catchbox > div::after {
	background-color: var(--base-gray-bk);
}
.catchbox::before {
	top: -26px;
	left: -26px;
	border-right: 1px solid var(--base-gold);
}
.catchbox::after {
	top: -26px;
	right: -26px;
	border-bottom: 1px solid var(--base-gold);
}
.catchbox > div {
	position: relative;
	width: 100%;
}
.catchbox > div::before {
	bottom: -26px;
	right: -26px;
	border-left: 1px solid var(--base-gold);
}
.catchbox > div::after {
	bottom: -26px;
	left: -26px;
	border-top: 1px solid var(--base-gold);
	transform: rotate(45deg);
}
.catchbox p {
	position: relative;
	padding: 2em;
	font-weight: bold;
	font-size: 24px;
	line-height: 1.8;
	text-align: center;
	z-index: 1;
}
.catchbox p::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: '';
	width: calc( 100% - 9px );
	height: calc( 100% - 9px );
	border: 1px solid var(--base-gold);
	z-index: -1;
}
.catchbox p em,
.catchbox p strong {
	font-style: normal;
	color: var(--base-gold-font);
}
.catchbox p strong {
	font-size: 120%;
}

@media screen and (max-width: 1279px) {
	.catchbox p {
		font-size: calc(14px + 8 * (100vw - 300px) / 1250);
	}
}
@media screen and (max-width: 768px) {
	.catchbox {
		margin: 40px auto;
	}
	.catchbox::before,
	.catchbox::after,
	.catchbox > div::before,
	.catchbox > div::after {
		width: 30px;
		height: 30px;
	}
	.catchbox::before {
		top: -16px;
		left: -16px;
		border-right: 1px solid var(--base-gold);
	}
	.catchbox::after {
		top: -16px;
		right: -16px;
		border-bottom: 1px solid var(--base-gold);
	}
	.catchbox > div::before {
		bottom: -16px;
		right: -16px;
		border-left: 1px solid var(--base-gold);
	}
	.catchbox > div::after {
		bottom: -16px;
		left: -16px;
	}
}

/*---------------------------------------------------------*/
/*---------------------------------------------------------*/

.end-catch {
	margin-top: 80px;
	text-align: center;
	line-height: 2.0;
}
@media screen and (max-width: 768px) {
	.end-catch {
		margin-top: 40px;
	}
}

/*---------------------------------------------------------*/
/*---------------------------------------------------------*/

footer {
	position: sticky;
	top: 100vh;
	padding: 1px 40px 40px 40px;
	background-color: #101010;
	font-size: 14px;
	text-align: center;
}
#footer-inner {
	line-height: 1.2;
}
footer img {
	width: auto;
	height: 140px;
	margin: 80px auto;
}
footer li a {
	color: #fff;
	text-decoration: none;
	transition: var(--base-transition);
}
footer li a:hover {
	color: var(--base-gold-font)
}
@media screen and (min-width: 1025px) {
	#footer-inner {
		display: flex;
		align-items: center;
	}
	footer ul {
		display: flex;
		align-items: center;
	}
	footer li {
		padding-right: 20px;
	}
	footer address {
		margin-left: auto;
		font-size: 12px;
	}
}
@media screen and (max-width: 1024px) {
	footer {
		font-size: 12px;
	}
	footer img {
		width: auto;
		height: 100px;
		margin: 40px auto 40px auto;
	}
	footer li {
		padding: 0 0 15px 0;
	}
	footer address {
		margin-top: 10px;
		font-size: 10px;
	}
}

/*---------------------------------------------------------*/

/*---------------------------------------------------------*/

.revbtn-catch {
	font-size: 24px;
	line-height: 1.8;
}
.revbtn-innder {
	display: flex;
	justify-content: center;
	margin-left: -30px;
}
.revbtn-innder a {
	margin-left: 30px;
}

@media screen and (max-width: 1279px) {
	.revbtn-catch {
		font-size: calc(16px + 8 * (100vw - 300px) / 980);
		letter-spacing: var(--base-letterspacing);
	}
}
.detailbtn {
	margin: 80px auto 0 auto;
}

.revbtn-wrapper a:link,
.revbtn-wrapper a:visited,
.detailbtn:link,
.detailbtn:visited {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 340px;
	height: 70px;
	font-weight: bold;
	font-size: 20px;
	line-height: 1.2;
	color: #fff;
	text-decoration: none;
	border: 2px solid #fff;
	background-color: #000;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .8);
	transition: color var(--base-transition), background-color var(--base-transition), border-color var(--base-transition);
}
.revbtn-wrapper a svg,
.detailbtn svg {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 24px;
	margin: auto;
	fill: #fff;
	transition: right var(--base-transition);
}
.revbtn-wrapper a:hover,
.detailbtn:hover {
	color: var(--base-gold);
	background-color: #f1f1f1;
}
.revbtn-wrapper a:hover svg,
.detailbtn:hover svg {
	right: 14px;
	fill: var(--base-gold);
}
.revbtn-caption {
	font-size: 12px;
}
.revbtn-wrapper {
	background: rgb(168,139,47);
	background: -moz-linear-gradient(90deg, rgba(168,139,47,.7) 0%, rgba(231,198,91,.7) 100%);
	background: -webkit-linear-gradient(90deg, rgba(168,139,47,.7) 0%, rgba(231,198,91,.7) 100%);
	background: linear-gradient(90deg, rgba(168,139,47,.7) 0%, rgba(231,198,91,.7) 100%);
}
.revbtn-wrapper div {
	padding: 40px 20px;
}
.revbtn-catch {
	text-align: center;
}
.revbtn-caption {
	text-align: center;
}

@media screen and (max-width: 768px) {
	.revbtn-wrapper div {
		padding: 30px 10px;
	}
	.revbtn-wrapper a:link,
	.revbtn-wrapper a:visited {
		font-size: 18px;
	}
	.revbtn-innder {
		flex-direction: column;
		margin:0;
	}
	.revbtn-innder a {
		margin: 0 auto;
	}
	.revbtn-innder a:not(:nth-child(1)) {
		margin-top: 20px;
	}
	.detailbtn:link,
	.detailbtn:visited {
		height: 60px;
		margin: 40px auto 0 auto;
		font-size: 16px;
	}
}

/*---------------------------------------------------------*/
/* CTV btn green shiny*/
/*---------------------------------------------------------*/

@keyframes shiny {
    0% { left: -20%; }
    10% { left: 120%; }
    100% { left: 120%; }
}

.shiny-btn {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}
.revbtn-wrapper a.shiny-btn:link,
.revbtn-wrapper a.shiny-btn:visited {
    background-color: #169a19;
}
.revbtn-wrapper a.shiny-btn:hover {
    background-color: #fff;
}

.shiny-btn::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -20%;
    width: 100px;
    height: 100%;
    transform: scale(1.5) rotate(45deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
    
    animation-name: shiny;
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/*---------------------------------------------------------*/
/* .studios */
/*---------------------------------------------------------*/

.studios .slicker img {
	width: 100%;
	height: auto;
}

.studios .slick-slide {
	outline: none;
}

.studios .sliker .thumbnail {
	display: flex;
}
.studios .thumbnail div {
	background-color: #000;
}
.studios .thumbnail img {
	opacity: .4;
	transition: opacity .3s linear;
}
.studios .thumbnail img:hover,
.studios .thumbnail .slick-current img {
	opacity: 1;
	cursor: pointer;
}

.studios .slick-prev {
	left: -1.8%;
	z-index: 100;
}
.studios .slick-next {
	right: -1.8%;
	z-index: 101;
}

.studios section h3 {
	margin: 60px 0;
	font-size: 24px;
}

.studios dl {
	display: flex;
	align-items: center;
	margin: 30px 0;
}
.studios dt {
	position: relative;
	width: 8em;
	color: var(--base-gray-font);
	line-height: 1.2;
}
.studios dt::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	content: '';
	margin: auto;
	width: 100%;
	height: 1px;
	background-color: var(--base-gray-line);
	z-index: -1;
}
.studios dt span {
	position: relative;
	display: inline-block;
	padding-right: 10px;
	background-color: var(--base-gray);
	z-index: 1;
}
.studios dd {
	margin-left: 10px;
	font-size: 18px;
	line-height: 1.6;
}

.studios .studio-facility {
	margin: 40px 0;
}
.studios .studio-facility ul {
	display: flex;
	flex-wrap: wrap;
	margin: -5px 0 0 -5px;
}
.studios .studio-facility li {
	margin: 5px 0 0 5px;
	padding: 0.6em 1.2em;
	font-size: 18px;
	line-height: 1;
	background-color: var(--base-gold);
}
.studios .studio-facility .small {
	font-size: 60%;
}
.studios .studio-facility .caption {
	margin-top: 10px;
	line-height: 1.4;
	color: #fff;
}

.studios .studio-map {
	margin: 60px 0;
}

.studios .studio-nav {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	grid-template-rows: auto auto;
	grid-gap: 10px;
	margin-top: 100px;
}
.studios .studio-nav a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: .8em 1em;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.2;
	border: 1px solid #fff;
}
.studios .studio-nav a:link,
.studios .studio-nav a:visited {
	color: #fff;
	text-decoration: none;
}
.studios .studio-nav a.current,
.studios .studio-nav a:hover {
	color: var(--base-gray);
	background-color: #fff;
}

@media screen and (max-width: 1279px) {
	.studios section h3 {
		font-size: calc(18px + 7 * (100vw - 300px) / 1250);
	}
	.studios dt {
		font-size: calc(12px + 4 * (100vw - 300px) / 1250);
	}
	.studios dd {
		font-size: calc(16px + 2 * (100vw - 300px) / 1250);
	}
	.studios .studio-facility li {
		font-size: calc(14px + 4 * (100vw - 300px) / 1250);
	}
	.studios .studio-nav a {
		font-size: calc(16px + 2 * (100vw - 300px) / 1250);
	}
}

@media screen and (max-width: 768px) {
	.studios section h3 {
		margin: 30px 0;
	}
	.studios dl {
		display: block;
		margin: 20px 0;
	}
	.studios dt {
		width: 100%;
	}
	.studios dd {
		margin: 20px 0 0 0;
	}
	.studios .studio-facility {
		margin: 25px 0;
	}
	.studios .studio-map {
		margin: 30px 0;
	}
	.studios .studio-map iframe {
		height: 240px;
	}
	.studios .studio-nav {
		margin-top: 40px;
	}
}

/*---------------------------------------------------------*/
/* .plans */
/*---------------------------------------------------------*/

.plans-wrapper {
	padding: 3px;
	border: 1px solid var(--base-gold);
	border-image: linear-gradient(to right, #A88B2F 0%, #e7c65b 100%);
	border-image-slice: 1;
}

.plans-wrapper--inner {
	width: 100%;
	border: 4px solid var(--base-gold);
	border-image: linear-gradient(to right, #A88B2F 0%, #e7c65b 100%);
	border-image-slice: 1;
}
.plans-wrapper dl {
	display: grid;
}
.plans-wrapper dl > * {
	display: flex;
	flex-direction: column;
	padding: 1.2em 1em;
	line-height: 1.4;
}
.plans--difference {
	background-color: #27241b;
}

.plans-wrapper .strike {
	display: block;
	font-size: 80%;
	color: var(--base-gray-font);
	text-decoration: line-through;
}

/*---------------------------------------------------------*/

.plans-pc dl {
	grid-template-columns: 150px 1fr 1fr 1fr;
}
.plans-pc dl:not(:nth-child(1)) > * {
	border-top: 1px solid #4f431b;
}
.plans-pc dl > *:nth-child(1) {
	justify-content: center;
}
.plans-pc dl > *:nth-child(2),
.plans-pc dl > *:nth-child(3),
.plans-pc dl > *:nth-child(4) {
	justify-content: center;
	align-items: center;
	/* text-align: center; */
	border-left: 1px solid #4f431b;
}
.plans-pc dl:nth-child(1) > * {
	padding: 1.4em 1em;
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
}

/*---------------------------------------------------------*/

.plans-sp {
	display: none;
	margin: 20px 0;
}
.plans-sp h3 {
	padding: 1.2em 1em;
	font-weight: bold;
	font-size: 20px;
	line-height: 1;
	text-align: center;
}
.plans-sp dl {
	grid-template-columns: 110px 1fr;
}
.plans-sp dl > * {
	justify-content: center;
	padding: 1em;
	font-size: 14px;
	border-top: 1px solid #4f431b;
}
.plans-sp dl dt {
	font-size: 10px;
	color: var(--base-gray-font);
	text-align: left;
}

.plans-wrapper + .caption {
	margin-top: 20px;
	text-align: center;
}

@media screen and (max-width: 1024px) {
	.plans-pc {
		display: none;
	}
	.plans-sp {
		display: block;
	}
}

.plans .before-revbtn {
	margin-top: 80px;
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}
@media screen and (max-width: 1279px) {
	.plans .before-revbtn {
		font-size: calc(14px + 8 * (100vw - 300px) / 1250);
	}
}
@media screen and (max-width: 768px) {
	.plans .before-revbtn {
		margin-top: 40px;
	}
}

/*---------------------------------------------------------*/

/*---------------------------------------------------------*/

.document .section-inner *:not(h3):not(h4) {
	font-size: 14px;
}
.document .doc-main {
	counter-reset: doc-main-number 0;
}
.document .doc,
.document .doc-main-number {
	margin-top: 40px;
	line-height: 2em;
	overflow: hidden;
}
.document .section-inner .doc:nth-child(1),
.document .section-inner .doc-main-number:nth-child(1) {
	margin-top: 0;
}

.document h3,
.document h4 {
	position: relative;
	line-height: 1.4;
}
.document h3 span {
	display: inline-block;
	padding-right: .5em;
	background-color: transparent;
}
.document .section-inner h3 span {
	font-size: 16px;
}
.document h3:after {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #fff;
	opacity: .4;
}

.document .doc-main-number {
	padding-left: 2.2em;
}
.document .doc-main-number h3:before {
	position: absolute;
	top: 0;
	left: -1.8em;
	content: counter(doc-main-number) '.';
	counter-increment: doc-main-number;
}
.document .doc > *:not(h3),
.document .doc-main-number > *:not(h3) {
	margin: 20px 0;
}

.document .doc-sub {
	counter-reset: doc-sub-numbers 0;
}
.document .doc-sub-number {
	position: relative;
	margin-top: 20px;
	padding-left: 2.8em;
}
.document .doc-sub-number:before {
	position: absolute;
	top: 0;
	left: -1.6em;
	content: counter(doc-sub-numbers) ' ）';
	counter-increment: doc-sub-numbers;
}
.document .doc-sub-number:before {
	left: .25em;
}

.doc-subdot {
	counter-reset: doc-sub-numbers2 0;
}
.document .doc-sub-numberdot {
	position: relative;
	margin-top: 20px;
	padding-left: 2.2em;
}
.document .doc-sub-numberdot:before {
	position: absolute;
	top: 0;
	left: .2em;
	content: counter(doc-sub-numbers2) '.';
	counter-increment: doc-sub-numbers2;
}

.document .list-disc li {
	position: relative;
	margin-top: .8em;
	padding-left: 1.0em;
}
.document .list-disc li:after {
	position: absolute;
	top: 0;
	left: 0em;
	content: '・';
}

.document table {
	width: 100%;
	line-height: 1.4;
	border-top: 1px dotted rgba(255, 255, 255, .5);
}
.document th {
	width: 25%;
	padding: 1em 2em 1em 0;
	font-weight: normal;
	text-align: left;
	border-bottom: 1px dotted rgba(255, 255, 255, .5);
	white-space: nowrap;
}
.document td {
	width: *;
	padding: 1em 0 1em 1em;
	border-bottom: 1px dotted rgba(255, 255, 255, .5);
}
@media screen and (max-width: 728px) {
	.document *,
	.document h3,
	.document h4,
	.document .section-inner h3 span {
		font-size: 14px;
	}
	.document .section-inner *:not(h3):not(h4) th {
		display: block;
		width: 100%;
		padding: 15px 0 .6em 0;
		font-size: 10px;
		border: none;
	}
	.document td {
		display: block;
		width: 100%;
		padding: 0 0 15px 0;
	}
}

/*---------------------------------------------------------*/

/*---------------------------------------------------------*/