@charset "utf-8";
/* CSS Document */

/*==========
Googleフォント
==========*/


/*==========
色指定
==========*/
/* @import url("color.css"); */


.wrap {
	margin-top: 56px;
	min-height: calc(100vh - 400px);
}


/*==========
MV
==========*/
.mv {
	background: #000;
	position: relative;
	height: 72vh;
}

.mv video {
	height: 100%;
	object-fit: cover;
}

.mv_layer {
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
	display: flex;
	align-items: center;
}

.mv_layer_item {
	width: 100%;
	text-align: center;
	transform: translateY(-12px);
}

.mv_logo {
	width: 78%;
	filter: drop-shadow(0 0px 3px rgb(255, 255, 255));
}

.mv_catch {
	width: 76%;
	margin-inline: auto;
	margin-top: 12px;
}

.mv_pc {
	display: none;
}

@media (min-width: 768px) {
	.mv_sp {
		display: none;
	}

	.mv_pc {
		display: block;
	}
}

@media (min-width: 768px) {
	.mv {
		height: 60vh;
	}

	.mv_layer_item {}

	.mv_logo {
		max-width: 480px;
	}

	.mv_catch {
		max-width: 460px;
		margin-top: 18px;
	}
}



/*==========
TOP検索
==========*/
.top_search {
	padding: 36px 0;
	background: #ff52b3;
}

.top_search_btn_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	width: 90%;
	margin: 0 auto;
}

.top_search_btn_wrap a {
	display: block;
	width: calc((100% - 12px)/2);
}

@media (min-width: 768px) {
	.top_search_btn_wrap {
		gap: 30px;
	}

	.top_search_btn_wrap a {
		width: 182px;
	}
}


/*==========
スタジオ検索
==========*/
.studio_search {
	padding: 20px 0;
	background: #ff52b3;
}

@media (min-width: 768px) {
	.studio_search .section_title_wrap {
		margin-bottom: 20px;
	}

	.studio_search .container {
		width: 580px;
		margin: 0 auto;
	}
}



/*==========
検索モーダル
==========*/
.studio_search_input_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 90%;
	margin: 0 auto;
}

.studio_search_input_item {
	display: flex;
	align-items: center;
	width: calc((100% - 10px * 1) / 2);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.search_input_icon_place {
	height: 18px;
	fill: #2d2c2c;
	margin-right: 3px;
}

.search_input_icon_calendar {
	height: 18px;
	fill: #2d2c2c;
	margin-right: 6px;
}

.studio_search_input_item span {
	font-size: 1.4rem;
	font-weight: 700;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.category_select {
	font-size: 1.4rem;
	font-weight: 700;
	cursor: pointer;
}

.select_date {
	width: 100%;
}

.studio_search_room_size {
	margin: 18px auto 24px;
}

.studio_search_room_size_title {
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 9px;
}

.studio_search_room_size_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.studio_search_room_size .chechbox_wrap {
	width: calc((100% - 15px * 2) / 3);
}

.studio_search_room_size .chechbox_text {
	font-size: 1.4rem;
	font-weight: 700;
	color: #524e4e;
}

.studio_search_modal_inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100%;
	padding: 0;
}

.studio_search_modal_content {
	position: relative;
	width: 100vw;
	height: 100%;
	min-height: 100vh;
	background-color: #fff;
	padding-bottom: 48px;
}

.studio_search_modal_header {
	border-bottom: solid 1px #ddd;
	margin-bottom: 20px;
}

.studio_search_modal_header .container {
	height: 50px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.studio_search_modal_title {
	font-size: 1.8rem;
	font-weight: 700;
}

.studio_search_modal_item {
	padding: 12px 12px 24px;
}

.studio_search_modal_item_subject {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.studio_search_modal_item input,
.studio_search_modal_item select {
	border: solid 1px #c9cbcb;
	width: 100%;
	font-weight: 700;
	color: #686868;
}

.modal.is-show {
	opacity: 1;
	visibility: visible;
	z-index: 9999;
}

.no_scroll {
	overflow: hidden;
}

.modal_fix_button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90%;
	height: 60px;
	background: #14b9f9;
	border-radius: 3px;
	margin: 30px auto 0;
}

.modal_fix_button span {
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFF;
}

.studio_search_button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90%;
	height: 60px;
	background: #14b9f9;
	border-radius: 3px;
	margin: 20px auto;
	transition: 0.5s;
}

.studio_search_button:hover {
	background: #1dd3b0;
	transition: 0.5s;
}

.studio_search_button span {
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFF;
}

.studio_search_button svg {
	width: 30px;
	fill: #FFF;
}

.studio_search_filtering_trigger {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0 0;
	background: none;
	margin: 0 auto;
}

.filtering_clear {
	height: auto;
	padding: 0;
}

.studio_search_filtering_trigger span {
	font-size: 1.3rem;
	font-weight: 700;
	color: #2c2c2c;
}

.studio_search_filtering_trigger svg {
	width: 18px;
	fill: #2c2c2c;
	margin-right: 6px;
}

.filtering_clear svg {
	width: 20px;
}

.studio_search_filtering_content {
	padding: 20px;
	display: none;
}

.studio_search_filtering_content_title {
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 9px;
	margin-top: 24px;
	padding-top: 12px;
	border-top: solid 1px #ddd;
}

.studio_search_filtering_content_check {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px;
}

.studio_search_filtering_content_check input[type=checkbox] {
	margin-right: 3px;
}

.studio_search_filtering_content_check label {
	font-size: 1.4rem;
	font-weight: 700;
	color: #524e4e;
	width: calc((100% - 15px * 1) / 2);
}

@media (min-width: 768px) {
	.studio_search_modal_item {
		width: 560px;
		margin: 0 auto;
	}

	.studio_search_room_size {
		margin: 18px auto 0;
	}

	.studio_search_room_size_title {
		font-size: 1.6rem;
		margin-bottom: 3px;
	}

	.studio_search_room_size .chechbox_text {
		font-size: 1.6rem;
		padding-left: 20px;
	}

	.modal_fix_button {
		max-width: 560px;
	}

	.modal_fix_button span {
		font-size: 1.6rem;
	}

	.studio_search_filtering_content_check {
		width: 560px;
		padding: 0 20px;
		margin: 0 auto;
	}
}




/*==========
特集
==========*/
.feature {
	padding: 20px 0 40px;
}

.feature_list {
	margin-bottom: 30px;
}

.feature_list_item {
	border-bottom: solid 1px #dcdada;
}

.feature_list_item a {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 18px 0;
	color: #3e3e3e;
}

.feature_list_item a:hover {
	color: var(--a_hover_color);
}

.feature_list_cover {
	overflow: hidden;
	width: 36%;
}

.feature_list_cover img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition-duration: 0.5s;
}

.feature_list_cover:hover img {
	transform: scale(1.2);
	transition-duration: 0.5s;
}

.feature_list_info {
	width: calc(64% - 12px);
}

.feature_list_title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 3px;
}

.feature_list_comment {
	font-size: 1.2rem;
}

.tag_list {
	padding: 18px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.tag_list_item {
	border: solid 1px #b7b8b8;
	border-radius: 20px;
	padding: 1px 12px;
	margin-bottom: 3px;
	font-size: 1.15rem;
	font-weight: 700;
	text-align: center;
	color: var(--a_color);
}

.tag_list_item:hover {
	color: var(--a_color);
	background-color: var(--a_hover_bg_color);
}

@media (min-width: 768px) {
	.feature {
		padding: 40px 0 80px;
	}

	.feature_list_title {
		font-size: 2rem;
	}

	.feature_list_comment {
		font-size: 1.4rem;
	}
}


/*==========
バナー
==========*/
.banner_buzz_common {
	margin-bottom: 60px;
}

.banner_buzz_common .container {
	width: 100%;
}

.slider_center_mode div {
	margin: 0 6px;
}

@media (min-width: 768px) {
	.banner_buzz_common {
		margin-bottom: 80px;
	}

	.banner_buzz_common .container {
		width: 580px;
	}
}


/*==========
ピックアップスタジオ
==========*/
.pickup_studio {
	margin: 24px 0 72px;
}

.pickup_studio_item {
	position: relative;
	display: block;
	color: var(--a_color);
}

.pickup_studio_item img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.pickup_studio_item:hover {
	color: var(--a_color);
}

.pickup_studio_item_info {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 18px 12px;
	background: rgba(255, 255, 255, 0.70);
	text-align: left;
	transition: 0.5s;
}

.pickup_studio_item:hover .pickup_studio_item_info {
	background: rgba(255, 255, 255, 0.815);
	transition: 0.5s;
}

.pickup_studio_item_info_catch {
	font-size: 1.5rem;
	font-weight: 700;
}

.pickup_studio_item_info_name {
	font-size: 1.2rem;
	font-weight: 700;
}

@media (min-width: 768px) {
	.pickup_studio .container {
		width: 580px;
	}

	.pickup_studio {
		margin-bottom: 102px;
	}

	.pickup_studio_item_info_catch {
		font-size: 1.8rem;
	}

	.pickup_studio_item_info_name {
		font-size: 1.4rem;
	}
}



/*==========
店舗検索
==========*/
.shop_search {
	padding: 20px 0 40px;
	background: #ff52b3;
}


/*==========
タブボタン
==========*/
.shop_search_tab_btn_wrap {
	display: flex;
	flex-wrap: wrap;
}

.shop_search_tab_btn_arrow {
	/* width: 3%; */
	display: flex;
	align-items: center;
}

.shop_search_tab_btn_arrow svg {
	height: 15px;
	fill: #6a6a6a;
}

.shop_search_tab_btn {
	width: 94%;
	overflow-x: scroll;
	overflow-y: hidden;
	white-space: nowrap;
	font-size: 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.shop_search_tab_btn::-webkit-scrollbar {
	/* Chrome, Safari 対応 */
	display: none;
}

.tab_btn {
	width: 20%;
	font-size: 1.4rem;
	font-weight: 700;
	color: #ababab;
	padding: 6px 0;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease 0s;
	border-bottom: solid 2px #9d9e9e;
	display: inline-block;
}

.tab_btn.active,
.tab_btn:hover {
	border-bottom: solid 3px #14b9f9;
	color: #000;
	padding-bottom: 5px;
}

@media (min-width: 768px) {
	.shop_search {
		padding: 40px 0 80px;
	}

	.tab_btn {
		width: 15%;
		font-size: 1.6rem;
	}
}

.shop_search_tab_btn_wrap {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

/* 矢印ボタンの当たり判定を広げる＆押せる見た目 */
.shop_search_tab_btn_arrow {
	/* width: 3%; */
	min-width: 24px;
	/* PCで細すぎないように */
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	cursor: pointer;
	user-select: none;
}

.shop_search_tab_btn_arrow svg {
	height: 15px;
	fill: #6a6a6a;
}

.shop_search_tab_btn_arrow[aria-disabled="true"] {
	opacity: .35;
	cursor: default;
	pointer-events: none;
}

/* タブはそのまま+滑らかにスクロール */
.shop_search_tab_btn {
	width: 94%;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	font-size: 0;
	position: sticky;
	top: 0;
	z-index: 100;
	-ms-overflow-style: none;
	scrollbar-width: none;
	/* Firefox */
	scroll-behavior: smooth;
	/* 追加 */
}

.shop_search_tab_btn::-webkit-scrollbar {
	display: none;
}

.shop_search_tab_btn {
	-webkit-overflow-scrolling: touch;
	/* iOS 慣性 */
	overscroll-behavior-x: contain;
	/* 可能ならバウンス抑制（未対応ブラウザは無害） */
}

/* 参考：PCで幅が余る時の見た目調整（任意） */
@media (min-width:1024px) {
	.tab_btn {
		width: auto;
		padding: 8px 18px;
	}
}


/*==========
パネル
==========*/
.shop_search_panel_wrap {
	padding-top: 6px;
}

.area_panel {
	display: none;
}

.area_panel.active {
	display: block;
}

.shop_search_panel_area a {
	display: block;
	padding-top: 12px;
	padding-bottom: 12px;
	font-weight: 700;
	border-bottom: solid 1px #7a7a7a;
	color: #3e3e3e;
}

.shop_search_panel_area_list,
.shop_panel_wrap {
	margin-bottom: 42px;
}

.shop_search_panel_area_list li,
.shop_panel_area_list li {
	border-bottom: solid 1px #7a7a7a;
}

.shop_search_panel_area_list_parent_name {
	display: block;
	padding-top: 12px;
	padding-bottom: 12px;
	font-weight: 700;
	position: relative;
	cursor: pointer;
}

.shop_search_panel_area_list_parent_name::after {
	content: '';
	position: absolute;
	top: calc(50% - 6px);
	right: 12px;
	transform: rotate(135deg) translateY(-50%);
	width: 7px;
	height: 7px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-color: #7a7a7a;
}

.shop_search_panel_area_list_child {
	display: none;
}

.shop_search_panel_area_list_child li {
	border-top: solid 1px #7a7a7a;
	border-bottom: none;
}

.shop_search_panel_area_list_parent label,
.shop_search_panel_area_list_child li label {
	display: block;
	padding: 6px 9px;
	font-weight: 700;
	color: #7a7a7a;
}

.shop_search_panel_area_list_child li a,
.shop_panel_area_list li a {
	display: block;
	padding: 12px;
	font-weight: 700;
	padding-left: 30px;
	color: var(--a_color);
}

.shop_search_panel_area_list_child li label {
	padding-left: 30px;
}

.shop_search_panel_area_list_parent label:hover,
.shop_search_panel_area_list_child label:hover {
	background-color: var(--a_hover_bg_color);
}

.shop_search_panel_area_list_child li label {
	display: block;
	padding: 6px 9px;
	font-weight: 700;
	padding-left: 30px;
	color: #3e3e3e;
}

.shop_search_panel_area_list_parent label:hover,
.shop_search_panel_area_list_child li label:hover {
	cursor: pointer;
}

.shop_search_panel_area_list_parent input[type="radio"],
.shop_search_panel_area_list_child li input[type="radio"] {
	margin-right: 6px;
}



/*==========
スクール校バナー
==========*/
.banner_school {
	padding: 40px 0 60px;
}

@media (min-width: 768px) {
	.banner_school {
		padding: 60px 0;
	}

	.banner_school .container {
		width: 580px;
	}
}


/*==========
ニュース
==========*/
.news_list {
	padding: 20px 0;
}

.news_list_wrap {
	padding-top: 6px;
	margin-bottom: 40px;
}

.news_list_item {
	border-bottom: dotted 2px #dcdada;
}

.news_list_item a {
	display: block;
	padding: 12px 6px;
	color: var(--a_color);
}

.news_list_item a:hover {
	color: var(--a_hover_color);
}

.news_list_item:first-child a {
	padding-top: 0px;
}

.news_list_item_category {
	font-size: 1rem;
	font-weight: 700;
	background: #ff52b3;
	padding: 1px 12px;
	margin-bottom: 6px;
	margin-right: 6px;
	display: inline-block;
}

.category_color_12 {
	background-color: #5bcaff;
}

.category_color_13 {
	background-color: #ff5b69;
}

.category_color_14 {
	background-color: #ff90e6;
}

.news_list_item_text {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.35;
}

.news_list_item_date {
	font-size: 1.3rem;
	color: #9f9f9f;
}

/*==========
ニュースタブ
==========*/
.news_tab_wrap {
	display: flex;
	flex-wrap: wrap;
	cursor: pointer;
	border-top: solid 1px #ddd;
	border-right: solid 1px #ddd;
	margin-bottom: 9px;
}

.news_tab {
	flex: 1;
	text-align: center;
	border-left: solid 1px #ddd;
	padding: 12px 0;
	font-size: 1.3rem;
	font-weight: 600;
}

.news_tab.active {
	background-color: #2e2e2b;
	color: #fff;
}

.news_tab_panel {
	display: none;
}

.news_tab_panel.active {
	display: block;
}


@media (min-width: 768px) {
	.news_tab {
		font-size: 1.4rem;
		padding: 18px 0;
	}

	.news_list_item a {
		padding: 12px 9px 15px;
	}

	.news_list_item_category {
		font-size: 1.2rem;
		padding: 1px 18px;
		margin-bottom: 9px;
	}

	.news_list_item_text {
		font-size: 1.7rem;
	}

	.news_list_item_date {
		font-size: 1.4rem;
	}
}

/*==========
スタジオ検索ページ
==========*/
.studio_search_result {
	padding: 20px 0 40px;
}

.studio_search_result_news {
	margin: 6px auto 18px;
}

.studio_search_result_news li {
	text-align: center;
}

.studio_search_result_news li a {
	font-size: 1.4rem;
	font-weight: 600;
	padding: 9px 18px;
	border: solid 1px #b9b9b9;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	justify-content: center;
}

.studio_search_result_news li svg {
	fill: #389aff;
}

.studio_search_result_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 0;
}

.studio_search_result_number {
	font-weight: 700;
}

.studio_search_result_number span {
	font-size: 2.6rem;
	margin-right: 3px;
}

.studio_search_result_sort {
	border: solid 1px #e5e5e5;
	width: 120px;
	height: 40px;
	padding: 6px 0 6px 12px;
	font-size: 1.4rem;
}

.studio_search_result_item {
	padding: 20px 0 40px;
	position: relative;
}

.studio_search_result_item_studio_name {
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 6px;
}

/* .studio_search_result_item a {
	display: block;
	padding-bottom: 12px;
	color: #3e3e3e;
} */

.studio_search_result_item_favorite_btn {
	position: absolute;
	top: 30px;
	right: 6px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: solid 1px #c2c2c2;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFF;
	z-index: 10;
}

.studio_search_result_item_favorite_btn svg {
	height: 27px;
	fill: #b3b3b3;
	margin-top: 3px;
	pointer-events: none;
}

.studio_search_result_item_favorite_btn.registered svg {
	fill: #e9405c;
}

.studio_search_result_item_layout {
	margin-bottom: 12px;
	min-height: 250px;
}

.studio_search_result_item_layout img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.studio_search_result_item_copy {
	font-size: 1.6rem;
	font-weight: 700;
}

.studio_search_result_item_price {
	font-size: 3rem;
	font-weight: 900;
	display: flex;
	align-items: center;
}

.studio_search_result_item_price span {
	font-size: 1.6rem;
	margin-top: 6px;
	margin-left: 3px;
}

.studio_search_result_item_floorplan {
	display: flex;
	align-items: center;
	width: fit-content;
	border: solid 1px #b9b9b9;
	border-radius: 3px;
	padding: 0 36px 0 18px;
	color: #000;
	margin-bottom: 12px;
}

.studio_search_result_item_floorplan svg {
	width: 24px;
	fill: #ff52b3;
}

.studio_search_result_item_floorplan span {
	font-weight: 700;
	font-size: 1.6rem;
}

.studio_search_result_item_option {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-bottom: 6px;
}

.studio_search_result_item_option span {
	background: #e1e2e2;
	padding: 1px 12px;
	border-radius: 3px;
	font-size: 1.2rem;
	font-weight: 700;
}

.studio_search_result_item_spec {
	margin-bottom: 9px;
	display: flex;
	align-items: center;
}

.studio_search_result_item_spec svg {
	width: 18px;
	margin-right: 6px;
	fill: #ff52b3;
}

.studio_search_result_item_spec span {
	font-weight: 700;
	font-size: 1.6rem;
	padding-right: 12px;
}

.studio_search_result_item_name,
.studio_search_result_item_access {
	font-size: 1.3rem;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	background-color: #f1f1f1;
	padding: 6px 9px;
	border-radius: 3px;
}

.studio_search_result_item_name svg,
.studio_search_result_item_access svg {
	width: 16px;
	margin-right: 12px;
	fill: #ff52b3;
}

@media (min-width: 768px) {
	.studio_search_result {
		padding: 40px 0 80px;
	}

	.studio_search_result_item_studio_name {
		font-size: 2.6rem;
	}

	.studio_search_result_number span {
		font-size: 3.6rem;
		margin-right: 5px;
	}

	.studio_search_result_item_copy {
		font-size: 2.2rem;
	}

	.studio_search_result_item_price {
		font-size: 4rem;
	}

	.studio_search_result_item_option span {
		padding: 1px 18px;
		font-size: 1.4rem;
	}

	.studio_search_result_item_name,
	.studio_search_result_item_access {
		font-size: 1.4rem;
	}

	.studio_search_result_item_name svg,
	.studio_search_result_item_access svg {
		width: 20px;
	}
}





/*==========
店舗一覧ページ
==========*/
.shop_list_area_select {
	padding-top: 6px;
}

.shop_list_link {
	display: block;
	padding: 12px;
	font-weight: 700;
}

.shop_list {
	margin-top: 18px;
	border-top: solid 1px #dcdada;
}

.shop_list_item {
	border-bottom: solid 1px #dcdada;
}

.shop_list_item a {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 18px 0;
	justify-content: space-between;
	color: #3e3e3e;
}

.shop_list_item_img_cover {
	width: 80px;
	height: 80px;
	overflow: hidden;
}

.shop_list_item_img_cover img {
	height: 100%;
	object-fit: cover;
	transition-duration: 0.5s;
}

.shop_list_item_text {
	width: calc(100% - 95px);
	line-height: 1;
}

.shop_list_item_name {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.shop_list_item_detail {
	color: #ff52b3;
	font-size: 1.2rem;
	font-weight: 700;
	display: inline-block;
	margin-bottom: 9px;
}

.shop_list_item_address {
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	margin-bottom: 6px;
}

.shop_list_item_address svg {
	fill: #ff52b3;
	height: 20px;
	margin: 0 6px 0 2px;
}

.shop_list_item_access {
	line-height: 1.2;
}

.shop_list_item_access span {
	font-size: 1.2rem;
	margin-right: 2px;
}

.shop_list_item_access span:first-child {
	vertical-align: sub;
}

.shop_list_item_access span svg {
	fill: #ff52b3;
	height: 19px;
}

@media (min-width: 768px) {
	.shop_list {
		margin-bottom: 40px;
	}

	.shop_list_item_img_cover {
		width: 120px;
		height: 120px;
	}

	.shop_list_item_text {
		width: calc(100% - 135px);
	}

	.shop_list_item_name {
		font-size: 2.6rem;
	}

	.shop_list_item_detail {
		font-size: 1.4rem;
	}

	.shop_list_item_address {
		font-size: 1.3rem;
	}

	.shop_list_item_address svg {
		height: 22px;
	}

	.shop_list_item_access {
		line-height: 1.2;
	}

	.shop_list_item_access span {
		font-size: 1.3rem;
	}

	.shop_list_item_access span svg {
		height: 21px;
	}
}




/*==========
ニュース個別ページ
==========*/
.news_article {
	padding: 20px 0 40px;
}

.news_article_info {
	padding: 12px 9px;
}

.news_article_info time {
	font-size: 1.3rem;
	color: #a09e9e;
	display: block;
}

.news_article_title {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 3px;
}

.news_article_category {
	margin-bottom: 6px;
}

.news_article_category a {
	font-size: 1rem;
	font-weight: 700;
	color: #FFF;
	background: #333;
	padding: 1px 12px;
	display: inline-block;
}

.news_article_body {
	padding: 0 12px 60px;
}

.news_article_body p {
	margin-top: 10px;
}

.news_article_body h1 {
	margin-top: 30px;
	font-size: 2.6rem;
	font-weight: 700;
	border-bottom: solid 3px #cbfe02;
	padding-bottom: 5px;
	line-height: 1.3;
}

.news_article_body h2 {
	margin-top: 30px;
	font-size: 2.2rem;
	font-weight: 700;
}

.news_article_body h3 {
	margin-top: 30px;
	font-size: 2rem;
	font-weight: 700;
}

.news_article_body h4 {
	margin-top: 30px;
	font-size: 1.8rem;
	font-weight: 700;
}

.news_article_body p:first-child,
.news_article_body h3:first-child,
.news_article_body h4:first-child {
	margin-top: 0px;
}

.news_article_body img {
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.news_article_info time {
		font-size: 1.5rem;
	}

	.news_article_title {
		font-size: 3rem;
		font-weight: 700;
		margin-bottom: 6px;
	}

	.news_article_category a {
		font-size: 1.2rem;
		padding: 1px 15px;
	}

	.news_article_body p {
		margin-top: 16px;
	}

	.news_article_body h3,
	.news_article_body h4 {
		margin-top: 40px;
		font-size: 2.4rem;
	}
}



/*==========
ログインページ
==========*/
.login {
	padding: 40px 0;
}

.login_item {
	padding: 6px 0 20px;
}

.login_item p {
	margin-bottom: 6px;
	font-size: 1.5rem;
	font-weight: 700;
}

.login_item_input {
	border: solid 1px #c9cbcb;
	width: 100%;
	font-weight: 700;
	color: #686868;
}

.login_item_submit {
	display: flex;
	justify-content: center;
	text-align: center;
	width: 100%;
	height: 60px;
	background: #14b9f9;
	border-radius: 3px;
	color: #FFF;
	font-weight: 700;
	margin-top: 30px;
}

.password_forget_link {
	margin: 40px 0;
	text-align: center;
}

.signup_link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-top: solid 1px #BBB;
}

.signup_link p {
	font-weight: 700;
}

.signup_link a {
	width: 100px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #14b9f9;
	border-radius: 3px;
	color: #FFF;
	font-size: 1.3rem;
	font-weight: 700;
}

@media (min-width: 768px) {
	.login .container {
		width: 480px;
	}

	.signup_link {
		padding: 20px;
		border-top: solid 1px #BBB;
	}

	.signup_link a {
		width: 140px;
		height: 60px;
		line-height: 60px;
		border-radius: 3px;
		font-size: 1.5rem;
	}

	.login_item_submit {
		width: 80%;
		height: 66px;
		margin: 40px auto 0px;
	}
}

.error_message {
	text-align: center;
	color: #FF0000;
	margin: 12px 0 18px;
}



/*==========
検索ページのリンクボタン
==========*/
.link_studio_reserve {
	/* border: solid 1px #c2c2c2; */
	padding: 18px 0;
	text-align: center;
	width: 90%;
	display: block;
	margin: 30px auto;
	color: #000;
	transition: 0.5s;
	background-color: #ff52b3;
}

.link_studio_reserve:hover {
	color: #000;
	background-color: #1dd3b0;
	transition: 0.5s;
}

.link_studio_reserve span {
	font-size: 1.6rem;
	font-weight: 900;
	position: relative;
}

.link_studio_reserve span::after {
	content: '';
	position: absolute;
	top: calc(50% - -1px);
	right: -18px;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 9px;
	border-color: transparent transparent transparent #000;
}

@media (min-width: 768px) {
	.link_studio_reserve {
		padding: 20px 0;
		max-width: 500px;
		margin: 50px auto;
	}

	.link_studio_reserve span {
		font-size: 1.8rem;
	}
}


/*==========
404ページ
==========*/
.not_found {
	padding: 40px 0;
}

.not_found_title {
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	margin: 24px 0 9px;
}

.not_found_message {
	text-align: center;
	margin-bottom: 42px;
}


/*==========
メンテナンス中
==========*/
.maintenance {
	padding: 40px 0;
}

.maintenance h3 {
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 30px;
}

.maintenance_info {
	padding: 18px 0;
	background-color: #ed0000;
	margin-bottom: 30px;
	text-align: center;
}

.maintenance_info h4 {
	font-size: 2rem;
	font-weight: 600;
	color: #FFF;
	margin-bottom: 6px;
}

.maintenance_info p {
	color: #FFF;
	font-size: 1.7rem;
}

.maintenance_message {
	text-align: center;
}



/*==========
MVロゴアニメーション
==========*/
@keyframes animate-svg-stroke-1 {
	0% {
		stroke-dashoffset: 960.8408203125px;
		stroke-dasharray: 960.8408203125px;
	}

	100% {
		stroke-dashoffset: 0;
		stroke-dasharray: 960.8408203125px;
	}
}

@keyframes animate-svg-fill-1 {
	0% {
		fill: transparent;
	}

	100% {
		fill: rgb(0, 0, 0);
	}
}

.svg-elem-1 {
	animation: animate-svg-stroke-1 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s both,
		animate-svg-fill-1 0.5s ease-in-out 1s both;
}

@keyframes animate-svg-stroke-2 {
	0% {
		stroke-dashoffset: 887.8172607421875px;
		stroke-dasharray: 887.8172607421875px;
	}

	100% {
		stroke-dashoffset: 0;
		stroke-dasharray: 887.8172607421875px;
	}
}

@keyframes animate-svg-fill-2 {
	0% {
		fill: transparent;
	}

	100% {
		fill: rgb(0, 0, 0);
	}
}

.svg-elem-2 {
	animation: animate-svg-stroke-2 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.12s both,
		animate-svg-fill-2 0.5s ease-in-out 1.2s both;
}

@keyframes animate-svg-stroke-3 {
	0% {
		stroke-dashoffset: 898.653564453125px;
		stroke-dasharray: 898.653564453125px;
	}

	100% {
		stroke-dashoffset: 0;
		stroke-dasharray: 898.653564453125px;
	}
}

@keyframes animate-svg-fill-3 {
	0% {
		fill: transparent;
	}

	100% {
		fill: rgb(0, 0, 0);
	}
}

.svg-elem-3 {
	animation: animate-svg-stroke-3 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.24s both,
		animate-svg-fill-3 0.5s ease-in-out 1.4s both;
}

@keyframes animate-svg-stroke-4 {
	0% {
		stroke-dashoffset: 898.6488037109375px;
		stroke-dasharray: 898.6488037109375px;
	}

	100% {
		stroke-dashoffset: 0;
		stroke-dasharray: 898.6488037109375px;
	}
}

@keyframes animate-svg-fill-4 {
	0% {
		fill: transparent;
	}

	100% {
		fill: rgb(0, 0, 0);
	}
}

.svg-elem-4 {
	animation: animate-svg-stroke-4 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0.36s both,
		animate-svg-fill-4 0.5s ease-in-out 1.6s both;
}




/*==========
LINE情報
==========*/
.line_info {
	padding: 24px 0 36px;
	background-color: #e5e5e5;
}

.line_info h3 {
	text-align: center;
	font-size: 2.4rem;
	font-weight: 900;
}

.line_info p {
	text-align: center;
	font-size: 1.3rem;
	margin-bottom: 9px;
}

.line_info_link {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 90%;
	height: 66px;
	background: #20d728;
	border-radius: 3px;
	margin: 0 auto;
	transition: 0.5s;
}

.line_info_link:hover {
	background: #ffb619;
	transition: 0.5s;
}

.line_info_link svg {
	height: 39px;
	margin-right: 9px;
}

.line_info_link span {
	font-size: 1.85rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: #FFF;
	margin-bottom: 3px;
}


@media (min-width: 768px) {
	.line_info {
		padding: 24px 0 48px;
	}

	.line_info .container {
		width: 580px;
	}
}


/*==========
よくある質問
==========*/
.faq {
	background-color: #eeeeee;
	padding-bottom: 90px;
	margin-bottom: -60px;
}

.faq_sec_title {
	font-size: 2.4rem;
	font-weight: 600;
	margin-bottom: 18px;
	border-left: solid 9px #ff52b3;
	padding: 2px 0 2px 9px;
}

.faq_sec_title.tag {
	background-color: #46494e;
	color: #FFF;
}

.faq_search {
	padding: 36px 0 48px;
	background-color: #46494e;
}

.faq_search h1 {
	font-size: 1.8rem;
	font-weight: 600;
	color: #FFF;
	margin-bottom: 12px;
}

.faq_search_keyword_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.faq_search_keyword {
	width: calc(100% - 54px);
	background-color: #FFF;
}

.faq_search_keyword_wrap button {
	width: 54px;
	background-color: #ff52b3;
	display: flex;
	justify-content: center;
	align-items: center;
}

.faq_search_keyword_wrap button svg {
	width: 30px;
	fill: #000;
}

.faq_search_tag_list {
	margin-top: 12px;
}

.faq_search_tag_list li {
	display: inline-block;
	margin-right: 15px;
}

.faq_search_tag_list li a {
	font-size: 1.5rem;
	color: #389aff;
}

#suggestions {
	position: absolute;
	background-color: white;
	border: 1px solid #ccc;
	max-height: 200px;
	overflow-y: auto;
}

.suggestion {
	padding: 5px;
	cursor: pointer;
}

.suggestion:hover {
	background-color: #f0f0f0;
}

.faq_body {
	padding: 18px 0 60px;
}

.faq_pickup {
	margin: 18px 0 30px;
}

.faq_pickup .container {
	padding: 24px 18px;
	background-color: #FFF;
}

.faq_pickup_list li {
	margin-top: 12px;
}

.faq_pickup_list li a {
	text-decoration: underline;
}

.faq_breadcrumbs {
	margin-bottom: 30px;
}

.faq_breadcrumbs li {
	display: inline-block;
}

.faq_breadcrumbs li a {
	font-size: 1.35rem;
	color: #8b8b8b;
}

.faq_breadcrumbs li+li::before {
	content: ">";
	color: #8b8b8b;
	margin: 0 0.6rem;
}

.faq_list {
	background-color: #FFF;
}

.faq_list li:not(:last-child) {
	border-bottom: solid 1px #c7c4c4;
}

.faq_list li a {
	display: block;
	padding: 18px 12px;
	color: #000;
	font-size: 1.6rem;
	font-weight: 600;
	background-color: #FFF;
	position: relative;
}

.faq_list li a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	transform: rotate(45deg) translateY(-50%);
	width: 10px;
	height: 10px;
	border-width: 3px 3px 0 0;
	border-style: solid;
	border-color: #7c827c;
}

.faq_item {
	background-color: #FFF;
	padding: 48px 12px 54px;
}

.faq_item h1 {
	font-size: 2.2rem;
	font-weight: 600;
	border-bottom: solid 3px #ff52b3;
	padding: 2px 3px;
	margin-bottom: 24px;
}

.faq_tag_list {
	margin-bottom: 24px;
}

.faq_tag_list li {
	display: inline-block;
	margin-right: 12px;
}

.faq_tag_list li a {
	font-size: 1.4rem;
}

.faq_item h2 {
	font-size: 2rem;
	font-weight: 600;
	border-left: solid 6px #ff52b3;
	padding: 3px 0 3px 6px;
	margin-bottom: 24px;
}

.faq_item h3 {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 24px;
}

.faq_item p {
	margin-bottom: 30px;
}

.faq_item img {
	max-width: 100%;
	margin-bottom: 30px;
}


@media (min-width: 768px) {
	.faq {
		padding-bottom: 120px;
		margin-bottom: -100px;
	}

	.faq_sec_title {
		font-size: 2.2rem;
	}

	.faq_search {
		padding: 36px 0 60px;
	}

	.faq_search h1 {
		font-size: 2rem;
	}

	.faq_body {
		padding: 24px 0 90px;
	}

	.faq_pickup {
		margin: 42px 0 60px;
	}

	.faq_pickup .container {
		padding: 36px 30px 48px;
	}

	.faq_pickup_list li {
		margin-top: 15px;
	}

	.faq_breadcrumbs {
		margin-bottom: 54px;
	}

	.faq_breadcrumbs li a {
		font-size: 1.5rem;
	}

	.faq_breadcrumbs li+li::before {
		margin: 0 0.9rem;
	}

	.faq_list li a {
		display: block;
		padding: 18px 15px;
		font-size: 1.8rem;
	}

	.faq_list li a::after {
		right: 18px;
		width: 12px;
		height: 12px;
	}

	.faq_item {
		padding: 54px 15px 78px;
	}

	.faq_item h1 {
		font-size: 2.8rem;
		margin-bottom: 42px;
	}

	.faq_item h2 {
		font-size: 2.4rem;
		border-left: solid 6px #ff52b3;
		padding: 3px 0 3px 9px;
		margin-bottom: 30px;
	}

	.faq_item h3 {
		font-size: 2rem;
		margin-bottom: 30px;
	}

	.faq_item p {
		margin-bottom: 30px;
	}

	.faq_item img {
		margin-bottom: 36px;
	}

}




/* noto-sans-jp-regular, noto-sans-jp-700, noto-sans-jp-900 フォントのまとめとプリロード */
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('/css/fonts/noto-sans-jp-v53-japanese_latin-regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('/css/fonts/noto-sans-jp-v53-japanese_latin-700.woff2') format('woff2');
}

@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url('/css/fonts/noto-sans-jp-v53-japanese_latin-900.woff2') format('woff2');
}



/*==========*/
/* 特集改修（2025-11）*/
/*==========*/
.features {
	padding: 4rem 0;
}

.features_list li {
	padding: 1.5rem;
	border: solid 1px #dcdada;
	margin-bottom: 3rem;
}

.features_list li .photo {
	overflow: hidden;
}


.features_list li .photo img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.features_list li .info {
	padding: 1rem 0 2rem;
}

.features_list li .info .cat {
	background-color: #232323;
	padding: 0 1.5rem;
	font-size: 1.2rem;
	color: #FFF;
	display: block;
	border-radius: 50vmax;
	inline-size: fit-content;
}

.features_list li .info h3 {
	font-size: 1.7rem;
	font-weight: 600;
	color: #3e3e3e;
	margin-top: 1rem;
}

@media (min-width: 768px) {
	.features_list {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
	}

	.features_list li {
		width: calc((100% - 1rem)/2);
		padding: 1rem;

	}

}
