@charset "utf-8";

/* CSS Document */


:root {
	--body_font_color: #1a1a1a;
	--a_color: #1a1a1a;
	--a_hover_color: #999999;
	--a_hover_bg_color: #d1f4ee;
}

/*==========
共通
==========*/
html {
	font-size: 62.5%;
}

body {
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
	font-size: 1.5rem;
	line-height: 1.57;
	letter-spacing: -0.5px;
	color: var(--body_font_color);
	background: #FFF;
	position: relative;
	overflow-x: hidden;
	overflow-y: scroll;
}

a {
	color: #389aff;
	transition: 0.5s;
}

a img {
	transition: 0.5s;
}

a:hover img {
	opacity: 0.7;
	transition: 0.5s;
}

*:focus {
	outline: none;
}

@media (min-width: 768px) {
	a:hover {
		color: var(--a_hover_color);
		transition: 0.5s;
	}
}

.color_red {
	color: #FF0000;
}

.bold700 {
	font-weight: 700;
}


body {
	animation: fade .3s;
}

@keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

img {
	height: auto;
}

.container {
	width: 96%;
	margin: 0 auto;
}

@media (min-width: 768px) {
	body {
		font-size: 1.7rem;
		line-height: 1.67;
	}

	.container {
		max-width: 660px;
		width: 100%;
	}
}

button,
input,
optgroup,
select,
textarea {
	background: #FFF;
	padding: 9px;
	font-size: 1.6rem;
	height: 46px;
}

input[type="radio"] {
	padding: 0px;
	height: 36px;
}

::placeholder {
	color: #ccc
}

.required {
	color: #FF0000;
	font-size: 1.1rem;
	margin-left: 6px;
}


/*==========
サイトヘッダー
==========*/
.site_header {
	background: rgba(255, 255, 255, 0.95);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 1px solid #dbd9dc;
	outline: 0;
}

.site_header .container {
	height: 55px;
	width: 98%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.site_header_logo a {
	display: block;
}

.site_header_logo img {
	height: 34px;
}

.site_header_favorite {
	position: absolute;
	right: 56px;
	top: 12px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}

.site_header_favorite a {
	display: block;
	padding: 0;
	margin: 0;
}

.site_header_favorite svg {
	height: 24px;
	fill: #ff52b3;
	vertical-align: top;
}

.site_header_favorite p {
	font-size: 1rem;
}

.site_header_favorite_cart {
	position: absolute;
	right: 96px;
	top: 12px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}

.site_header_favorite_cart a {
	display: block;
	padding: 0;
	margin: 0;
}

.site_header_favorite_cart svg {
	height: 24px;
	fill: #ff52b3;
	vertical-align: top;
}

.site_header_favorite_cart p {
	font-size: 1rem;
}

.site_header_mypage {
	position: absolute;
	right: 0px;
	top: 12px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}

.site_header_mypage svg {
	height: 24px;
	fill: #ff52b3;
	vertical-align: top;
}

.site_header_mypage p {
	font-size: 1rem;
}

.site_header_mypage_cart {
	position: absolute;
	right: 40px;
	top: 12px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}

.site_header_mypage_cart svg {
	height: 24px;
	fill: #ff52b3;
	vertical-align: top;
}

.site_header_mypage_cart p {
	font-size: 1rem;
}

.site_header_cart {
	position: absolute;
	right: 0;
	top: 12px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}

.site_header_cart a {
	position: relative;
}

.site_header_cart svg {
	height: 24px;
	fill: #ff52b3;
	vertical-align: top;
}

.site_header_cart p {
	font-size: 1rem;
}

.cart-badge {
	position: absolute;
	top: -6px;
	right: -4px;
	background-color: #ff0000;
	color: #ffffff;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
	z-index: 10;
}



/*==========
ドロワーメニュー
==========*/
body.drawer_open {
	position: fixed;
	left: 0;
	width: 100%;
}

.hamburger_btn_wrap {
	z-index: 1000;
	position: absolute;
	top: 6px;
	left: 0;
	text-align: center;
}

/* メニュー固定 */
.hamburger_btn {
	display: block;
	transition: all 0.3s;
	height: 30px;
	position: relative;
}

/* ハンバーガーメニューの棒 */
.hamburger_btn span {
	display: block;
	transition: all 0.3s;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	transform: translateY(50%);
	left: 50%;
	transform: translateX(-50%);
	width: 36px;
	height: 3px;
	background: #ff52b3;
}

.hamburger_btn span:nth-child(1) {
	margin-top: -7px;
}

.hamburger_btn span:nth-child(3) {
	margin-top: 7px;
}

.hamburger_btn:hover {
	cursor: pointer;
}

/* ハンバーガーメニューが開くときに×にする */
.hamburger_btn.active span:nth-child(1) {
	-webkit-transform: translateY(7px) rotate(-45deg);
	transform: translateY(7px) rotate(-45deg);
	left: 2px;
}

.hamburger_btn.active span:nth-child(2) {
	opacity: 0;
}

.hamburger_btn.active span:nth-child(3) {
	-webkit-transform: translateY(-7px) rotate(45deg);
	transform: translateY(-7px) rotate(45deg);
	left: 2px;
}

.hamburger_btn_wrap p {
	font-size: 1rem;
}



/* メニューが開いたときの黒い半透明の背景 */
.menu_bg {
	position: fixed;
	left: 0;
	top: 0px;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	background: #333;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

/* メニューの中身 */
.drawer_content {
	position: fixed;
	left: -250px;
	top: 0px;
	width: 250px;
	height: 100%;
	padding-bottom: 36px;
	background: #202124;
	transition: all 0.3s;
	z-index: 1001;
	overflow-y: auto;
}

/* メニューが横から開く */
.drawer_open .drawer_content {
	left: 0;
}

/* メニューが横から開いた時の背景 */
.drawer_open .menu_bg {
	opacity: 0.8;
	visibility: visible;
}

.drawer_content_logo {
	padding: 24px 0 18px 15px;
}

.drawer_content_logo img {
	width: 108px;
}

.drawer_content_menu {
	margin-bottom: 24px;
}

.drawer_content_menu li {
	width: 100%;
}

.drawer_content_menu li a {
	display: flex;
	align-items: center;
	padding: 0 15px;
	color: #bdc1c6;
	font-size: 1.6rem;
	height: 48px;
	font-family: Roboto, Helvetica Neue, Arial, sans-serif;
}

.drawer_content_menu li a svg {
	fill: #bdc1c6;
	width: 24px;
	margin-right: 12px;
	margin-bottom: 2px;
}

.drawer_content_menu li a:hover {
	background: #494b52;
}


.drawer_content_sns {
	display: flex;
	align-items: center;
	padding: 16px 0 24px;
}

.drawer_content_sns li {
	margin: 0 8px;
}

.drawer_content_sns svg {
	fill: #64636f;
	height: 40px;
}

#drawer_container:focus-within #drawer_content {
	transform: none;
}

.drawer_line_link {
	width: 84%;
	height: 60px;
	padding: 0 12px;
	margin-left: 15px;
	display: flex;
	align-items: center;
	background-color: #20d728;
}

.drawer_line_link svg {
	height: 36px;
	margin-right: 6px;
}

.drawer_line_link span {
	color: #FFF;
	font-size: 1.7rem;
	font-weight: 600;
}



@media (min-width: 768px) {
	body.drawer_open {
		overflow-y: hidden;
		padding-right: 17px;
	}

	body.drawer_open .site_header {
		padding-right: 17px;
	}

	.site_header_favorite {
		top: 9px;
	}

	.site_header_favorite_cart {
		top: 9px;
	}

	.site_header_mypage {
		top: 9px;
	}

	.site_header_mypage_cart {
		top: 9px;
	}

	.site_header_cart {
		top: 9px;
	}
}



/*==========
セクションタイトル
==========*/
.section_title_wrap {
	text-align: center;
	line-height: 1.2;
	margin-bottom: 24px;
}

.section_title {
	font-size: 3.6rem;
	font-weight: 900;
	letter-spacing: -1.5px;
	margin-bottom: 3px;
}

.section_title_sub_line::before,
.section_title_sub_line::after {
	content: '';
	width: 72px;
	height: 9px;
	background-color: #ff52b3;
	transform: skewX(-18deg);
}

.section_title_sub_line::before {
	margin-right: 12px;
}

.section_title_sub_line::after {
	margin-left: 12px;
}

.section_title_sub,
.section_title_sub_line {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -1px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}


@media (min-width: 768px) {
	.section_title_wrap {
		margin-bottom: 50px;
	}

	.section_title {
		font-size: 4.8rem;
	}

	.section_title_sub {
		font-size: 1.6rem;
	}
}


/*==========
セクションリンク
==========*/
.section_link {
	display: block;
	width: 70%;
	border: solid 1px #9d9e9e;
	padding: 8px 0;
	margin: 20px auto;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--a_color);
	letter-spacing: 0.3px;
	transition: 0.5s;
}

.section_link:hover {
	color: var(--a_color);
	background-color: var(--a_hover_bg_color);
	transition: 0.5s;
}

.section_link span {
	position: relative;
}

.section_link span::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -8px;
	transform: rotate(45deg) translateY(-50%);
	width: 7px;
	height: 7px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-color: #565454;
}

@media (min-width: 768px) {
	.section_link {
		max-width: 400px;
		padding: 15px 0;
		margin: 20px auto;
		font-size: 1.6rem;
	}
}


/*==========
スライダー
==========*/
/* .slider_wrap {
	overflow: hidden;
} */

.slider_wrap img {
	margin: 0 auto;
}




/*==========
チェックボックス
==========*/
.chechbox_body {
	display: none;
}

.chechbox_text {
	cursor: pointer;
	padding: 5px 0 5px 22px;
	position: relative;
}

.chechbox_text::before {
	background: #fff;
	border: 1px solid #a1a1a1;
	content: '';
	display: block;
	height: 18px;
	left: 0px;
	margin-top: -9px;
	position: absolute;
	top: 50%;
	width: 16px;
}

.chechbox_text::after {
	border-right: 3px solid #14b9f9;
	border-bottom: 3px solid #14b9f9;
	content: '';
	display: block;
	height: 12px;
	left: 6px;
	margin-top: -7px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: rotate(45deg);
	width: 5px;
}

.chechbox_body:checked+.chechbox_text::after {
	opacity: 1;
}



/*==========
ページャー
==========*/
.pagination {
	display: flex;
	justify-content: center;
	padding-top: 40px;
	gap: 10px;
}

.pagination li {
	border: solid 1px #dcdada;
}

.pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	color: var(--a_color);
	font-size: 1.4rem;
}

.pagination li a:hover,
.pagination li a.active {
	background: #ff52b3;
}

.pagination li.prev,
.pagination li.next {
	min-width: 20%;
	display: block;
}

.pagination li.prev a,
.pagination li.next a {
	width: 100%;
}

.pagination li.prev a span,
.pagination li.next a span {
	margin-top: -4px;
}

@media (min-width: 768px) {
	.pagination {
		gap: 15px;
		width: 80%;
		margin: 0 auto;
	}

	.pagination li a {
		width: 60px;
		height: 60px;
	}

	.pagination li.prev a span::after {
		content: " 前の10件へ";
	}

	.pagination li.next a span::before {
		content: "次の10件へ ";
	}
}



/*==========
404ページ
==========*/
.not_page .container {
	height: 100vh;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.not_page_link {
	margin-top: 20px;
}


/*==========
フッター
==========*/
.site_footer {
	padding: 40px 0 12px;
	background: #e5e5e5;
	margin-top: 60px;
}

.site_footer_text_link {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: center; */
	width: 80%;
	margin: 0 auto 18px;
}

.site_footer_text_link li {
	width: 50%;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 0 12px;
	margin-bottom: 9px;
}

.site_footer_text_link li a {
	color: var(--a_color);
}

.site_footer_text_link li:nth-child(odd) {
	text-align: right;
}

.site_footer_shop_link {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 6px;
	padding: 20px 3px;
	margin-bottom: 54px;
}

.site_footer_shop_link li {
	width: calc((100% - 6px * 2) / 3);
}

.site_footer_shop_link li a {
	display: block;
	font-size: 1rem;
	color: var(--a_color);
	background-color: #f5caf1;
	padding: 1px 3px;
	border-radius: 3px;
}

.site_footer_shop_link li.site_footer_shop_link_category {
	width: 100%;
	font-size: 1.3rem;
	font-weight: 700;
	margin-top: 9px;
	/* border-bottom: dotted 1px #d5d4d4;
	padding: 9px 0 1px; */
}

.site_footer_sns_link {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 30px;
}

.site_footer_sns_link a {
	width: 40px;
}

.site_footer_sns_link a svg {
	height: 40px;
	fill: #000;
}

.site_footer_copyright {
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
}

@media (min-width: 768px) {
	.site_footer {
		padding: 60px 0 12px;
		margin-top: 100px;
	}

	.site_footer_text_link li {
		width: 50%;
		font-size: 1.4rem;
		margin-bottom: 12px;
	}

	.site_footer_shop_link {
		gap: 15px;
	}

	.site_footer_shop_link li {
		width: calc((100% - 15px * 3) / 4);
	}

	.site_footer_shop_link li.large {
		width: calc((100% - 15px * 2) / 3);
	}

	.site_footer_shop_link li a {
		font-size: 1.25rem;
	}

	.site_footer_shop_link li.site_footer_shop_link_category {
		font-size: 1.4rem;
		padding: 12px 0 1px;
	}

	.site_footer_copyright {
		font-size: 1.4rem;
	}
}


/*==========
フッターの問い合わせボタン
==========*/
.site_footer_contact {
	margin-top: 24px;
}

.site_footer_contact_btn {
	border: solid 1px #9f9f9f;
	width: 90%;
	height: 66px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin: 0 auto;
	background-color: #FFF;
}

.site_footer_contact_btn p {
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--a_color);
}

.site_footer_contact_btn:hover {
	color: var(--a_color);
	background-color: #FFF;
}


.site_footer_contact_btn_svg_circle {
	background: #20d728;
	width: 50px;
	height: 50px;
	border-radius: 50vmax;
	display: grid;
	place-items: center;
}

.site_footer_contact_btn_svg_line {
	fill: #FFF;
	height: 30px;
}

.site_footer_contact_btn_comment {
	text-align: center;
	margin-top: 6px;
	font-size: 1.2rem;
}

.site_footer_contact .caution {
	text-align: center;
	margin-top: 9px;
	font-size: 1.35rem;
	color: #FF0000;
}

@media (min-width: 768px) {
	.site_footer_contact_btn {
		max-width: 400px;
		height: 68px;
	}
}



/*==========
フッターの質問リンク
==========*/
.site_footer_faq_link {
	margin-top: 24px;
}

.site_footer_faq_link a {
	border: solid 1px #9f9f9f;
	width: 90%;
	height: 84px;
	display: flex;
	margin: 0 auto;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #FFF;
}

.site_footer_faq_link a p {
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--a_color);
}

.site_footer_faq_link a span {
	display: inline-block;
	font-size: 1.3rem;
	color: #FF0000;
	line-height: 1.4;
	text-align: center;
}

.site_footer_faq_link a:hover {
	color: var(--a_color);
	background-color: #FFF;
}

@media (min-width: 768px) {
	.site_footer_faq_link a {
		max-width: 400px;
		height: 90px;
	}

	.site_footer_faq_link a p {
		font-size: 2.4rem;
	}
}





/*==========
予約表（週間）
==========*/
.studio_reserve_table {
	display: flex;
	flex-wrap: wrap;
	border-top: solid 1px #c2c2c2;
	border-left: solid 1px #c2c2c2;
	margin-top: 18px;
}

.studio_reserve_table li {
	width: calc(100% / 7);
	border-right: solid 1px #c2c2c2;
	border-bottom: solid 1px #c2c2c2;
}

.studio_reserve_table li header {
	border-bottom: solid 1px #c2c2c2;
	font-size: 1.3rem;
	font-weight: 700;
}

.studio_reserve_table li button,
.studio_reserve_table li a {
	text-align: center;
	padding: 0;
	width: 100%;
	height: auto;
}

.studio_reserve_table li a {
	color: #1a1a1a;
}

.studio_reserve_table li button:hover,
.studio_reserve_table li a:hover {
	background: var(--a_hover_bg_color);
}

.studio_reserve_table_date {
	font-size: 1.4rem;
	font-weight: 700;
	padding: 2px 0;
}

.studio_reserve_table_status svg {
	height: 18px;
	fill: #56badb;
}

.studio_reserve_table_status_close svg {
	height: 15px;
	fill: #9d9d9d;
}

.studio_reserve_table_sat,
.studio_reserve_table_sat a {
	color: #3488C5;
}

.studio_reserve_table_sun,
.studio_reserve_table_sun a {
	color: #E01A1A;
}




/*==========
予約モーダル
==========*/
.modal_box {
	display: none;
	position: fixed;
	top: 0;
	z-index: 7777;
	width: 100%;
	min-height: 100vh;
	background: #fff;
	overflow-y: auto;
}

.modal_bg {
	position: fixed;
	top: 0;
	z-index: 6666;
	display: none;
	width: 100%;
	height: 100vh;
	background-color: rgba(255, 255, 255, 0.8);
}

.modal {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow-y: auto;
	transition: all 0.4s;
}

.studio_reserve_modal_inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
}

.studio_reserve_modal_content {
	position: relative;
	width: 100vw;
	background-color: #fff;
	padding-bottom: 80px;
}

.studio_reserve_modal_header {
	border-bottom: solid 1px #ddd;
	margin-bottom: 20px;
}

.studio_reserve_modal_header .container {
	position: relative;
	display: flex;
	text-align: center;
	height: 50px;
	justify-content: center;
	align-items: center;
}

.modal_close_circle {
	position: absolute;
	left: 5px;
	width: 30px;
	height: 30px;
}

.modal_close_circle::before,
.modal_close_circle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	/* 棒の幅（太さ） */
	height: 22px;
	/* 棒の高さ */
	background: #606060;
	/* バツ印の色 */
}

.modal_close_circle::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close_circle::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.studio_reserve_modal_title {
	font-size: 1.8rem;
	font-weight: 700;
}

.studio_reserve_modal_title2 {
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
}

.studio_reserve_modal_item {
	padding: 6px 12px 12px;
}

.studio_reserve_modal_item_subject {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 6px;
	background: #e9e9e9;
	padding: 2px 9px;
}

.studio_reserve_modal_item_fixed {
	font-size: 1.6rem;
	color: #979797;
	padding-left: 9px;
}

.studio_reserve_modal_item_comment {
	font-size: 1.6rem;
	color: #ff0000;
	padding-left: 9px;
}

.studio_reserve_modal_item_caution {
	font-size: 1.4rem;
	color: #ff0000;
	margin-bottom: 6px;
}

.studio_reserve_modal_item_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.studio_reserve_modal_item_flex div {
	width: 50%;
}

.studio_reserve_modal_item input[type="text"],
.studio_reserve_modal_item input[type="number"],
.studio_reserve_modal_item input[type="date"],
.studio_reserve_modal_item select {
	border: solid 1px #c9cbcb;
	width: 100%;
	font-weight: 700;
	color: #686868;
}

input[type="number"].studio_reserve_modal_item_persons {
	width: 40%;
	margin-right: 6px;
}

.studio_reserve_modal_item_list {
	display: flex;
	flex-wrap: wrap;
}

.studio_reserve_modal_item_list label {
	width: 50%;
}

.studio_reserve_modal_item_list label input[type="radio"] {
	height: 36px;
	margin-right: 3px;
}

.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: 20px auto 0;
	cursor: pointer;
	transition: 0.5s;
}

.modal_fix_button:hover {
	background: #1dd3b0;
	transition: 0.5s;
}

.modal_fix_button span {
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFF;
}

.reserve_modal_link {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.reserve_modal_link a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 10px * 1) / 2);
	height: 60px;
	background: #14b9f9;
	border-radius: 3px;
	margin: 20px auto 0;
}

.reserve_modal_link a span {
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFF;
}

.reserve_modal_link a.back_button {
	background: #565656;
}


.reserve_modal_link_cart {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.reserve_modal_link_cart a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 10px * 1) / 3.1);
	height: 60px;
	background: #14b9f9;
	border-radius: 3px;
	margin: 20px auto 0;
}

.reserve_modal_link_cart a span {
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFF;
}

.reserve_modal_link_cart a.back_button {
	background: #565656;
}

.reserve_modal_link_cart a.cart_button {
	background-color: #FFCC33;
}

.cart_link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.cart_link a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 10px * 1) / 2);
    height: 60px;
    border-radius: 3px;
    margin: 20px auto 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.cart_link a.back_button {
    color: #FFF;
    background: #565656;
}

.cart_confirm_link {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.cart_confirm_link a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 10px * 1) / 2);
	height: 60px;
	background: #14b9f9;
	border-radius: 3px;
	margin: 20px auto 0;
}

.cart_confirm_link a span {
	font-size: 1.5rem;
	font-weight: 700;
	color: #FFF;
}

.cart_confirm_link a.back_button {
	background: #565656;
}

.countdown_cart {
	color: #FF0000;
}


/*==========
グループリンク
==========*/
.group_link {
	background: #333;
	padding: 24px 0;
}

.group_link_title {
	text-align: center;
	color: #FFF;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.group_link_list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.group_link_list li {
	width: calc((100% - 15px * 2) / 3);
}

.group_link_list li a {
	background: #d6ff33;
	display: block;
	padding: 1px 6px;
	font-size: 1.3rem;
	color: #000;
}


/*==========
ページトップリンク
==========*/
#page_top a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgb(53 227 43 / 80%);
	border-radius: 3px;
	width: 54px;
	height: 54px;
	transition: all 0.3s;
}

#page_top a:hover {
	background: #2bb423;
}

#page_top svg {
	height: 15px;
	width: 15px;
	fill: #FFF;
	transform: translateY(-2px);
}

#page_top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 1000;
	opacity: 0;
	transform: translateX(100px);
}

.LeftMove {
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
	from {
		opacity: 0;
		transform: translateX(100px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.RightMove {
	animation: RightAnime 0.5s forwards;
}

@keyframes RightAnime {
	from {
		opacity: 1;
		transform: translateX(0);
	}

	to {
		opacity: 1;
		transform: translateX(100px);
	}
}


/*==========
LINE友だち追加ボタン
==========*/
.footer_line_link {
	position: fixed;
	bottom: 9px;
	right: 12px;
	z-index: 9999;
	text-align: right;
}

.footer_line_link p {
	font-size: 1.25rem;
	font-weight: 600;
	background-color: #ffffff;
	padding: 3px 12px;
	border-radius: 15px;
	border: solid 2px #06c755;
	margin-bottom: 6px;
}

.footer_line_link a {
	display: block;
}

.footer_line_link svg {
	height: 78px;
	/* filter: drop-shadow(0px 0px 3px #FFF); */
}



/*==========
スペーシング
==========*/
.mt_10 {
	margin-top: 10px;
}

.mt_15 {
	margin-top: 15px;
}

.mt_20 {
	margin-top: 20px;
}

.mt_25 {
	margin-top: 25px;
}

.mt_30 {
	margin-top: 30px;
}

.mt_35 {
	margin-top: 35px;
}

.mt_40 {
	margin-top: 40px;
}

.mt_45 {
	margin-top: 45px;
}

.mt_50 {
	margin-top: 50px;
}

.mt_55 {
	margin-top: 55px;
}

.mt_60 {
	margin-top: 60px;
}

.mt_65 {
	margin-top: 65px;
}

.mt_70 {
	margin-top: 70px;
}

.mt_80 {
	margin-top: 80px;
}

.mt_90 {
	margin-top: 90px;
}

.mt_100 {
	margin-top: 100px;
}

.mt_110 {
	margin-top: 110px;
}

.mt_120 {
	margin-top: 120px;
}

.mt_130 {
	margin-top: 130px;
}

.mb_10 {
	margin-bottom: 10px;
}

.mb_15 {
	margin-bottom: 15px;
}

.mb_20 {
	margin-bottom: 20px;
}

.mb_25 {
	margin-bottom: 25px;
}

.mb_30 {
	margin-bottom: 30px;
}

.mb_35 {
	margin-bottom: 35px;
}

.mb_40 {
	margin-bottom: 40px;
}

.mb_45 {
	margin-bottom: 45px;
}

.mb_50 {
	margin-bottom: 50px;
}

.mb_55 {
	margin-bottom: 55px;
}

.mb_60 {
	margin-bottom: 60px;
}

.mb_65 {
	margin-bottom: 65px;
}

.mb_70 {
	margin-bottom: 70px;
}

.mb_80 {
	margin-bottom: 80px;
}

.mb_90 {
	margin-bottom: 90px;
}

.mb_100 {
	margin-bottom: 100px;
}

.mb_110 {
	margin-bottom: 110px;
}

.mb_120 {
	margin-bottom: 120px;
}

.mb_130 {
	margin-bottom: 130px;
}





/*==========
アナウンス
==========*/
.site_announce {
	margin: 18px 0;
}

.site_announce .container {
	border: solid 1px #FF0000;
	padding: 18px 6px;
}

.site_announce_title {
	font-size: 1.8rem;
	color: #FF0000;
	margin-bottom: 6px;
	font-weight: 600;
	text-align: center;
}

.site_announce_body {
	font-size: 1.35rem;
	line-height: 1.4;
	text-align: center;
}


@media (min-width: 768px) {
	.site_announce .container {
		padding: 24px;
	}

	.site_announce_title {
		font-size: 2rem;
		margin-bottom: 12px;
	}

	.site_announce_body {
		font-size: 1.5rem;
	}
}


/*==========
アナウンス（スマートロック）
==========*/
.announce_small {
	border: solid 2px #FF0000;
	padding: 15px 12px;
	margin: 9px 0;
}

.announce_small h3 {
	color: #FF0000;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 3px;
	text-align: center;
}

.announce_small p {
	font-size: 1.2rem;
}

.announce_small_btns {
	display: flex;
	gap: 12px;
	margin-top: 6px;
}

.announce_small_btns a {
	display: block;
	background-color: #06c755;
	border-radius: 3px;
	padding: 2px 18px;
	font-size: 1.3rem;
	font-weight: 600;
	color: #FFF;
}

.announce_small_link {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 0;
	background-color: #FFEB3B;
	border-radius: 3px;
	box-shadow: 2px 2px 3px 1px rgba(0, 0, 0, 0.4);
	width: 100%;
	max-width: 400px;
	margin: 18px auto 0;
}

.announce_small_link svg {
	height: 18px;
	margin-right: 3px;
	fill: #333;
}

.announce_small_link span {
	font-size: 1.4rem;
	font-weight: 600;
	color: #333;
}
