@charset "utf-8";
/*
 * base css 
 * pc width 1000px fixed
 */

@media (max-width: 599px) {
}

@media (min-width: 600px) and (max-width:959px) {
}

@media (min-width: 960px) {
}

@media (max-width: 480px) {
}

@media (min-width: 481px) and (max-width:768px) {
}

@media (min-width: 769px) and (max-width:959px) {
}

@media (max-width: 767px) {
}

@media (min-width: 768px) {
}

/* ---------------------------------------- common */

a.linkbt {
	display: inline-block;
	color: #fff;
	background: var( --gray-color );
	border: 2px var( --gray-color ) solid;
	line-height: 1.2;
	padding: .5em 2.5em .5em 2em;
	border-radius: 100px;
	position: relative;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
a.linkbt::after {
	font-family: 'icomoon';
	content: "\ea3c";
	color: #fff;
	font-size: 90%;
	position: absolute;
	top: 50%;
	right: .5em;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
a.linkbt:hover {
	color: var( --gray-color );
	background: #fff;
}
a.linkbt:hover::after { color: var( --gray-color ); }

@media (min-width: 768px) {
	#drawer-menu{ display: none; }
}

article .inside .editors a:not(.linkbt) {
	color: var( --base-color );
	text-decoration: underline;
}

/* ---------------------------------------- header */

header { 
	color: #fff;
	background: var( --base-color );
	padding: 1.5em 0; 
}
header .logo a { display: inline-block; }
header h1, header p { font-size: var( --fs-14 ); }
header .logo {
	font-size: var( --fs-26 );
	font-weight: 600;
	line-height: 1.4;
	margin-top:20px;
}

@media (max-width: 767px) {

	header { padding: 2em 0; }
	header .inside { text-align: center; }
	header h1, header p { margin: 0 0 1.5em; }
	header .logo img { width: 100px; }
	
	.select-list2 {
		margin-left: auto;
		margin-right: auto;align-content
	}
}

@media (min-width: 768px) {

	header { padding: 2em 0; }
	header .inside {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction:row-reverse;
	}
	header .logo img { width: 140px; }

}

/* ---------------------------------------- globalnav */

@media (max-width: 767px) {

	#globalnav { display: none; }

}

@media (min-width: 768px) {

	#globalnav {
		/* background: var( --pale-color ); */
		padding: 1.5em 0;
	}
	#globalnav ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		
	}
	#globalnav ul li { 
		border-right: 1px var( --border-color ) solid;
		font-size: var( --fs-16 );
	}
	#globalnav ul li:first-child{ border-left: 1px var( --border-color ) solid; }
	#globalnav ul a {
		display: block;
		padding: 0 1.5em; 
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
	}
	#globalnav ul a:hover { color: var( --base-color ); }

}

/* ---------------------------------------- visual */

#visual { 
	border-bottom: 1em var( --base-color ) solid;
	position: relative; 
}
#visual.home { height: clamp( 400px, 80vh, 640px ); }
#visual.under { height: clamp( 240px, 40vh, 440px ); }
#visual::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba( 0, 0, 0, .5 );
	z-index: 2;
}
#visual .inner p,
#visual .inner h1 {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 3;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: var( --fs-44 );
	font-weight: 600;
	line-height: 1.6;
	padding: 0 1em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#visual .inner h1 { font-size: var( --fs-38 ); }

/* ---------------------------------------- main article */

main > h2 {
	max-width: 1200px;
	padding: 0 clamp( 1.5em, 5vw, 2.5em );
	margin: 2.5em auto 1em;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
main > h2 span {
	display: block;
	border-top: 8px #ccc solid;
	border-bottom: 8px #ccc solid;
	background: var( --pale-color );
	text-align: center;
	line-height: 1.5;
	padding: .5em 0;
}
@media (max-width: 767px) {
	main > h2 { margin: 3em auto 1em }
}

main article { padding: 5em 0; }
@media (max-width: 767px) {
	main article { padding: 3em 0; }
}

main article.home:nth-child( even ) { background: var( --pale-color ); }
main article h2,
main article.single h3 {
	text-align: center;
	border-top: 1px #ccc solid;
	border-bottom: 1px #ccc solid;
	padding: .5em 0;
	margin: 0 0 1.25em;
}
main article.single h3 { font-size: var( --fs-28 ); }
main article .inside + .inside { margin: 3em 0 0; }

/* ---------------------------------------- inquiry */

#inquiry {
	background: var( --border-color );
	text-align: center;
	font-size: var( --fs-16 );
	padding: 4em 0;
}
#inquiry h2 { 
	font-size: var( --fs-56c );
	font-weight: 300;
	margin: 0 0 .5em; 
}
#inquiry ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 3em 0 0;
}
#inquiry ul li { margin: 0 1em; }
#inquiry ul li a { 
	display: block; 
	color: var( --gray-color );
	font-size: var( --fs-38 );
}
#inquiry ul li a:hover { color: #333; }

/* ---------------------------------------- footer */

footer {
	color: #fff;
	background: var( --base-color );
	font-size: var( --fs-16 );
}
footer .logo { 
	text-align: center;
	margin: 0 0 3em; 
}
footer .inside { margin: 0 0 3em; }
footer .inside h3 {
	font-size: var( --fs-22 );
	text-align: center;
	margin: 0 0 1em; 
}
footer .logo {
	font-size: var( --fs-24 );
	font-weight: 600;
	line-height: 1.4;
}

@media (max-width: 767px) {

	footer { padding: 4em 0 2em; }
	footer .logo img { width: 100px; }
	footer .inside ul { border-top: 1px #ccc solid; }
	footer .inside li { border-bottom: 1px #ccc solid; }
	footer .inside li a {
		display: block;
		text-align: center;
		padding: 1.5em 1em;
	}
}

@media (min-width: 768px) {

	footer { padding: 5em 0 2em; }
	footer .logo img { width: 120px; }
	footer .inside ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
	}
	footer .inside li { margin: .5em; }
	footer .inside li a { display: block; }
}

/* ---------------------------------------- cregit */

#cregit { 
	color: #fff;
	/* background: var( --gray-color ); */
	background: #000;
	font-size: var( --fs-14 );
	text-align: center;
	padding: 1em;
}

/* ---------------------------------------- cotentflex */

.cotentflex > figure { text-align: center; }
.cotentflex .linkwrap { margin: 1.5em 0 0; }

@media (max-width: 599px) {

	.cotentflex > figure + div,
	.cotentflex > div + figure { margin: 1.5em 0 0; }
	.cotentflex .linkwrap { text-align: center; }

}

@media (min-width: 600px) {

	.cotentflex.leftside,
	.cotentflex.rightside,
	.cotentflex.lower {
	    display: -webkit-box;
	    display: -ms-flexbox;
	    display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.cotentflex.leftside > figure,
	.cotentflex.rightside > figure { width: 40%; }
	.cotentflex.leftside > div,
	.cotentflex.rightside > div{ width: 55%; }

	.cotentflex.rightside {
		-webkit-flex-direction: row-reverse;
		-ms-flex-direction: row-reverse;
		flex-direction:row-reverse;
	}
	.cotentflex.rightside .linkwrap { text-align: right; }

	.cotentflex.lower {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.cotentflex.upper > figure + div { margin: 1.5em 0 0; }
	.cotentflex.lower > figure + div { margin: 0 0 2em; }

	.cotentflex.upper > figure img,
	.cotentflex.lower > figure img {
		width: 100%;
		max-width: 720px;
	}
	.cotentflex:not(.leftside):not(.rightside) .linkwrap,
	.cotentflex.upper .linkwrap,
	.cotentflex.lower .linkwrap {
		text-align: center;
	}

}

/* ---------------------------------------- movie */

.movie .detail {
	width: 100%;
	max-width: 720px;
	aspect-ratio: 16/9;
	margin: 0 auto;
	position: relative;
}
.movie .detail iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

/* ---------------------------------------- footnav */

@media (max-width: 767px) {

	#footnav {
		position: sticky;
		bottom: 0;
		left: 0;
		background: var( --gray-color );
	}
	#footnav > div { padding: 12px 16px; }
	#footnav ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
	}
	#footnav ul a {
		display: block;
		color: #fff;
		font-size: var( --fs-56c );
	}
	#footnav ul a span {
		display: block;
		min-width: 32px;
	}
}

@media (min-width: 768px) {
	#footnav { display: none; }
}

/* ---------------------------------------- breadcrumbs */

#breadcrumbs { 
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	margin: 3em 0 0; 
}
#breadcrumbs .inner p { font-size: clamp(1.3rem, 1vw + 0.5rem, 1.5rem); }

@media (max-width: 767px) {
	#breadcrumbs { display: none; }
} 

@media (min-width: 768px) {

	#breadcrumbs { padding: 2em 0 1em; }
	#breadcrumbs p span span {
		display: inline-block;
		letter-spacing: normal;
		font-weight: 300;
	}
	#breadcrumbs a {
		-webkit-transition: all 0.5s ease-out;
		transition: all 0.5s ease-out;
	}
	#breadcrumbs a:hover { opacity: .3; }
}
