@charset "UTF-8";
/* CSS Document */

html {
	box-sizing: border-box;
	font-size: 62.5%;
}

*, *::before, *::after {
	box-sizing: inherit;
}

body {
	font-family: "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic", "メイリオ", "Meiryo", "Noto Sans", "Noto Sans CJK JP", "system-ui", sans-serif;
	color: #333333;
	font-size: 1.4rem;
	line-height: 1.6;
	text-align: center;
	margin: 0;
    padding: 0;
	padding-top: 45px;/*ヘッダーの高さ*/
}


/* リンク・文字 */
a{ color:#333333; }
a:link { color:#333333; }
a:visited { color:#333333; }
a:hover { color:#ebaec3; text-decoration:none; }
a:active { text-decoration:none; }

a.link_blue:link { color: #0000FF; }
a.link_blue:visited { color: #810081; }
a.link_blue:hover { color:#ebaec3; }
a.link_blue:active { color: #0000FF;text-decoration:none; }

.f_b{ font-weight: bold; }
.f_red{ color: red; }
.f_pink{color: #ebaec3;}
.f_purple{color: #502d64;}
.f_80{ font-size:80%; }
.f_90{ font-size:90%; }
.f_120{ font-size:120%; }

h1{ font-size: 1.1rem;}

.h1_title{ font-weight: 700; font-size: clamp(1.5rem, 2vw + 1rem, 2rem); }
.h2_title{ font-weight: 700; font-size: clamp(1.5rem, 2vw + 1rem, 2rem); }

.midashi{ padding:30px 0; }
.midashi2{ padding:30px 0 10px; }

.indent-1{ text-indent: -1em; padding-left: 1em;}

/* 背景色 */
.bg_pink{background-color: #ebaec3;}
.bg_pink_l{background-color: #fff5f5;}
.bg_gold{background-color: #d0b77b;}
.bg_gold_l{background-color: #ebead8;}
.bg_gray_d{background-color: #f2f2f2;}
.bg_gray{background-color: #cccccc;}
.bg_gray_l{background-color: #f2f2f2;}
.bg_beige{background-color: #f1ece6;}

/* 線色 */
.bdr_gray{border-color: #cccccc !important;}
.bdr_pink{border-color: #ebaec3 !important;}
.bdr_purple{border-color: #502d64 !important;}


/*////////////////// ヘッダー〜コンテンツ //////////////////*/
.wrapper {
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: #fff;
	overflow-x: clip;
	transition: transform 0.4s ease-out, opacity 0.4s ease-out;
	box-sizing: border-box;
}

.header_inner {
	max-width: 1200px;
	padding: 12px 1.2rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 20px; 
	box-sizing: border-box;
}

.header.is-hidden {/* 下スクロール時：隠れる */
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header.is-show {/* 上スクロール時：表示 */
  transform: translateY(0);
  opacity: 1;
}

.header_logo {
  margin-right: auto;
}

.header_logo img {
  display: block;
  height: 25px;
  width: auto;
}

.icon_inquiry img,
.icon_search img,
.icon_favo img {
  display: block;
  height: 25px;
  width: auto;
}

.icon_tel img,
.icon_cart img,
.icon_menu img {
  display: block;
  height: 30px;
  width: auto;
}

.icon_inquiry {
  position: relative;
  top: 2px;   /* 下に2px */
}

.icon_tel_pc{
	display: block;
}
.icon_tel_pc img{
	height: 35px;
	width: auto;
}

.icon_tel{
	display: none;
}

@media screen and (max-width: 768px) {
	.header_logo { order: 2; }
	.icon_tel { order: 3; }
	.icon_inquiry { order: 4; }
	.icon_search { order: 5; }
	.icon_favo   { order: 6; }
	.icon_cart   { order: 7; }
	.icon_menu   { order: 1; }
	
	.header_inner {
		gap: 10px;
	}

	.icon_tel_pc{
		display: none;
	}
	
	.icon_tel{
		display: block;
}
}


/* ヘッダーお問い合わせ */
.inquiry_list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.inquiry_item {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: #333;
}

.inquiry_item img {
  display: block;
  margin: 0 auto 10px;
	width: 60px;
	height: auto;
}

.icon_inquiry button {
  background: none;
  border: none;
  padding: 0;
  outline: none;
  cursor: pointer;
}

.inq_fax{
}

.fax_note{
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 20px;
	font-size: 1.4rem;
	justify-content: center;
}

.inq_fax_list{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 10px 0 0;
}

.fax_no{
	font-size: 2.5rem;
	font-weight: 700;
}

.inq_fax img{
	height: 50px;
	width: auto;
}

/* /// */
.tagline{
	max-width: 1200px;
	text-align: left;
	padding:1rem 1.2rem;
	margin-right: auto;
	margin-left: auto;
	font-size: 1.1rem;
}

.breadcrumbs{
	max-width: 1200px;
	font-size:1.2rem;
	text-align: left;
	padding:1rem 1.2rem;
	margin-right: auto;
	margin-left: auto;
}

.content {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}

.site_container{
	padding: 0;
}

@media screen and (max-width: 768px) {
	.breadcrumbs{display: none;}
	.content {
		width: 95%;
	}
}


/****** メニュー *******/
/* メニュー */
.menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 80%;
	max-width: 600px;
	height: 100vh;
	background: #fff;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	z-index: 999;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.menu.is-open {
	transform: translateX(0);
}

.menu_inner {
	text-align: left;
}

.menu_inner a{
	text-decoration: none;
}

/* 閉じるボタン */
.menu_close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	padding: 8px;
	font-size: 28px;
	line-height: 1;
	color: #333;
	cursor: pointer;
}
.menu_close:hover {
	opacity: 0.6;
}

/* ログイン / 新規登録 */
.menu_auth {
	display: flex;
	gap: 30px;
	margin-bottom: 10px;
	justify-content: center;
	text-align: center;
	margin-top: 70px;
}

.menu_text{
	font-size: 1.4rem;
	text-align: center;
	margin-bottom: 1.5rem;
}

.menu_auth .menu_btn{
	display: block;
	padding: 5px;
	border: 1px solid #ccc;
	flex: 1;
	width: 250px;
	margin:3px auto 5px;
	font-weight: 700;
}

.btn_login a:hover{
	color: #fff;
	background-color: #ebaec3;
}

.btn_login .menu_btn{
	background-color: #ebead8;
}

/*　メンバー側の設定 */
.menu_links{
	font-size: 1.6rem;
}

.member_auth {
    margin-top: 70px;
}

.btn_member {
    width: 320px;
    padding: 18px 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    text-align: center;
    box-sizing: border-box;
}

.member_name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.member_point {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.member_point span {
    font-size: 1.6rem;
    font-weight: 700;
}

.btn_member .menu_btn {
    background-color: #ebead8;
}

.btn_member a:hover {
    color: #fff;
    background-color: #ebaec3;
}
.member_auth_inner {
    text-align: center;
}

.member_logout_area {
    margin-top: 8px;
}

.logout_btn {
    display: inline-block;
    padding: 3px 14px;
    border: 1px solid #ccc;
    background-color: #f7f7f7;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
    text-decoration: none;
}

.logout_btn:hover {
    background-color: #eee;
    color: #333;
}

/* アコーディオンメニュー */
.menu_list {
    margin-bottom: 7px;
	text-align: left;
	border-top: 1px solid #ccc;
	width: 100%;
}

.menu_list li a {
	position: relative;
	display: block;
	padding-right: 2.5em; /* 矢印分の余白 */
	text-decoration: none;
	color: inherit;
}

.menu_list li a .arrow {
	color: #6f6f6f;
	position: absolute;
	right: 0;
	top: 50%;
	width: 0.4em;
	height: 0.4em;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
}

.menu_list li a:hover {
	color: #ebaec3;
}

.menu_list summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 0.5em;
    cursor: pointer;
}

.menu_list summary::-webkit-details-marker {
    display: none;
}

.menu_list summary::before,
.menu_list summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #333333b3;
    content: '';
}

.menu_list summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.menu_list summary::after{
    transition: rotate .3s;
}

.menu_list[open] summary::after {
    rotate: 90deg;
}

.menu_list ul {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em;
    transition: transform .5s, opacity .5s;
}

.menu_list[open] ul {
    transform: none;
    opacity: 1;
}

.menu_list ul li{
	line-height: 2em;
	margin-left:1em;
	list-style-type: none;
}

.menu_list ul li a{
	text-decoration: none;
}
				  

/* テキストリンク */

.menu_links_text,
.menu_company{
	position: relative;
}

.menu_links_text .arrow,
.menu_company .arrow{
	color: #6f6f6f;
  position: absolute;
  right: 26px;
  top: 50%;
  width: 0.6em;
  height: 0.6em;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.menu_links_text{
	border-top: 1px solid #ccc;
	width: 100%;
	padding:14px 28px;
}

.menu_links_text a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.menu_links_text:hover a {
  color: #ebaec3;
}

.menu_company{
	display: inline-flex;
	align-items: center;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	width: 100%;
	padding:14px 28px;
}

.menu_logo{
	height: 16px;
	vertical-align: center;
}
.menu_logo {
	pointer-events: none;
}

.menu_links_text:hover,
.menu_company:hover{
	color: #ebaec3;
}

.menu_company:hover .menu_company_text {
  color: #ebaec3;
}

.menu_company:hover .menu_logo{
	filter: brightness(0) saturate(100%) invert(97%) sepia(28%) saturate(1845%) hue-rotate(283deg) brightness(100%) contrast(85%);
}

@media screen and (max-width: 768px) {
	
	.menu_auth {
    flex-direction: column;
	gap: 15px;
  }
	.menu_logo{
		height: 14px;
		vertical-align: -1px;
	}
}


/* メニューオーバーレイ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.item_hr{
	display: block;
	border: none;
	border-top: 1px solid #333;
	height: 0;
	margin: 15px 0;
}


/*////////// ヘッダー検索窓 ////////// */
/* 検索オーバーレイ */
.header-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1100; /* headerより上 */
}

/* 表示状態 */
.header-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* 上から表示 */
.header-search-panel {
  background: #fff;
  width: 100%;
  padding: 30px 20px;
  box-sizing: border-box;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  position: relative;
}

/* スライドダウン */
.header-search-overlay.is-open .header-search-panel {
  transform: translateY(0);
}

/* 閉じるボタン */
.header-search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1;
}

/* フォーム */
.header-search-form {
  max-width: 800px;
  display: flex;
}

.header-search-form input {
  flex: 1;
  padding: 10px;
}

.header-search-form button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 45px;
	border: none;
	border-radius: 0 3px 3px 0;
	background-color: #858585;
	cursor: pointer;
}

.header-search-form button::after {
	content: '';
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
}

.header-search-form input {
  width: 600px;
  height: 45px;
  padding: 5px 15px;
  border: none;
  border-radius: 3px 0 0 3px;
  box-sizing: border-box;
  background-color: #f2f2f2;
  font-size: 1em;
  outline: none;
}

.header-search-inner {
  max-width: 1200px;
  text-align: left;
  margin: 0 auto;
  position: relative;
}

.header-search-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/*////////////////// スライダー //////////////////*/
#top_img {
  width: 100%;
	overflow-x: hidden;
}

.top_slider {
	position: relative;
	max-width: 100%;
	box-sizing: border-box;
}

.top_slider .slick-list {
  overflow-x: hidden !important;
}

.top_slider img {
  display: block;
  width: 100%;
  height: auto;
}

.top_slider img:hover{
    opacity: 0.7;
}

.top_slider .slick-slide {
  box-sizing: border-box;
  padding: 0 5px;
}

.slide-items {
  width: 50%;
  height: 50%;
  margin: auto;
}

.slick-dotted.slick-slider{
	margin-bottom: 15px;
}

/*　矢印　******************/
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  z-index: 10;

  width: 80px;
  height: 100px;

  /* 半円デザイン */
  background: rgba(255, 255, 255, 0.8) !important;
  border: none;
  cursor: pointer;

  /* 中央揃え */
  display: flex;
  align-items: center;
  justify-content: center;

  /* slickの文字対策 */
  font-size: 0;
  line-height: 0;
	
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slick-prev::before,
.slick-next::before {
  font-size: 20px;
  line-height: 1;
  color: #333;
  transition: transform 0.25s ease;
}
.slick-prev:hover::before {
  transform: translateX(10px);
}
.slick-next:hover::before {
  transform: translateX(-10px);
}

.slick-prev {
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 0 50px 50px 0;
}

.slick-prev::before {
  content: "＜";
  transform: translateX(15px);
}

.slick-next {
  right: 0;
  transform: translate(50%, -50%);
  border-radius: 50px 0 0 50px;
}

.slick-next::before {
  content: "＞";
  transform: translateX(-15px);
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 1;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 768px) {
  .slick-prev,
  .slick-next {
    width: 60px;
    height: 80px;
  }

  .slick-prev {
    border-radius: 0 40px 40px 0;
    transform: translate(-50%, -50%);
  }
	
  .slick-next {
    border-radius: 40px 0 0 40px;
    transform: translate(50%, -50%);
  }

  .slick-prev::before,
  .slick-next::before {
    font-size: 16px;
  }

  .slick-prev::before {
    transform: translateX(8px);
  }

  .slick-next::before {
    transform: translateX(-8px);
  }
}

/* ドット */
.slick-dots{
	bottom: 10px;
}

.top_slider .slick-dots li button:before {
  content: none;
}
.top_slider .slick-dots li {
  width: 10px;   /* 丸の幅 */
  height: 10px;  /* 丸の高さ */
  margin: 0 5px; /* 丸同士の間隔 */
}
.top_slider .slick-dots li button {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ccc;
  padding: 0;
  border: none;
  cursor: pointer;
}
.top_slider .slick-dots li.slick-active button {
  background-color: #333;/* アクティブ時の色 */
}

/* 人気アイテム・最近チェックしたアイテム */
.p_item_slider,
.p_item_check_slider{
	width: 100%;
	box-sizing: border-box;
}

.p_item_slider img:hover,
.p_item_check_slider img:hover{
    opacity: 0.7;
}

.p_item_slider .p_item,
.p_item_check_slider .p_item {
  padding: 0 5px; /* スライド間の余白 */
  box-sizing: border-box;
}

.p_item{
	text-align: left;
}
.p_item img {
  display: block;
  width: 100%;
  height: auto;
}
.p_item_slider .slick-prev,
.p_item_check_slider .slick-prev,
.p_item_slider .slick-next,
.p_item_check_slider .slick-next {
	position: absolute;
	top: 40%;
	z-index: 2;
	box-shadow: none !important;
	width: 70px;
	height: 80px;
}

.p_item_slider .slick-prev::before,
.p_item_check_slider .slick-prev::before {
  transform: translateX(7px);
}
.p_item_slider .slick-next::before,
.p_item_check_slider .slick-next::before {
  transform: translateX(-7px);
}

.p_item_slider .slick-prev::before,
.p_item_check_slider .slick-prev::before,
.p_item_slider .slick-next::before,
.p_item_check_slider .slick-next::before {
  transition: transform 0.2s ease;
}

.p_item_slider .slick-prev:hover::before,
.p_item_check_slider .slick-prev:hover::before {
  transform: translateX(3px);
}
.p_item_slider .slick-next:hover::before,
.p_item_check_slider .slick-next:hover::before {
  transform: translateX(-3px);
}

.p_item_slider .slick-prev:hover,
.p_item_check_slider .slick-prev:hover,
.p_item_slider .slick-next:hover,
.p_item_check_slider .slick-next:hover {
	background: rgba(255, 255, 255, 0.8) !important;
}

.p_item_slider .slick-prev:hover::before,
.p_item_check_slider .slick-prev:hover::before,
.p_item_slider .slick-next:hover::before,
.p_item_check_slider .slick-next:hover::before {
	color: #333 !important;
}

.p_item_slider .slick-prev {
	left: -15px;
	transform: translateY(-50%);
}

.p_item_slider .slick-next {
	right: -15px;
	transform: translateY(-50%);
}

.p_item_check_slider .slick-prev{
	left: -20px;
	transform: translateY(-20%);
}
.p_item_check_slider .slick-next{
	right: -20px;
	transform: translateY(-20%);
}

@media screen and (max-width: 768px) {
	/*
	.p_item_slider .slick-prev,
	.p_item_slider .slick-next {
		/*top:35%;*/
	}
	*/

	/*.p_item_slider{
		padding: 0 10px;
	}*/
	
	.p_item_slider .slick-prev,
	.p_item_slider .slick-next {
		width: 40px;
		height: 70px;
	}

	.p_item_slider .slick-prev::before {
		transform: translateX(5px);
	}
	.p_item_slider .slick-next::before {
		transform: translateX(-5px);
	}
	
	.p_item_check_slider .slick-prev{
		left: -15px;
		transform: translateY(-35%);
	}
	.p_item_check_slider .slick-next{
		right: -15px;
		transform: translateY(-35%);
	}
	
	.p_item_check_slider .slick-prev,
	.p_item_check_slider .slick-next {
		width: 50px;
		height: 60px;
	}
	
}


/* カテゴリー一覧 */
.category{
}

/* 特集 */
.feature_wrap{
	display: flex;
	gap: 1rem; /* バナー同士の間隔 */
	margin-left: auto;
	margin-right: auto;
}

.feature_img {
	flex: 1;
}

.feature_wrap img {
	width: 100%;
	height: auto;
	display: block;
}

.feature_wrap img:hover{
	opacity: 0.7;
}

@media screen and (max-width: 768px) {
	.feature_wrap {
		flex-direction: column;
	}
}


/* 営業日カレンダー */
.calendar{
	width: 100%;
}
.calendar img{
	margin-bottom: 5px;
}

/* 新着情報 */
.news_box{
	text-align: left;
	margin: 0 auto;
	border: 1px solid #ccc;
	padding: 30px;
}

.news {
	width: 100%;
	max-height: 200px;
	overflow: auto;
}

.news .information {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
	padding-bottom: 5px;
}

.news .information .date {
	flex-shrink: 0;
	width: 100px;
	font-weight: 500;
}

.news .information .text {
	flex: 1;
	padding-right:20px;
	padding-bottom:10px; 
}

@media screen and (max-width: 600px) {
	.news_box{
		padding: 15px;
	}
	.news .information {
		flex-direction: column;
	}

	.news .information .date {
		width: 100%;
	}

	.news .information .text {
		width: 100%;
		padding-right: 0;
		border-bottom: 1px solid #ddd;
		padding-bottom:20px; 
	}
}


/* 新着情報・カレンダー　並べる */
.info_wrap {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.info_news {
	flex: 1;
}

.info_cal {
	max-width: 200px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.info_cal .midashi {
	padding-bottom: 15px;
}

.info_cal img {
	width: 100%;
	height: auto;
	display: block;
}


@media screen and (max-width: 600px) {
	.info_wrap {
		flex-direction: column;
	}

	.info_cal {
		order: -1;
		width: 100%;
		max-width: none;
	}
	
	.info_cal .calendar {
		display: flex;
		gap: 10px;
	}

	.info_cal .calendar img {
		width: calc(50% - 5px);
		flex: 0 0 calc(50% - 5px);
	}
}


/* トップページ　動画 */
.movie_top{
	width: 100%;
}

@media screen and (max-width: 768px) {
}

.item_list,
#item_popular,
.item_check,
.feature{
	/*margin-bottom: 40px;	*/
}

/* はやわかりQ&A */
.index_qa_wrap{
	padding:2em;
	border: solid 1px #ccc;
	margin: 1em 0 2em 0;
}
.index_qa_wrap p{
	text-align: center;
	font-size: 1.5em;
	color: #cc3366;
	margin-bottom:1em;
}
.index_qa_wrap p span{
	font-size:0.9em;
}
.index_qa dt {
	text-align: left;
    margin-bottom: 0.5em;
    color: #333333;
    font-weight: 600;
}

.index_qa dt::before,
.index_qa dd::before {
    margin-right: .4em;
}

.index_qa dt::before {
    content: "Q.";
}

.index_qa dd {
	text-align: left;
    margin: 0 0 2em;
    padding: 1em 1.5em;
    background-color: #F1ECE6;
    color: #333333;
	font-size:0.9em;
}

.index_qa dd::before {
    content: "A.";
}

.index_qa_btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 6px 25px;
    color: #333;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background-color: #fff5f5;
    border: 2px solid #c6b198;
    border-radius: 0.45rem;
	text-decoration:none;
}
.index_qa_btn a:hover {
    opacity: 0.8;
}

/*////////////////// 検索フォーム //////////////////*/

.search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.search-form {
    display: flex;
	width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.search-form label {
    flex: 1;
    display: flex;
}

.search-form input {
    flex: 1;
    height: 45px;
    padding: 5px 15px;
    border: none;
    border-radius: 3px 0 0 3px;
    box-sizing: border-box;
    background-color: #f2f2f2;
    font-size: 1em;
    outline: none;
}

.search-form input::placeholder {
    color: #bfc0bf;
}

.search-form button {
    display: flex;
    justify-content: center;
    align-items: center;
	width: 50px;
    height: 45px;
    border: none;
    border-radius: 0 3px 3px 0;
    background-color: #858585;
    cursor: pointer;
	flex-shrink: 0;
}

.search-form button::after {
	content: '';
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: '';
}

.search_link {
    white-space: nowrap;
    margin-left: 20px;
}

@media screen and (min-width: 769px) {
    .search-form {
        max-width: 600px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .search {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
	
    .search_link {
        order: 1;
        text-align: right;
        margin: 0 0 10px 0;
		font-size: 0.9em;
        white-space: normal;
    }
    .search-form {
		order: 2;
        width: 100%;
    }
	.search-form input {
        width: 100%;
    }
}



/*////////////////// アイテム一覧 //////////////////*/


.tm-gallery-container {
	overflow: auto;
	/*padding: 0 20px;*/
    display: flex; 	
    flex-wrap: wrap;	
}
.tm-img-container {
	/*float: left;*/
    float: none;
}

.tm-img-container{ 
	margin-bottom: 10px;
	width: 50%; 
}

.tm-img-tn {
	padding-left: 5px;
	padding-right: 5px;
}

.tm-img-tn {
	display: block;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.tm-gallery-container {
		padding: 0 10px;
}
	
}
@media (min-width: 576px) {
	.site_container { width: 100%; }
	.tm-img-container { width: 20%; }
}

@media (min-width: 992px) {
	.tm-img-container {
		margin-bottom: 10px;
		width: 33.3334%;
	}
}

@media (min-width: 1200px) {
	.tm-img-container { width: 20%;}
	
}
	
@media (min-width: 1500px) {
	.tm-gallery-container {
		overflow: auto;
	}
	
	.tm-img-tn {
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media (min-width: 1800px) {
	.tm-gallery-container {
		overflow: auto;
	}

	.tm-img-container {
		width: 20%;
	}

	.tm-img-tn {
		padding-left: 10px;
		padding-right: 10px;
	}
}


/*////////////////// 商品一覧ページ //////////////////*/

.mihon_head{
	margin-bottom: 40px;
}

.sort_icon img{
	width: 50px;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.modalBg {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.6);
}

.modalWrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 500px;
  padding: 30px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
	.sort_icon{
		margin-right:10px;
	}
	.sort_icon img{
		width: 40px;
}
	
	.modalWrapper {
		width: 90%;
	}	
}

.closeModal {
	font-size: 2.5rem;
	color: #888;
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	cursor: pointer;
}

.sortbutton{
  background-color: #fff;
  border: none;
}


/*絞り込み機能*/
[x-cloak] {
    display: none !important;
}

.filterModalArea {
    position: fixed;
    inset: 0;
    z-index: 999999;
}

.filterModalBg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.filterModalWrapper {
    position: fixed;
    z-index: 1000000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: #fff;
    color: #000;
    width: 90%;
    max-width: 600px;
    padding: 30px;
}

.filter-section {
  margin-bottom: 1.5rem
}

.filter-section h3 {
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
	background-color:#ebead8 ;
	display: block;
	width: 100%;
	padding:5px;
	margin:10px auto;
}

.filter-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列に固定 */
  gap: 0.5rem;
}

.filter-btn{
  padding: 0.4rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  box-sizing: border-box;
}

.filter-btn.selected {
  background-color: #eee;
}

.filter-btn.active {
  background: #333;
  color: #fff;
  border-color: #333;
}

.filter-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.filter-btn.is-active {
    background: #333;
    color: #fff;
}

.color-circle.is-active {
    outline: 3px solid #333;
    outline-offset: 3px;
}
.color-list {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 5px;
}

.color-circle {
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  cursor: pointer;
  box-shadow: none;
}

.script {
  font-family: "Imperial Script", cursive;
  font-weight: 400;
  font-style: normal;
}

.mincho {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体",
    "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3",
    "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

@media screen and (max-width: 768px) {
	.color-list {
		grid-template-columns: repeat(5, 1fr);
		gap: 0.6rem;
	}
	.color-circle {
		width: 25px;
		height: 25px;
	}
}


.color-circle.selected {
  /* 内側1pxの白、外側2pxの#666 */
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #666;
}

.color-circle.pink { background-color: #F5A9B8; }
.color-circle.red { background-color: #E57373; }
.color-circle.lightblue { background-color: #73caf3; }
.color-circle.blue { background-color: #044a85; }
.color-circle.yellowgreen { background-color: #8fc31f; }
.color-circle.green { background-color: #22ac38; }
.color-circle.yellow { background-color: #FFF176; }
.color-circle.orange { background-color: #FFB74D; }
.color-circle.brown { background-color: #c9bdaf; }
.color-circle.beige { background-color: #f5f5dc; }
.color-circle.purple { background-color: #BA90D4; }
.color-circle.black { background-color: #555555; }
.color-circle.white { background-color: #FFFFFF; border: 1px solid #ccc; }
.color-circle.gold { 
  background: linear-gradient(
    135deg,
    rgba(208, 169, 0, 1) 0%,
    #fffac2 50%,
    rgba(208, 169, 0, 1) 100% 
  );
}
.color-circle.other {
  background: linear-gradient(
    135deg,
    rgba(249, 218, 232, 1) 0%,
    #fffac2 50%,
    rgba(115, 201, 242, 1) 100% 
  );
}

.color_name {
    display: inline-block;
    position: relative;
}

.color_name > div {
    cursor: pointer;
}

.color_name > span {
    display: flex;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    padding: .5em 1em;
    border-radius: 3px;
    background-color: #666;
    color: #ffffff;
    font-size: .7em;
    white-space: nowrap;
    transition: opacity .3s;
}

.color_name > span::before {
    position: absolute;
    bottom: -6px;
    width: 9px;
    height: 6px;
    background-color: inherit;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

.color_name:hover > span {
    visibility: visible;
    opacity: 1;
}

/* ページネーション */
.product-pagination .pagination {
    justify-content: center;
    gap: 8px;
}

.product-pagination .page-link {
    border-radius: 999px;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.product-pagination .page-item.active .page-link {
    background-color: #333;
    border-color: #333;
}

.product-pagination .active {
    font-weight: bold;
}

.reset-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  text-align: center; 
  margin-top: 20px;
}

.search-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.search-button button {
  margin: 0;
  padding: 10px 20px;
  font-size: 1.4rem;
  border-radius: 6px;
  cursor: pointer;
}

.reset-btn {
  background-color: #fff;
  border: 1px solid #333;
  color: #333;
}

@media screen and (max-width: 768px) {
  .search-button button {
  font-size: 1.3rem;
    padding: 8px 12px;
    white-space: nowrap;
  }
}

/* 検索ボタン：黒塗り */
.search-btn {
  background-color: #000;
  border: none;
  color: #fff;
}


/* 演目：もっと見る */
.toggle-item {
  display: none; /* 最初は隠す */
}
.more-group {
  display: none; 
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  grid-column: 1 / -1;
}
.filter-more{
	margin:10px auto;
	font-wight:bold;
	text-decoration: none;
}
.more-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color:#333;
  text-decoration: none;
  padding: 0;
	font-weight: bold;
}

/* 並び替え */

.sort_accordion {
  position: relative;
  display: inline-block;
}

.sort_accordion summary {
  cursor: pointer;
  list-style: none;
}

.sort_accordion summary::-webkit-details-marker {
    display: none;
}
.sort_accordion::after {
  display: none;
}

/* メニュー全体 */
.accordion-menu {
  position: absolute;
  top: 100%;   /* summaryの下 */
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 100;
  min-width: 120px;
}

.accordion-menu p {
  margin: 0;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.accordion-menu p:hover {
  background: #f0f0f0;
}

.item_title img{
	width: 100%;	
}

.sort{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	border-bottom: solid 1px #333;
}

.sort ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sort ul li {
    margin-left: 10px;
}

.sort_result{
	padding:20px;;
}


.sort_selected{
	border-top: solid 1px #333;
	border-bottom: solid 1px #333;
	padding:20px;
	text-align: left;
}

.filter-more img{
	width: 10px;
}

.item_list_text{
	font-size: 0.9em;
	text-align: left;
	padding: 5px 10px;
	margin-bottom: 10px;
}

.item_list_program{	
	margin-left: 10px;
	margin-right: 10px;
}

.item_list_img img:hover{
    opacity: 0.7;
}


/* オリジナルデザインで作成 */
.btn_original a{
	display: inline-block;
	border: 2px solid #c6b198;
	padding: 1rem 3.5rem 1rem 2.5rem;
	border-radius: 5px;
	font-size: 1.8rem;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none; 
	background-image: url("../images/btn_arrow_brown.svg");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px auto;
}
.btn_original a:hover{
	color:#000;
	background-color:#ebead8;
}

/* ウェアの種類 */
.btn_wear a{
	display: inline-block;
	border: 2px solid #c6b198;
	padding: 1rem 3.5rem 1rem 2.5rem;
	border-radius: 5px;
	font-size: 1.8rem;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none; 
	background-color:#fff5f5;
	background-image: url("../images/btn_arrow_brown.svg");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px auto;
}
.btn_wear a:hover{
	color:#fff;
	border: 2px solid #ebaec3;
	background-color:#ebaec3;
	background-image: url("../images/btn_arrow_white.svg");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px auto;
}

.btn_wrap_wear{
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

@media screen and (max-width: 768px){
	.btn_wrap_wear{
		gap: 0;
		flex-direction: column;
		margin-bottom: 20px;
	}
	.btn_original a,
	.btn_wear a{
		font-size: 1.4rem;
		width: 90%;
	}
}

/*////////////////// ショッピングカート //////////////////*/

.midashi_line{
	border-bottom: 1px solid #ccc;
}

.cart_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top:30px;
  margin-right: 10px;
  margin-left: 10px;
}

.cart_left {
  flex: 1 1 60%;
  min-width: 300px;
}

.cart_right {
  flex: 1 1 35%; 
  min-width: 250px;
}

  .cart_left,
  .cart_right {
    max-width: 100%;
	  margin-left: auto;
	  margin-right: auto;
  }


.f_price{
	font-size: 120%;
	font-weight: bold;
	color: #a22d2f;
}


/* カートの注文明細 */
.order_item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin: 30px 10px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.order_item_img_area {
    flex: 0 0 200px;
    width: 200px;
    margin-right: 20px;
}

.order_item_img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
}

.order_item_text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 1.6rem;
}

.order_item_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.order_item_text_link {
    color: inherit;
    text-decoration: none;
    min-width: 0;
}

.cart_delete_form {
    flex: 0 0 auto;
    margin: 0;
}

.cart_delete_btn {
    padding: 4px 10px;
    cursor: pointer;
}

.order_item_detail {
    line-height: 1.3;
}

.order_item_detail br {
    line-height: 1.3;
}

@media (max-width: 600px) {
    .order_item_img_area {
        flex: 0 0 110px;
        width: 110px;
        margin-right: 12px;
    }

    .order_item_img {
        max-width: 110px;
    }

    .order_item_text {
        font-size: 1.3rem;
    }

    .order_item_header {
        gap: 8px;
    }

    .cart_delete_btn {
        padding: 3px 8px;
        font-size: 1.2rem;
    }
}

/* 注文合計のスタイル */
.order_total {
    border: 1px solid #ccc;
    padding: 30px;
    margin-bottom: 30px;
	margin-top: 20px;
    background: #fff;
}

.order_total_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.6;
}

.order_total_label {
    color: #333;
}

.order_total_price {
    min-width: 120px;
    text-align: right;
    font-weight: 600;
}

.order_total_row.discount .order_total_price {
    color: #c00;
}

.order_total_text {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid #ccc;
    font-size: 20px;
    font-weight: bold;
}

.order_total_text .order_total_price {
    font-size: 24px;
}

.order_total_text{
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding:5px;
	font-weight: bold;
	font-size: 1.5em;
	margin-top:30px;
	margin-bottom: 30px;
}

.order_total_text_sp{
	padding:5px;
	font-weight: bold;
	font-size: 1.2em;
}
@media screen and (max-width: 600px) {
    .order_total {
        padding: 18px 15px;
        margin-bottom: 20px;
    }

    .order_total_row {
        gap: 10px;
        padding: 7px 0;
        font-size: 14px;
    }

    .order_total_label {
        flex: 1;
    }

    .order_total_price {
        min-width: 100px;
        text-align: right;
        font-size: 14px;
        white-space: nowrap;
    }

    .order_total_text {
        margin-top: 10px;
        padding-top: 14px;
        font-size: 17px;
    }

    .order_total_text .order_total_price {
        font-size: 20px;
    }
}

.order_btn_login{
	display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
    padding: 0.5em 2em;
    border-radius: 5px;
    background-color: #a22d2f;
    font-size: 1.3em;
	font-weight: 500;
	text-decoration: none;
	margin-bottom: 10px;
}

.order_btn_sp{
	display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
    padding: 0.5em 2em;
    border-radius: 5px;
    background-color: #a22d2f;
    font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
}

.order_btn_guest{
	display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
    padding: 0.5em 2em;
    border-radius: 5px;
    background-color: #ddd;
    font-size: 1.3em;
	font-weight: 500;
	text-decoration: none;
	color: #333;
	border: 1px solid #ccc;
	margin-bottom: 10px;
}
.order_btn_login,
.order_btn_login:link,
.order_btn_login:visited,
.order_btn_sp,
.order_btn_sp:link,
.order_btn_sp:visited{
	color: #fff;
}

.order_btn_guest:hover{
	color: #333;
}

.order_btn_login:hover,
.order_btn_sp:hover,
.order_btn_guest:hover {
  opacity: 0.5;
}

/* 後で消す
.order_btn a{
	display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
    padding: 0.5em 2em;
    border-radius: 5px;
    background-color: #a22d2f;
    color: #fff;
    font-size: 1.5em;
	text-decoration: none;
}

.order_btn_sp a{
	display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
    padding: 0.5em 2em;
    border-radius: 5px;
    background-color: #a22d2f;
    color: #fff;
    font-size: 1.4rem;
	font-weight: bold;
	text-decoration: none;
}

.order_btn a:hover,
.order_btn_sp a:hover {
  opacity: 0.8;
} */




.order_point{
	margin-bottom: 10px;
}

.point_attention{
	text-align: left;
	font-size: 80%;
}

.order_set_text{
	display: block;
	background-color:#dbe7ed ;
	font-size: 1em;
	padding:20px;
}

.order_coupon{
	border: 1px solid #ccc;
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.coupon_title{
	display: block;
	background-color:#ccc;
	padding:5px;
	margin-bottom: 20px;
	font-weight: bold;
}

.textbox_coupon {
    padding: 8px 10px;
    border: 1px solid #969da3;
    border-radius: 5px;
    font-size: 1em;
    line-height: 1.5;
	width: 85%;
}

.textbox_coupon::placeholder {
    color: #ccc;
}

.coupon_btn{
	display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 0.5em 2em;
    border-radius: 5px;
    font-size: 1em;
	background-color: #ddd;
	margin:10px auto;
    border: 1px solid #969da3;
}

 .coupon_btn a:hover {
  opacity: 0.8;
}

/* カート */
.cart_item_name {
	font-size: 1em;
	width: 150px; 
	font-weight: bold;
	border-right: 1px solid #ccc; /* 右側に縦線 */
	padding-right: 10px;
	padding-left: 10px;
	margin-right: 10px;
	display: flex;
	align-items: center;
}

.cart_item_name input{
	margin-left:0.5em;
	margin-right:1em;
}

.order_edit{
	margin-left:10px;
	font-size:0.9em;
}

.order_edit:link{
	color: blue;
}

.order_total_sp {
    display: none;
}

@media screen and (max-width: 768px) {
	.cart_wrap {
	  flex-direction: column;
	}
	.order_cart {
		width: 100%;
	}
	.order_item_img{
		max-width: 150px;
	}
	.order_total_sp {
		display: flex;
		z-index: 1000;
		align-items: center;
		justify-content: space-between;
		gap: 0.5rem;
		width: 100%;
		border-top: 1px solid #ccc;
		position: fixed;
        bottom: 0; 
		background-color: #fff;
		padding:10px 30px;
	}
	.order_total {
		width: 100%;
	}
	.cart_item_name {
		border-right: none;
		padding: 0;
		margin: 0;
	}
	
	.cart_item_name input{
		margin-left:0;
		margin-right:1em;
	}
	

}
/* teamwearの注文フォーム */
.teamwear-quantity-area {
    margin-top: 16px;
}

.teamwear-quantity-block {
    margin-bottom: 12px;
}

.teamwear-quantity-block .f_b {
    display: inline-block;
    min-width: 120px;
    font-weight: bold;
}

.teamwear-quantity-block label {
    margin-left: 12px;
    margin-right: 4px;
}

.teamwear-quantity-block select {
    margin-right: 12px;
}

/*////////////////// 従来の注文フォーム //////////////////*/
.form_order,
.form_order_others{
	text-align: left;
	border: 2px solid #ddd;
	padding:30px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin:30px 10px;
}

.form_order .form_hr,
.form_customer .form_hr{
	border-top: 1px solid #333;
}

.form_attention{
	text-align: left;
	padding:10px 30px;
	margin-top:20px;
}

.form_order_item {
	display: flex;
	gap: 1rem;
	align-items: stretch;
}

.order_item_name {
	font-size: 1.3em;
	width: 250px; 
	font-weight: bold;
	border-right: 1px solid #ccc; /* 右側に縦線 */
	/*padding-right: 10px;
	padding-left: 10px;*/
	margin-right: 10px;
	display: flex;
	align-items: center;
}

.order_item_name input{
	margin-left:0.5em;
	margin-right:1em;
}



.order_item_option {
	margin-left: 120px;
	margin-top: 0.5em;
}

.order_item_option input,
.order_item_color input{
	margin-right:0.3em;	
}

.order_item_detail {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.order_item_no,
.order_item_size,
.order_item_paper,
.order_item_others{
  align-items: center;
  margin-bottom: 1em;
}

.order_item_option_box{
  display: flex;
}

.order_item_label_op {
	font-size: 0.9em;
	font-weight: bold;
	width: 200px; 
}

.order_item_label {
  display: inline-block;
  width: 120px; 
  font-weight: bold;
}
.order_item_label_2 {
  display: inline-block;
  width: 60px; 
  font-weight: bold;
}

.order_item_title {
  display: flex;
  flex-direction: column;
}


.sub_name {
  font-size: 0.8em; 
  font-weight: normal;
  color: #666;
}

.form_order_foot{
	line-height: normal;
	margin: auto;
	padding: 15px;
}

.form_order_foot2{
	border: 1px solid #cccccc;
	padding: 15px;
	font-size: 0.9em;
	background-color:#fff1fc;
	text-align: left;
	width:50%;
	margin: 20px auto;
}

.form_sp_br{
	display: none;
}

.form_pc_br{
	display: block;
}

.form_order_sameset{
	margin-right: auto;
	margin-left: auto;
}
.form_order_sameset input[type="button"] {
  white-space: normal;   /* 折り返しを許可 */
  word-break: break-word; /* 長い単語も折り返す */
  line-height: 1.4;
  text-align: center;
  padding: .5em 1em;
	margin-bottom: 10px;
}

.form_order_btm{
	display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0.9em 2em;
    border: none;
    border-radius: 5px;
    background-image: linear-gradient(0deg, #de668a 0%, #de668a80 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
}

.form_order_btm::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

.order_item_hp a{
	color:#fff;
	text-decoration: none;
}

.form_order_btm:hover{
  opacity: 0.8;		
}

.order_item_hp{
}

.form_order label{
	margin: 0;	
}
.order_item_goods{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	margin-bottom: 1em;
}


/* グッズ_アコーディオン */
.goods_accordion {
	width: 100%;
	margin: 0 auto;
}

.goods_accordion summary {
 display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto ;
  padding: .9em 2em;
  border: none;
  border-radius: 5px;
  background-image: linear-gradient(0deg, #de668a 0%, #de668a80 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  list-style: none; /* 矢印消す */
  cursor: pointer;
}

.goods_accordion summary::-webkit-details-marker {
    display: none;
}

.goods_accordion summary:hover{
  opacity: 0.8;		
}

.goods_accordion summary::after {
    transform: translateY(-10%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}

.goods_accordion[open] summary::after {
    transform: translateY(20%) rotate(225deg);
}
.goods_accordion .form_order_item {
    transform: translateY(-10px);
    opacity: 0;
    transition: transform .5s, opacity .5s;
}

/* アコーディオン開いた時 */
.goods_accordion[open] .form_order_item {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
	.form_order_item {
		flex-direction: column; /* 縦並びにする */
	}
	
	.order_item_name {
		border-right: none;
		padding: 0;
		margin: 0;
	}
	
	.order_item_name input{
		margin-left:0;
		margin-right:1em;
}
	.order_item_detail {
		flex-direction: column; /* 縦並び */
		align-items: flex-start;
	}

	.order_item_option{
		margin-left: 0;
	}

	.form_order_foot{
		margin: auto 10px;
		font-size: .9em;
	}
	
	.form_order_foot2{
		width:90%;
	}

	.form_sp_br{
		display: block;
	}
	.form_pc_br{
		display: none;
	}
	
	.form_order_sameset input[type="button"] {
		width: 100%; 
	}
	.order_item_label_op {
		width: 100%; 
	}
	.order_item_label_2{
		width: 120px; 
	}
	.order_item_option_box{
		flex-direction: column;
		margin-bottom: 1em;
	}

	.form_attention{
		text-align: left;
		padding:10px;
}
 
}


/*////////////////// お客様情報 //////////////////*/
.form_customer{
	text-align: left;
	border: 2px solid #ddd;
	padding:30px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin:30px 10px;
}

.form_customer hr,
.form_order hr
{
	border: solid 1px #ddd;
	width: 100%;
}

.form_customer_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 0.5rem;
}

.form_customer_wrap label{
	width: 200px;
	margin-right: 10px;
}

.form_customer_wrap input {
	box-sizing: border-box;
    padding-left: 0.5em;
    padding-right: 0.5em;
    border: 1px solid #969da3;
    border-radius: 3px;
    font-size: 1em;
    line-height: 1.5;
}


.form_customer_wrap .f_80{
	margin-left: 210px;
	flex-basis: 100%;
}

.form_customer_label{
	width: 200px;
	margin-right: 10px;
	font-weight: bold;
}

.fm_s {
  width: 7em;
}

.fm_m {
	width: 12em;
}
.fm_l {
	width: 25em;
}

.fmtxt{
	width: 100%;
}

@media (max-width: 768px) {
	.form_customer_wrap {
		flex-direction: column;
		align-items: stretch;
	}
	.form_customer_wrap label {
		width: 100%;
		margin-right: 0;
		margin-bottom: 0.3rem;
	}
	.form_customer_wrap input,
	.fm_m,
	.fm_l {
		width: 100%;
	}
	.form_customer_wrap .f_80{
		margin-left: 0;
	}
}


.btn_wrap{
	display: flex;
	justify-content: center;
	gap: 30px; 
	flex-wrap: wrap; 
	align-items: center;	
	margin-top:30px;
}

.form_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    padding: .9em 2em;
    border: none;
    border-radius: 5px;
    background-color: #a22d2f;
    color: #fff;
    font-weight: 600;
    font-size: 1.2em;
}

.btn_wrap a{
	text-decoration: none;
	color: #fff;
}
.btn_wrap a.form_btn_return{
	color:#000;
}

.form_btn_return{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    padding: .9em 2em;
    border: none;
    border-radius: 5px;
    background-color: #ddd;
    color: #000;
    font-weight: 600;
    font-size: 1.2em;
	text-decoration: none;
}

.form_btn:hover{
  opacity: 0.8;
	color: #fff;
}
.form_btn_return:hover{
  opacity: 0.8;
	color: #555;
}

@media (max-width: 768px) {
	.btn_wrap{
		gap: 15px; 
	}
}

/* 新しいお届け先を追加する */
.form_btn_add{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    padding: .5em 1em;
    border: none;
    border-radius: 5px;
    background-color: #ddd;
    color: #000;
    font-weight: 600;
    font-size: 1em;
	text-decoration: none;
}


.form_btn_add:hover{
	opacity: 0.8;
}


/*////////////////// 注文フォーム　確認ページ //////////////////*/
.form_confirm {
	margin:0 0 30px;
}

.form_confirm h2 {
    text-align: center;
    margin-bottom: 1em;
}

.form_confirm table {
    width: 100%;
    border-collapse: collapse;
}

.form_confirm .td_item_name{
    background-color: #ddd;	
}

.form_confirm th,
.form_confirm td {
    padding: 10px;
    border-bottom: 1px solid;
    text-align: left;
}

.form_confirm th {
    width: 30%;
    font-weight: bold;
    background-color: #f2f2f2;
}

table.form caption {
	color: #000;
	font-size: 1.5em;
    caption-side: top; 
    text-align: left; 
    font-weight: bold;
    margin-bottom: 0.5em;
}

.plus {
	width:10px;
	padding:auto;
}


.form_confirm_total table{
	margin-left: auto;
	border-collapse: collapse;
	min-width: 300px;
	margin-bottom: 20px;
}

.form_confirm_total th,
.form_confirm_total td{
	padding: 8px 12px;
	text-align: left;
}

.form_confirm_total td{
	text-align: right;
	font-size: 1.6rem;
}

.form_confirm_total tr:last-child{
	border-top: 1px solid #333;
	color: #a22d2f;
}

.form_confirm_total tr:last-child th,
.form_confirm_total tr:last-child td{
	font-size: 1.2em;
	padding-top: 12px;
}

.form_confirm_point_wrap{
	text-align: left;
}

.form_confirm_point{
	border: 1px solid;
	margin-top: 10px;
	margin-bottom: 30px;
	padding: 30px;
}

.form_confirm_point_tit {
  color: #000;
  font-size: 1.5em;
  text-align: left;
  font-weight: bold;
}

/* 完了ページ */

.form_regist_text{
	display: block;
	width: 650px;
	text-align: left;
	margin:30px auto;
	line-height: 1.5em;
}

.senddata_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width:250px ;
	padding:0.5em;
    border: none;
    border-radius: 5px;
    background-color: rgb(255, 224, 235);
    color: #000;
    font-weight: 600;
    font-size: 1em;
	margin-top:10px;
	margin-bottom: 10px;
}

.senddata_btn:hover{
  opacity: 0.8;
  color:#000;
}

@media (max-width: 768px) {
	.form_regist_text{
		width: 90%;
	}
	.form_confirm_total table{
		max-width: none;
		width:100%;
		margin: auto;
		margin-bottom: 20px;
	}
	
}


/*////////////////// お問い合わせフォーム //////////////////*/

.form_inquiry{
	text-align: left;
	border: 2px solid #ddd;
	padding:30px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin:30px 10px;
}

.form_inquiry hr
{
	border: solid 1px #ddd;
	width: 100%;
}

.form_inquiry_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 0.5rem;
}

.form_inquiry_wrap label{
	width: 200px;
	margin-right: 10px;
}

.form_inquiry_wrap input {
	box-sizing: border-box;
    padding-left: 0.5em;
    padding-right: 0.5em;
    border: 1px solid #969da3;
    border-radius: 3px;
    font-size: 1em;
    line-height: 1.5;
	margin-right:0.3em ;
}

.form_inquiry_label{
	width: 200px;
	margin-right: 10px;
	font-weight: bold;
}

.form_inquiry_file{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form_inquiry_file span{
  word-break: break-word;
}

.inquiry_file{
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 5px;
}

.inquiry_file input[type="file"]{
  flex: 1;
  min-width: 0;
}

.form_inquiry_wrap.vertical {
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 768px) {
	.form_inquiry_file{
		width: 100%;
	}
	
	.form_inquiry_wrap{
		flex-direction: column;
		align-items: flex-start;
	}

	.form_inquiry_wrap label{
		width: 100%;
		margin-bottom: 0.5rem;
	}
}

/*////////////////// データ送信フォーム //////////////////*/

.login_wrap {
  display: flex;
  justify-content: center;
	margin-top: 30px;
}

.login_fields {
  width: 300px; 
  text-align: left;
}

.login_fields input {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 15px;
}

.form_upload{
	text-align: left;
	border: 2px solid #ddd;
	padding:30px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin:30px 10px;
}

.form_upload_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 0.5rem;
}

.form_upload_wrap label{
	width: 200px;
	margin-right: 10px;
}

.form_upload_wrap input {
	box-sizing: border-box;
    padding-left: 0.5em;
    padding-right: 0.5em;
    border: 1px solid #969da3;
    border-radius: 3px;
    font-size: 1em;
    line-height: 1.5;
	margin-right:0.3em ;
}

.form_upload_label{
	width: 200px;
	margin-right: 10px;
	font-weight: bold;
}

.form_upload_file{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form_upload_attention{
  word-break: break-word;
}

.upload_file{
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 5px;
}

.upload_file input[type="file"]{
  flex: 1;
  min-width: 0;
}

.form_upload_wrap.vertical {
  flex-direction: column;
  align-items: flex-start;
}


@media (max-width: 768px) {
	.form_upload_file{
		width: 100%;
	}
	
	.form_upload_wrap{
		flex-direction: column;
		align-items: flex-start;
	}

	.form_upload_wrap label{
		width: 100%;
		margin-bottom: 0.5rem;
	}
}


/*////////////////// 文字原稿入力フォーム //////////////////*/

.form_text .form_hr{
	border-top: 1px solid #333;
}

.form_text{
	text-align: left;
	border: 2px solid #ddd;
	padding:30px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin:30px 10px;
}

.form_text hr{
	border: solid 1px #ddd;
	width: 100%;
}

.form_text_wrap,.form_text_wrap2 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 0.5rem;
}

.form_text_wrap label,.form_text_wrap2 label{
	width: 200px;
	margin-right: 10px;
	font-weight: bold;
}

.form_text_wrap input,.form_text_wrap2 input {
	box-sizing: border-box;
    padding-left: 0.5em;
    padding-right: 0.5em;
    border: 1px solid #969da3;
    border-radius: 3px;
    font-size: 1em;
    line-height: 1.5;
	margin-right: 0.3em;
	margin-left: 0.3em;
}

.form_text_label{
	width: 200px;
	margin-right: 10px;
	font-weight: bold;
}

.form_text_foot{
    border: 1px solid #969da3;
	padding: 20px;
	margin: 30px 0;
}

.btn_data-form a{
	display: inline-block;
	border: 2px solid #c6b198;
	padding: 1rem 3.5rem 1rem 2.5rem;
	border-radius: 5px;
	font-size: 1.8rem;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none; 
	background-image: url("../images/btn_arrow_brown.svg");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px auto;	
	margin: 25px 0 10px;
}

.btn_data-form a:hover{
	color:#000;
	background-color:#ebead8;
}

.form_text_foot table{
	text-align: left;
	margin: 10px auto;
}

.date_input{
  width: 4em;
  text-align: center;
}
.date_input_2{
  width: 3em;
  text-align: center;
}
.time_input{
  width: 2.5em;
  text-align: center;
}


@media (max-width: 768px) {
	.form_text_wrap {
		flex-direction: column;
		align-items: stretch;
	}
	.form_text_wrap label {
		width: 100%;
		margin-right: 0;
		margin-bottom: 0.3rem;
	}
	
	.form_text_wrap2{
		align-items: flex-start;
	}
		
	.form_text_wrap2 label{
		width: 100%;
		margin-bottom: 5px;
	}
	.form_text_wrap2 input:first-of-type{
		margin-left:0;
	}
	
	.time_group{
		display:block;
		margin-bottom:5px;
	}
	
	.btn_data-form a{
		font-size: 1.4rem;
	}
	
	.form_text_wrap input {
		margin-right: 0;
		margin-left: 0;
	}
}


/*////////////////// 購入履歴 //////////////////*/

.order_history_bg{
	padding: 10px 30px;
	background-color: #eee;
}

.order_history_wrap{
	margin-bottom: 30px;
	padding: 20px;
	background-color: #fff;
}

.order_history_header{
	display: flex;
    flex-wrap: wrap;
    gap: 10px;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
}

.order_date{
	text-align: left;
	font-size: 2rem;
	font-weight: 700;
}

.order_detail_btn {
	padding: 5px 10px;
	border: 1px solid #c0c0c0;
	text-decoration: none;
	border-radius: 5px;
}
.order_detail_btn:hover {
	border: 1px solid #ebaec3;
	background-color: #FFF0F5 ;
	text-decoration: none;
	border-radius: 5px;
}

.order_history_wrap .order_item{
	border: none;
	margin: 0;
	border-radius: 5px;
}


@media screen and (max-width: 768px) {
	.order_history_bg{
		padding: 10px 10px;
		background-color: #eee;
	}
}


/*////////////////// PRiFEE会員 //////////////////*/

/* ログイン・会員登録 */
.login_new a {
	display: inline-block;
	text-decoration: none;
	border: 1px solid #ddd;
	padding: 5px 12px;
	margin: 15px 0;
}

.login_new a:hover{
	opacity: 0.8;
}

.login_container {
	display: flex;
	gap: 20px;
	margin: 30px 0;
	align-items: flex-start;
}

.login_box {
	flex: 1;
	padding: 20px;
	text-align: center;
	border: 1px solid #ddd;
}

.login_box .login_wrap{
	margin-top: 0;
}

.login_login{
	background-color: #f5f5f5;
}

.login_new_attention{
	font-size: 90%;
	line-height:1.5;
	margin: 10px 0 8px;
}

.login_login .btn_wrap .form_btn{
	background-color:#d0b77b;
}

@media screen and (max-width: 768px) {
	.login_container {
		flex-direction: column;
		align-items: stretch;
	}
}

/* マイページ */

.mypage_header{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	margin-bottom:20px;
}

.mypage_name{
	line-height:1.8;
	text-align: left;
}

.mypage_menu{
	display:flex;
}

.mypage_menu_link{
	padding:0 14px;
	border-right:1px solid #ccc;
	text-decoration:none;
	color:#333;
}

.mypage_menu_link:first-child{
	border-left:1px solid #ccc;
}

.mypage_menu_link:hover{
	text-decoration:underline;
}

.withdraw_btn_area{
	text-align:center;
	margin-top:30px;
	padding: 20px;
	border-top:1px solid #ccc;
}

/*退会*/
.withdraw_btn{
	margin-top: 10px;
	padding:10px 40px;
	font-size:1.4rem;
	font-weight: bold;
	cursor:pointer;
	border: 2px #ddd solid;
	background-color: #fff;
	border-radius: 5px;
	text-decoration: none;
}

.withdraw_btn:hover{
	background-color: #ddd;
	color: #000;
}

/*登録情報確認・変更*/
.mypage_info{
	text-align: left;
	border: 2px solid #ddd;
	padding:30px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: left;
	margin-bottom: 20px;
}

.mypage_info hr
{
	border: solid 1px #ddd;
	width: 100%;
}

.mypage_info_wrap {
	display: flex;
	flex-wrap: wrap;
	align-items:flex-start;
	margin-bottom: 0.5rem;
}

.mypage_info_wrap .info_l{
	width: 200px;
	margin-right: 10px;
	font-weight:bold;
	text-align:left;
}

.mypage_info_wrap .info_r {
	box-sizing: border-box;
    line-height: 1.5;
	flex:1;
	text-align:left;
}

.mypage_edit_btn{
	padding:3px 10px;
	font-size:1.2rem;
	font-weight: bold;
	cursor:pointer;
	border: 2px #ddd solid;
	background-color: #fff;
	border-radius: 5px;
	text-decoration: none;
}

@media (max-width:768px){
	.mypage_header{
		flex-direction:column;
	}

	.mypage_name{
		width:100%;
	}

	.mypage_menu{
		display:flex;
		flex-wrap:wrap;
		width:100%;
		border:1px solid #ccc;
		margin-top:10px;
	}

	.mypage_menu_link{
		width:50%;
		text-align:center;
		padding:10px 0;
		border-right:1px solid #ccc;
		border-bottom:1px solid #ccc;
		box-sizing:border-box;
	}

	.mypage_menu_link:first-child{
		border-left: none;
	}
	.mypage_menu_link:nth-child(2n){
		border-right:none;
	}

	.mypage_menu_link:nth-last-child(-n+2){
		border-bottom:none;
	}
	
	.mypage_info_wrap{
		flex-direction:column;
	}

	.mypage_info_wrap .info_l{
		width:100%;
		margin-bottom:3px;
	}
}

/*////////////////// フッター //////////////////*/
footer{
	background-color: #f2f2f2;
	margin: 50px 0 0 0;
    padding: 50px 0 70px;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.footer-menu {
    min-width: 300px;
	max-width: 450px;
    margin-bottom: 7px;
	text-align: left;
}

.footer-menu-2 {
	min-width: 450px;
    margin-bottom: 7px;
	text-align: left;
}


.footer-menu summary,
.footer-menu-2 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 0.5em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.footer-menu summary::-webkit-details-marker,
.footer-menu-2 summary::-webkit-details-marker {
    display: none;
}

.footer-menu summary::before,
.footer-menu summary::after,
.footer-menu-2 summary::before,
.footer-menu-2 summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #333333b3;
    content: '';
}

.footer-menu summary::before,
.footer-menu-2 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.footer-menu summary::after
.footer-menu-2 summary::after {
    transition: rotate .3s;
}

.footer-menu[open] summary::after,
.footer-menu-2[open] summary::after {
    rotate: 90deg;
}

.footer-menu ul,
.footer-menu-2 ul {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.footer-menu[open] ul,
.footer-menu-2[open] ul {
    transform: none;
    opacity: 1;
}

.footer-menu ul li,
.footer-menu-2 ul li{
	line-height: 2em;
	margin-left:1em;
	list-style-type: none;
}

.footer-menu ul li a,
.footer-menu-2 ul li a{
	text-decoration: none;
}
.footer-menu-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
	margin-bottom: 50px;
	max-width: 1200px;	
	margin-left: auto;
	margin-right: auto;
}

.footer-menu-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1; 
}

/* スマホ・タブレットは1列 */
@media screen and (max-width: 1024px) {
    .footer-menu-wrapper {
        flex-direction: column;
		padding:0;
    }
    .footer-menu-column {
        flex: 1 1 100%;
    }
	.footer-menu,
	.footer-menu-2{
		min-width: 100%;
		max-width: 100%;
    }
}


.footer_logo{
	height: 25px;
}

/*　画面上部のトーストメッセージ */
.toast-message {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    min-width: 280px;
    max-width: calc(100% - 32px);

    padding: 12px 40px 12px 16px;
    border-radius: 8px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    font-size: 14px;

    animation: toastSlideDown 0.25s ease-out;
}

.toast-success {
    background: #e7f7e7;
    color: #176b17;
}

.toast-error {
    background: #ffe5e5;
    color: #a40000;
}

.toast-close {
    position: absolute;
    top: 6px;
    right: 10px;

    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

@keyframes toastSlideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -12px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* カートアイコンの商品数重ね */
.cart-icon {
    position: relative;
    display: inline-block;
    font-size: 28px;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 999px;
}
/* オリジナルデザインのチェックボックス */
.original-check-area {
    margin-left: 1.5em;
    margin-top: 4px;
    margin-bottom: 8px;
}


#recentlyViewedSection {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

#recentlyViewedSection * {
    box-sizing: border-box;
}

#recentlyViewedSection .recently-viewed-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

#recentlyViewedSection .slick-list {
    overflow: hidden;
    width: 100%;
}

#recentlyViewedSection .slick-track {
    display: flex;
}

#recentlyViewedSection .slick-slide {
    float: none;
    height: auto;
}

#recentlyViewedSection .recently-viewed-slide {
    padding: 0 4px;
    min-width: 0;
}

#recentlyViewedSection .tm-img-container {
    width: 100%;
    min-width: 0;
}

#recentlyViewedSection .tm-img-container a {
    display: block;
    width: 100%;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

#recentlyViewedSection .product-card {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

#recentlyViewedSection .product-card img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

#recentlyViewedSection .item_list_text {
    margin-top: 3px;
    font-size: 14px;
    line-height: 1;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: center;
}
@media (max-width: 768px) {
    #recentlyViewedSection .item_list_img {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 420px) {
    #recentlyViewedSection .item_list_img {
        grid-template-columns: 1fr;
    }
}

.favorite-button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 1;
}

.favorite-button img {
    display: block;
}

.favorite-button .favo_active {
    display: none;
}

.favorite-button.is-active .favo_base {
    display: none;
}

.favorite-button.is-active .favo_active {
    display: block;
}

/* トップページQAのもっと見る */
.qa_more_box {
    max-height: 360px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.qa_more_box::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        #fff
    );
    pointer-events: none;
}

.qa_more_box.is_open {
    max-height: none;
}

.qa_more_box.is_open::after {
    display: none;
}

.qa_more_btn {
    display: block;
    margin: 20px auto 0;
    padding: 12px 36px;
    min-width: 180px;
    min-height: 44px;

    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 9999px;
    background: #fff;
    color: #333;

    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    box-sizing: border-box;
}

.qa_more_btn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .qa_more_btn {
        width: 80%;
        max-width: 320px;
        padding: 13px 20px;
        font-size: 16px;
    }

    .qa_more_box {
        max-height: 300px;
    }
}


.logout-form {
    display: inline;
    margin: 0;
    padding: 0;
}

.link-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
}

.link-button:hover {
    color: #004999;
    text-decoration: none;
}

.upload_file_row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.upload_file_label {
    width: 90px;
    font-weight: bold;
}

.upload_file_input {
    flex: 0 0 320px;
    width: 320px;
    box-sizing: border-box;
}

.upload_file_clear {
    padding: 4px 10px;
    cursor: pointer;
}

.selected_file_name {
    flex-basis: 100%;
    margin-left: 98px;
    font-size: 90%;
    color: #555;
}

.upload_file_summary {
    margin-top: 10px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .upload_file_row {
        display: block;
    }

    .upload_file_label {
        display: block;
        width: auto;
        margin-bottom: 4px;
    }

    .upload_file_input {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .upload_file_clear {
        margin-top: 6px;
    }

    .selected_file_name {
        margin-left: 0;
    }
}
