@charset "utf-8";
/* CSS Document */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/*設定する場合→ font-family:'Noto sans japanese', sans-serif; を追加*/
/*同時に他のWEBフォントを使う場合はhtml側に記載すること*/

* {
	box-sizing: border-box;
}

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

body {
	font-size: 14px;
	background: #FF731F;
	font-family: Meiryo, Tahoma, Verdana, Arial, sans-serif;
}

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

img {
	vertical-align: bottom;
}

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

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

.sp-br {
	display: block;
}

/*共通
----------------------------------------------------------------------------------------------------*/

section {
	padding: 0 0 2rem;
}

.st {
	margin: auto;
	margin-bottom: 2rem;
	width: fit-content;
}

.st img {
	display: block;
	width: 100%;
	margin: auto;
}

.banner {
	display: block;
	margin: 2rem auto;
}

.banner__figure {}

.banner__img {
	width: 100%;
}

/*  */

.button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 600px;
	margin: .5rem auto 0;
	/*  */
	min-height: 2.5rem;
	padding: .5rem;
	border-radius: 8px;
	/*  */
	font-size: 1.125rem;
	font-weight: 600;
}

.button--secondary {
	background: var(--secondary, #242323);
	color: #fff;
}

.button--success {
	background: var(--success, #2ecc71);
	color: #fff;
}

.button--danger {
	background: var(--danger, #e74c3c);
	color: #fff;
}

.button__item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.button__img {
	width: 1rem;
	height: 1rem;
	object-fit: contain;
}

.button__img--left {}

.button__img--right {}

.text-box {
	margin: 1rem auto;
}

.text {
	text-align: center;
	font-size: 1.125rem;
	font-weight: 600;
	color: #fff;
}

/*  */
.hl_text-small {
	font-size: .875rem;
}

.hl_text-large {
	font-size: 1.125rem;
}

/*ヘッダー
----------------------------------------------------------------------------------------------------*/


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

.content {
	min-width: 320px;
	max-width: 600px;
	margin: 0 auto;
	overflow: hidden;
	padding: 1rem;
}

/*  */

.layout {
	width: 100%;
}

/* グループサイト */
.group__ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	padding: 8px;
	width: 100%;
	margin: auto;
}


.group__ul_even {
	background: none;
}

.group__li {
	flex: 0 1 100%;
	aspect-ratio: 3 / 2;
	border: 8px solid #242323;
	overflow: hidden;
	border-radius: 8px;
}

.group__link {
	display: block;
	width: 100%;
	aspect-ratio: 3/2;
	text-align: center;
}

.group__figure {
	width: 100%;
	height: 100%;
}

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

.group-list-portal {
	padding: 0 !important;
}

.group-list-portal img {
	height: 100% !important;
}

.group__buttons {
	background: #fff;
	padding: 1rem;
}

.group__li {
	aspect-ratio: unset;
}

.group__caption {
	display: flex;
	flex-wrap: wrap;
	background: #fff;
}

.group__caption {
	font-weight: 600;
	font-size: 1.125rem;
}

.group__name {
	flex: 0 0 100%;
	padding: .25rem .5rem;
}

.group__capt-item {
	flex: 0 0 50%;
	padding: .25rem .5rem;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .5rem;
}

.group__rate {}

.group__icon {
	width: 2rem;
	height: 2rem;
	object-fit: contain;
}

.group__hour {}

/* FAQ ---------------------- */

.faq {}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-list__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border: 4px solid #000000;
	border-radius: 8px;
	background: #fff;
	font-weight: 600;
	box-shadow: 4px 4px #000000;
}

.faq-list__Q {
	font-size: 1.5rem;
	color: gray;
}


/*フッター
----------------------------------------------------------------------------------------------------*/
footer {
	padding-bottom: constant(safe-area-inset-bottom);
}

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

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

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

footer {
	background: black;
	padding: 4rem 0;
	min-height: 200px;
}

small {
	text-align: center;
	color: #fff;
	display: block;
}