@charset "UTF-8";

/* ======================
 reset
========================= */
html body * {
	padding: 0;
	margin: 0;
	vertical-align: middle;
}

/* ======================
 setting
========================= */
html,
body {
	height: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 62.5%;
	color: #000;
	letter-spacing: 0.5px;
	line-height: 1.5;
	word-wrap: break-word;
}
#app {
	height: 100%;
}
body a {
	display: block;
	color: #000;
	text-decoration: none;
	letter-spacing: 0.5px;
}
body a:hover {
	display: block;
	color: #000;
	text-decoration: none;
}
ul,
ol {
	list-style: none;
}
img {
	display: block;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.alphabetic_font {
	font-family: 'Vollkorn', serif;
}

.text_black,
.text_black a,
body .text_black a:hover {
	color: #000;
	transition: 0.3s;
}

.text_white,
.text_white a,
body .text_white a:hover {
	color: #fff;
	transition: 0.3s;
}

.pc_display {
	display: none !important;
}
.sp_display {
	display: block !important;
}

@media screen and (min-width: 1024px) {
	.pc_display {
		display: block !important;
	}
	.sp_display {
		display: none !important;
	}
}

/* ============================================================================

 utility

========================================================================== */
.cfx {
	*zoom: 1;
}
.cfx:before,
.cfx:after {
	content: '';
	display: table;
}
.cfx:after {
	clear: both;
}
.mt0 {
	margin-top: 0 !important;
}
.mt5 {
	margin-top: 5 !important;
}
.mt10 {
	margin-top: 10px !important;
}
.mt15 {
	margin-top: 15px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt30 {
	margin-top: 30px !important;
}
.mt40 {
	margin-top: 40px !important;
}
.mt50 {
	margin-top: 50px !important;
}
.mt60 {
	margin-top: 60px !important;
}
.mt70 {
	margin-top: 70px !important;
}
.mt80 {
	margin-top: 80px !important;
}
.mb0 {
	margin-bottom: 0 !important;
}
.mb5 {
	margin-bottom: 5px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb15 {
	margin-bottom: 15px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb25 {
	margin-bottom: 25px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.mb35 {
	margin-bottom: 35px !important;
}
.mb40 {
	margin-bottom: 40px !important;
}
.mb45 {
	margin-bottom: 45px !important;
}
.mb50 {
	margin-bottom: 50px !important;
}
.mb55 {
	margin-bottom: 55px !important;
}
.mb60 {
	margin-bottom: 60px !important;
}
.mb65 {
	margin-bottom: 65px !important;
}
.mb70 {
	margin-bottom: 70px !important;
}
.mb75 {
	margin-bottom: 75px !important;
}
.mb80 {
	margin-bottom: 80px !important;
}
.ta-c {
	text-align: center;
}
.ta-l {
	text-align: left;
}
.ta-r {
	text-align: right;
}
.va-t {
	vertical-align: top;
}
.va-m {
	vertical-align: middle;
}
.va-b {
	vertical-align: bottom;
}
.flt-l {
	float: left;
}
.flt-r {
	float: right;
}

/* ======================
 CommonHeader.vue
========================= */
.header_contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	background-color: #fff;
	padding: 4% 7% 4% 5%;
}
.header_contents .brand_logo,
.top_contents .brand_logo {
	width: 23%;
}
body .header_contents .brand_logo a,
body .top_contents .brand_logo a {
	display: block;
	width: 100%;
	margin-right: auto;
}
.brand_logo img {
	display: block;
	height: 78px;
	width: 100%;
}
.header_controller_wrapper,
.top .header_controller {
	position: absolute;
	top: 50%;
	right: 7%;
	transform: translateY(-50%);
}
.header_controller {
	display: flex;
	align-items: center;
}
.login_button {
	font-size: 1.3rem;
}
.cart_button {
	position: relative;
	display: block;
	background-image: url(../images/icons/icon_shopping_bag.svg);
	background-repeat: no-repeat;
	background-size: contain;
	height: 23px;
	width: 23px;
	margin-right: 24px;
}
.text_white .cart_button {
	background-image: url(../images/icons/icon_shopping_bag_white.svg);
}
.cart_num {
	position: absolute;
	top: 14%;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 1.2rem;
}
.text_white .cart_num {
	color: #000;
}
.hamburger_menu_button {
	display: block;
	background-image: url(../images/icons/icon_hamburger.svg);
	background-repeat: no-repeat;
	background-size: cover;
	height: 18px;
	width: 26px;
}
.text_white .hamburger_menu_button {
	background-image: url(../images/icons/icon_hamburger_white.svg);
}
.hamburger_menu {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	background-color: #fff;
	color: #000;
	height: 100%;
	width: 100%;
	/* width: 100%; */
	padding: 4% 5% 0;
	overflow: scroll;
	z-index: 100;
}
.screen_fixed {
	position: fixed;
	top: 0;
	left: 0;
}
.hamburger_menu-enter-active,
.hamburger_menu-leave-active {
	transition: 0.5s;
}
.hamburger_menu-enter,
.hamburger_menu-leave-to {
	opacity: 0;
}
.hamburger_menu .brand_logo {
	display: block;
	background-image: url(../images/logo.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 78px;
	width: 100%;
	margin: 0 auto;
}
.close_button {
	display: block;
	position: absolute;
	top: 5%;
	right: 5%;
	background-image: url(../images/icons/icon_close.svg);
	background-repeat: no-repeat;
	background-size: contain;
	height: 16px;
	width: 26px;
}
.hamburger_menu_contents {
	padding-bottom: 28%;
}
.search_contents {
	position: relative;
	margin-top: 12%;
}
.search_contents::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	display: block;
	background-image: url(../images/icons/icon_search.svg);
	background-repeat: no-repeat;
	background-size: cover;
	height: 30px;
	width: 30px;
}
.search_input {
	border: 0;
	border-bottom: 1px solid #000;
	font-size: 1.2rem;
	width: 84%;
	/* width: 100%; */
	padding: 2% 4% 2% 12%;
}
.search_input:focus {
	outline: none;
}
.page_link {
	font-size: 1.2rem;
	margin: 12% auto 0;
	width: 40%;
}
.page_link_item {
	font-size: 1.2rem;
	margin-top: 16%;
}
.page_link_item a {
	color: #000;
	text-align: center;
}
.page_link_item:first-child {
	margin-top: 0;
}
.mypage a::before,
.favorite a::before,
.login a::before,
.logout a::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 8%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-size: contain;
}
.mypage a::before {
	background-image: url(../images/icons/icon_mypage.svg);
	height: 14px;
	width: 16px;
}
.favorite a::before {
	background-image: url(../images/icons/icon_favorite.svg);
	height: 14px;
	width: 16px;
}
.login a::before {
	background-image: url(../images/icons/icon_login_black.svg);
	height: 15px;
	width: 16px;
}
.logout a::before {
	background-image: url(../images/icons/icon_logout_black.svg);
	height: 15px;
	width: 16px;
}
.right_arrow,
.right_arrow_white,
.right_arrow_thin {
	position: relative;
}
.right_arrow::after,
.right_arrow_white::after,
.right_arrow_thin::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 8%;
	transform: translateY(-50%);
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	height: 12px;
	width: 7px;
}
.right_arrow::after {
	background-image: url(../images/icons/icon_right_arrow.svg);
}
.right_arrow_white::after {
	background-image: url(../images/icons/icon_right_arrow_white.svg);
}
.right_arrow_thin::after {
	background-image: url(../images/icons/icon_right_arrow_thin.svg);
}
.open .accordion_menu_ttl.right_arrow::after {
	top: 43%;
	transform: rotate(90deg);
	transition: 0.2s;
}
.contents_link {
	margin-top: 12%;
}
.accordion_menu_ttl {
	border-bottom: 1px solid #000;
	font-size: 1.2rem;
	font-weight: normal;
	padding: 8% 0;
}
.category_menu .accordion_menu_ttl {
	border-top: 1px solid #000;
}
.accordion_menu {
	display: none;
}
.accordion_menu_item {
	border-bottom: 1px solid #000;
	color: #000;
	font-size: 1.2rem;
	padding: 4% 0 4% 6%;
}
.accordion_menu_ttl a,
.accordion_menu_item a {
	color: #000;
}
.accordion_menu_ttl.right_arrow::after {
	right: 11%;
}
.news_menu .accordion_menu_ttl.right_arrow::after {
	display: none;
}

/* ======================
 CommonFooter.vue
========================= */
.footer {
	display: block;
	overflow: hidden;
	position: relative;
	background-color: #fff;
	color: #000;
	text-align: left;
	padding: 0;
}
.footer_contents {
	position: relative;
	display: block;
	padding: 4% 10%;
}
.footer .brand_logo {
	width: 100%;
}
.footer_contents .brand_logo img {
	height: 109px;
	width: 100%;
	margin: 0 auto;
}
.footer_contents_index,
.footer_contents_list_item a {
	font-size: 1.3rem;
	font-weight: normal;
}
.footer_guide,
.footer_info,
.sns {
	margin-top: 8%;
}
.footer_contents_list {
	margin-top: 2%;
}
.footer_guide .footer_contents_list {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: 33.3% 33.3% 33.3%;
	grid-template-columns: 100%;
	display: -ms-grid;
	-ms-grid-rows: 33.3% 33.3% 33.3%;
	-ms-grid-columns: 100%;
}
.footer_info .footer_contents_list {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: 33% 33% 33%;
	grid-template-columns: 45% 55%;
	display: -ms-grid;
	-ms-grid-rows: 33% 33% 33%;
	-ms-grid-columns: 45% 55%;
}
.footer_guide .footer_contents_list_item a,
.footer_info .footer_contents_list_item a {
	padding: 3% 0;
}
.footer_guide .footer_contents_list_item:nth-child(4) {
	grid-row: 4 / 6;
}
.sns .footer_contents_list {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0px 20px;
	margin-top: 4%;
}
.sns .footer_contents_list_item {
	position: relative;
}
.sns .footer_contents_list_item:last-child {
	margin-right: 0;
}
.sns .footer_contents_list_item img {
	display: block;
	height: 40px;
	width: 40px;
}
.sns .instagram a::before {
	content: '';
	display: block;
	position: absolute;
	top: 8px;
	left: 8px;
	background-image: url(../images/icons/icon_instagram_white.png);
	background-repeat: no-repeat;
	background-size: contain;
	height: 24px;
	width: 24px;
	z-index: 5;
}
.copyright {
	font-size: 1.3rem;
	text-align: center;
	letter-spacing: 0;
	margin-top: 12%;
}

@media screen and (min-width: 768px) {
	/* ======================
   CommonHeader.vue
  ========================= */
	.header_contents .brand_logo,
	.top_contents .brand_logo {
		width: 11%;
	}
}

@media screen and (min-width: 1024px) {
	/* ======================
   CommonHeader.vue
  ========================= */
	.header_contents .brand_logo,
	.top_contents .brand_logo {
		width: 9%;
	}
}

@media screen and (min-width: 1024px) {
	/* ======================
   CommonHeader.vue
  ========================= */
	.header_contents,
	.top_header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 1% 2% 1% 3%;
	}
	.header_contents h1.brand_logo {
		margin: 0;
	}
	.header_contents .brand_logo,
	body .header_contents .brand_logo a,
	body .top_contents .brand_logo a {
		display: inline-block;
		width: auto;
	}
	.brand_logo img {
		height: 95px;
		width: 100%;
	}
	.header_controller_wrapper,
	.top .header_controller {
		position: static;
		top: auto;
		left: auto;
		transform: translateY(0%);
	}
	.header_contents .navigation {
		margin-right: 5%;
	}
	.navigation_list,
	.menu_list {
		display: flex;
	}
	body .navigation_list {
		font-size: 1.6rem;
		justify-content: center;
		gap: 0 36px;
	}
	.navigation_list_item {
		padding: 4% 0;
	}
	.navigation_list_item:last-child {
		margin-right: 0;
	}
	.menu {
		position: relative;
	}
	.menu_index {
		position: relative;
		cursor: pointer;
	}
	.menu_index::after {
		content: '';
		position: absolute;
		top: 5%;
		right: -40%;
		display: block;
		background-image: url(../images/icons/icon_plus.svg);
		background-repeat: no-repeat;
		background-size: contain;
		height: 16px;
		width: 16px;
	}
	.menu_index.open::after {
		content: '';
		background-image: url(../images/icons/icon_minus.svg);
	}
	.menu_list {
		position: absolute;
		bottom: -72%;
		left: 0%;
	}
	.menu_list-enter-active,
	.menu_list-leave-active {
		transition: 0.3s;
	}
	.menu_list-enter,
	.menu_list-leave-to {
		opacity: 0;
	}
	.menu_list_item {
		position: relative;
		padding-right: 16%;
		margin-right: 8%;
	}
	.menu_list_item::after {
		content: '';
		display: block;
		position: absolute;
		top: 45%;
		left: 84%;
		transform: translateY(-50%);
		background-image: url(../images/icons/icon_right_arrow_thin.svg);
		background-repeat: no-repeat;
		background-size: contain;
		height: 11px;
		width: 6px;
	}
	.menu_list_item:last-child::after {
		display: none;
	}
	.header_controller {
		display: block;
	}
	.header_controller_item {
		margin-top: 24%;
	}
	.header_controller_item:first-child {
		margin-top: 0;
	}
	.search_button_icon {
		display: block;
		background-image: url(../images/icons/icon_search.svg);
		background-repeat: no-repeat;
		background-size: contain;
		height: 26px;
		width: 26px;
		margin: 0 auto;
		cursor: pointer;
	}
	.text_white .search_button_icon {
		background-image: url(../images/icons/icon_search_white.svg);
	}
	.cart_button {
		margin: 0 auto;
		cursor: pointer;
	}

	/* ======================
   CommonFooter.vue
  ========================= */
	.footer_contents {
		padding: 5% 0;
	}
	.footer_list {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin: 0 17%;
	}
	.footer_contents .brand_logo {
		width: auto;
		margin-right: 2%;
	}
	.footer_contents .brand_logo img {
		height: 140px;
		width: 100%;
		margin: 0;
	}
	.footer_guide,
	.footer_info,
	.sns {
		margin: 12px 0 0;
	}
	.footer_guide .footer_contents_list {
		display: -ms-grid;
		display: grid;
		grid-auto-flow: column;
		grid-template-rows: 33% 33% 33%;
		grid-template-columns: 100%;
		-ms-grid-rows: 33% 33% 33%;
		-ms-grid-columns: 33% 33% 33%;
		width: auto;
		margin-top: 1%;
	}
	.footer_info .footer_contents_list {
		display: -ms-grid;
		display: grid;
		grid-auto-flow: column;
		grid-template-rows: 33% 33% 33%;
		grid-template-columns: 50% 50%;
		-ms-grid-rows: 33% 33% 33%;
		-ms-grid-columns: 50% 50%;
		width: 168px;
		margin-top: 3%;
	}
	.footer_guide .footer_contents_list_item a,
	.footer_info .footer_contents_list_item a {
		padding: 6px 0;
	}
	.footer_guide .footer_contents_list_item:nth-child(4) {
		grid-row: 1 / 2;
	}
	.sns {
		width: 114px;
	}
	.sns .footer_contents_list {
		flex-wrap: wrap;
		gap: 13px 0px;
		margin-top: 12%;
	}
	.sns .footer_contents_list_item {
		width: 50%;
	}
	.copyright {
		margin-top: 3%;
	}
}
