@charset "utf-8";
:root {
/* 共通設定 */
	--color--black: #212121;
	--color--gray1: #7F7F7F;
	--color--gray2: #959595;
	--color--lightgray1: #E9E9E9;
	--color--lightgray2: #F5F5F5;
	--color--lightgray3: #F8F8F8;
	--color--lightgray4: #D8D8D8;
	--color--white: #ffffff;
	--color--green: #06C755;
	--color--line_green: #00BE00;
	--color--yellow: #F6F680;
	--color--red: #BA3737;
	--color--nevy: #0D0D1C;

	--color--hover_text: #959595;
	--color--hover_icon: #959595;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	opacity: 0;
	transition: .4s;
	min-height: 100vh;
	margin: 0px;
	padding: 80px 0 0;
	background-color: var(--color--white);
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	color: var(--color--black);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: 0.05em;
/*	font-feature-settings: "palt";*/
}
._josefin {
	font-family: "Josefin Sans", sans-serif;
}
._roboto {
	font-family: "Roboto", sans-serif;
}
body.scroll-stop {
	overflow: hidden;
}

#header {
	width: 100%;
	height: 80px;
	background-color: var(--color--white);
	border-bottom: solid 1px var(--color--lightgray1);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
	.header__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		/* width: calc((1000 / 1280) * 100%); */
		width: 90%;
		max-width: 1000px;
		height: 100%;
		margin: 0 auto;
	}
		.header__menu_btn {
			display: flex;
			justify-content: center;
			align-items: center;
			width: 56px;
			height: 56px;
			position: relative;
			cursor: pointer;
		}
			.header__menu_btn::before {
				content: "";
				width: 100%;
				height: 100%;
				position: absolute;
				top: 0;
				left: 0;
				background-color: var(--color--lightgray2);
				opacity: 0;
			}
		@media (any-hover: hover) {
			.header__menu_btn::before {
				transition: .4s;
			}
			.header__menu_btn:hover::before {
				opacity: 1;
			}
		}
			.header__menu_btn__line {
				width: 25px;
				height: 1px;
				position: relative;
				background-color: var(--color--black);
			}
				.header__menu_btn__line::before,
				.header__menu_btn__line::after {
					content: "";
					width: 25px;
					height: 1px;
					position: absolute;
					background-color: var(--color--black);
					left: 0;
				}
				.header__menu_btn__line::before {
					top: -10px;
				}
				.header__menu_btn__line::after {
					bottom: -10px;
				}
		.header__global_nav {
			width: 100%;
			height: 100vh;
			position: fixed;
			top: 0;
			left: 0;
			z-index: 101;
			pointer-events: none;
		}
			.header__global_nav__bg {
				display: none;
				width: 100%;
				height: 100%;
				background-color: var(--color--black);
				position: absolute;
				top: 0;
				left: 0;
				opacity: 0.8;
				z-index: 1;
				pointer-events: auto;
			}
			.header__global_nav__contents {
				width: calc((370 / 440) * 100%);
				max-width: 370px;
				height: 100%;
				padding: 0;
				background-color: var(--color--white);
				position: absolute;
				top: 0;
				left: 0;
				z-index: 2;
				transform: translateX(-100%);
				transition: .4s;
				pointer-events: auto;
			}
			.header__global_nav__contents._nav_show {
				transform: translateX(0);
			}
				.header__global_nav__bg__close_btn {
					width: 36px;
					height: 36px;
					position: absolute;
					top: 25px;
					right: -48px;
					z-index: 2;
					pointer-events: none;
					cursor: pointer;
					opacity: 0;
					transition: .4s;
					transition-delay: .3s;
				}
				._nav_show .header__global_nav__bg__close_btn {
					pointer-events: auto;
					opacity: 1;
				}
			@media (any-hover: hover) {
				.header__global_nav__bg__close_btn:hover {
					background-color: rgba(255, 255, 255, 0.1);
				}
			}
					.header__global_nav__bg__close_btn::before,
					.header__global_nav__bg__close_btn::after {
						content: "";
						width: 25px;
						height: 2px;
						background-color: var(--color--white);
						position: absolute;
						top: 50%;
						left: 50%;
						transform: translate(-50%,-50%) rotate(45deg);
					}
					.header__global_nav__bg__close_btn::after {
						transform: translate(-50%,-50%) rotate(-45deg);
					}
				.header__global_nav__contents__inner {
					width: 100%;
					height: 100%;
					padding: 30px 20px 40px;
					overflow: auto;
				}
					.global_nav__head {
						width: 100%;
						height: auto;
						padding: 0 0 20px;
						border-bottom: solid 1px var(--color--lightgray1);
					}
						.global_nav__head__list {
							display: flex;
							justify-content: space-between;
							align-items: center;
							width: 100%;
							height: auto;
						}
							.global_nav__head__list__item {
								width: auto;
								height: auto;
							}
								.global_nav__head__list__item__link {
									display: block;
									width: auto;
									min-width: 63px;
									height: auto;
								}
									.global_nav__head__list__item__icon {
										display: block;
										width: 30px;
										height: auto;
										margin: 0 auto 5px;
										overflow: hidden;
									}
										.global_nav__head__list__item__icon__inner {
											display: block;
											width: 100%;
											height: auto;
											transform: translateY(100%);
											transition: .5s;
											transition-delay: 0s;
										}
										._nav_active .global_nav__head__list__item__icon__inner {
											transform: translateY(0);
										}
										._nav_active .global_nav__head__list__item:nth-of-type(1) .global_nav__head__list__item__icon__inner {
											transition-delay: .08s;
										}
										._nav_active .global_nav__head__list__item:nth-of-type(2) .global_nav__head__list__item__icon__inner {
											transition-delay: .16s;
										}
										._nav_active .global_nav__head__list__item:nth-of-type(3) .global_nav__head__list__item__icon__inner {
											transition-delay: .24s;
										}
										._nav_active .global_nav__head__list__item:nth-of-type(4) .global_nav__head__list__item__icon__inner {
											transition-delay: .32s;
										}
										.global_nav__head__list__item__icon svg {
											width: 100%;
											height: auto;
											fill: var(--color--black);
										}
									@media (any-hover: hover) {
										.global_nav__head__list__item__icon svg {
											transition: .4s;
										}
										.global_nav__head__list__item:hover .global_nav__head__list__item__icon svg {
											fill: var(--color--hover_icon);
										}
									}
									.global_nav__head__list__item__name {
										display: block;
										width: 100%;
										height: auto;
										font-size: 12px;
										font-weight: 500;
										line-height: 1.5;
										letter-spacing: 0.05em;
										text-align: center;
										color: var(--color--black);
										opacity: 0;
										transition: .5s;
										transition-delay: 0s;
									}
									._nav_active .global_nav__head__list__item:nth-of-type(1) .global_nav__head__list__item__name {
										transition-delay: .08s;
									}
									._nav_active .global_nav__head__list__item:nth-of-type(2) .global_nav__head__list__item__name {
										transition-delay: .16s;
									}
									._nav_active .global_nav__head__list__item:nth-of-type(3) .global_nav__head__list__item__name {
										transition-delay: .24s;
									}
									._nav_active .global_nav__head__list__item:nth-of-type(4) .global_nav__head__list__item__name {
										transition-delay: .32s;
									}
									._nav_active .global_nav__head__list__item__name {
										opacity: 1;
									}
										.global_nav__head__list__item__name__inner {
											display: inline-block;
										}
									@media (any-hover: hover) {
										.global_nav__head__list__item__name__inner {
											transition: .4s;
										}
										.global_nav__head__list__item:hover .global_nav__head__list__item__name__inner {
											color: var(--color--hover_text);
										}
									}
					.global_nav__search {
						width: 100%;
						height: auto;
						padding: 30px 0;
					}
						.global_nav__search__form {
							width: 100%;
							height: auto;
							opacity: 0;
							transition: .5s;
							transition-delay: 0s;
						}
						._nav_active .global_nav__search__form {
							opacity: 1;
							transition-delay: .08s;
						}
							.global_nav__search__form__inner {
								width: 100%;
								height: auto;
								display: flex;
								justify-content: space-between;
								align-items: center;
							}
								.global_nav__search__input {
									width: calc(100% - 40px);
									height: 45px;
									padding-left: 9px;
									border: solid 1px var(--color--black);
									border-right: none;
									font-size: 14px;
									font-weight: 500;
									line-height: 1.5;
									letter-spacing: 0.05em;
									color: var(--color--black);
								}
								.global_nav__search__input::-webkit-search-cancel-button {
									display: none;
								}
								.global_nav__search__input::placeholder {
									color: var(--color--gray2);
								}
								.global_nav__search__btn {
									display: flex;
									justify-content: center;
									align-items: center;
									width: 40px;
									height: 45px;
									border: solid 1px var(--color--black);
									background-color: var(--color--black);
									cursor: pointer;
								}
									.global_nav__search__btn__icon {
										display: block;
										width: 20px;
										height: auto;
									}
										.global_nav__search__btn__icon svg {
											width: 100%;
											height: auto;
											fill: var(--color--white);
										}
							@media (any-hover: hover) {
								.global_nav__search__btn {
									transition: .4s;
								}
								.global_nav__search__btn:hover {
									background-color: var(--color--white);
								}
									.global_nav__search__btn__icon svg {
										transition: .4s;
									}
									.global_nav__search__btn:hover .global_nav__search__btn__icon svg {
										fill: var(--color--black);
									}
							}
					.global_nav__menu {
						width: 100%;
						height: auto;
					}
						.global_nav__menu__list {
							width: 100%;
							height: auto;
							font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
						}
							.global_nav__menu__list__item {
								width: 100%;
								height: auto;
								border-bottom: solid 1px var(--color--lightgray1);
								opacity: 0;
								transition: .5s;
								transition-delay: 0s;
								transform: translateX(-10px);
							}
							._nav_active .global_nav__menu__list__item:nth-of-type(1) {
								transition-delay: .08s;
							}
							._nav_active .global_nav__menu__list__item:nth-of-type(2) {
								transition-delay: .16s;
							}
							._nav_active .global_nav__menu__list__item:nth-of-type(3) {
								transition-delay: .24s;
							}
							._nav_active .global_nav__menu__list__item:nth-of-type(4) {
								transition-delay: .32s;
							}
							._nav_active .global_nav__menu__list__item:nth-of-type(5) {
								transition-delay: .4s;
							}
							._nav_active .global_nav__menu__list__item:nth-of-type(6) {
								transition-delay: .48s;
							}
							._nav_active .global_nav__menu__list__item:nth-of-type(7) {
								transition-delay: .56s;
							}
							._nav_active .global_nav__menu__list__item:nth-of-type(8) {
								transition-delay: .64s;
							}
							._nav_active .global_nav__menu__list__item:nth-of-type(9) {
								transition-delay: .72s;
							}
							._nav_active .global_nav__menu__list__item:nth-of-type(10) {
								transition-delay: .8s;
							}
							._nav_active .global_nav__menu__list__item:nth-of-type(11) {
								transition-delay: .88s;
							}
							._nav_active .global_nav__menu__list__item:nth-of-type(12) {
								transition-delay: .96s;
							}
							._nav_active .global_nav__menu__list__item {
								opacity: 1;
								transform: translateX(0);
							}
								/* メニューのボタン - 1階層目 */
								.global_nav__menu__list__item__btn {
									display: flex;
									justify-content: flex-start;
									align-items: center;
									width: 100%;
									height: auto;
									padding: 22px 0 18px;
									font-size: 16px;
									font-weight: 500;
									line-height: 1;
									letter-spacing: 0.05em;
									color: var(--color--black);
									transition: .4s;
								}
								.global_nav__menu__list__item__btn.has_child {
									position: relative;
									cursor: pointer;
								}
							@media (any-hover: hover) {
								.global_nav__menu__list__item__btn:hover {
									color: var(--color--hover_text);
								}
							}
									.global_nav__menu__list__item__btn.has_child::before,
									.global_nav__menu__list__item__btn.has_child::after {
										content: "";
										position: absolute;
										top: 50%;
										right: 6px;
										transform: translate(50%,-50%);
										background-color: var(--color--black);
									}
									.global_nav__menu__list__item__btn.has_child::before {
										width: 12px;
										height: 1px;
									}
									.global_nav__menu__list__item__btn.has_child::after {
										width: 1px;
										height: 12px;
										transition: .4s;
									}
									.global_nav__menu__list__item__btn.has_child._open::after {
										transform: translate(50%,-50%) rotate(90deg);
									}
								.global_nav__menu__list__item__btn.has_child._open {
									padding: 22px 0 14px;
								}
								.global_nav__child__menu {
									display: none;
									width: 100%;
									height: auto;
									padding: 0 0 15px;
								}
									.global_nav__child__menu__list {
										display: flex;
										flex-direction: column;
										row-gap: 8px;
										width: 100%;
										height: auto;
									}
										.global_nav__child__menu__list__item {
											width: 100%;
											height: auto;
											opacity: 0;
											transition: .4s;
											transition-delay: .3s;
											transform: translateX(-10px);
										}
										.global_nav__child__menu._show .global_nav__child__menu__list__item:nth-of-type(1) {
											transition-delay: .06s;
										}
										.global_nav__child__menu._show .global_nav__child__menu__list__item:nth-of-type(2) {
											transition-delay: .12s;
										}
										.global_nav__child__menu._show .global_nav__child__menu__list__item:nth-of-type(3) {
											transition-delay: .18s;
										}
										.global_nav__child__menu._show .global_nav__child__menu__list__item:nth-of-type(4) {
											transition-delay: .24s;
										}
										.global_nav__child__menu._show .global_nav__child__menu__list__item:nth-of-type(5) {
											transition-delay: .3s;
										}
										.global_nav__child__menu._show .global_nav__child__menu__list__item:nth-of-type(6) {
											transition-delay: .36s;
										}
										.global_nav__child__menu._show .global_nav__child__menu__list__item:nth-of-type(7) {
											transition-delay: .42s;
										}
										.global_nav__child__menu._show .global_nav__child__menu__list__item:nth-of-type(8) {
											transition-delay: .48s;
										}
										.global_nav__child__menu._show .global_nav__child__menu__list__item:nth-of-type(9) {
											transition-delay: .54s;
										}
										.global_nav__child__menu._show .global_nav__child__menu__list__item:nth-of-type(10) {
											transition-delay: .6s;
										}
										.global_nav__child__menu._show .global_nav__child__menu__list__item {
											opacity: 1;
											transform: translateX(0);
										}
											/* メニューのボタン - 2階層目 */
											.global_nav__child__menu__list__item__btn {
												display: flex;
												justify-content: flex-start;
												align-items: center;
												width: 100%;
												height: 24px;
												padding: 4px 0 0 10px;
												font-size: 14px;
												font-weight: 500;
												line-height: 1;
												letter-spacing: 0.05em;
												color: var(--color--black);
												position: relative;
											}
												.global_nav__child__menu__list__item__btn::before {
													content: '';
													display: block;
													width: 4px;
													height: 1px;
													background-color: var(--color--black);
													position: absolute;
													top: 12px;
													left: 0;
												}
											.global_nav__child__menu__list__item__btn.has_child {
												cursor: pointer;
											}
											.global_nav__child__menu__list__item__btn._400 {
												font-weight: 400;
											}
										@media (any-hover: hover) {
											.global_nav__child__menu__list__item__btn {
												transition: .4s;
											}
											.global_nav__child__menu__list__item__btn:hover {
												color: var(--color--hover_text);
											}
										}
											.global_nav__grandchild__menu {
												display: none;
												width: 100%;
												height: auto;
												padding: 0 0 0 10px;
												margin: 6px 0 0;
											}
												.global_nav__grandchild__menu__list {
													display: flex;
													flex-direction: column;
													row-gap: 8px;
													width: 100%;
													height: auto;
												}
													.global_nav__grandchild__menu__list__item {
														width: 100%;
														height: auto;
														opacity: 0;
														transition: .4s;
														transition-delay: .3s;
														transform: translateX(-10px);
													}
														.global_nav__grandchild__menu._show .global_nav__grandchild__menu__list__item:nth-of-type(1) {
															transition-delay: .06s;
														}
														.global_nav__grandchild__menu._show .global_nav__grandchild__menu__list__item:nth-of-type(2) {
															transition-delay: .12s;
														}
														.global_nav__grandchild__menu._show .global_nav__grandchild__menu__list__item:nth-of-type(3) {
															transition-delay: .18s;
														}
														.global_nav__grandchild__menu._show .global_nav__grandchild__menu__list__item:nth-of-type(4) {
															transition-delay: .24s;
														}
														.global_nav__grandchild__menu._show .global_nav__grandchild__menu__list__item:nth-of-type(5) {
															transition-delay: .3s;
														}
														.global_nav__grandchild__menu._show .global_nav__grandchild__menu__list__item:nth-of-type(6) {
															transition-delay: .36s;
														}
														.global_nav__grandchild__menu._show .global_nav__grandchild__menu__list__item:nth-of-type(7) {
															transition-delay: .42s;
														}
														.global_nav__grandchild__menu._show .global_nav__grandchild__menu__list__item:nth-of-type(8) {
															transition-delay: .48s;
														}
														.global_nav__grandchild__menu._show .global_nav__grandchild__menu__list__item:nth-of-type(9) {
															transition-delay: .54s;
														}
														.global_nav__grandchild__menu._show .global_nav__grandchild__menu__list__item:nth-of-type(10) {
															transition-delay: .6s;
														}
														.global_nav__grandchild__menu._show .global_nav__grandchild__menu__list__item {
															opacity: 1;
															transform: translateX(0);
														}
														/* メニューのボタン - 3階層目 */
														.global_nav__grandchild__menu__list__item__btn {
															display: flex;
															justify-content: flex-start;
															align-items: center;
															width: 100%;
															height: 21px;
															padding: 2px 0 0 10px;
															font-size: 14px;
															font-weight: 500;
															line-height: 1;
															letter-spacing: 0.05em;
															color: var(--color--black);
														}
													@media (any-hover: hover) {
														.global_nav__grandchild__menu__list__item__btn {
															transition: .4s;
														}
														.global_nav__grandchild__menu__list__item__btn:hover {
															color: var(--color--hover_text);
														}
													}
					.global_nav__legal {
						width: 100%;
						height: auto;
						padding: 30px 0 0;
					}
						.global_nav__legal__list {
							display: flex;
							flex-direction: column;
							row-gap: 14px;
							width: 100%;
							height: auto;
						}
							.global_nav__legal__list__item {
								width: 100%;
								height: auto;
								font-size: 12px;
								font-weight: 500;
								line-height: 1.5;
								letter-spacing: 0.05em;
								opacity: 0;
								transition: .4s;
								transition-delay: .3s;
								transform: translateX(-10px);
							}
							._nav_active .global_nav__legal__list__item:nth-of-type(1) {
								transition-delay: .06s;
							}
							._nav_active .global_nav__legal__list__item:nth-of-type(2) {
								transition-delay: .12s;
							}
							._nav_active .global_nav__legal__list__item:nth-of-type(3) {
								transition-delay: .18s;
							}
							._nav_active .global_nav__legal__list__item:nth-of-type(4) {
								transition-delay: .24s;
							}
							._nav_active .global_nav__legal__list__item:nth-of-type(5) {
								transition-delay: .3s;
							}
							._nav_active .global_nav__legal__list__item:nth-of-type(6) {
								transition-delay: .36s;
							}
							._nav_active .global_nav__legal__list__item {
								opacity: 1;
								transform: translateX(0);
							}
							.global_nav__legal__list__item__link {
								color: var(--color--gray1);
							}
							@media (any-hover: hover) {
								.global_nav__legal__list__item__link {
									transition: .4s;
								}
								.global_nav__legal__list__item__link:hover {
									color: var(--color--gray2);
								}
							}
		.header__logo {
			width: 250px;
			height: auto;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%,-50%);
			z-index: 3;
		}
			.header__logo svg {
				width: 100%;
				height: auto;
				fill: var(--color--black);
			}
		@media (any-hover: hover) {
			.header__logo svg {
				transition: .4s;
			}
			.header__logo:hover svg {
				fill: var(--color--hover_text);
			}
		}
		.header__shop_menu {
			width: auto;
			height: auto;
		}
			.header__shop_menu__list {
				display: flex;
				justify-content: flex-end;
				align-items: center;
				column-gap: 20px;
				width: auto;
				height: auto;
			}
				.header__shop_menu__list__item {
					width: 25px;
					height: 25px;
				}
					.header__shop_menu__list__item__link {
						display: block;
						width: 100%;
						height: 100%;
						position: relative;
					}
					.header__shop_menu__list__item__link._search {
						cursor: pointer;
					}
						.header__shop_menu__list__item__link svg {
							width: 100%;
							height: 100%;
							stroke: var(--color--black);
						}
					@media (any-hover: hover) {
						.header__shop_menu__list__item__link svg {
							transition: .4s;
						}
						.header__shop_menu__list__item__link:hover svg {
							stroke: var(--color--hover_icon);
						}
					}
						.header__shop_menu__list__item__cart_quantity {
							display: flex;
							justify-content: center;
							align-items: center;
							width: 15px;
							height: 15px;
							padding-top: 0.1em;
							border-radius: 9999px;
							background-color: var(--color--black);
							color: var(--color--white);
							font-size: 10px;
							font-weight: 700;
							line-height: 1;
							letter-spacing: -0.05em;
							position: absolute;
							top: -8px;
							right: -8px;
							z-index: 1;
						}
		.header__search__modal {
			width: 100%;
			height: 100vh;
			position: fixed;
			top: 0;
			left: 0;
			z-index: 10000;
			opacity: 0;
			visibility: hidden;
			transition: opacity .4s, visibility .4s;
			pointer-events: none;
		}
		.header__search__modal._show {
			opacity: 1;
			visibility: visible;
			pointer-events: auto;
		}
			.header__search__modal__bg {
				width: 100%;
				height: 100%;
				background-color: var(--color--black);
				opacity: 0.8;
				position: absolute;
				top: 0;
				left: 0;
				z-index: 1;
			}
			.header__search__modal__inner {
				width: 100%;
				height: 100%;
				overflow: auto;
				padding: 145px 0;
				margin: 0 auto;
				position: relative;
				z-index: 2;
				pointer-events: none;
			}
				.header__search__modal__content {
					width: 100%;
					max-width: 800px;
					height: auto;
					padding: 60px 50px;
					margin: 0 auto;
					border-radius: 30px;
					background-color: var(--color--white);
					position: relative;
					opacity: 0;
					transform: translateY(30px);
					visibility: hidden;
					transition: opacity .4s, visibility .4s, transform .4s;
					pointer-events: none;
				}
				._show .header__search__modal__content {
					opacity: 1;
					transform: translateY(0);
					visibility: visible;
					pointer-events: auto;
				}
					.header__search__modal__close_btn {
						width: 38px;
						height: 38px;
						background-color: var(--color--white);
						position: absolute;
						top: 50px;
						right: 50px;
						z-index: 2;
						cursor: pointer;
					}
						.header__search__modal__close_btn::before,
						.header__search__modal__close_btn::after {
							content: '';
							display: block;
							background-color: var(--color--black);
							position: absolute;
							top: 50%;
							left: 50%;
							transform: translate(-50%, -50%) rotate(45deg);
						}
						.header__search__modal__close_btn::before {
							width: 26px;
							height: 2px;
						}
						.header__search__modal__close_btn::after {
							width: 2px;
							height: 26px;
						}
				@media (any-hover: hover) {
					.header__search__modal__close_btn {
						transition: .4s;
					}
					.header__search__modal__close_btn:hover {
						background-color: var(--color--lightgray2);
					}
				}
					.header__search__modal__heading {
						width: 100%;
						height: auto;
						margin: 0 auto 40px;
						font-size: 16px;
						font-weight: 700;
						line-height: 1;
						letter-spacing: 0.05em;
						text-align: center;
					}
					.header__search__modal__wrap {
						width: 100%;
						max-width: 400px;
						height: auto;
						margin: 0 auto;
					}
						.header__search__modal__input_wrap {
							display: flex;
							justify-content: space-between;
							align-items: center;
							width: 100%;
							height: auto;
							margin: 0 auto;
							position: relative;
						}
							.header__search__modal__input {
								width: 100%;
								height: 45px;
								padding-left: 10px;
								border: solid 1px var(--color--black);
								font-size: 14px;
								font-weight: 500;
								line-height: calc(20 / 14);
								letter-spacing: 0.05em;
								color: var(--color--black);
							}
							.header__search__modal__input::placeholder {
								color: var(--color--gray2);
							}
							.header__search__modal__reset_btn {
								width: 20px;
								height: 20px;
								position: absolute;
								top: 50%;
								right: 50px;
								transform: translateY(-50%);
								cursor: pointer;
							}
								.header__search__modal__reset_btn::before,
								.header__search__modal__reset_btn::after {
									content: '';
									display: block;
									background-color: var(--color--gray2);
									position: absolute;
									top: 50%;
									left: 50%;
									transform: translate(-50%, -50%) rotate(45deg);
								}
									.header__search__modal__reset_btn::before {
										width: 13px;
										height: 1px;
									}
									.header__search__modal__reset_btn::after {
										width: 1px;
										height: 13px;
									}
							.header__search__modal__submit_btn {
								display: flex;
								justify-content: center;
								align-items: center;
								width: 40px;
								height: 45px;
								background-color: var(--color--black);
								border: solid 1px var(--color--black);
								border-left: none;
								cursor: pointer;
							}
								.header__search__modal__submit_btn svg {
									width: 20px;
									height: auto;
									stroke: var(--color--white);
								}
						@media (any-hover: hover) {
							.header__search__modal__submit_btn {
								transition: .4s;
							}
							.header__search__modal__submit_btn:hover {
								background-color: var(--color--white);
							}
								.header__search__modal__submit_btn svg {
									transition: .4s;
								}
								.header__search__modal__submit_btn:hover svg {
									stroke: var(--color--black);
								}
						}

#footer {
	width: 100%;
	height: auto;
	padding: 50px 0;
	background-color: var(--color--black);
}
	.footer__inner {
		width: 90%;
		max-width: 1000px;
		height: auto;
		margin: 0 auto;
	}
		.footer__logo {
			width: 250px;
			height: auto;
			margin: 0 auto 50px;
		}
			.footer__logo svg {
				width: 100%;
				height: auto;
				fill: var(--color--white);
			}
		.footer__customer {
			display: flex;
			justify-content: space-between;
			align-items: center;
			width: 100%;
			height: auto;
			margin: 0 auto 50px;
		}
			.footer__customer__item {
				width: 48%;
				height: auto;
			}
				.footer__customer__btn {
					display: flex;
					justify-content: center;
					align-items: center;
					width: 100%;
					height: 60px;
					background-color: var(--color--white);
					border: solid 1px var(--color--white);
				}
					.footer__customer__btn__icon {
						width: 20px;
						height: auto;
						margin-right: 5px;
					}
						.footer__customer__btn__icon svg {
							width: 100%;
							height: auto;
							stroke: var(--color--black);
						}
					.footer__customer__btn__text {
						padding-top: 4px;
						font-size: 14px;
						font-weight: 500;
						line-height: 1;
						letter-spacing: 0.05em;
						color: var(--color--black);
					}
			@media (any-hover: hover) {
				.footer__customer__btn {
					transition: .4s;
				}
				.footer__customer__btn:hover {
					background-color: var(--color--black);
				}
					.footer__customer__btn__icon svg {
						transition: .4s;
					}
					.footer__customer__btn:hover .footer__customer__btn__icon svg {
						stroke: var(--color--white);
					}
					.footer__customer__btn__text {
						transition: .4s;
					}
					.footer__customer__btn:hover .footer__customer__btn__text {
						color: var(--color--white);
					}
			}
		.footer__contents {
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			width: 100%;
			height: auto;
			margin: 0 auto 50px;
		}
			.footer__form,
			.footer__menu {
				width: 48%;
				height: auto;
			}
			.footer__form {
				display: flex;
				flex-direction: column;
				row-gap: 30px;
			}
				.footer__form__item {
					width: 100%;
					height: auto;
				}
					.footer__form__item__heading {
						width: 100%;
						height: auto;
						margin: 0 auto 10px;
						font-size: 14px;
						font-weight: 500;
						line-height: 1;
						letter-spacing: 0.05em;
						color: var(--color--white);
					}
					.footer__form__item__text {
						width: 100%;
						height: auto;
						margin: 0 auto 5px;
						font-size: 12px;
						font-weight: 500;
						line-height: calc(17 / 12);
						letter-spacing: 0.05em;
						color: var(--color--white);
					}
					.footer__form__subscribe {
						display: flex;
						justify-content: space-between;
						align-items: center;
						width: 100%;
						height: auto;
					}
						.footer__form__subscribe__input {
							width: calc(100% - 60px);
							height: 45px;
							padding-left: 10px;
							border-bottom: solid 1px var(--color--white);
							font-size: 12px;
							font-weight: 500;
							line-height: 1;
							letter-spacing: 0.05em;
							color: var(--color--white);
						}
						.footer__form__subscribe__btn {
							display: flex;
							justify-content: center;
							align-items: center;
							width: 60px;
							height: 45px;
							padding: 0;
							border-bottom: solid 1px var(--color--white);
							font-size: 10px;
							font-weight: 500;
							line-height: 1;
							letter-spacing: 0.05em;
							color: var(--color--white);
							cursor: pointer;
						}
							.footer__form__subscribe__btn__text {
								padding-top: 3px;
							}
							.footer__form__subscribe__btn__arrow {
								width: 6px;
								height: auto;
								margin-left: 6.5px;
							}
								.footer__form__subscribe__btn__arrow svg {
									width: 100%;
									height: auto;
									fill: var(--color--white);
								}
						@media (any-hover: hover) {
							.footer__form__subscribe__btn__text {
								transition: .4s;
							}
							.footer__form__subscribe__btn:hover .footer__form__subscribe__btn__text {
								color: var(--color--hover_text);
							}
							.footer__form__subscribe__btn__arrow {
								transition: .4s;
							}
							.footer__form__subscribe__btn:hover .footer__form__subscribe__btn__arrow {
								transform: translate(2px,0);
							}
								.footer__form__subscribe__btn__arrow svg {
									transition: .4s;
								}
								.footer__form__subscribe__btn:hover .footer__form__subscribe__btn__arrow svg {
									fill: var(--color--hover_icon);
								}
						}
					.footer__form__search {
						width: 100%;
						height: auto;
					}
						.footer__form__search__inner {
							width: 100%;
							height: auto;
							display: flex;
							justify-content: space-between;
							align-items: center;
						}
							.footer__form__search__input {
								width: calc(100% - 40px);
								height: 45px;
								padding-left: 9px;
								border: solid 1px var(--color--white);
								border-right: none;
								font-size: 12px;
								font-weight: 500;
								line-height: 1.5;
								letter-spacing: 0.05em;
								color: var(--color--white);
							}
							.footer__form__search__input::-webkit-search-cancel-button {
								display: none;
							}
							.footer__form__search__input::placeholder {
								color: var(--color--gray2);
							}
							.footer__form__search__btn {
								display: flex;
								justify-content: center;
								align-items: center;
								width: 40px;
								height: 45px;
								border: solid 1px var(--color--white);
								background-color: var(--color--white);
								cursor: pointer;
							}
								.footer__form__search__btn__icon {
									display: block;
									width: 20px;
									height: auto;
								}
									.footer__form__search__btn__icon svg {
										width: 100%;
										height: auto;
										fill: var(--color--black);
									}
						@media (any-hover: hover) {
							.footer__form__search__btn {
								transition: .4s;
							}
							.footer__form__search__btn:hover {
								background-color: var(--color--black);
							}
								.footer__form__search__btn__icon svg {
									transition: .4s;
								}
								.footer__form__search__btn:hover .footer__form__search__btn__icon svg {
									fill: var(--color--white);
								}
						}
				.footer__menu__list {
					width: 100%;
					height: auto;
					font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
				}
					.footer__menu__list__item {
						width: 100%;
						height: auto;
						border-bottom: solid 1px var(--color--lightgray1);
					}
						/* メニューのボタン - 1階層目 */
						.footer__menu__list__item__btn {
							display: flex;
							justify-content: flex-start;
							align-items: center;
							width: 100%;
							height: auto;
							padding: 22px 0 18px;
							font-size: 16px;
							font-weight: 500;
							line-height: 1;
							letter-spacing: 0.05em;
							color: var(--color--white);
							transition: .4s;
						}
						.footer__menu__list__item__btn.has_child {
							position: relative;
							cursor: pointer;
						}
					@media (any-hover: hover) {
						.footer__menu__list__item__btn:hover {
							color: var(--color--hover_text);
						}
					}
							.footer__menu__list__item__btn.has_child::before,
							.footer__menu__list__item__btn.has_child::after {
								content: "";
								position: absolute;
								top: 50%;
								right: 6px;
								transform: translate(50%,-50%);
								background-color: var(--color--white);
							}
							.footer__menu__list__item__btn.has_child::before {
								width: 12px;
								height: 1px;
							}
							.footer__menu__list__item__btn.has_child::after {
								width: 1px;
								height: 12px;
								transition: .4s;
							}
							.footer__menu__list__item__btn.has_child._open::after {
								transform: translate(50%,-50%) rotate(90deg);
							}
						.footer__menu__list__item__btn.has_child._open {
							padding: 22px 0 14px;
						}
						.footer__child__menu {
							display: none;
							width: 100%;
							height: auto;
							padding: 0 0 15px;
						}
							.footer__child__menu__list {
								display: flex;
								flex-direction: column;
								row-gap: 8px;
								width: 100%;
								height: auto;
							}
								.footer__child__menu__list__item {
									width: 100%;
									height: auto;
									opacity: 0;
									transition: .4s;
									transition-delay: .3s;
									transform: translateX(-10px);
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(1) {
									transition-delay: .06s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(2) {
									transition-delay: .12s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(3) {
									transition-delay: .18s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(4) {
									transition-delay: .24s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(5) {
									transition-delay: .3s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(6) {
									transition-delay: .36s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(7) {
									transition-delay: .42s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(8) {
									transition-delay: .48s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(9) {
									transition-delay: .54s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(10) {
									transition-delay: .6s;
								}
								.footer__child__menu._show .footer__child__menu__list__item {
									opacity: 1;
									transform: translateX(0);
								}
									/* メニューのボタン - 2階層目 */
									.footer__child__menu__list__item__btn {
										display: flex;
										justify-content: flex-start;
										align-items: center;
										width: 100%;
										height: 24px;
										padding: 4px 0 0 10px;
										font-size: 14px;
										font-weight: 500;
										line-height: 1;
										letter-spacing: 0.05em;
										color: var(--color--white);
										position: relative;
									}
										.footer__child__menu__list__item__btn::before {
											content: '';
											display: block;
											width: 4px;
											height: 1px;
											background-color: var(--color--white);
											position: absolute;
											top: 12px;
											left: 0;
										}
									.footer__child__menu__list__item__btn.has_child {
										cursor: pointer;
									}
									.footer__child__menu__list__item__btn._400 {
										font-weight: 400;
									}
								@media (any-hover: hover) {
									.footer__child__menu__list__item__btn {
										transition: .4s;
									}
									.footer__child__menu__list__item__btn:hover {
										color: var(--color--hover_text);
									}
								}
									.footer__grandchild__menu {
										display: none;
										width: 100%;
										height: auto;
										padding: 0 0 0 10px;
										margin: 6px 0 0;
									}
										.footer__grandchild__menu__list {
											display: flex;
											flex-direction: column;
											row-gap: 8px;
											width: 100%;
											height: auto;
										}
											.footer__grandchild__menu__list__item {
												width: 100%;
												height: auto;
												opacity: 0;
												transition: .4s;
												transition-delay: .3s;
												transform: translateX(-10px);
											}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(1) {
													transition-delay: .06s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(2) {
													transition-delay: .12s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(3) {
													transition-delay: .18s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(4) {
													transition-delay: .24s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(5) {
													transition-delay: .3s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(6) {
													transition-delay: .36s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(7) {
													transition-delay: .42s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(8) {
													transition-delay: .48s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(9) {
													transition-delay: .54s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(10) {
													transition-delay: .6s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item {
													opacity: 1;
													transform: translateX(0);
												}
												/* メニューのボタン - 3階層目 */
												.footer__grandchild__menu__list__item__btn {
													display: flex;
													justify-content: flex-start;
													align-items: center;
													width: 100%;
													height: 21px;
													padding: 2px 0 0 10px;
													font-size: 14px;
													font-weight: 500;
													line-height: 1;
													letter-spacing: 0.05em;
													color: var(--color--white);
												}
											@media (any-hover: hover) {
												.footer__grandchild__menu__list__item__btn {
													transition: .4s;
												}
												.footer__grandchild__menu__list__item__btn:hover {
													color: var(--color--hover_text);
												}
											}
		.footer__sub_menu {
			width: 100%;
			height: auto;
			margin: 0 auto 30px;
		}
			.footer__sub_menu__list {
				display: flex;
				justify-content: center;
				align-items: flex-start;
				flex-wrap: wrap;
				row-gap: 10px;
				width: 100%;
				max-width: 350px;
				height: auto;
				margin: 0 auto;
			}
				.footer__sub_menu__list__item {
					font-size: 12px;
					font-weight: 500;
					line-height: 1;
					letter-spacing: 0.05em;
					position: relative;
				}
					.footer__sub_menu__list__item::before {
						content: '';
						display: block;
						width: 1px;
						height: 100%;
						background-color: var(--color--white);
						position: absolute;
						top: 0;
						left: 0;
						transform: translateX(-50%);
					}
					.footer__sub_menu__list__item:nth-of-type(3)::after {
						content: '';
						display: block;
						width: 1px;
						height: 100%;
						background-color: var(--color--white);
						position: absolute;
						top: 0;
						right: 0;
						transform: translateX(50%);
					}
					.footer__sub_menu__list__item__link {
						display: flex;
						justify-content: center;
						align-items: center;
						padding: 5px 10px;
						color: var(--color--white);
					}
				@media (any-hover: hover) {
					.footer__sub_menu__list__item__link {
						transition: .4s;
					}
					.footer__sub_menu__list__item__link:hover {
						color: var(--color--hover_text);
					}
				}
		.footer__sns {
			width: 100%;
			height: auto;
			margin: 0 auto 30px;
		}
			.footer__sns__list {
				display: flex;
				justify-content: center;
				align-items: center;
				width: 100%;
				height: auto;
			}
				.footer__sns__list__item {
					width: 30px;
					height: auto;
				}
					.footer__sns__list__item__link {
						display: block;
						width: 100%;
						height: auto;
					}
						.footer__sns__list__item__link__icon {
							display: block;
							width: 100%;
							height: auto;
						}
							.footer__sns__list__item__link__icon svg {
								width: 100%;
								height: auto;
								fill: var(--color--white);
							}
						@media (any-hover: hover) {
							.footer__sns__list__item__link__icon svg {
								transition: .4s;
							}
							.footer__sns__list__item__link:hover .footer__sns__list__item__link__icon svg {
								fill: var(--color--hover_icon);
							}
						}
		.footer__copyright {
			width: 100%;
			height: auto;
		}
			.footer__copyright__text {
				width: 100%;
				height: auto;
				font-size: 12px;
				font-weight: 400;
				line-height: 1;
				letter-spacing: 0.05em;
				text-align: center;
				color: var(--color--gray2);
			}

/* 共通 */
.pankuzu {
	width: 100%;
	height: 30px;
	background-color: var(--color--lightgray2);
}
	.pankuzu__list {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: 90%;
		max-width: 1000px;
		height: 100%;
		padding: 2px 0 0;
		margin: 0 auto;
	}
		.pankuzu__item {
			margin-right: 24px;
			font-family: "Josefin Sans", sans-serif;
			font-size: 10px;
			font-weight: 500;
			line-height: 1.5;
			letter-spacing: 0.05em;
			position: relative;
		}
			.pankuzu__link {
				color: var(--color--gray2);
			}
		@media (any-hover: hover) {
			a.pankuzu__link {
				transition: .4s;
			}
			a.pankuzu__link:hover {
				color: var(--color--black);
			}
		}
			.pankuzu__item svg {
				width: 5px;
				height: auto;
				fill: var(--color--gray2);
				position: absolute;
				top: 7.5px;
				right: -14px;
				transform: translateY(-50%);
			}

.section__heading {
	width: 100%;
	height: auto;
	padding: 0 0 10px;
	margin: 0 auto 30px;
	font-family: "Josefin Sans";
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.05em;
	color: var(--color--black);
	position: relative;
}
	.section__heading::after {
		content: '';
		display: block;
		width: 100%;
		height: 1px;
		background-color: var(--color--lightgray1);
		position: absolute;
		bottom: 0;
		left: 0;
	}

.cmn_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	background-color: var(--color--black);
	border: solid 1px var(--color--black);
	cursor: pointer;
}
	.cmn_btn__txt {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
		padding: 0;
		font-size: 14px;
		font-weight: 400;
		line-height: 1;
		letter-spacing: 0.02em;
		color: var(--color--white);
	}
	._josefin .cmn_btn__txt,
	.cmn_btn__txt._josefin {
		margin-bottom: -4px;
	}
		.cmn_btn__txt::before,
		.cmn_btn__txt::after {
			content: '';
			display: block;
			width: 10px;
			height: 1px;
			background-color: var(--color--white);
		}
		._josefin .cmn_btn__txt::before,
		._josefin .cmn_btn__txt::after,
		.cmn_btn__txt._josefin::before,
		.cmn_btn__txt._josefin::after {
			margin-top: -2px;
		}
@media (any-hover: hover) {
.cmn_btn {
	transition: .4s;
}
.cmn_btn:hover {
	background-color: var(--color--white);
}
	.cmn_btn__txt {
		transition: .4s;
	}
	.cmn_btn:hover .cmn_btn__txt {
		color: var(--color--black);
	}
		.cmn_btn__txt::before,
		.cmn_btn__txt::after {
			transition: .4s;
		}
		.cmn_btn:hover .cmn_btn__txt::before,
		.cmn_btn:hover .cmn_btn__txt::after {
			background-color: var(--color--black);
		}
}

#member_services {
	width: 100%;
	height: auto;
	margin: 0 auto;
}
	.member_services__inner {
		width: 90%;
		max-width: 1000px;
		height: auto;
		margin: 0 auto;
	}
		#member_services .section__heading {
			text-align: center;
		}
		.member_services__contents {
			width: 100%;
			max-width: 495px;
			height: auto;
			margin: 0 auto;
		}
			.member_services__link {
				display: block;
				width: 100%;
				height: auto;
				position: relative;
				overflow: hidden;
				aspect-ratio: 495 / 275;
			}
				.member_services__link::before {
					content: '';
					display: block;
					width: 100%;
					height: 100%;
					background-color: var(--color--nevy);
					opacity: .6;
					position: absolute;
					top: 0;
					left: 0;
					z-index: 1;
				}
				.member_services__link img {
					width: 100%;
					height: 100%;
					object-fit: cover;
					object-position: center;
				}
			@media (any-hover: hover) {
				.member_services__link::before {
					transition: .4s;
				}
				.member_services__link:hover::before {
					opacity: .3;
				}
				.member_services__link img {
					transition: .4s;
				}
				.member_services__link:hover img {
					transform: scale(1.05);
				}
			}
				.member_services__link__details {
					width: 100%;
					height: auto;
					position: absolute;
					top: 50%;
					left: 0;
					transform: translate(0%, -50%);
					z-index: 2;
				}
					.member_services__link__details__txt_en {
						width: 100%;
						height: auto;
						font-size: 16px;
						font-weight: 500;
						line-height: calc(24 / 16);
						letter-spacing: 0.05em;
						text-align: center;
						color: var(--color--white);
					}
					.member_services__link__details__txt_ja {
						width: 100%;
						height: auto;
						font-size: 12px;
						font-weight: 400;
						line-height: calc(18 / 12);
						letter-spacing: 0.05em;
						text-align: center;
						color: var(--color--white);
					}

.pagination_wrap {
	width: 100%;
	height: auto;
	margin: 60px auto 0;
}
	.c-pagination {
		width: 100%;
		height: auto;
	}
		.c-pagination__list {
			display: flex;
			justify-content: center;
			align-items: center;
			column-gap: 25px;
			width: 100%;
			height: auto;
		}
			.c-pagination__list__item {
				width: auto;
				height: auto;
				font-size: 16px;
				font-weight: 400;
				line-height: calc(19 / 16);
				letter-spacing: 0.05em;
			}
				a.c-pagination__list__item__page {
					color: var(--color--gray2);
				}
				span.c-pagination__list__item__page {
					color: var(--color--gray2);
				}
				.is-active span.c-pagination__list__item__page {
					color: var(--color--black);
				}
			@media (any-hover: hover) {
				a.c-pagination__list__item__page {
					transition: .4s;
				}
				a.c-pagination__list__item__page:hover {
					color: var(--color--black);
				}
			}
				.c-pagination__list__item__prev,
				.c-pagination__list__item__next {
					display: block;
					width: 26px;
					height: 26px;
					position: relative;
				}
					.c-pagination__list__item__prev::before,
					.c-pagination__list__item__next::before {
						content: "";
						width: 100%;
						height: 100%;
						background-color: var(--color--lightgray2);
						opacity: 0;
						position: absolute;
						top: 0;
						left: 0;
						z-index: 1;
					}
					.c-pagination__list__item__prev svg,
					.c-pagination__list__item__next svg {
						fill: var(--color--black);
						position: relative;
						z-index: 2;
					}
				@media (any-hover: hover) {
					.c-pagination__list__item__prev::before,
					.c-pagination__list__item__next::before {
						transition: .4s;
					}
					.c-pagination__list__item__prev:hover::before,
					.c-pagination__list__item__next:hover::before {
						opacity: 1;
					}
				}

.control-alert {
	width: 100%;
	height: auto;
	padding: 10px 20px;
	margin: 20px auto;
}
.control-alert.alert-success {
	background-color: var(--color--lightgray4);
}
.control-alert.alert-danger {
	background-color: var(--color--black);
}
	.control-alert .text {
		font-size: 14px;
		font-weight: 400;
		line-height: calc(21 / 14);
		letter-spacing: 0.05em;
		text-align: center;
		color: var(--color--black);
	}
	.control-alert.alert-danger .text {
		color: var(--color--white);
	}

/* PC ================================================== */
@media all and (min-width: 720px){
.tablet,.sp {display: none;}
.pc {display: inline-block;}
.view_sp {display: none;}
.view_tablet {display: none;}
.view_pc {display: block;}
body {}
h1{}
h2{}
h3{}
h4{}
h5{}
h6{}
}

/* Tablet ================================================== */
@media all and (max-width: 719px){
.pc,.sp {display: none;}
.tablet {display: inline-block;}
.view_pc {display: none;}
.view_sp {display: none;}
.view_tablet {display: block;}
body {
	padding: 60px 0 0;
}
h1{}
h2{}
h3{}
h4{}
h5{}
h6{}

#header {
	height: 60px;
	border-bottom: none;
	top: 0px;
}
	.header__inner {
		width: 100%;
		padding: 0 20px 0 9px;
	}
		.header__menu_btn {
			width: 40px;
			height: 40px;
		}
			.header__menu_btn__line {
				width: 20px;
			}
				.header__menu_btn__line::before,
				.header__menu_btn__line::after {
					width: 20px;
				}
				.header__menu_btn__line::before {
					top: -8px;
				}
				.header__menu_btn__line::after {
					bottom: -8px;
				}
				.header__global_nav__contents__inner {
					padding: 30px 20px calc(40px + 88px); /* アドレスバーの高さを追加 */
				}
								.global_nav__head__list__item__link {
									min-width: initial;
								}
		.header__logo {
			width: calc((250 / 440) * 100%);
			max-width: 250px;
		}
		.header__shop_menu {
			flex: 1;
		}
			.header__shop_menu__list {
				column-gap: 10px;
			}
				.header__shop_menu__list__item {
					width: 20px;
					height: 20px;
				}
				.header__shop_menu__list__item:nth-of-type(1) {
					margin: 0 auto 0 0;
				}
		.header__search__modal {
			height: 100dvh;
		}
			.header__search__modal__inner {
				overflow: initial;
				padding: 0;
				position: relative;
			}
				.header__search__modal__content {
					display: flex;
					flex-direction: column;
					justify-content: flex-start;
					height: calc(100% - 90px);
					padding: 45px 20px 0;
					border-radius: 30px 30px 0 0;
					position: absolute;
					bottom: 0;
					left: 0;
					transform: translateY(100%);
					opacity: 1;
				}
					.header__search__modal__close_btn {
						width: 28px;
						height: 28px;
						top: 45px;
						right: 20px;
					}
						.header__search__modal__close_btn::before {
							width: 20px;
						}
						.header__search__modal__close_btn::after {
							height: 20px;
						}
					.header__search__modal__heading {
						margin: 0 auto 35px;
						line-height: 1.5;
					}
					.header__search__modal__wrap {
						width: 100%;
						max-width: initial;
						flex: 1;
						padding: 0 0 50px;
						overflow: auto;
						scrollbar-width: none;
					}
					.header__search__modal__wrap::-webkit-scrollbar {
						display: none;
					}

#footer {
	padding: 60px 0 15px;
}
	.footer__inner {
		width: calc((400 / 440) * 100%);
	}
		.footer__customer {
			margin: 0 auto 45px;
		}
			.footer__customer__item {
				width: calc((195 / 400) * 100%);
			}
				.footer__customer__btn {
					height: 50px;
				}
		.footer__contents {
			flex-direction: column;
			justify-content: flex-start;
			align-items: center;
			margin: 0 auto 45px;
		}
			.footer__form,
			.footer__menu {
				width: 100%;
			}
			.footer__form {
				row-gap: 45px;
				margin-bottom: 45px;
			}
				.footer__menu__list {
					width: 100%;
					height: auto;
					font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
				}
					.footer__menu__list__item {
						width: 100%;
						height: auto;
						border-bottom: solid 1px var(--color--lightgray1);
					}
						/* メニューのボタン - 1階層目 */
						.footer__menu__list__item__btn {
							display: flex;
							justify-content: flex-start;
							align-items: center;
							width: 100%;
							height: auto;
							padding: 22px 0 18px;
							font-size: 16px;
							font-weight: 500;
							line-height: 1;
							letter-spacing: 0.05em;
							color: var(--color--white);
							transition: .4s;
						}
						.footer__menu__list__item__btn.has_child {
							position: relative;
							cursor: pointer;
						}
					@media (any-hover: hover) {
						.footer__menu__list__item__btn:hover {
							color: var(--color--hover_text);
						}
					}
							.footer__menu__list__item__btn.has_child::before,
							.footer__menu__list__item__btn.has_child::after {
								content: "";
								position: absolute;
								top: 50%;
								right: 6px;
								transform: translate(50%,-50%);
								background-color: var(--color--white);
							}
							.footer__menu__list__item__btn.has_child::before {
								width: 12px;
								height: 1px;
							}
							.footer__menu__list__item__btn.has_child::after {
								width: 1px;
								height: 12px;
								transition: .4s;
							}
							.footer__menu__list__item__btn.has_child._open::after {
								transform: translate(50%,-50%) rotate(90deg);
							}
						.footer__menu__list__item__btn.has_child._open {
							padding: 22px 0 14px;
						}
						.footer__child__menu {
							display: none;
							width: 100%;
							height: auto;
							padding: 0 0 15px;
						}
							.footer__child__menu__list {
								display: flex;
								flex-direction: column;
								row-gap: 8px;
								width: 100%;
								height: auto;
							}
								.footer__child__menu__list__item {
									width: 100%;
									height: auto;
									opacity: 0;
									transition: .4s;
									transition-delay: .3s;
									transform: translateX(-10px);
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(1) {
									transition-delay: .06s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(2) {
									transition-delay: .12s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(3) {
									transition-delay: .18s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(4) {
									transition-delay: .24s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(5) {
									transition-delay: .3s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(6) {
									transition-delay: .36s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(7) {
									transition-delay: .42s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(8) {
									transition-delay: .48s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(9) {
									transition-delay: .54s;
								}
								.footer__child__menu._show .footer__child__menu__list__item:nth-of-type(10) {
									transition-delay: .6s;
								}
								.footer__child__menu._show .footer__child__menu__list__item {
									opacity: 1;
									transform: translateX(0);
								}
									/* メニューのボタン - 2階層目 */
									.footer__child__menu__list__item__btn {
										display: flex;
										justify-content: flex-start;
										align-items: center;
										width: 100%;
										height: 24px;
										padding: 4px 0 0 10px;
										font-size: 14px;
										font-weight: 500;
										line-height: 1;
										letter-spacing: 0.05em;
										color: var(--color--white);
										position: relative;
									}
										.footer__child__menu__list__item__btn::before {
											content: '';
											display: block;
											width: 4px;
											height: 1px;
											background-color: var(--color--white);
											position: absolute;
											top: 12px;
											left: 0;
										}
									.footer__child__menu__list__item__btn.has_child {
										cursor: pointer;
									}
									.footer__child__menu__list__item__btn._400 {
										font-weight: 400;
									}
								@media (any-hover: hover) {
									.footer__child__menu__list__item__btn {
										transition: .4s;
									}
									.footer__child__menu__list__item__btn:hover {
										color: var(--color--hover_text);
									}
								}
									.footer__grandchild__menu {
										display: none;
										width: 100%;
										height: auto;
										padding: 0 0 0 10px;
										margin: 6px 0 0;
									}
										.footer__grandchild__menu__list {
											display: flex;
											flex-direction: column;
											row-gap: 8px;
											width: 100%;
											height: auto;
										}
											.footer__grandchild__menu__list__item {
												width: 100%;
												height: auto;
												opacity: 0;
												transition: .4s;
												transition-delay: .3s;
												transform: translateX(-10px);
											}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(1) {
													transition-delay: .06s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(2) {
													transition-delay: .12s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(3) {
													transition-delay: .18s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(4) {
													transition-delay: .24s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(5) {
													transition-delay: .3s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(6) {
													transition-delay: .36s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(7) {
													transition-delay: .42s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(8) {
													transition-delay: .48s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(9) {
													transition-delay: .54s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item:nth-of-type(10) {
													transition-delay: .6s;
												}
												.footer__grandchild__menu._show .footer__grandchild__menu__list__item {
													opacity: 1;
													transform: translateX(0);
												}
												/* メニューのボタン - 3階層目 */
												.footer__grandchild__menu__list__item__btn {
													display: flex;
													justify-content: flex-start;
													align-items: center;
													width: 100%;
													height: 21px;
													padding: 2px 0 0 10px;
													font-size: 14px;
													font-weight: 500;
													line-height: 1;
													letter-spacing: 0.05em;
													color: var(--color--white);
												}
											@media (any-hover: hover) {
												.footer__grandchild__menu__list__item__btn {
													transition: .4s;
												}
												.footer__grandchild__menu__list__item__btn:hover {
													color: var(--color--hover_text);
												}
											}
		.footer__sub_menu {
			width: 100%;
			height: auto;
			margin: 0 auto 30px;
		}
			.footer__sub_menu__list {
				display: flex;
				justify-content: center;
				align-items: flex-start;
				flex-wrap: wrap;
				row-gap: 10px;
				width: 100%;
				max-width: 350px;
				height: auto;
				margin: 0 auto;
			}
				.footer__sub_menu__list__item {
					font-size: 12px;
					font-weight: 500;
					line-height: 1;
					letter-spacing: 0.05em;
					position: relative;
				}
					.footer__sub_menu__list__item::before,
					.footer__sub_menu__list__item::after {
						content: '';
						display: block;
						width: 1px;
						height: 100%;
						background-color: var(--color--white);
						position: absolute;
						top: 0;
					}
					.footer__sub_menu__list__item::before {
						left: 0;
						transform: translateX(-50%);
					}
					.footer__sub_menu__list__item::after {
						display: none;
						right: 0;
						transform: translateX(50%);
					}

					.footer__sub_menu__list__item__link {
						display: flex;
						justify-content: center;
						align-items: center;
						padding: 5px 10px;
						color: var(--color--white);
					}
				@media (any-hover: hover) {
					.footer__sub_menu__list__item__link {
						transition: .4s;
					}
					.footer__sub_menu__list__item__link:hover {
						color: var(--color--hover_text);
					}
				}
		.footer__sns {
			width: 100%;
			height: auto;
			margin: 0 auto 30px;
		}
			.footer__sns__list {
				display: flex;
				justify-content: center;
				align-items: center;
				width: 100%;
				height: auto;
			}
				.footer__sns__list__item {
					width: 30px;
					height: auto;
				}
					.footer__sns__list__item__link {
						display: block;
						width: 100%;
						height: auto;
					}
						.footer__sns__list__item__link__icon {
							display: block;
							width: 100%;
							height: auto;
						}
							.footer__sns__list__item__link__icon svg {
								width: 100%;
								height: auto;
								fill: var(--color--white);
							}
						@media (any-hover: hover) {
							.footer__sns__list__item__link__icon svg {
								transition: .4s;
							}
							.footer__sns__list__item__link:hover .footer__sns__list__item__link__icon svg {
								fill: var(--color--hover_icon);
							}
						}
		.footer__copyright {
			width: 100%;
			height: auto;
		}
			.footer__copyright__text {
				width: 100%;
				height: auto;
				font-size: 12px;
				font-weight: 400;
				line-height: 1;
				letter-spacing: 0.05em;
				text-align: center;
				color: var(--color--gray2);
			}

/* 共通 */
/* member_services */
	.member_services__inner {
		width: calc((400 / 440) * 100%);
	}
			.member_services__link {
				aspect-ratio: 400 / 275;
			}

.pagination_wrap {
	margin: 40px auto 0;
}

}

/* SP ================================================== */
@media all and (max-width: 575px){
.pc,.tablet {display: none;}
.sp {display: inline-block;}
.view_pc {display: none;}
.view_tablet {display: none;}
.view_sp {display: block;}
body {}
h1{}
h2{}
h3{}
h4{}
h5{}
h6{}
}