@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100..900&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');
/*設定する場合→ font-family:"M PLUS Rounded 1c", sans-serif; を追加*/
/*同時に他のWEBフォントを使う場合はhtml側に記載すること*/

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: inherit;
}

body {
	font-size: clamp(14px, calc(100vw/23.4375), 20px);
	background: url('./../img/index/pattern.png')repeat, var(--light-red);
	color: var(--black);
	font-family: "M PLUS Rounded 1c", sans-serif;
}

#wrapper {
	min-width: 320px;
	max-width: 600px;
}

img {
	vertical-align: bottom;
	width: 100%;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
input[type=button],
button {
	-webkit-appearance: none;
	border: 1px solid #999999;
}

button {
	background: unset;
	border: unset;
}

.for-pc {
	display: none !important;
}

.sp-br {
	display: block;
}

/*共通
----------------------------------------------------------------------------------------------------*/
:root {
	--black: #5E5E5E;
	--white: #FFFFFF;
	--red: #FF62A1;
	--light-red: #FFF0EA;
	--pink: #FF52CB;
	--light-pink: #FFBDDF;
	--gray: #C5C5C5;
	--purple: #D5C4FF;
	--green: #0FCE2C;
	--yellow: #ECFFBD;
	--blue: #569FFF;
	--light-green: #BDFFDE;

	--gradation: linear-gradient(to bottom, rgba(255, 179, 247, 0) 0%, rgba(166, 83, 255, 1) 100%);
	--gradation-circle: radial-gradient(#FFF0EA, #FFD5F2);
}


.st-box {
	margin: 1em auto;
}

.st {
	text-align: center;
	font-size: 2.4em;
	font-weight: 800;
	color: var(--white);
	-webkit-text-stroke: 3px var(--black);
	text-stroke: 3px var(--black);
	paint-order: stroke;
}

.st-sub {
	text-align: center;
	font-size: 1.125em;
}


/*ヘッダー
----------------------------------------------------------------------------------------------------*/
header {
	width: 98%;
	max-width: calc(1200px - 2em);
	margin: auto;
	background: var(--white);
	border: 2px solid var(--black);
	border-top: none;
	border-radius: 0 0 .5em .5em;
	box-shadow: 0 4px 0 #5e5e5e24;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 99;
}

.header__inner {
	padding: 1em;
}

.header__logo {
	width: 12em;
	max-width: fit-content;
}

.header__menu {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	transition: opacity .3s ease, visibility .3s linear;
	top: 15%;
	left: 0;
	right: 0;
	margin: auto;
	padding: 1em;
	width: 80%;
	text-align: center;
	border-radius: .5em;
	box-shadow: .5em .5em 0 var(--yellow);
	background: var(--white);
	border: 2px solid var(--black)
}

.header__menu.is-active {
	opacity: 1;
	visibility: visible;
}

.header__menu-item {}

.menu {}

.menu img {
	width: 2em;
}

/*メインコンテンツ
----------------------------------------------------------------------------------------------------*/
#main {}

.content {
	min-width: 320px;
	max-width: 600px;
	margin: 0 auto;
	overflow: hidden;
	padding: 1em;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.section {}

.hero {
	background: url('./../img/index/pattern.png')repeat, var(--gradation-circle);
	height: calc(100vw * 5/4);
	position: relative;
}

.hero .content {
	position: relative;
	height: 100%;
}

.hero__logo {
	position: absolute;
	bottom: 5%;
	left: 0;
	right: 0;
	z-index: 2;
	width: 80%;
	margin: auto;
}

.hero__logo img {
	width: 100%;
}

.hero__main {
	position: absolute;
	top: 52%;
	right: 0;
	left: -12%;
	margin: auto;
	z-index: 1;
	width: 120%;
	transform: translateY(-50%);
}

.hero__main img {
	width: 100%;
}

.hero__deco1 {
	position: absolute;
	left: 0;
	right: 0;
	top: 15%;
}

.hero__deco1 img {
	width: 100%;
}

.hero__deco2 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10%;
	z-index: 3;
	margin: auto 0;
}

.hero__deco2 img {
	width: 100%;
}

.concept {}

.concept .content {
	padding-top: 4em;
}

.concept p {
	line-height: 2;
}

.news {}

.date {}

.cast {}

.cast__item {
	border: 2px solid var(--black);
	border-radius: .5em;
	overflow: hidden;
	position: relative;
}

.cast__img {
	width: 100%;
	height: calc(min(368px, 33vw)*3/2);
}

.cast .cast__img::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: var(--gradation);
	position: absolute;
	top: 0;
	opacity: .4;
}

.cast__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cast__content {
	position: absolute;
	bottom: 0;
	padding: 1em;
	color: var(--white);
	text-shadow: 4px 4px 4px #000000a3;
}

.name {}

.system {}

.access {}

.google-map {
	border-radius: .5em;
	border: 2px solid var(--black);
	box-shadow: .5em .5em 0 var(--yellow);
	overflow: hidden;
}

.gallery {}

.recruit {}


/*フッター
----------------------------------------------------------------------------------------------------*/

footer {
	background: var(--black);
}

.footer__inner {
	padding: 1em;
	max-width: 1200px;
	width: 100%;
	margin: auto;
}

.footer__logo {
	width: 14em;
	max-width: fit-content;
}

.footer__nav {}

.footer__nav dl {}

.footer__nav dt {}

.footer__nav dd {}

.footer__nav a {
	line-height: 1.7;
	color: var(--white);
}

footer {
	padding-bottom: constant(safe-area-inset-bottom);
}

.pagetop {
	position: fixed;
	bottom: 20px;
	/*適宜変更*/
	right: 20px;
	/*適宜変更*/
	z-index: 99;
	/*適宜変更・削除*/

	display: inline-block;
	/*必要があれば適宜変更*/
}

.pagetop img {
	width: 3em;
	/*アイコンを置く場合などは適宜サイズ指定など追加。*/
}