﻿@charset "UTF-8";

:root {
	--default--text-color: #111;
	--gray--text-color: #bbb;
	--highlight-text-color: #D53116;
	--main--background-color: #E1EFF7;
	--main-highlight-background-color: #DE8BBB;
	--main--border-color: #E5E5E5;
}

.pc_only {
	display: none;
}


.pane-main {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

@media print, screen and (max-width: 767px) {
	.pane-main {
		max-width: unset;
	}
}

/* ----会員規約画面---- */
.block-member-terms {
	margin: 10px;
}

.block-member-terms--header {
	margin: -10px -10px 0;
}

.block-member-terms--message {
	padding: 0 0 10px;
}

.block-member-terms--body {
	width: 100%;
	height: 250px;
	font-size: 10px;
}

/* ----マイページ画面---- */
.block-mypage--customer-status {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	align-items: center;
	padding: 10px;
	margin: 0 10px 10px 10px;
}

.block-mypage--sign {
	text-align: center;
	padding-bottom: 5px;
}

.block-mypage--customer-name {
	font-size: 18px;
}

.block-mypage--logout {
	font-size: 14px;
}

.block-mypage--logout a {
	text-decoration: underline;
}

.block-mypage--mypoint {
	padding-top: 5px;
	text-align: center;
}

.block-mypage--mypoint-point {
	font-size: 18px;
	margin: 0 5px;
}

.block-mypage--rank-info {
	margin-top: 5px;
	background-color: #444;
	color: #fff;
	text-align: center;
	padding: 5px;
}

.block-mypage--rank-title {
	font-size: 12px;
}

.block-mypage--rank-current {
	font-size: 18px;
}

.block-mypage--rank-condition {
	padding-top: 5px;
}

.block-mypage--rank-condition-message {
	font-size: 14px;
}

.block-mypage--rank-condition-1,
.block-mypage--rank-condition-2 {
	display: table;
	width: 100%;
}

.block-mypage--rank-condition-2 {
	padding-top: 5px;
}

.block-mypage--rank-condition-1 dt,
.block-mypage--rank-condition-1 dd,
.block-mypage--rank-condition-2 dt,
.block-mypage--rank-condition-2 dd {
	display: table-cell;
	vertical-align: middle;
}

.block-mypage--rank-condition-1-title,
.block-mypage--rank-condition-2-title {
	background: #444;
	color: #fff;
	text-align: center;
	padding: 1px 5px;
	border-radius: 2px;
	font-size: 12px;
	width: 5em;
}

.block-mypage--rank-condition-1-title i,
.block-mypage--rank-condition-2-title i {
	padding-right: 3px;
}

.block-mypage--rank-condition-1-status,
.block-mypage--rank-condition-2-status {
	padding-left: 5px;
	font-size: 14px;
}

.block-mypage--customer-barcode {
  text-align: center;
  padding: 10px;
  margin: 10px 0 0 auto;
  width: 100%;
}

.block-mypage--recommend {
	margin-top: 50px;
	padding: 0 15px 10px 15px;
	text-align: right;
}

.block-mypage--recommend a {
	text-decoration: underline;
}

.block-mypage--shopping-info i,
.block-mypage--member-info i,
.block-mypage--inquiry-info i,
.block-mypage--snssync-info i,
.block-mypage--linesync-info i {
	padding-right: 5px;
}

.block-mypage--shopping-info-items li,
.block-mypage--member-info-items li,
.block-mypage--inquiry-info-items li,
.block-mypage--snssync-info-items li,
.block-mypage--linesync-info-items li {
	border-bottom: 1px solid #eee;
	position: relative;
}

.block-mypage--shopping-info-items li dd,
.block-mypage--member-info-items li dd,
.block-mypage--inquiry-info-items li dd,
.block-mypage--snssync-info-items li dd,
.block-mypage--linesync-info-items li dd {
	display: none;
}

.block-mypage--shopping-info-items li a,
.block-mypage--inquiry-info-items li a,
.block-mypage--snssync-info-items li a,
.block-mypage--linesync-info-items li a {
	display: block;
	padding: 0 10px 0 10px;
	text-decoration: none;
}

.block-mypage--member-info-items li a {
	display: block;
	text-decoration: none;
}

.block-mypage--member-info-items--link {
	padding: 0 10px 0 10px;
}

.block-mypage--member-info-items--link2 {
	padding: 10px 5px 10px 10px;
}

.block-mypage--withdrawal-link {
	text-align: right;
	padding: 10px;
}

.block-mypage--withdrawal-link a {
	text-decoration: underline;
}

.page-menu {
	overflow-x: hidden;
}

.page-menu .container {
	width: 100%;
}

.base-btn {
  padding: 6px 15px;
  font-size: 12px;
  border: 1px solid #111;
  border-radius: 24px;
  display: inline-block;
}

/* マイページサイドメニュー */
.overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
}

.overlay.is-active {
	display: block;
}
.block-mypage-sidemenu{
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 10;
  transform: translateX(100%);
  transition: 0.2s transform ease-in;
}
.block-mypage-sidemenu.is-open{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  opacity: 1;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  transform: translateX(0);
  transition: 0.2s transform ease-in;
  overflow: hidden;
}
.wrapper:has(.pane-header) .block-mypage-sidemenu{
  top: 112px;
}
.wrapper:has(.pane-header) .block-mypage-sidemenu.is-open{
  height: calc(100% - 112px);
}
.block-mypage-sidemenu--nav-wrap{
  height: 100%;
  display: flex;
  flex-direction: column;
}
.block-mypage-sidemenu--nav{
  flex: 1;
  overflow-y: auto;
  padding: 2.67vw 6.67vw;
}
.block-mypage-sidemenu--close-btn-wrap {
  padding: 2.67vw 6.67vw;
  background: #fff;
  text-align: center;
}
.block-mypage-sidemenu--close-menu-btn{
  padding: 6px 15px;
  font-size: 12px;
  border: 1px solid #111;
  border-radius: 24px;
  display: inline-block;
  background-color: #fff;
}

.block-mypage--point + .block-mypage--actionpoint{
  margin-top: 10px;
  border-top: 1px solid var(--main--border-color);
}
.block-actionpointslider--header{
  padding-left: 0px;
  font-weight: normal;
}
.block-actionpointslider-content .swiper-actionpointlist{
  padding-bottom: 20px;
}
.block-mypage--actionpoint .swiper-actionpointlist{
  margin-top: 0px;
}
.block-actionpointslider--item-body{
  width: 100%;
  margin-right: 20px;
  flex-shrink: 0;
  border: 1px solid var(--main--border-color);
}
.block-actionpointslider--item-head{
  background-color: var(--main--background-color);
  padding: 10px 0;
}
.block-actionpointslider--item-title{
  display: flex;
  padding: 0 5px;
  align-items: center;
  height: 100%;
}
.block-actionpointslider--item-title-text,
.block-actionpointslider--item-comment-text,
.block-actionpointslider--item-description-text{
  word-break: break-word;
  overflow-wrap: break-word;
}
.block-actionpointslider--item-title-text{
  font-size: 12px;
  font-weight: bold;
}
.block-actionpointslider--item-title-icon-area{
  margin-right: 3px;
  width: 36px;
  flex-shrink: 0;
}
.block-actionpointslider--item-title-icon{
  width: 100%;
  height: auto;
  display: block;
}
.block-actionpointslider--item-detail{
  padding: 5px 10px;
}
.block-actionpointslider--item-comment-text{
  font-size: 12px;
  color: #f00;
  font-weight: 500;
}
.block-actionpointslider--item-description-text{
  font-size: 12px;
}
.block-actionpointslider--item-get-btn a.base-btn,
.block-actionpointslider--item-point-comment{
  font-size: 10px;
}
.block-actionpointslider--item-description:not(:last-child){
  border-bottom: 1px solid var(--main--background-color);
  padding-bottom: 5px;
}
.block-actionpointslider--item-tooltip{
  padding-top: 5px;
}
.block-actionpointslider--item-point{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.block-actionpointslider--item-first-limited{
  background-color: red;
  color: white;
  padding: 2px 3px;
  margin-right: 1px;
  font-size: 10px;
}
.block-actionpointslider--item-point-text{
  margin-left: 2px;
}
.block-actionpointslider--item-point-number{
  font-weight: bold;
  font-size: 14px;
}
.block-actionpointslider--item-get-btn{
  margin-left: auto;
}
.block-actionpointslider--item-get-btn a.base-btn{
  padding: 2px 9px;
}
.block-actionpointslider--item-status-completed{
  background-color: rgba(50, 50, 50, 0.7);
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.block-actionpointslider--item-status-completed-icon{
  color: white;
  font-size: 12px;
  border: 2px solid #ccc;
  padding: 1px 15px;
  border-radius: 15px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.block-mypage-sidemenu--head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.block-mypage-sidemenu--name {
	font-size: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
	font-weight: 500;
}

.block-mypage-sidemenu--name>small {
	font-size: 0.8em;
}

.block-mypage-sidemenu--close-link img {
	width: auto;
	height: 1.5em;
}
.block-mypage-sidemenu--nav-tree + .block-mypage-sidemenu--nav-tree{
  margin-top: 4vw;
}

.block-mypage-sidemenu--nav-title {
	padding: 2.67vw 2.67vw 2.4vw;
	font-size: 16px;
	position: relative;
	border-bottom: 1px solid var(--main--border-color);
}

.block-mypage-sidemenu--nav-title:after {
	transform: rotate(90deg);
	transition: 0.3s transform ease-in;
}

.block-mypage-sidemenu--nav-tree.is-active .block-mypage-sidemenu--nav-title:after {
	transform: rotate(0);
}
.block-mypage-sidemenu--nav-tree {
	margin-bottom: 80px;
}
.block-mypage-sidemenu--nav-item {
		width: calc((100% / 2) - 20px);
    border-bottom: 1px solid rgba(19, 33, 106, 0.1);
}
.block-mypage-sidemenu--nav-item a {
	color: #0D2D6C;
	font-size: 16px;
	font-weight: bold;
	padding: 0 0 16px;
	box-sizing: border-box;
	display: block;
}

.block-mypage-sidemenu--btn-area {
	margin: 4vw 0 8vw;
	text-align: center;
}

.block-mypage-sidemenu--btn-area.-right {
	text-align: right;
}
.block-mypage-sidemenu--nav + .block-mypage-sidemenu--btn-area{
  margin-top: 8vw;
  padding: 0 6.67vw;
}

.block-mypage-sidemenu--nav+.block-mypage-sidemenu--btn-area .text-link {
	padding-left: 14px;
	color: var(--gray--text-color);
	position: relative;
}

.block-mypage-sidemenu--nav+.block-mypage-sidemenu--btn-area .text-link:after {
	content: '';
	width: 8px;
	height: 8px;
	display: block;
	border-top: 1px solid var(--gray--text-color);
	border-right: 1px solid var(--gray--text-color);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(45deg);
}

.free-template{
  width: 100%;
  height: auto;
  min-height: 100px;
  margin-top: 20px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* マイページリンク */
.block-mypage--order-item {
	margin: 0 0 80px;
}
.block-mypage--order-memberinfo h2 {
	height: 37px;
	padding-left: 45px;
	background: url(../../img/usr/mypage/memberinfo.png) 4px center no-repeat;
	display: flex;
	align-items: center;
	line-height: 1;
}
.block-mypage--order-contact h2 {
	height: 37px;
	padding-left: 48px;
	background: url(../../img/usr/mypage/contact.png) 4px center no-repeat;
	display: flex;
	align-items: center;
	line-height: 1;
}

.block-mypage--account-item dt.block-mypage-sidemenu--nav-title{
	height: 37px;
	padding: 0 0 0 45px;
	background: url(../../img/usr/mypage/account.png) 4px center no-repeat;
	display: flex;
	align-items: center;
	line-height: 1;
	margin-bottom: 40px;
	border: none;
	font-size: 22px;
	font-weight: bold;
	color: #0D2D6C;
}
.block-mypage--order-item h2 {
	margin-bottom: 40px;
	border: none;
	font-size: 22px;
	font-weight: bold;
	color: #0D2D6C;
}
.block-mypage--order-item ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 20px 40px;
}
.block-mypage--order-item ul li {
	width: calc((100% /2) - 20px);
	border-bottom: 1px solid rgba(19, 33, 106, 0.1);
}
.block-mypage--order-item ul li a {
	color: #0D2D6C;
	font-size: 16px;
	font-weight: bold;
	padding: 0 0 16px;
	box-sizing: border-box;
	display: block;
}
@media print, screen and (max-width: 767px) {
	.block-mypage--account-item dt.block-mypage-sidemenu--nav-title,
	.block-mypage--order-item h2 {
		font-size: 18px;
		margin-bottom: 8px;
	}
	.block-mypage-footermenu .block-mypage--order-memberinfo.block-mypage--order-item h2 {
		background: url(../../img/usr/sp/mypage/memberinfo.png) 4px center no-repeat;
		background-size: auto 37px;
		padding-left: 45px;
		margin-bottom: 10px;
	}
	.block-mypage-footermenu .block-mypage--order-contact.block-mypage--order-item h2 {
		background: url(../../img/usr/sp/mypage/contact.png) 4px center no-repeat;
		background-size: auto 26px;
		padding-left: 46px;
		margin-bottom: 10px;
	}
	.block-mypage--account-item dt.block-mypage-sidemenu--nav-title {
		background: url(../../img/usr/sp/mypage/account.png) 4px center no-repeat;
		background-size: auto 37px;
		padding-left: 44px;
		margin-bottom: 10px;
	}
	.block-mypage-sidemenu--nav-item a {
		padding: 16px 0;
	}
	.block-mypage--order-item {
		margin: 0 20px 52px;
	}
	.block-mypage--order-item ul {
		flex-direction: column;
		gap: 0;
	}
	.block-mypage--order-item ul li {
		width: unset;
	}
	.block-mypage--order-item ul li a {
		font-size: 14px;
		text-decoration: none;
		padding-top: 16px;
	}
	.block-mypage--order-item ul li a:focus,
	.block-mypage--order-item ul li a:hover {
		text-decoration: none;
	}
	.block-mypage-sidemenu--nav-tree {
		margin: 52px 20px;
	}
	.block-mypage-sidemenu--nav-item {
		width: unset;
	}
	.block-mypage-sidemenu--nav-item p {
		font-size: 14px;
	}
	.block-mypage--order-item:last-child {
		margin-bottom: 0;
	}
}
/* マイページリンク */


/* cms */
.block-cms {
	margin-bottom: 0;
	overflow: hidden;
}
.block-mypage--member {
	margin-bottom: 60px;
	border-bottom: 1px solid rgba(19, 33, 106, 0.1);
}
.block-mypage--member .block-cms-items {
	padding-bottom: 60px;
}
.block-cms-items {
	padding-bottom: 52px;
}
.block-cms-items .swiper {
	overflow: unset;
}
.block-cms .slick-list {
	overflow: visible;
}
.block-cms h2 {
	font-size: 22px;
	font-weight: bold;
	color: #0D2D6C;
	border: none;
	margin: 0;
	padding: 0;
	line-height: 1;
	height: 35px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 24px;
	padding: 0 0 0 44px;
}
.block-mypage--info h2 {
	background: url(../../img/usr/mypage/info_b.png) 5px center no-repeat;
}
.block-mypage--member h2 {
	background: url(../../img/usr/mypage/member_b.png) 5px center no-repeat;
}
.block-cms-item figure {
	min-width: 245px;
	width: 245px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.block-cms-item.swiper-slide,
.block-cms-item {
	min-width: 285px;
	width: 285px;
	padding: 20px;
	background: #FFF;
	border-radius: 12px;
	box-sizing: border-box;
	box-shadow: 0px 0px 15px rgba(63, 84, 154, 0.1);
}
.block-cms-item a:focus {
	outline: none;
}
.block-cms-item img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 4px;
}
.block-cms-item p.block-cms-name {
	font-size: 16px;
	margin: 16px 0 0 0;
	font-weight: bold;
	color: #13216A;
}
.block-cms-item p.block-cms-comment {
	font-size: 14px;
	color: #13216A;
	margin: 12px 0 0 0;
}
.block-cms-item img {
	max-width: 100%;
	max-height: 100%;
}
.block-cms-item a {
	border: none;
	text-decoration: none;
}
.page-menu .maypage-content__item.swiper-slide{
	height: auto;
}
@media print, screen and (max-width: 767px) {
	.block-cms {
		overflow: unset;
	}
	.block-mypage--member h2 {
		background: url(../../img/usr/sp/mypage/member_b.png) 5px center no-repeat;
		background-size: auto 38px;
		padding-left: 51px;
	}
	.block-mypage--info h2 {
		padding-left: 44px;
		background: url(../../img/usr/sp/mypage/info_b.png) 5px center no-repeat;
		background-size: auto 35px;
	}
	.block-cms h2 {
		font-size: 18px;
	}
	.block-cms-items {
		padding-bottom: 40px;
	}
	.block-cms-items  .swiper {
		overflow: unset;
	}
	.block-cms-item.swiper-slide, .block-cms-item {
		min-width: 152px;
		width: 152px;
		padding: 8px 8px 12px;
		border-radius: 8px;
		margin-right: 8px;
	}
	.block-cms-item figure {
		min-width: 136px;
		width: 136px;
		height: 136px;
	}
	.block-cms-item p.block-cms-name {
		margin: 12px 0 0 0;
		font-size: 12px;
	}
	.page-menu .maypage-content__item.swiper-slide{
		width: 285px !important;
	}
}
/* cms */

/*その他のお知らせ*/
.block-cms-otherinfo {
	margin: 0 0 80px;
	padding: 0 0 80px;
  border-bottom: 1px solid rgba(19, 33, 106, 0.1);
}
.block-cms-otherinfo h3 {
	margin-bottom: 20px;
	padding: 0;
	color: #0D2D6C;
	font-size: 18px;
	font-weight: bold;
	border: none;
}
.block-cms-otherinfo ul {
	margin-bottom:32px;
	display: flex;
	flex-direction: column;
	gap: 16px 0;
}
.block-cms-otherinfo li {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0px 0px 15px rgba(32, 49, 105, 0.1);
	width: 100%;
	color: #13216A;
	font-size: 14px;
	box-sizing: border-box;
}
.block-cms-otherinfo li a{
	display: block;
	padding: 24px 20px 20px;
}
.block-cms-otherinfo li a span{
 display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;

}
.block-cms-otherinfo-btn {
	background: #0D2D6C;
	border-radius: 16px;
	color: #fff;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 334px;
	height: 30px;
	margin: 0 auto 0;
	text-decoration: none;
	font-weight: bold;
}
.block-cms-otherinfo-btn:hover {
	opacity: 0.8;
}
.block-cms-otherinfo-btn:hover,
.block-cms-otherinfo-btn:focus {
	text-decoration: none;

}
@media print, screen and (max-width: 767px) {
	.block-cms-otherinfo {
		margin: 0 20px 40px;
		padding: 0 0 40px;
	}
	.block-cms-otherinfo h3 {
		font-size: 16px;
	}
	.block-cms-otherinfo li a {
		font-size: 12px;
		max-height: unset;
	}
	.block-cms-otherinfo li a {
		padding: 20px 16px 16px;
	}
	.block-cms-otherinfo ul {
		gap: 8px;
		margin-bottom: 16px;
	}
	.block-cms-otherinfo-btn {
		height: 24px;
		width: 180px;
		font-size: 10px;
	}
	.block-mypage--member {
		margin-bottom: 40px;
		padding-bottom: 40px;
	}
	#block-mypage--member .block-maypage-content__lists{
		overflow-y: scroll;
	}
	.block-mypage--member .block-cms-items{
		margin: 0;
		padding: 0;
	}
	.block-cms-item p.block-cms-comment {
		font-size: 10px;
	}
}
/*その他のお知らせ*/

/*人気メールマガジン ランキング*/
.block-cms-ranking {
	margin: 0 0 80px;
	padding: 0 0 80px;
  border-bottom: 1px solid rgba(19, 33, 106, 0.1);
}
.block-cms-ranking h2 {
  background: url(../../img/usr/mypage/magazine_b.png) 5px center no-repeat;
    font-size: 22px;
    font-weight: bold;
    color: #0D2D6C;
    border: none;
    margin: 0 0 30px;
    line-height: 1;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 0 44px;
}
.block-cms-ranking ul {
	display: flex;
  flex-wrap: wrap;
  gap: 38px 40px;
  counter-reset: number 0;
}
.archive-ranking__item{
	width: calc((100% - 40px) / 2);
}
.archive-ranking__link {
	padding-left: 4.4em;
  display: flex;
  align-items: center;
  color: var(--main-color-navy);
  font-size: clamp(12px, calc(14 / 960 * 100vw), 14px);
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.archive-ranking__link::before{
  counter-increment: number 1;
  content: counter(number) " ";
  width: 2.7em;
  height: 2.7em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: clamp(14px, calc(16 / 960 * 100vw), 16px);
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  background-color: #DE8BBB;
  border-radius: 50%;
  position: absolute;
  left: 0;
}
.archive-ranking__link:hover {
	opacity: 0.8;
}
.year-category{
	margin-top: 32px;
}
.year-category-lists {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.year-category a{
  padding: 0.8em 1.7em 0.7em;
  color: #DE8BBB;
  font-size: 10px;
  text-decoration: none;
  line-height: 1;
  border: 1px solid #DE8BBB;
  border-radius: 4px;
}
.year-category .option_buttons_{
  display: none;
}
.year-category .counte-text{
  display: none;
  position: relative;
}
.year-category a::after{
  content: "配信";
}
.event_title_.event_title_bg_{
	display: none;
}
@media print, screen and (max-width: 767px) {
	.block-cms-ranking {
		margin: 0 20px 40px;
		padding: 0 0 40px;

	}
	.block-cms-ranking h2 {
		font-size: 18px;
		background: url(../../img/usr/sp/mypage/magazine_b.png) 5px center no-repeat;
		background-size: auto 28px;
		padding-left: 47px;
	}
	.archive-ranking__item{
		width: 100%;
	}
	.year-category-lists{
    padding: 0 20px;
  }
	.year-category{
		margin-top: 20px;
	}
}
/*人気メールマガジン ランキング*/

/* マイページTOP */
.pane-main {
	width: 100%;
	max-width: 960px;
	overflow: hidden;
}
.page-category .pane-main,
.page-genre .pane-main,
.page-event .pane-main{
	max-width: 1200px;
}
@media print, screen and (max-width: 767px) {
	.pane-main {
		max-width: unset;
	}
	.page-category .pane-main,
	.page-genre .pane-main,
	.page-event .pane-main{
		max-width: unset;
	}
}

.block-mypage-sidemenu--menu-btn{
  width: 40px;
  height: 40px;
  border: none;
  border: 2px solid #999;
  background-color: #fff;
  position: fixed;
  bottom: 60px;
  right: 10px;
  z-index: 9;
  padding: 1px 6px;
}
.block-mypage-sidemenu--menu-btn img{
  width: 100%;
}
.block-mypage-sidemenu--menu-btn.menu-left-btn{
  display: none;
}

.page-menu .block-mypage--coupon-status {
	margin-left: 2.67vw;
}

.page-menu .block-mypage--coupon-status-text {
	display: flex;
	align-items: center;
	font-size: 12px;
}

.page-menu .block-mypage--coupon-status-image {
	width: 20px;
	height: auto;
	margin-right: 8px;
	vertical-align: text-bottom;
	position: relative;
}

.page-menu .block-mypage--coupon-status-image img {
	display: inline-block;
}

.page-menu .block-mypage--coupon-status-image .coupon-count {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #D53116;
	color: transparent;
	font-size: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -2px;
	right: -2px;
}

.page-menu .block-mypage--logout {
	margin: 4px 0 0 auto;
	padding-left: 25px;
	position: relative;
}

.page-menu .block-mypage--logout::after {
	content: '';
	width: 20px;
	height: 18px;
	display: block;
	background-image: url(../../img/usr/common/ico_logout.png);
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.page-menu .block-mypage--information {
	width: calc(100% - 30px);
	margin: 28px auto 0;
	padding: 15px;
	border: 1px solid var(--main--background-color);
}

.page-menu .block-mypage--information-lists-item {
	padding-left: 25px;
	font-size: 12px;
	position: relative;
}

.page-menu .block-mypage--information-lists-item::after {
	content: '';
	width: 20px;
	height: 20px;
	display: block;
	background-image: url(../../img/usr/common/ico_info.png);
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.page-menu .block-mypage--information-lists-item:not(:first-child) {
	margin-top: 20px;
}

.page-menu .block-mypage--customer-status {
	width: calc(100% - 30px);
	margin: 30px auto 0;
	padding: 10px 10px;
	background-color: var(--main--background-color);
}

.page-menu .block-mypage--customer-status-wrap {
	padding: 20px 15px;
	background-color: #fff;
}

.page-menu .block-mypage--customer-status-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.page-menu .block-mypage--customer-status-head+.block-mypage--rank,
.page-menu .block-mypage--customer-status-head+.block-mypage--point {
	margin-top: 20px;
}

.page-menu .block-mypage--customer-name {
	font-size: 18px;
	font-weight: 500;
}

.page-menu .block-mypage--customer-name>small {
	font-size: 0.6em;
	margin-left: 1em;
}

.page-menu .jancode {
	width: 100%;
	margin-top: 30px;
	text-align: center;
}

.page-menu .block-mypage--rank {
	padding: 15px 0 20px;
	border-top: 1px solid var(--main--border-color);
}

.page-menu .block-mypage--rank-status-info {
	position: relative;
}

.page-menu .block-mypage--rank-status-rank {
	display: flex;
}

.page-menu .block-mypage--rank-status-rank .rank-image {
	width: auto;
	height: 60px;
}

.page-menu .block-mypage--rank-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.page-menu .rank-image+.block-mypage--rank-status-message {
	padding-left: 14px;
}

.page-menu .block-mypage--rank-now {
	width: 100%;
}

.page-menu .block-mypage--rank-status-message {
	padding-bottom: 10px;
	font-size: 18px;
	font-weight: 500;
}

.page-menu .block-mypage--rank-status-message>small {
	font-size: 0.7em;
	font-weight: 400;
}

.page-menu .block-mypage--rank-next {
	width: 100%;
	padding-top: 50px;
	position: relative;
}

.page-menu .block-mypage--rank-next:before {
	content: '';
	width: 40px;
	height: 52px;
	display: block;
	background-image: url(../../img/usr/common/ico_rank_arrow.png);
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: calc(50% - 25px);
	transform: rotate(90deg);
}

.page-menu .block-mypage--rank-up-detail {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--main--border-color);
	position: relative;
}

.page-menu .block-mypage--rank-next .block-mypage--rank-up-detail:before {
	content: '';
	width: 22px;
	height: 1px;
	display: block;
	background-color: var(--main--border-color);
	position: absolute;
	left: 50%;
	top: -1px;
	transform: rotate(30deg);
	transform-origin: top left;
}

.page-menu .block-mypage--rank-next .block-mypage--rank-up-detail::after {
	content: '';
	width: 22px;
	height: 1px;
	display: block;
	background-color: #fff;
	position: absolute;
	left: 50%;
	top: -1px;
}
.page-menu .block-mypage--rank-status-purchase{
  width: calc(100% - 9px);
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
.page-menu .block-mypage--rank-status-shipping{
  width: calc(100% - 9px);
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
.page-menu .block-mypage--rank-status-shipping + .block-mypage--rank-status-purchase{
  margin-left: 6px;
}
.page-menu .block-mypage--rank-status-meter-wrap{
  display: flex;
  flex-direction: column-reverse;
  flex: 1;
}
.page-menu .block-mypage--rank-status-meter img {
	width: auto;
	height: 20px;
}

.page-menu .block-mypage--rank-status-meter meter {
	width: 100%;
	flex-shrink: 0;
}
@-moz-document url-prefix() {
  .block-mypage--rank-status-meter meter{
    background: #fff;
    border-radius: 20px;
    border: 1px solid #cacaca;
  }
}
.page-menu .block-mypage--rank-status-meter meter::-webkit-meter-bar{
  height: 14px;
  border-radius: 20px;
  background-color: #fff;
}
.page-menu .block-mypage--rank-status-meter meter::-webkit-meter-optimum-value{
  background-color: var(--main-highlight-background-color);
  border-radius: 20px;
}
.page-menu .block-mypage--rank-status-meter meter::-moz-meter-bar {
  background: var(--main-highlight-background-color);
  border-radius: 20px;
  height: 14px;
}
.page-menu .block-mypage--rank-status-meter-message{
  margin: 4px 0 0 0;
  padding-left: 40px;
  font-size: 12px;
  position: relative;
  min-height: 45px;
}
.page-menu .block-mypage--rank-status-meter-message > small{
  font-weight: 500;
}
.page-menu .block-mypage--rank-status-meter-message>strong {
	font-size: 18px;
	font-weight: 500;
}
.page-menu .block-mypage--rank-status-purchase .block-mypage--rank-status-meter-message::after{
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  background-image: url(../../img/usr/common/ico_purchase-price.png);
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.page-menu .block-mypage--rank-status-shipping .block-mypage--rank-status-meter-message::after{
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  background-image: url(../../img/usr/common/ico_shipping.png);
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.page-menu .block-mypage--point{
  padding: 20px 0;
  border-top: 1px solid var(--main--border-color);
}
.page-menu .block-mypage--point-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.page-menu .block-mypage--point-detail {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.page-menu .block-mypage--point-title {
	margin-top: 7px;
	font-size: 14px;
	font-weight: 500;
}

.page-menu .block-mypage--point-number {
	margin: 0 10px;
}

.page-menu .point-caution+.point-number {
	margin-left: 8px;
}

.page-menu .block-mypage--point-number .point-number {
	font-size: 18px;
	font-weight: 500;
}

.page-menu .block-mypage--point-mypoint {
	display: flex;
	align-items: baseline;
}

.page-menu .block-mypage--point-mypoint .point-caution {
	width: 1.25em;
}

.page-menu .block-mypage--point-number>small {
	margin-left: 0.5em;
	font-size: 14px;
	font-weight: 500;
}

.page-menu .block-mypage--point-message .point-limit {
	color: var(--gray--text-color);
	font-size: 12px;
}

.page-menu .block-mypage--point-detail+.base-btn {
	margin: 10px 0 0 auto;
	display: none;
}

.page-menu .point-limit-message {
	display: inline-block;
	color: var(--highlight-text-color);
	font-size: 12px;
}

/* line offer*/
.page-menu .block-mypage--line {
	margin: 20px 15px 0;
}

/* マイページ　ヘッダー */
.block-mypage--head h1 {
	font-size: 34px;
	font-weight: bold;
	color: #13216A;
	display: flex;
	flex-direction: column;
  font-family: "Montserrat", sans-serif;
	line-height: 1;
	margin-bottom: 40px;
}
.block-mypage--head h1 span {
	font-size: 14px;
	margin: 8px 0 0 0;
	font-family: "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}
.block-mypage--head {
	padding: 0 0 16px;
	margin: 0 0 40px;
	border-bottom: 1px solid rgba(19, 33, 106, 0.1);
}
.block-mypage--head .swiper {
	overflow: visible;
}
.block-mypage-head--pagelink .active a{
	background: #DE8BBB;
	color: #FFF;
}
.block-mypage-head--pagelink {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 8px;
	margin: 0 0 20px;
}
.block-mypage-head--pagelink li {
	max-width: 152px;
}
.block-mypage-head--pagelink li a:hover {
	text-decoration: none;
}
.block-mypage-head--pagelink li a{
	text-align: center;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FFF;
	box-shadow: 0px 0px 20px rgba(63, 84, 154, 0.1);
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	color: #DE8BBB;
}
.block-mypage-head--pagelink li a:hover {
	opacity: 0.8;
}
.block-mypage-head--anchor {
	display: flex;
	flex-direction: row;
	gap: 8px;
}
.block-mypage-head--anchor:has(li:nth-child(2):last-child) li {
  width: calc(100% /2);
}
.block-mypage-head--anchor:has(li:nth-child(3):last-child) li {
	width: calc(100% /3);
}
.block-mypage-head--anchor li a {
	text-align: center;
	border: 1px solid #DE8BBB;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	color: #DE8BBB;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 42px;
	box-sizing: border-box;
	text-decoration: none;
	background: url(../../img/usr/mypage/anchor.png) right 20px center no-repeat;
}
.block-mypage-head--anchor li a:hover {
	text-decoration: none;
	opacity: 0.8;
}
.block-mypage-head--anchorinfo span {
	padding-left: 35px;
	background: url(../../img/usr/mypage/info.png) left center no-repeat;
}
.block-mypage-head--anchormember span {
	padding-left: 38px;
	background: url(../../img/usr/mypage/member.png) left center no-repeat;
}
.block-mypage-head--anchormagazine span {
	padding-left: 43px;
	background: url(../../img/usr/mypage/magazine.png) left center no-repeat;
}
.slide-content {
	min-height: 200px;
}
@media print, screen and (max-width: 767px) {
	.block-mypage-head--anchor {
		flex-wrap: unset;
		margin: 0 0;
		gap: 8px;
	}
	.block-mypage-head--anchor li span {
		font-size: 10px;
		line-height: 1.2;
	}
	.block-mypage-head--anchor li {
    width: calc(100% / 3);
	}
	.block-mypage-head--anchor li a {
		height: 74px;
		padding: 0 0 15px;
		box-sizing: border-box;
    align-items: start;
		text-align: center;
		background: url(../../img/usr/sp/mypage/anchor.png) center bottom 5px no-repeat;
		background-size: 5px auto;
	}
	.block-mypage-head--anchorinfo span {
		padding: 36px 0 0 0;
		background: url(../../img/usr/sp/mypage/info.png) center 7px no-repeat;
		background-size: auto 24px;
	}
	.block-mypage-head--anchormember span {
		padding: 36px 0 0 0;
		background: url(../../img/usr/sp/mypage/member.png) center 7px no-repeat;
		background-size: auto 25px;
	}
	.block-mypage-head--anchormagazine span {
		padding: 36px 0 0 0;
    background: url(../../img/usr/sp/mypage/magazine.png) center 9px no-repeat;
		background-size: auto 22px;
	}
	.block-mypage-head {
		margin: 0 0;
	}
	.js-customer-info .swiper.slide-content {
		margin: 0 0 0 0;
	}
	.block-mypage-head--pagelink li {
		width: 112px;
	}
	.block-mypage-head--pagelink {
		margin: 32px 0 16px 0;
		justify-content: start;
	}
	div.navitopicpath_ {
		padding: 12px 20px;
	}
	div.navitopicpath_ a.topicpath_home_ {
		margin-left: 0;
	}
	.block-mypage--head {
		margin: 0 0 40px;
		padding: 0 20px 16px;
		overflow: hidden;
		border: none;
		position: relative;
		width: 100dvw;
	}
	.block-mypage--head::before {
		content: '';
		width: calc(100% - 40px);
		height: 1px;
		background: rgba(19, 33, 106, 0.1);
		position: absolute;
		bottom: 0;
		left: 20px;
	}
	.block-mypage--head h1 {
		margin: 0 0;
	}
	.block-mypage--head .swiper {
		overflow: visible;
	}
}
/* マイページ　ヘッダー */

/* ご契約中の定期購入 */
.block-mypage--title {
	margin: 0 0 24px;
	padding: 0 0 0 48px;
	font-size: 22px;
	font-weight: bold;
	color: #13216A;
	border: none;
}
.block-mypage--subscription .block-mypage--title {
	background: url(../../img/usr/mypage/regular_purcharse_icon.png) 4px center no-repeat;
}
.page-menu .block-mypage--subscription {
	margin: 0 0 60px;
	padding: 0 0 60px;
	border-bottom: 1px solid rgba(19,33,106,0.1);
	overflow: hidden;
}
.block-regular-purcharse-list--list {
	display: flex;
	margin: 24px 0 32px;
}
.block-regular-purcharse-list--list a {
	text-decoration: none;
}
.block-regular-purcharse-list--list > li {
	width: 306px;
	margin: 0 20px 0 0;
	padding: 20px 8px 20px;
	flex-shrink: 0;
	box-sizing: border-box;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0px 1px 20px rgba(32, 49, 105, 0.1);
}
.block-regular-purcharse-list--expected-dt {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.block-icon-image--flex-cell {
	color: #13216A;
	font-weight: bold;
	font-size: 14px;
	line-height: 1;
}
.block-icon-image--flex-align-left .block-icon-image--flex-cell + .block-icon-image--flex-cell:last-child::after{
	content: ':';
}
.block-regular-purcharse-list--expected-dt-ymd {
	color: #13216A;
	font-weight: bold;
	font-size: 16px;
	line-height: 1;
}

.page-menu .block-regular-purcharse-list--date-spec dt {
	font-size: 10px;
	font-weight: bold;
	line-height: 1;
	border-radius: 2px;
	padding: 4px 8px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 16px;
}

.block-regular-purcharse-list--alter-end {
	background: #F8E9F2;
	color: #DE8BBB;
}
.block-regular-purcharse-list--date-spec {
	margin-bottom: 12px;
}
.block-regular-purcharse-list--detail-item-list-list > ul {
	display: flex;
	flex-direction: row;
	gap: 16px;
}
.block-regular-purcharse-list--detail-item-image {
	width: 100px;
	height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
}
.block-regular-purcharse-list--detail-item-goods {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: calc(100% - 116px);
	text-align: left;
}
.block-regular-purcharse-list--detail-item-goods-name .block-regular-purcharse-list--detail-item-list-nolink {
	font-size: 14px;
	color: #13216A;
}
.block-regular-purcharse-list--detail-item-goods-unit-amount {
	display: flex;
	line-height: 1;
	margin: 12px 0 0 0;
}
.block-regular-purcharse-list--detail-item-list-amount {
	color: #13216A;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
}
.block-regular-purcharse-list--detail-item-list-amount span {
	font-size: 14px;
}
.block-regular-purcharse-list--detail-item-list-unit {
	display: block;
	font-weight: bold;
	font-size: 18px;
	color: #DE8BBB;
	margin-top: 5px;
	line-height: 1;
}
.block-regular-purcharse-list--detail-item-list-list:last-child {
	margin: 0;
	padding: 0;
	border: none;
	height: auto!important;
}
.block-regular-purcharse-list--detail-item-list-list {
	margin: 0 0 12px;
	padding: 0 0 12px;
	border-bottom: 1px solid rgba(19,33,106,0.1);
}
.page-menu .block-mypage--subscription .block-regular-purcharse-list--detail a.block-regular-purcharse-list--status {
	height: 30px;
	border-radius: 16px;
	background: #0D2D6C;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 16px 0 0 0;
}
.block-mypage--coupon a.base-btn,
.block-mypage--order-status-btn,
.block-regular-purcharse-btn,
.block-mypage--order-detailbtn {
	background: #DE8BBB;
	border-radius: 16px;
	color: #fff;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 334px;
	height: 30px;
	margin: 32px auto 0;
	text-decoration: none;
	font-weight: bold;
	border: none;
}
.block-mypage--coupon a.base-btn:hover,
.block-mypage--coupon a.base-btn:focus,
.block-mypage--order-status-btn:focus,
.block-mypage--order-status-btn:hover,
.block-regular-purcharse-btn:focus,
.block-regular-purcharse-btn:hover,
.block-mypage--order-detailbtn:focus,
.block-mypage--order-detailbtn:hover {
	text-decoration: none;
}
.block-mypage--coupon a.base-btn:hover,
.block-mypage--order-status-btn:hover,
.block-regular-purcharse-btn:hover
.block-mypage--order-detailbtn:hover {
	opacity: 0.8;
}

@media print, screen and (max-width: 767px) {
	.page-menu .block-mypage--subscription {
		margin: 0 0 40px 0;
		padding: 0 20px 40px 20px;
		border: none;
		overflow: hidden;
		position: relative;
		width: 100dvw;
	}
	.page-menu .block-mypage--subscription .js-customer-info{
		overflow: unset;
	}
	.page-menu .block-mypage--subscription::before {
		content: '';
		display: inline-block;
		background: rgba(19, 33, 106, 0.1);
		position: absolute;
		bottom: 0;
		left: 20px;
		right: 0;
		width: calc(100% - 40px);
		height: 1px;
	}
	.block-mypage--order-detailbtn {
		max-width: 295px;
		margin: 16px auto 0;
		height: 28px;
		font-size: 12px;
	}

	.block-mypage--subscription .block-mypage--title {
		background: url(../../img/usr/sp/mypage/regular_purcharse_icon.png) 4px center no-repeat;
		background-size: auto 33px;
	}
	.block-mypage--subscription .block-regular-purcharse-btn {
		margin: 16px 40px 0 20px;

	}
	.block-regular-purcharse-btn,
	.block-mypage--order-detailbtn {
		width: unset;
		margin: 16px 20px 0 20px;
	}
	.block-mypage--order-status-btn {
		margin: 16px 20px 0;
		width: unset;
	}
}
/* ご契約中の定期購入 */
/* 定期状況 */
.page-menu .swiper-scrollbar {
	bottom: 0;
}
@media print, screen and (max-width: 767px) {
	.block-mypage--title {
		font-size: 18px;
		padding: 0 0 0 43px;
	}
	/* ご契約中の定期購入 */
	.block-regular-purcharse-list--list > li {
		width: 260px;
		margin-right: 16px;
	}
	.block-icon-image--flex-cell {
		font-size: 12px;
	}
	.block-regular-purcharse-list--expected-dt-ymd {
		font-size: 14px;
	}
	.page-menu .block-regular-purcharse-list--date-spec dt {
		padding: 8px;
		font-size: 10px;
	}
	.block-regular-purcharse-list--detail-item-list-list > ul {
		gap: 12px;
	}
	.block-regular-purcharse-list--detail-item-image {
		width: 80px;
		height: 80px;
	}
	.block-regular-purcharse-list--detail-item-goods {
		width: calc(100% - 92px);
	}
	.block-regular-purcharse-list--detail-item-list-amount {
		font-size: 16px;
	}
	.block-regular-purcharse-list--detail-item-list-unit {
		font-size: 16px;
	}
	.block-regular-purcharse-list--detail-item-list-amount span {
		font-size: 12px;
	}
	.page-menu .block-mypage--subscription .block-regular-purcharse-list--detail a.block-regular-purcharse-list--status {
		height: 28px;
		font-size: 12px;
	}
	/* ご契約中の定期購入 */
}





.page-menu .block-mypage--subscription .block-regular-purcharse-list--detail a {
	color: #3e3e3e;
}


.js-customer-info .swiper {
	overflow: visible;
}
.js-customer-info .swiper > p {
	width: unset;
	text-align: center;
	font-size: 14px;
	color: #13216A;
}
.page-menu .block-regular-purcharse-list--list {
	margin: 0;
	align-items: stretch;
	border: none;
}

.page-menu .block-regular-purcharse-list--date-spec dl {
	display: flex;
	align-items: center;
	overflow-wrap: anywhere;
	word-break: break-all;
}

.page-menu .block-regular-purcharse-list--date-spec dt {
	position: inherit;
	top: inherit;
	right: inherit;
}

.page-menu .block-regular-purcharse-list--detail {
	height: auto;
}
.page-menu .block-regular-purcharse-list--detail:last-child{
	margin-right: 0;
}

.page-menu .block-mypage--subscription .block-regular-purcharse-list--sales-link {
	font-size: 12px;
}
.page-menu .block-mypage--subscription .block-regular-purcharse-list--info-regular-sales {
  display: flex;
  justify-content: space-between;
  padding: 15px 15px 0px 15px;
  font-size: 13px;
}

/* 最新の注文状況 */
.block-mypage--order-status .block-mypage--title {
	background: url(../../img/usr/mypage/status.png) left center no-repeat;
}
.block-mypage--order-status {
  margin: 0 0 60px;
	padding: 0 0 60px;
	border-bottom: 1px solid rgba(19,33,106,0.1);
}
.block-mypage--order-status-lists {
  display: flex;
  width: 100%;
  font-size: 14px;
  color: #13216A;
}
.order-status-item.swiper-slide,
.order-status-item {
	width: 306px;
  margin: 0 20px 0 0;
	padding: 20px 16px 20px;
	box-sizing: border-box;
	border-radius: 8px;
	background: #fff;
	border: none;
	box-shadow: 0px 1px 20px rgba(32, 49, 105, 0.1);
  text-decoration: none;
	height: auto;
}
.order-status-item:focus,
.order-status-item:hover {
  text-decoration: none;
}
.order-status-item--status {
  font-size: 20px;
  font-weight: bold;
	color: #13216A;
	margin: 0 0 16px;
}
.order-status-item--dt-wrap {
  display: flex;
	margin-bottom: 8px;
	line-height: 1;
}
.order-status-item-dt-title {
	font-size: 14px;
	color: #13216A;
	line-height: 1;
}
.order-status-item-dt-text {
	font-size: 14px;
	color: #13216A;
	line-height: 1;
}
.order-status-item--status-progress {
  margin-top: 12px;
  display: flex;
}
.status-progress--bar {
  width: 20%;
  height: unset;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  position: relative;
  background: none;
}
.order-status-item--status-progress .status-progress--bar:after {
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  background-color: var(--main--background-color);
  position: absolute;
  top: 5px;
	bottom: 0;
	margin: 0 0;
  left: 50%;
  border-right: inherit
}
.status-cancel .status-progress--bar:first-child::after,
.status-cancel .status-progress--bar:nth-child(2)::after,
.status-cancel .status-progress--bar:nth-child(3)::after{
  background-color: #bbb;
  border-color: #bbb;
}
.status-return .status-progress--bar:first-child::after,
.status-return .status-progress--bar:nth-child(2)::after,
.status-return .status-progress--bar:nth-child(3)::after{
  background-color: #bbb;
  border-color: #bbb;
}
.status-status_1 .status-progress--bar:first-child::after,
.status-status_1 .status-progress--bar:nth-child(2)::after,
.status-status_1 .status-progress--bar:nth-child(3)::after{
  background-color: #bbb;
  border-color: #bbb;
}
.status-status_2 .status-progress--bar:first-child::after,
.status-status_2 .status-progress--bar:nth-child(2)::after,
.status-status_2 .status-progress--bar:nth-child(3)::after{
  background-color: #bbb;
  border-color: #bbb;
}
.status-status_3 .status-progress--bar:first-child::after,
.status-status_3 .status-progress--bar:nth-child(2)::after,
.status-status_3 .status-progress--bar:nth-child(3)::after{
  background-color: #bbb;
  border-color: #bbb;
}
.status-status_4 .status-progress--bar:first-child::after,
.status-status_4 .status-progress--bar:nth-child(2)::after,
.status-status_4 .status-progress--bar:nth-child(3)::after{
  background-color: #bbb;
  border-color: #bbb;
}
.status-status_9 .status-progress--bar:first-child::after,
.status-status_9 .status-progress--bar:nth-child(2)::after,
.status-status_9 .status-progress--bar:nth-child(3)::after{
  background-color: #bbb;
  border-color: #bbb;
}
.status-verify .status-progress--bar:first-child::after,
.status-income .five-step .status-progress--bar:first-child::after{
  background-color: var(--main-highlight-background-color);
}
.status-income .status-progress--bar:first-child::after
 {
  background-color: var(--main-highlight-background-color);
}
.status-rship .status-progress--bar:first-child::after, .status-rship .status-progress--bar:nth-child(2)::after, .status-rship .five-step .status-progress--bar:nth-child(3)::after {
  background-color: var(--main-highlight-background-color);
}
.status-ship .status-progress--bar:first-child::after,
.status-ship .status-progress--bar:nth-child(2)::after,
.status-ship .status-progress--bar:nth-child(3)::after,
.status-ship .status-progress--bar:nth-child(4)::after {
  background-color: var(--main-highlight-background-color);
}
.status-reserve .status-progress--bar:first-child::after {
  background-color: var(--main-highlight-background-color);
}
.status-arrival .status-progress--bar:first-child::after,
.status-arrival .status-progress--bar:nth-child(2)::after {
  background-color: var(--main-highlight-background-color);
}
.order-status-item--status-progress .status-progress--bar:last-child::after {
  content: none;
}
.status-progress--circle {
  width: 14px;
  height: 14px;
  margin: 0;
  border-radius: 50%;
  background-color: #E1EFF7;
  position: relative;
  z-index: 1;
}
.status-progress--circle::after {
  content: none;
}
.status-order .status-progress--bar:first-child .status-progress-bar--text {
	color: var(--main-highlight-background-color);
}
.status-order .status-progress--bar:first-child .status-progress--circle{
  background-color: var(--main-highlight-background-color);
}
.status-verify .status-progress--bar:first-child .status-progress-bar--text,
.status-verify .status-progress--bar:nth-child(2) .status-progress-bar--text {
	color: var(--main-highlight-background-color);
}
.status-verify .status-progress--bar:first-child .status-progress--circle,
.status-verify .status-progress--bar:nth-child(2) .status-progress--circle {
  background-color: var(--main-highlight-background-color);
}
.status-income .status-progress--bar:first-child .status-progress-bar--text,
.status-income .status-progress--bar:nth-child(2) .status-progress-bar--text{
	color: var(--main-highlight-background-color);
}
.status-income .status-progress--bar:first-child .status-progress--circle,
.status-income .status-progress--bar:nth-child(2) .status-progress--circle{
  background-color: var(--main-highlight-background-color);
}
.status-rship .status-progress--bar:first-child .status-progress-bar--text,
.status-rship .status-progress--bar:nth-child(2) .status-progress-bar--text,
.status-rship .status-progress--bar:nth-child(3) .status-progress-bar--text,
.status-rship .five-step .status-progress--bar:nth-child(4) .status-progress-bar--text {
	color: var(--main-highlight-background-color);
}
.status-rship .status-progress--bar:first-child .status-progress--circle,
.status-rship .status-progress--bar:nth-child(2) .status-progress--circle,
.status-rship .status-progress--bar:nth-child(3) .status-progress--circle,
.status-rship .five-step .status-progress--bar:nth-child(4) .status-progress--circle {
  background-color: var(--main-highlight-background-color);
}
.status-ship .status-progress--bar:first-child .status-progress-bar--text,
.status-ship .status-progress--bar:nth-child(2) .status-progress-bar--text,
.status-ship .status-progress--bar:nth-child(3) .status-progress-bar--text,
.status-ship .status-progress--bar:nth-child(4) .status-progress-bar--text,
.status-ship .five-step .status-progress--bar:nth-child(5) .status-progress-bar--text {
	color: var(--main-highlight-background-color);

}
.status-ship .status-progress--bar:first-child .status-progress--circle,
.status-ship .status-progress--bar:nth-child(2) .status-progress--circle,
.status-ship .status-progress--bar:nth-child(3) .status-progress--circle,
.status-ship .status-progress--bar:nth-child(4) .status-progress--circle,
.status-ship .five-step .status-progress--bar:nth-child(5) .status-progress--circle {
  background-color: var(--main-highlight-background-color);
}
.status-checking-reserve .status-progress--bar:first-child .status-progress--circle {
  background-color: var(--main-highlight-background-color);
}
.status-reserve .status-progress--bar:first-child .status-progress--circle,
.status-reserve .status-progress--bar:nth-child(2) .status-progress--circle {
  background-color: var(--main-highlight-background-color);
}
.status-arrival .status-progress--bar:first-child .status-progress--circle,
.status-arrival .status-progress--bar:nth-child(2) .status-progress--circle,
.status-arrival .status-progress--bar:nth-child(3) .status-progress--circle {
  background-color: var(--main-highlight-background-color);
}
.status-progress-bar--text {
  margin-top: 9px;
  font-size: 12px;
  text-align: center;
  background: none;
	color: #0D2D6C;
}
.status-progress-bar--text::after {
  content: none;
}
.order-status-item--product {
  margin-top: 12px;
  position: relative;
}
.order-status-item--product-lists {
  display: flex;
	gap: 16px;
	align-items: center;
	margin: 0 0 12px;
	padding: 0 0 12px;
	border-bottom: 1px solid rgba(19,33,106,0.1);
}
.order-status-item--product-lists:last-child {
	margin: 0;
	padding: 0;
	border: none;
}
.order-status-item--product--goods-nolink {
	font-size: 14px;
	font-weight: bold;
	color: #13216A;
	margin: 0 0 12px;
	line-height: 1;
}
.order-status-item--product-thumbnail {
  max-width: 100px;
	height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.order-status-item--product--goods {
	width: calc(100% - 116px);
}
.order-status-item--product-thumbnail:not(:first-child) {
  margin-left: 8px;
}
.order-status-item--product-thumbnail img {
  width: 100%;
}
.order-status-item--product--goods-unit-amount {
	margin-top: 12px;
}
.order-status-item--product--goods-list-amount {
	line-height: 1;
	font-weight: bold;
	font-size: 18px;
	color: #13216A;
}
.order-status-item--product--goods-list-amount span {
	font-size: 14px;
}
.order-status-item--product--goods-list-unit {
	display: block;
	font-weight: bold;
	font-size: 18px;
	color: #DE8BBB;
	line-height: 1;
}
.order-status-item--product--goods-unit-amount {
	display: flex;
}
.order-status-item--product-more {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: -5px;
  border-radius: 50%;
  background-color: var(--main--background-color);
}
.order-status-item--product-more img {
  width: 70%;
}
.order-status-item--product--status {
	height: 30px;
	border-radius: 16px;
	background: #0D2D6C;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 16px 0 0 0;
}
.order-status-item--product--status:hover {
	opacity: 0.8;
}
@media print, screen and (max-width: 767px) {
	.block-mypage--order-status .block-mypage--title {
		padding: 0 0 0 48px;
		background: url(../../img/usr/sp/mypage/status.png) left center no-repeat;
		background-size: auto 25px;
	}
	.block-mypage--title {
		margin-bottom: 24px;
	}
	.order-status-item.swiper-slide:last-child {
		margin-right: 0;
	}
	.order-status-item.swiper-slide, .order-status-item {
		width: 260px;
	}
	.block-mypage--order-status {
		margin: 0 0 40px;
		padding: 0 20px 40px;
		border: none;
		overflow: hidden;
		position: relative;
		width: 100dvw;
	}
	.block-mypage--order-status::after {
		content: '';
		display: inline-block;
		background: rgba(19, 33, 106, 0.1);
		position: absolute;
		bottom: 0;
		left: 20px;
		right: 0;
		width: calc(100% - 40px);
		height: 1px;
  }
	.block-mypage--order-status .js-customer-info {
		overflow: unset;
	}
	.order-status-item--status {
		font-size: 16px;
		margin: 0 0 12px;
	}
	.order-status-item-dt-title {
		font-size: 12px;
	}
	.order-status-item-dt-text {
		font-size: 12px;
	}
	.status-progress-bar--text {
		font-size: 10px;
		margin: 5px 0 0 ;
	}
	.status-progress--circle {
		width: 12px;
		height: 12px;
	}
	.order-status-item--status-progress .status-progress--bar:after {
		height: 3px;
		top: 5px;
	}
	.order-status-item--status-progress {
		margin-top: 16px;
	}
	.order-status-item--product-lists {
		gap: 12px;
	}
	.order-status-item--product-thumbnail {
		width: 80px;
		height: 80px;
	}
	.order-status-item--product--goods {
		width: calc(100% - 92px);
	}
	.order-status-item--product--goods-nolink {
		font-size: 12px;
	}
	.order-status-item--product--goods-list-amount {
		font-size: 16px;
	}
	.order-status-item--product--goods-list-amount span {
		font-size: 12px;
	}
	.order-status-item--product--status {
		height: 28px;
		font-size: 12px;
	}
}
/* クーポン */
.block-mypage--coupon .block-mypage--title {
	padding: 0 0 0 48px;
	margin: 0 0 33px;
	background: url(../../img/usr/mypage/mycoupon.png) left center no-repeat;
}
.block-mypage--coupon {
	margin: 0 0 60px;
	padding: 0 0 60px;
  border-bottom: 1px solid rgba(19, 33, 106, 0.1);
}
.page-menu .block-mypage--coupon-title {
	margin: 0;
	padding: 0;
	border: none;
}

.page-menu .wrapper:has(.pane-header) .block-mypage--coupon {
	scroll-margin-top: 150px;
}

.page-menu .block-mypage--coupon--head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.page-menu .tablist{
  display: flex;
}
.page-menu .tablist__item{
  width: calc(100% / 2);
}

.page-menu .tab-button {
	width: 100%;
	padding: 8px 0;
	background-color: #fff;
	border-radius: 5px 5px 0 0;
	border: 1px solid var(--main--border-color);
}

.page-menu .tab-button[aria-selected="true"] {
	color: #fff;
	background-color: var(--default--text-color);
}

.page-menu .tab-contents[aria-hidden="true"] {
	display: none;
}

.page-menu .block-mypage--coupon-content {
	width: 100%;
}

.page-menu .block-mypage--coupon-content+.block-mypage--coupon-content {
	margin-top: 50px;
}
.page-menu .block-mypage--coupon-content .tabpanel{
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 20px;
	justify-content: center;
	text-align: center;
}
.block-mypage--coupon .tab-contents {
	width: 100%;
	border-radius: 8px;
	background: #fff;
	border: none;
	box-shadow: 0px 1px 20px rgba(63, 84, 154, 0.1);
	padding: 0;
	border-radius: 8px;
}
.swiper-backface-hidden .swiper-slide.block-mypage--coupon-card {
	width: 306px;
	margin-right: 20px;
	padding-bottom: 24px;
	box-shadow: 0px 1px 20px rgba(32, 49, 105, 0.1);
	border-radius: 8px;
	height: auto;
}
.block-mypage--coupon .base-btn {

}
.coupon-benefits {
	padding: 24px 20px 0;
	font-size: 12px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: start;
	color: #13216A;
}
.coupon-benefits .block-coupon-list--bonus-type {
	font-size: 16px;
	font-weight: bold;
}
.block-mypage--coupon .tab-contents.on_message,
.on_message {
	width: unset;
	text-align: center;
	font-size: 14px;
	color: #13216A;
	box-shadow:none;
}
.block-mypage--coupon .tab-contents.on_message .block-coupon-list {
	margin: 0;
}

.page-menu .block-coupon-list--coupon-name {
	margin: 0;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #DE8BBB;
	background-color: #F8E9F2;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border: none;
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
}


.page-menu .coupon-summary {
	padding: 16px 20px 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: start;
	color: #13216A;
}
.page-menu .coupon-summary dt {
	font-size: 12px;
}
.page-menu .coupon-summary dd {
	font-size: 16px;
	font-weight: bold;
}
.page-menu .coupon-summary dt::after {
	content: '：';
}
.page-menu .coupon-summary li {
	line-height: 1;
	margin-bottom: 12px;
}
.page-menu .coupon-summary li:last-child {
	margin: 0;
}
.page-menu .coupon-summary span:nth-child(1) {
	font-size: 12px;
	color: #13216A;
}
.page-menu .coupon-summary span:nth-child(2) {
	font-size: 16px;
	color: #13216A;
}


.page-menu .block-mypage--coupon-btn{
  margin-top: 10px;
  text-align: center;
}

.page-menu .block-mypage--restocking {
	margin-top: 50px;
	padding: 0 15px;
}

@media print, screen and (max-width: 767px) {
	.block-mypage--coupon {
		margin: 0 0 40px;
		padding: 0 20px 40px;
		overflow: hidden;
		border: none;
		position: relative;
	}
	.block-mypage--coupon::after {
		content: '';
		display: inline-block;
		background:  rgba(19, 33, 106, 0.1);
		position: absolute;
		bottom: 0;
		left: 20px;
		right: 0;
		width: calc(100% - 40px);
		height: 1px;
	}
	.block-mypage--coupon .tab-contents {
		background: none;
		padding: 0;
		box-shadow: unset;
	}
	.block-mypage--coupon .js-customer-info {
		overflow: unset;
	}
	.block-mypage--coupon .block-mypage--title {
		background: url(../../img/usr/sp/mypage/mycoupon.png) left center no-repeat;
		background-size: auto 23px;
		margin-bottom: 24px;
		padding-left: 48px;
		height: 40px;
		display: flex;
		flex-direction: column;
		align-items: start;
		justify-content: center;

	}
	.page-menu .block-mypage--coupon-content .slide-content .block-coupon-list > li {
		width: 260px;
	}
	.page-menu .block-coupon-list--coupon-name {
		font-size: 14px;
		height: 34px;
	}
	.swiper-backface-hidden .swiper-slide.block-mypage--coupon-card {
		width: 260px;
		margin-right: 16px;
	}
	.swiper-backface-hidden .swiper-slide.block-mypage--coupon-card:last-child {
		margin-right: 0;
	}
	.coupon-benefits {
		padding: 20px 16px 0;
		font-size: 10px;
		gap: 2px;
	}
	.block-coupon-list--bonus-type {
		font-size: 14px;
	}
	.block-mypage--coupon a.base-btn {
		margin-top: 16px;
	}
	.page-menu .coupon-summary {
		padding: 16px 16px 0 ;
		gap: 2px;
	}
	.page-menu .coupon-summary li {
		margin-bottom: 16px;
	}
	.page-menu .coupon-summary span:nth-child(1) {
		font-size: 10px;
	}
	.page-menu .coupon-summary span:nth-child(2) {
		font-size: 14px;
	}
	.page-menu .coupon-summary dt {
		font-size: 10px;
		min-width: max-content;
	}
	.page-menu .coupon-summary dd {
		font-size: 14px;
		text-align: left;
	}
}
/* クーポン */

/* お気に入り商品 */
.page-menu .block-mypage--favorite {
	margin-top: 50px;
	padding: 0 15px;
}

.page-menu .block-bookmarkslider--header {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 18px;
}

.page-menu .block-bookmarklist-content {
	margin-top: 20px;
}
.page-menu .block-bookmarkslider--item-body{
  height: initial;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.page-menu .block-bookmarkslider--item-body .block-bookmarkslider--item {
  display: flex;
  flex-direction: row;
}

.page-menu .block-bookmarkslider--image{
  width: 125px;
  flex-shrink: 0;
}

.page-menu .block-bookmarkslider--image .img-center img {
	width: 100%;
	max-width: unset;
	max-height: unset;
}
.page-menu .block-bookmarkslider--item-description{
  margin-left: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.page-menu .block-mypage--favorite .swiper-horizontal>.swiper-scrollbar,.block-mypage--favorite .swiper-scrollbar.swiper-scrollbar-horizontal,
.page-menu .block-mypage--restocking .swiper-horizontal>.swiper-scrollbar,.block-mypage--restocking .swiper-scrollbar.swiper-scrollbar-horizontal{
  width: calc(100% - 30px);
  left: 50%;
  transform: translateX(-50%);
}
.page-menu .block-bookmarkslider--goods-name{
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.page-menu .block-bookmarkslider--price-items .block-bookmarkslider--price{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}
.page-menu .block-bookmarkslider--price-items .block-bookmarkslider--price + .block-bookmarkslider--default-price{
  margin-top: 5px;
  color: var(--gray--text-color);
}
.page-menu .block-bookmarkslider .block-bookmarklist-content .swiper-bookmarklist{
  padding: 0 15px 20px;
}
.page-menu .block-bookmarkslider--add-cart{
  margin-top: auto;
  width: 100%;
}
.page-menu .block-bookmarkslider--add-cart .block-bookmarkslider--cart-btn{
  display: flex;
  justify-content: center;
}
.page-menu .block-bookmarkslider--add-cart .block-bookmarkslider--cart-btn .block-add-cart-btn{
  font-size: 14px;
  width: 100%;
}

/* 再入荷 */

/*関連した商品*/
.page-menu .block-mypage--relation{
  margin-top: 50px;
  padding: 0 15px;
}
.page-menu .block-accessory-list--list{
  margin-top: 20px;
}

.page-menu .block-accessory-list--name {
	margin: 0 0 20px 0;
	padding: 0;
	border: none;
	font-size: 18px;
	text-align: left;
}

.page-menu .block-pickup-list-p--items {
	display: flex;
	border-top: none;
}

.page-menu .block-pickup-list-p--item {
	width: calc(100% / 2);
	padding: 0;
	border-bottom: none;
}

.page-menu .block-pickup-list-p--item a {
	display: flex;
	flex-direction: column;
}

.page-menu .block-pickup-list-p--goods-image {
	width: 100%;
}

.page-menu .block-pickup-list-p--goods-image figure {
	width: 100%;
	height: auto;
	padding: 0;
}

.page-menu .block-pickup-list-p--goods-image figure.img-center img {
	width: 100%;
	height: 100%;
	max-width: unset;
	max-height: unset;
	object-fit: cover;
}
.page-menu .block-pickup-list-p{
  padding-bottom: 20px;
}

.page-menu .block-mypage--recommend a {
	text-decoration: none;
}

.page-menu .block-pickup-list-p--goods-name {
	margin-top: 10px;
	font-size: 12px;
	text-align: left;
}

.page-menu .block-pickup-list-p--comment {
	display: none;
}

.page-menu .block-pickup-list-p--goods-description {
	padding-left: 0;
}

.page-menu .block-pickup-list-p--price-infos {
	margin-top: 10px;
}

.page-menu .block-pickup-list-p--price-items {
	text-align: left;
}

.page-menu .block-pickup-list-p .price {
	text-align: left;
}

.page-menu .block-pickup-list-p--price.price {
	text-align: left;
}

.page-menu .block-pickup-list-p--price-infos .block-pickup-list-p--net-price {
	color: var(--gray--text-color);
	font-size: 12px;
	display: inline-block;
	text-decoration: line-through;
}

.page-menu .block-pickup-list-p--item .block-goods-list--favorite--btn {
	left: unset;
}

.page-menu .block-mypage--relation,
.page-menu .block-mypage--recommend-category {
	margin-top: 30px;
	padding: 0 10px 10px 10px;
}

/* 最近見たカテゴリ */
.page-menu .block-mypage--recommend-category .block-accessory-list--name {
	text-align: center;
}

.page-menu .block-recently-category-list--items {
	display: flex;
	padding-bottom: 20px;
}

.page-menu .block-recently-category-list--item {
	width: calc((100% - 10PX) / 2);
	max-width: 235px;
}

.page-menu .block-recently-category-list--item:not(:first-child) {
	margin-left: 10px;
}

.page-menu .block-recently-category-list--description {
	margin-top: 16px;
}

.page-menu .block-recently-category-list--name {
	text-align: center;
}

.page-menu .block-recently-category-list--image .img-center img {
	width: 100%;
	height: auto;
}

.page-menu .block-mypage--withdrawal-link {
	margin: 30px 0;
	text-align: right;
}

.page-menu .block-mypage--withdrawal-link .block-mypage--withdrawal {
	color: var(--gray--text-color);
}

.page-menu .block-recent-item--header {
	margin-bottom: 20px;
	padding-top: 50px;
	font-size: 18px;
	font-weight: bold;
}

/* アドレス帳の変更 */
.block-mypage--member-info-items .block-mypage--update-address-book dd {
	display: block;
}

.block-mypage--member-info-items .block-mypage--update-address-book dt a:after {
	content: "";
}

.block-mypage--member-info-items .block-mypage--update-address-book dd ul {
	border-top: 1px solid #eee;
}

.block-mypage--member-info-items .block-mypage--update-address-book-description a {
	display: table;
	width: 100%;
}

.block-mypage--member-info-items .block-mypage--update-address-book-description span {
	display: table-cell;
	width: 100%;
	vertical-align: middle;
}

.block-mypage--member-info-items .block-mypage--update-address-book-description i {
	display: table-cell;
	width: 20px;
	padding-left: 10px;
	padding-right: 10px;
	vertical-align: middle;
}

.page-menu .block-mypage--recommend-category {
	margin-top: 50px;
	padding: 0 15px;
}
.page-menu .wrapper:has(.pane-header) #accessorylink {
	scroll-margin-top: 150px;
}
/*フッターメニュー*/

.line-login-linked {
	display: inline-block;
	background: #06C755;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	padding: 2px 10px;
	border-radius: 12px;
	white-space: nowrap;
	height: min-content;
}

.line-login-unlinked {
	display: inline-block;
	background: #FFF;
	color: #D53100;
	font-size: 12px;
	font-weight: bold;
	padding: 2px 10px;
	border-radius: 12px;
	white-space: nowrap;
	border: solid;
	border-width: 1px;
	height: min-content;
}

/* スマレジ */
.block-mypage--smaregipoint {
	margin: 10px;
}

/* スマホでは非表示のメニュー */
.block-mypage--shopping-info-item-order,
.block-mypage--shopping-info-item-goods-page {
	display: none;
}

/* SNS連動設定モーダル */
.modal--snssync-menu .snslogin_btn_width {
	width: 100%;
}

.modal--snssync-menu .snslogin {
	margin-top: 10px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	height: 50px;
	background-color: transparent;
	border: none;
}

.modal--snssync-menu .sns_logo {
	width: 40px;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	float: left;
}

.modal--snssync-menu-contents-facebook .sns_logo {
	background: #1877f2 url(../../img/sys/snslogin/facebook.png) no-repeat;
	background-size: 40px 40px;
}

.modal--snssync-menu-contents-twitter .sns_logo {
	background: #55acee url(../../img/sys/snslogin/twitter.png) no-repeat;
	background-size: 40px 40px;
}

.modal--snssync-menu-contents-gplus .sns_logo {
	background: url(../../img/sys/snslogin/gplus.png) no-repeat;
	background-size: 48px 48px;
	background-position: center;
}

.modal--snssync-menu-contents-yahoo .sns_logo {
	background: #e61017 url(../../img/sys/snslogin/yahoo.png) no-repeat;
	background-size: 40px 40px;
	border: 1px solid #e61017;
}

.modal--snssync-menu-contents-line .sns_logo {
	background: #06c755 url(../../img/sys/snslogin/line.png) no-repeat;
	background-size: 40px 40px;
}

.modal--snssync-menu .snslogin-wrapper .snslogin-contents button:focus {
	outline: none;
}

.modal--snssync-menu .sns_word {
	width: 70%;
	height: 40px;
	line-height: 38px;
	float: left;
	text-align: left;
	padding: 0 10px;
	margin-left: 1px;
	border-left: solid 1px #ccc;
}

.modal--snssync-menu-contents-line .sns_word {
	border: solid 1px #06c755;
}

.modal--snssync-menu-contents-facebook .sns_word {
	border: solid 1px #1877f2;
}

.modal--snssync-menu-contents-twitter .sns_word {
	border: solid 1px #55acee;
}

.modal--snssync-menu-contents-gplus .sns_word {
	border: solid 1px #4285f4;
}

.modal--snssync-menu-contents-yahoo .sns_word {
	border: solid 1px #e61017;
}

.modal--snssync-menu-contents-line .snssync-release .sns_word {
	background: #06c755;
	color: #fff;
}

.modal--snssync-menu-contents-facebook .snssync-release .sns_word {
	background: #1877f2;
	color: #fff;
}

.modal--snssync-menu-contents-twitter .snssync-release .sns_word {
	background: #55acee;
	color: #fff;
}

.modal--snssync-menu-contents-gplus .snssync-release .sns_word {
	background: #4285f4;
	color: #fff;
}

.modal--snssync-menu-contents-yahoo .snssync-release .sns_word {
	background: #e61017;
	color: #fff;
}

/* Line連動設定モーダル */
.modal--linesync-menu {
	padding-bottom: 10px;
}

.modal--linesync-menu .linelogin_btn_width {
	width: 100%;
}

.modal--linesync-menu .linelogin {
	margin-top: 10px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	height: 50px;
	background-color: transparent;
	border: none;
}

.modal--linesync-menu-contents .line_logo {
	background: #06c755 url(../../img/sys/linelogin/line.png) no-repeat;
	background-size: 40px 40px;
	border-radius: 7px 0 0 7px;
	width: 40px;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	float: left;
}

.modal--linesync-menu-contents .line_word {
	background: #06c755;
	border-left: solid 1px rgba(0, 0, 0, 0.08);
	border-radius: 0 7px 7px 0;
	width: 85%;
	height: 40px;
	line-height: 40px;
	float: left;
	text-align: center;
	padding: 0 30px;
	color: #fff;
}

.modal--linesync-menu .linesync-message {
	margin-left: 5px;
}

.modal--linesync-menu .linesync-message.linesync-message-sync {
	margin-top: 10px;
}

.modal--linesync-menu .linesync-message .linesync-message-clientlist {
	display: block;
	margin-left: 10px;
}

.modal--linesync-menu .linesync-message .linesync-message-client {
	white-space: nowrap;
}

/* マイページ用 > line友達登録用 */
.snslogin-line-friends .snslogin-line-friend-message {
	margin-bottom: 10px;
}

.snslogin-line-friends form {
	width: 100%;
}

.snslogin-line-friends .snslogin {
	margin: 5px 0;
}

.snslogin-line-friends .snslogin-line-friend-yes {
	color: #fff;
	font-weight: bold;
	background: #232323;
}

.snslogin-line-friends .snslogin-line-friend-no {
	background: #dcdcdc;
	color: #666;
}

.snslogin-line-friends .snslogin-line-friend-sns_word {
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin-left: 1px;
}

/* ----会員登録---- */
.block-member-info--back {
	margin-top: 10px;
	padding: 12px 40px;
}

.block-member-info {
	margin: 0 20px 10px;
}

.block-credit-card-confirmation--credit-card-info-header,
.block-credit-card-confirmation--update-confirmation-header {
	margin: 20px 0 20px;
	padding: 0 0 5px 2px;
	border-bottom: 1px solid rgba(19, 33, 106, 0.1);
	font-size: 24px;
	font-weight: bold;
}

.block-member-info--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-member-info--value-label {
	display: block;
	margin: 5px 0;
}

.block-member-info--message {
	padding: 0 0 10px;
}

.block-member-info--update-mail a {
	text-decoration: underline;
}

.block-member-info .block-topic-path {
	margin: 10px -10px 0;
}

/* ----会員登録確認画面---- */
.block-member-info-confirmation {
	margin: 10px;
}

.block-member-info-confirmation h1 {
	margin: -10px -10px 0;
}

.block-member-info-confirmation .form-control {
	display: block;
	min-height: 24px;
}

.block-member-info-confirmation--value-label {
	display: block;
}

.block-member-info-confirmation .block-topic-path {
	margin: 10px -10px 0;
}

.block-member-info-confirmation--login-state-saving {
	margin-top: 10px;
}

.block-member-info-confirmation--login-state-saving-message {
	margin-top: 10px;
}

.block-member-info-confirmation--pwd {
	word-break: break-all;
}

.block-member-info-confirmation--verifytel-description {
	text-align: center;
}

/* ----会員登録ステップ---- */
.block-member-flow--step {
	padding: 10px 0 10px;
	margin: 0;
	text-align: center;
}

/* ----会員登録完了画面---- */
.block-member-registration-completed {
	margin: 10px;
}

.block-member-registration-completed h1 {
	margin: -10px -10px 0;
}

/* スマレジ */
.block-member-registration-completed--smaregipoint {
	margin: 10px;
}

.block-quick-member-registration-completed--smaregipoint {
	margin: 10px;
}

/* 行動ポイントプログラム */
.block-member-registration-completed--action-register-api-failed {
  color: #a94442;
  margin-top: 1em;
}

/* ----メールアドレス変更画面---- */
.block-update-mail-address {
	margin: 0 10px 10px;
}


.block-update-mail-address--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-update-mail-address .action-buttons {
	margin: 0;
}

.block-update-mail-address .block-topic-path {
	margin: 10px -10px 0;
}

/* ----メールアドレス変更完了画面---- */
.block-update-mail-address--login-link {
	padding: 0 0 10px;
}

.block-update-mail-address--login-link,
.block-update-mail-address--mypage-link {
	text-decoration: underline;
}

/* ----アドレス帳の新規登録・変更画面---- */
.block-shipping-address {
	margin: 0 10px 10px;
}


.block-shipping-address--customer-name {
	margin: 20px 0;
	font-weight: bold;
}

.block-shipping-address--value-label {
	display: block;
	margin: 5px 0;
}

.block-shipping-address .block-topic-path {
	margin: 10px -10px 0;
}

/* ----アドレス帳の新規登録・変更確認画面---- */
.block-shipping-address-confirmation {
	margin: 10px;
}

.block-shipping-address-confirmation--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-shipping-address-confirmation .form-control {
	display: block;
	min-height: 24px;
}

.block-shipping-address-confirmation .block-topic-path {
	margin: 10px -10px 0;
}

/* ----パスワード変更画面---- */
.block-update-member-password {
	margin: 0 10px 10px;
}


.block-shipping-address--message {
	padding-bottom: 10px;
}

.block-reset-password--message,
.block-reset-password--form {
	padding: 0 10px 10px;
}

.block-update-member-password .block-topic-path {
	margin: 10px -10px 0;
}

/* ----パスワード変更完了画面---- */
.block-reset-new-password--completed-message {
	padding-bottom: 10px;
}

.block-reset-new-password--completed-message a {
	text-decoration: underline;
}

.block-update-member-password--login-link {
	margin-bottom: 10px;
}

.block-update-member-password--login-link a {
	text-decoration: underline;
}

/* ----パスワード再設定画面---- */
.block-update-new-password {
	margin: 10px;
}

.block-update-new-password--header {
	margin: -10px -10px 0;
}

.block-update-member-password--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-update-new-password--message {
	padding-bottom: 10px;
}

/* ----パスワード再設定メール送信完了画面---- */
.block-reset-password-completed--message {
	padding: 0 10px 10px;
}

.block-reset-password-completed .action-buttons {
	margin: 0 10px 10px;
}

/* ----生体認証端末登録画面---- */

.block-member-biometric {
	margin: 10px;
}

.block-member-biometric--header {
	margin: -10px -10px 0;
}

.block-member-biometric--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-member-biometric .action-buttons {
	margin: 0;
}

.block-member-biometric .block-topic-path {
	margin: 10px -10px 0;
}

/* ----端末名変更画面---- */

.block-update-devive-name {
	margin: 10px;
}

.block-update-devive-name--header {
	margin: -10px -10px 0;
}

.block-update-devive-name--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-update-devive-name .action-buttons {
	margin: 0;
}

.block-update-devive-name .block-topic-path {
	margin: 10px -10px 0;
}


/* ----ログイン画面---- */
.block-login {
	margin: 0 10px 10px;
}


.block-login h2 {
	background: transparent;
}

.block-login--member-body {
	padding: 10px;
	border: 1px solid #dcdcdc;
	background: #fff;
}

.block-login--uid input {
	width: 100%;
}

.block-login--pwd input {
	width: 100%;
}

.block-login--login-state-saving {
	margin-top: 10px;
}

.block-login--login-state-saving-mesage {
	margin-top: 10px;
}

.block-login--login {
	padding: 10px;
	font-weight: bold;
}

.block-login--ask-password {
	text-decoration: underline;
	margin-top: 10px;
	text-align: right;
}

.block-login--first-time-body {
	padding: 10px;
	border: 1px solid #dcdcdc;
	background: #fff;
}

.block-login--amazon-body {
	padding: 10px;
	border: 1px solid #dcdcdc;
	background: #fff;
}

.block-login--entry-btn {
	padding: 10px;
	font-weight: bold;
}

.block-login--regular-sales-body {
	padding: 10px;
	border: 1px solid #dcdcdc;
	background: #fff;
}

.block-login--regular-sales {
	margin-top: 10px;
}

.block-login--amazon-login {
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}

.block-login--guest {
	margin-top: 10px;
	padding: 10px;
	font-weight: bold;
}
.block-login--member,
.block-login--linelogin,
.block-login--amazon {
	margin-bottom: 32px;
}
.block-login--member-info-country select {
	max-width: 100%;
}

.block-login--member-info-value-label {
	display: block;
	margin: 5px 0;
}

.block-login--display-password {
	padding-top: 10px;
	display: inline-block;
	text-align: left;
}

.block-login--integration-message {
	color: #e61017;
	font-weight: bold;
}

input[name="pwd_display"] {
	width: 18px;
}

.block-login--biometric-login {
	font-weight: bold;
}

/* SNSログイン */
.block-login--snslogin-header {
	margin: 0 -10px;
}

.block-login--snslogin-body {
	padding: 10px;
	border: 1px solid #dcdcdc;
	background: #fff;
}

.block-login--snslogin-text {
	font-size: 12px;
}

.block-login--snslogin-contents {
	width: 100%;
	margin: auto;
	overflow: hidden;
	zoom: 1;
}

.block-login--snslogin-contents:after {
	clear: both;
}

.block-login--snslogin-contents-btn {
	margin: 0;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	width: 100%;
	height: 50px;
	background-color: transparent;
	border: none;
}

.block-login--snslogin-contents-btn button:focus {
	outline: none;
}

.block-login--snslogin-contents .sns_logo {
	width: 40px;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	float: left;
}

.block-login--snslogin-contents-facebook .sns_wrap {
	display: block;
	width: calc(85% + 40px);
	height: 40px;
	background: #1877f2;
	border-radius: 5px;
}

.block-login--snslogin-contents-facebook .sns_logo {
	background: url(../../img/sys/snslogin/facebook.png) center no-repeat;
	background-size: 24px;
}

.block-login--snslogin-contents-facebook .sns_word {
	background: #1877f2;
	border: none;
	font-size: 16px;
	font-weight: bold;
}

.block-login--snslogin-contents-twitter .sns_logo {
	background: #55acee url(../../img/sys/snslogin/twitter.png) no-repeat;
	background-size: 40px 40px;
}

.block-login--snslogin-contents-gplus .sns_logo {
	background: url(../../img/sys/snslogin/gplus.png) no-repeat;
	background-size: 48px 48px;
	background-position: center;
}

.block-login--snslogin-contents-yahoo .sns_logo {
	background: #e61017 url(../../img/sys/snslogin/yahoo.png) no-repeat;
	background-size: 40px 40px;
	border: solid 1px #e61;
}

.block-login--snslogin-contents-line .sns_logo {
	background: #06c755 url(../../img/sys/snslogin/line.png) no-repeat;
	background-size: 40px 40px;
	border-radius: 7px 0 0 7px;
	width: 40px;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	float: left;
}

.block-login--snslogin-contents .sns_word {
	width: 85%;
	height: 40px;
	line-height: 40px;
	float: left;
	text-align: center;
	padding: 0 10px;
}

.block-login--snslogin-contents .sns_word {
	color: #fff;
}

.block-login--snslogin-contents-line .sns_word {
	background: #06c755;
	border-left: solid 1px rgba(0, 0, 0, 0.08);
	border-radius: 0 7px 7px 0;
	height: 40px;
	line-height: 40px;
	float: left;
	padding: 0 30px;
	color: #fff;
}

.block-login--snslogin-contents-facebook .sns_word {
	background: #1877f2;
	float: none;
}

.block-login--snslogin-contents-twitter .sns_word {
	background: #55acee;
}

.block-login--snslogin-contents-gplus .sns_word {
	background: #4285f4;
}

.block-login--snslogin-contents-yahoo .sns_word {
	background: #e61017;
}

.block-login--snslogin-state-saving-mesage {
	margin-top: 10px;
}

/* スマレジ */
.block-login--smaregi-errormsg {
	margin: 10px;
}

/* Lineログイン */
.block-login--linelogin-body {
	padding: 10px;
	border: 1px solid #dcdcdc;
	background: #fff;
}

.block-login--linelogin-text {
	font-size: 12px;
}

.block-login--linelogin-contents {
	width: 100%;
	margin: auto;
	overflow: hidden;
	zoom: 1;
}

.block-login--linelogin-contents:after {
	clear: both;
}

.block-login--linelogin-contents-btn {
	margin: 0;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	width: 100%;
	height: 50px;
	background-color: transparent;
	border: none;
}

.block-login--linelogin-contents-btn button:focus {
	outline: none;
}

.block-login--linelogin-contents-line .line_logo {
	background: #06c755 url(../../img/sys/linelogin/line.png) no-repeat;
	background-size: 40px 40px;
	border-radius: 7px 0 0 7px;
	width: 40px;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	float: left;
}

.block-login--linelogin-contents-line .line_word {
	background: #06c755;
	border-left: solid 1px rgba(0, 0, 0, 0.08);
	border-radius: 0 7px 7px 0;
	width: 85%;
	height: 40px;
	line-height: 40px;
	float: left;
	padding: 0 30px;
	color: #fff;
}

.block-login--linelogin-state-saving-mesage {
	margin-top: 10px;
}

/* ----SMS認証コード入力画面---- */
.block-additional-sms-authentication {
	margin: 10px;
}

.block-additional-sms-authentication h1 {
	margin: -10px -10px 0;
}

.block-additional-sms-authentication--sendtel {
	font-weight: bold;
}

.block-additional-sms-authentication--authentication-key input[type="text"] {
	width: 100%;
}

.block-additional-sms-authentication--login {
	font-weight: bold;
	margin-top: 10px;
	padding: 12px 40px;
}

.block-additional-sms-authentication--sms-reissue.btn {
	padding: 5px 0;
}

.block-additional-sms-authentication--retry-message {
	text-align: center;
}

.block-additional-sms-authentication--sidemenu-item {
	margin: 10px 0;
}

.block-additional-sms-authentication--sidemenu-item:first-child {
	margin: 30px 0 10px 0;
}

.block-additional-sms-authentication--sms-restart {
	background-color: transparent;
	border: none;
	border-radius: 4px;
	color: #081f2c;
	cursor: pointer;
	display: inline-block;
	padding: 0;
	text-align: left;
	text-decoration: underline;
	white-space: normal;
	word-wrap: break-word;
}

.block-additional-sms-authentication--inquiry-link {
	text-decoration: underline;
}

/* ----SMS有効性確認モーダル画面---- */
.block-verifytel--response-container.modal-body {
	background: #fff;
}

.block-verifytel-header {
	background: #fff;
	margin-bottom: 5px;
}

.block-verifytel-modal--body {
	padding: 20px;
	border-top: solid 1px #dcdcdc;
	background: #fff;
}

.block-verifytel--body>.block-common-alert-list {
	width: 100%;
}

.block-verifytel--body .block-common-alert-list--items li {
	border-bottom: none;
}

.block-verifytel--sendtel {
	font-weight: bold;
}

.block-verifytel--authentication-key input[type="text"] {
	width: 100%;
}

.block-verifytel--login {
	font-weight: bold;
	margin-top: 10px;
	padding: 12px 40px;
}

.block-verifytel--sms-reissue.btn {
	padding: 5px 0;
	margin-bottom: 10px;
}

.block-verifytel--retry-message {
	text-align: center;
}

.block-verifytel--contents {
	padding: 10px;
}

.block-verifytel--sidemenu-item {
	margin: 10px 0;
}

.block-verifytel--sidemenu-item:first-child {
	margin: 30px 0 10px 0;
}

.block-verifytel--sms-restart {
	background-color: transparent;
	border: none;
	border-radius: 4px;
	color: #081f2c;
	cursor: pointer;
	display: inline-block;
	padding: 0;
	text-align: left;
	text-decoration: underline;
	white-space: normal;
	word-wrap: break-word;
}

.block-verifytel--inquiry-link {
	text-decoration: underline;
}

.block-verifytel-modal--footer {
	background: #fff;
}

/* ----追加認証画面---- */
.block-additional-authentication {
	margin: 10px;
}

.block-additional-authentication--login {
	margin-top: 10px;
	padding: 12px 40px;
	font-weight: bold;
}

.block-additional-authentication--inquiry {
	margin-top: 10px;
	text-decoration: underline;
}

.block-additional-authentication--reissue {
	font-weight: bold;
}

.block-additional-authentication--authentication-key input[type="text"] {
	width: 100%;
}

/* ----お気に入り画面---- */
.block-favorite--price-items .price {
	color: #081f2c;
}

.block-favorite--price-items .sale-price {
	color: #E52F58;
}

.block-favorite {
	margin: 10px;
}

.block-favorite--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-favorite--recommend {
	padding: 0 10px 10px 10px;
	text-align: right;
	text-decoration: underline;
}

.block-favorite--items>li:first-child {
	border-top: 1px solid #eee;
}

.block-favorite--items>li {
	border-top: 1px solid #eee;
	width: 100%;
	padding: 10px 0;
	vertical-align: top;
	border-bottom: 1px solid #eee;
}

.block-favorite--favorite-goods {
	display: table;
	width: 100%;
}

.block-favorite--checkbox {
	display: table-cell;
	width: 33px;
	vertical-align: top;
	padding: 5px;
}

.block-favorite--checkbox:empty {
  width: 33px;
}

.block-favorite--image {
	padding: 5px;
	display: table-cell;
	vertical-align: top;
	width: 120px;
}

.block-favorite--description {
	display: table-cell;
	vertical-align: top;
	width: auto;
	padding: 5px;
}

.block-favorite--price {
	display: inline-block;
	font-size: 20px;
}
.block-favorite--price-items{
	text-align: right;
}
.block-favorite--update-dt {
	font-size: 14px;
	margin-top: 8px;
}
.block-favorite--price-title {
	display: inline-block;
}

.block-favorite--default-price {
	font-weight: normal;
}

.block-favorite--price-items{
	flex-wrap: wrap;
	display: flex;
	align-items: baseline;
}

.block-favorite--default-price.default-price {
	display: block;
	flex-basis: 100%;
	margin: 8px 0 0 0;
}
.block-favorite--comment {
	margin-top: 10px;
}

.block-favorite--comment-message {
	word-break: break-all;
}

.block-favorite--comment-button {
	margin: 10px 0;
}

.block-favorite--update {
	border: none;
	background-color: #0D2D6C;
	color: #fff;
	margin-bottom: 5px;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	padding: 4px 10px;
	cursor: pointer;
}

.block-favorite--cancel {
	border: 1px solid #0D2D6C;
	background-color: #fff;
	color: #0D2D6C;
	margin-bottom: 5px;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	padding: 4px 10px;
	cursor: pointer;
}

.block-favorite--delete-item {
	text-align: right;
	margin-top: 4px;
}

.block-favorite--items {
	margin: 20px 0 20px;
}

.block-favorite .block-accessory-list--name {
	background: #f5f5f5;
	padding: 6px 10px 4px;
	margin: 5px -10px 0;
}

.block-favorite--name .block-topic-path {
	margin: 0 -10px;
}

.block-favorite--name {
	font-weight: bold;
}

.block-favorite--name {
	word-break: break-all;
}

.block-favorite--edit-comment a {
	text-decoration: underline;
}

.block-favorite .block-topic-path {
	margin: 10px -10px 0;
}

.block-favorite--image figure {
	width: 110px;
	height: 110px;
	background: #f5f5f5;
}

.block-favorite--comment-textarea-container {
	width: 100%;
}

.block-favorite--comment-textarea {
	width: 100%;
}

/* お気に入り削除フラグ*/
.block-favorite--delete-fg {
	margin-top: 10px;
}

.block-favorite--delete-fg .block-favorite--checkbox {
	margin: 1rem auto;
	justify-content: flex-start;
}

.block-favorite--delete-fg .text {
	vertical-align: middle;
}

.block-favorite--delete-fg label {
	cursor: pointer;
}

.block-favorite--delete-fg .switch {
	position: relative;
}

.block-favorite--delete-fg .switch:before,
.block-favorite--delete-fg .switch:after {
	content: "";
	vertical-align: middle;
	display: inline-block;
}

.block-favorite--delete-fg .switch:before {
	width: 2em;
	height: 1em;
	border-radius: 32px;
	background: #999;
}

.block-favorite--delete-fg .switch:after {
	position: relative;
	width: 1em;
	height: 1em;
	border: 1px solid #ccc;
	background: #f5f5f5;
	border-radius: 50%;
	left: -2em;
}

.block-favorite--delete-fg input {
	display: none;
}

.block-favorite--delete-fg input:checked~.switch:before {
	background: #0D2D6C;
	border-color: #f5f5f5;
}
.block-favorite--delete-fg input:checked~.switch:after {
	background: #f5f5f5;
	left: -1.1em;
}

/* ----入荷案内申し込み商品画面---- */
.block-arrival-notice-list {
	margin: 10px;
}

.block-arrival-notice-list--header {
	margin: -10px -10px 0;
}

.block-arrival-notice-list--items>li:first-child {
	border-top: 1px dotted #ccc;
}

.block-arrival-notice-list--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-arrival-notice-list--goods {
	display: table;
	width: 100%;
}

.block-arrival-notice-list--items li {
	padding: 10px 0;
	vertical-align: top;
	border-bottom: 1px dotted #ccc;
}

.block-arrival-notice-list--goods .block-arrival-notice-list--image {
	width: 120px;
	padding: 5px;
	display: table-cell;
	vertical-align: top;
}

.block-arrival-notice-list--image figure {
	width: 110px;
	height: 110px;
	background: #f5f5f5;
}

.block-arrival-notice-list--goods .block-arrival-notice-list--description {
	width: auto;
	display: table-cell;
	vertical-align: top;
	padding: 5px;
}

.block-arrival-notice-list--delete-item {
	text-align: right;
}

.block-arrival-notice-list--goods-name {
	font-weight: bold;
}

.block-arrival-notice-list--price-title {
	display: inline;
}

.block-arrival-notice-list--price {
	display: inline;
}

.block-arrival-notice-list--net-price {
	font-size: 12px;
}

/* ----購入履歴一覧画面---- */
.block-purchase-history {
	margin: 0 20px 10px;
}

main h1 {
	font-size: 32px;
	font-weight: bold;
	color: #13216A;
	display: flex;
	flex-direction: column;
	font-family: "Montserrat", sans-serif;
	line-height: 1;
	margin: 40px 0 40px;
}

.block-purchase-history--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-purchase-history--recommend {
	padding: 0 10px 10px 10px;
	text-align: right;
	text-decoration: underline;
}

.block-purchase-history--table {
	margin: 0 0 10px;
}

.block-purchase-history .block-topic-path {
	margin: 0 -10px;
}

.block-purchase-history--table th {
	vertical-align: middle;
	white-space: nowrap;
}

.block-purchase-history--order-detail-list .block-purchase-history--goods-subitems .block-goods-child .block-goods-child--name {
	padding-left: 10px;
}

.block-purchase-history--order-detail-list {
	display: grid;
	gap: 10px;
}

.block-purchase-history .block-accessory-list {
	margin: 0 -10px;
}

.block-purchase-history--order-id a {
	text-decoration: underline;
}

.block-purchase-history--order-detail-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
}

.block-purchase-history--status a:hover,
.block-purchase-history--status a:focus {
	text-decoration: none;
}

.block-purchase-history--status .status-order,
.block-purchase-history--status .status-cancel,
.block-purchase-history--status .status-income,
.block-purchase-history--status .status-reserve,
.block-purchase-history--status .status-rship,
.block-purchase-history--status .status-ship,
.block-purchase-history--status .status-verify,
.block-purchase-history--status .status-return,
.block-purchase-history--status .status-status_,
.block-purchase-history--status .status-status_1,
.block-purchase-history--status .status-status_2,
.block-purchase-history--status .status-status_3,
.block-purchase-history--status .status-status_4,
.block-purchase-history--status .status-status_9 {
	border: none;
}

.block-purchase-history--reauth {
	padding: 5px;
	margin: 5px 0 0 0;
}

.block-purchase-history--goods-image{
  padding: 0 0 5px;
}

.block-purcahse-histroy--goods-image-figure {
  text-align: center;
  width: 50px;
  height: 50px;
}

.block-purcahse-histroy--goods-image-img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.block-purchase-history--goods-info {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.block-purchase-history--gmo-after-payment-form-url {
	padding: 5px;
	margin: 5px 0 0 0;
	border: #ccc solid 1px;
}

.block-purchase-history--gmo-after-payment-form-url-caution-message {
	margin: 5px 0 0 0;
}

/* ----購入履歴詳細画面---- */
.block-purchase-history-detail {
	margin: 0 10px 10px;
}

.block-purchase-history-detail--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
	width: 50%;
	float: left;
}

.block-purchase-history-detail--company-name {
	margin: 0 0 10px;
	width: 50%;
	float: right;
	text-align: right;
}

.block-purchase-history-detail--order-info-table th {
	width: 40%;
}

.block-purchase-history-detail--order-detail-item td {
	vertical-align: middle;
}

.block-purchase-history-detail--tax-reduced-message {
	margin: 3px 0;
}

.block-purchase-history-detail--payment-info-items {
	margin-top: 10px;
}

.block-purchase-history-detail--payment-info-items th {
	width: 40%;
}

.block-purchase-history-detail--shipping-info-items th {
	width: 40%;
}

.block-purchase-history-detail--csv-info-items th {
	width: 40%;
}

.block-purchase-history-detail--cash-paymentinfo-items th {
	width: 40%;
}

.block-purchase-history-detail--invoice th {
	width: 40%;
}

.block-purchase-history-detail--store td a {
	text-decoration: underline;
}

.block-purchase-history-detail--order-info-table {
	margin: 0 0 10px;
}

.block-purchase-history-detail--proceed-status {
	margin-bottom: 10px;
}

.block-purchase-history-detail--pickup-goods td {
  background-color: #fbfbfb;
}

.block-purchase-history-detail--goods-code {
	font-size: 12px;
}

td:has(> .block-purchase-history-detail--goods-name) {
	vertical-align: top;
}

.block-purchase-history-detail--goods-image {
	display: block;
	margin: 0 auto;
}

th.block-purchase-history-detail--goods-name-title {
	width: 55%;
}

.block-goods-child--name {
	font-size: 80%;
}

th.block-purchase-history-detail--goods-qty-title {
	width: 15%;
}

th.block-purchase-history-detail--goods-total-price-title {
	width: 30%;
}

.block-purchase-history-detail--shipping-info {
	margin: 10px 0;
}
.block-purchase-history-detail--shipment-header {
	margin: 24px 0;
}
.block-purchase-history-detail--shiment-address {
	margin: 0 0 24px;
}

.block-purchase-history-detail--goods-qty,
.block-purchase-history-detail--goods-total-price,
.block-purchase-history-detail--items-total td,
.block-purchase-history-detail--items-noshi-charge td,
.block-purchase-history-detail--shipping-fee td,
.block-purchase-history-detail--fee td,
.block-purchase-history-detail--charge-point td,
.block-purchase-history-detail--promotion-discount td,
.block-purchase-history-detail--order-total td,
.block-purchase-history-detail--discount td,
.block-purchase-history-detail--acquire-point td,
.block-purchase-history-detail--coupon-discount td,
.block-purchase-history-detail--payment-method td,
.block-purchase-history-detail--delivery-day td,
.block-purchase-history-detail--delivery-time-zone td,
.block-purchase-history-detail--order-comment td,
.block-purchase-history-detail--delivery-service-name td,
.block-purchase-history-detail--docomo-settlement-code td,
.block-purchase-history-detail--rakuten-charge-id td,
.block-purchase-history-detail--pay-info-no td,
.block-purchase-history-detail--approval-code td {
	text-align: right;
}

.block-purchase-history-detail--shipping-info-items {
	margin-bottom: 10px;
}

.block-purchase-history-detail--csv-info-items {
	margin-bottom: 10px;
}

.block-purchase-history-detail--csv-info-items td {
	text-align: right;
}

.block-purchase-history-detail--cash-paymentinfo-items {
	margin-bottom: 10px;
}

.block-purchase-history-detail--cash-paymentinfo-items td {
	text-align: right;
}

.block-purchase-history-detail--cash-paymentinfo-url a {
	text-decoration: underline;
}

.block-purchase-history-detail--cash-paymentinfo-remarks {
	margin-top: 5px;
	font-size: 13px;
	text-align: left;
}

.block-purchase-history-detail--shipment-info {
	margin-bottom: 10px;
}

.block-purchase-history-detail--invoice {
	margin-bottom: 10px;
}

.block-purchase-history-detail--shipment-items {
	margin-bottom: 10px;
}

.block-purchase-history-detail--shipment-pickup-goods td {
  background-color: #fbfbfb;
}

.block-purchase-history-detail--shipment-items .block-purchase-history-detail--shipment-goods-name a {
	text-decoration: underline;
}

.block-purchase-history-detail--append-header {
	margin: 10px -10px;
}

.block-purchase-history-detail--income-url td a,
.block-purchase-history-detail--csv-payment-url td a,
.block-purchase-history-detail--track-shipment-url td a {
	text-decoration: underline;
}

.block-purchase-history-detail--requests-for-order {
	margin-top: 5px;
}

.block-purchase-history-detail--shipment-items th {
	vertical-align: middle;
	width: 40%;
}

.block-purchase-history-detail--shipment-order-extension th,
.block-purchase-history-detail--noshi th {
	vertical-align: middle;
}

.block-purchase-history-detail .form-control {
	display: block;
	min-height: 24px;
}

.block-purchase-history-detail .block-topic-path {
	margin: 10px -10px 0;
}

.block-purchase-history-detail--child-order-id a {
	text-decoration: underline;
}

.block-purchase-history-detail--parent-order-id a {
	text-decoration: underline;
}

.block-purchase-history-detail--regular-sales-include a {
	text-decoration: underline;
}

.block-purchase-history-detail--regular-sales a {
	text-decoration: underline;
}

.block-purchase-history-detail--tax-reduced {
	margin-left: 10px;
}

.block-purchase-history-detail--total-for-tax-ratio {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	font-size: 80%;
}

.block-purchase-history-detail--total-for-tax-ratio-list ul {
	display: flex;
	justify-content: flex-end;
}

.block-purchase-history-detail--tax-ratio {
	min-width: 50px;
	margin-right: 5px;
}

.block-purchase-history-detail--total-for-tax-ratio-amount {
	min-width: 55px;
}

.block-purchase-history-detail--gmo-after-payment-form-url {
	margin: 10px;
	padding: 10px;
	border: #ccc solid 1px;
}

.block-purchase-history-detail--gmo-after-payment-form-url-caution-message {
	margin: 10px 0 0 0;
}

/* ラッピング・メッセージカード設定 */
.block-purchase-history-detail--wrapping-message-card {
	margin-top: 10px;
	overflow-wrap: anywhere;
	word-break: break-all;
}

.block-purchase-history-detail--wrapping-message-card-title {
	font-weight: bold;
}

.block-purchase-history-detail--wrapping-message-card-items {
	padding-left: 1em;
	display: flex;
}

.block-purchase-history-detail--wrapping-message-card-item-title {
	min-width: 10em;
}

/* ----購入カード情報変更画面---- */
.block-purchase-history-cardupdate {
	margin: 10px;
}

.block-purchase-history-cardupdate--header {
	margin: -10px -10px 0;
}

.block-purchase-history-cardupdate--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-purchase-history-cardupdate--orderframe,
.block-purchase-history-cardupdate--inputframe,
.block-purchase-history-cardupdate--authentication {
	margin: 20px 0 0 0;
}

.block-purchase-history-cardupdate--table {
	margin: 0 0 10px;
}

.block-purchase-history-cardupdate .block-topic-path {
	margin: 10px -10px;
}

.block-purchase-history-cardupdate--table th {
	vertical-align: middle;
	white-space: nowrap;
}

.block-purchase-history-cardupdate--security-code input[type="number"] {
	width: 90px;
}

/* ----ご注文キャンセル画面---- */
.block-order-cancellation--body {
	margin: 40px 0 0 ;
}
.block-order-cancellation {
	margin: 10px;
}

.block-order-cancellation--order-detail-header {
	margin: 24px 0;
}

.block-order-cancellation--order-detail {
	margin-bottom: 10px;
}

.block-order-cancellation--shiment-address {
	margin-bottom: 10px;
}

.block-order-cancellation--order-items .block-order-cancellation--goods-name-title {
	width: 55%;
}

.block-order-cancellation--order-items .block-order-cancellation--qty-title {
	width: 15%;
}

.block-order-cancellation--order-items .block-order-cancellation--amt-title {
	width: 30%;
}

.block-order-cancellation--qty {
	text-align: right;
}

.block-order-cancellation--amt {
	text-align: right;
}

.block-order-cancellation--order-items {
	margin-bottom: 10px;
}

.block-order-cancellation--payment-info-items th {
	width: 40%;
	text-align: left;
}

.block-order-cancellation--payment-info-items td {
	text-align: right;
}

.block-order-cancellation--cancellation-reason-header {
	margin: 24px 0;
}

.block-order-cancellation--reason-detail {
	width: 100%;
}

.block-order-cancellation .block-topic-path {
	margin: 10px -10px 0;
}

.block-order-cancellation--pickup-goods-child {
  background-color: #fbfbfb;
}
.page-historydetail h2,
.page-salescancel h2 {
	font-size: 1.8rem;
}
/* ----ご注文キャンセル完了画面---- */

.block-order-cancellation-completed {
	margin: 10px;
	padding-top: -10px;
}

/* ----購入履歴一覧画面（領収書）---- */
.block-purchase-history-detail--receipt-address {
	margin: 10px 0;
	padding: 10px;
	border: 1px solid var(--responsive-sys-border-color-gray-primary);
}

.block-purchase-history-detail--receipt-reissuemsg {
	margin-bottom: 10px;
}

.block-purchase-history-detail--receipts {
	margin-bottom: 50px;
}

.block-purchase-history-detail--receipt-items {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	row-gap: 10px;
}

.block-purchase-history-detail--receipt-items label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	max-width: 100%;
}

.block-purchase-history-detail--receipt-items>label input {
	width: 300px;
}

/* ----定期購入商品一覧画面---- */
.block-regular-purcharse-list {
	margin: 10px;
}


.block-regular-purcharse-list--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-regular-purcharse-list--table {
	margin-bottom: 10px;
}

.block-regular-purcharse-list--table th {
	vertical-align: middle;
	width: 35%;
	text-align: left;
	white-space: nowrap;
}

.block-regular-purcharse-list--regular-sales td a {
	text-decoration: underline;
}


.block-regular-purcharse-list--regular-list {
	margin: 20px 0 15px 0;
	padding: 0 0 30px;
}

.block-regular-purcharse-list--list {
	background: #fff;
	margin: 0 0 30px;
	border: 1px solid #0D2D6C;
	border-radius: 3px 3px 0 0;
}

.block-regular-purcharse-list--list a {
	color: #257ac6;
}

.block-regular-purcharse-list--list>dd {
	margin: 10px;
}

.block-regular-purcharse-list .block-regular-purcharse-list--info ul>li {
	padding: 8px;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	font-size: 12px;
	display: flex;
	align-items: center;
	width: 100%;
	background-color: #fff;
}

.block-regular-purcharse-list--info ul>li.block-regular-purcharse-list--info-withdrawal,
.block-regular-purcharse-list--info ul>li.block-regular-purcharse-list--info-add {
	display: block;
	border: none;
}

.block-regular-purcharse-list--info-add .action {
	width: 100%;
}

.block-regular-purcharse-list--info-regular-sales>span:last-of-type {
	font-weight: bold;
	text-align: right;
}

.block-regular-purcharse-list--head-info-regular-create-dt {
	background-color: #0D2D6C;
	color: #fff;
	padding: 10px;
	font-size: 11px;
	border-radius: 2px 2px 0 0;
	width: 100%;
}

.block-regular-purcharse-list--head-info-regular-create-dt>span {
	display: inline-block;
	width: 50%;
}

.block-regular-purcharse-list--head-info-regular-create-dt>span:last-child {
	text-align: right;
}

.block-regular-purcharse-list--info-method {
	border-bottom: 1px solid #ddd;
}

.block-regular-purcharse-list--info li>span {
	width: 80%;
}

.block-regular-purcharse-list--info li>a,
.block-regular-purcharse-list--info li>span:last-child {
	width: 20%;
}

.block-regular-purcharse-list--info li>a {
	padding: 0;
	font-size: 12px;
	text-align: right;
	white-space: nowrap;
}

.block-regular-purcharse-list--info-withdrawal {
	width: 100%;
	text-align: center;
}


.block-regular-purcharse-list--detail>ul>li {
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}

.block-regular-purcharse-list--detail>ul>li:last-child {
	border-bottom: 1px solid #fff;
}

.block-regular-purcharse-list--date-spec dl {
	display: flex;
}



.block-regular-purcharse-list--skip-expected-dt {
	display: inline;
	vertical-align: middle;
}

.block-regular-purcharse-list--skip-expected-dt i {
	font-size: 14px;
	padding-right: 5px;
}

.block-regular-purcharse-list--detail-item-change {
	margin: 5px 0 auto auto;
	text-align: right;
	flex-shrink: 0;
}

a.block-regular-purcharse-list--detail-item-changelink {
	font-size: 12px;
	text-decoration: underline;
	flex-shrink: 0;
}

.block-regular-purcharse-list--sales-link {
	width: 50%;
	text-align: right;
	font-size: 13px;
	flex-shrink: 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.block-regular-purcharse-list--sales-link a {
	text-decoration: underline;
}

.block-regular-purcharse-list--benefits {
	display: flex;
	font-size: 12px;
	padding: 10px;
	color: #ff5e60;
}

.block-regular-purcharse-list--benefits>div {
	margin: auto 0;
}

.block-regular-purcharse-list--benefits .block-regular-purcharse-list--benefits-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
}

.block-regular-purcharse-list--benefits-frame {
	padding-left: 6px;
}
.block-regular-purcharse-list--skip-button input[type="button"] {
	height: 30px;
	border-radius: 16px;
	background: #0D2D6C;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 16px 0 0 0;
	width: 100%;
	border: none;
}

.block-regular-purcharse-list--list .regular-add-action {
	margin: 0 10px;
}

a.block-regular-purcharse-list--change-next-expected-dt-link {
	height: 30px;
	border-radius: 16px;
	background: #0D2D6C;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 16px 0 0 0;
	width: 100%;
	border: none;
}

/* ----定期購入商品追加----*/
.block-goodsadd-list {
	margin: 10px;
}

.block-goodsadd-list--customer-name {
	margin: 10px;
	font-weight: bold;
}

.block-regular-sales-add-goodsadd-info-header-msg {
	margin-bottom: 8px;
}

.block-goodsadd-list .block-thumbnail-t--items {
	display: block;
	font-size: unset;
}

.block-regular-sales-add--goods {
	display: flex;
	flex-direction: row;
	margin-bottom: 20px;
	column-gap: 10px;
}

.block-regular-sales-add--goods-image {
	width: 145px;
}

.block-regular-sales-add--goods-image figure {
	background: #f5f5f5;
	min-width: 140px;
	min-height: 140px;
	padding: 5px;
}

.block-regular-sales-add--goods-description {
	position: relative;
	margin-left: auto;
	height: 165px;
	width: 200px;
}

.block-regular-sales-add--goods-name {
	font-weight: bold;
	font-size: 16px;
}

.block-regular-sales-add--price-info {}

.block-regular-sales-add--price {
	font-weight: bold;
	font-size: 14px;
}

.block-regular-sales-add--regular-repeat-price {
	font-weight: bold;
	font-size: 12px;
}

.block-regular-sales-add--qty {
	width: 200px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.block-regular-sales-add--qty-title {
	font-size: 14px;
	font-weight: bold;
	margin-right: 8px;
}

.block-regular-sales-add--qty>input {
	width: 110px;
	line-height: 80%;
}

.block-regular-sales-add--action {
	width: 100%;
}

/* ----定期購入商品追加 モーダル----*/
.modal-body .block-regular-sales-add--goods {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.modal-body .block-regular-sales-add--goods-info {
	width: auto;
	margin: 8px;
}

.modal-body .block-regular-sales-add--goods-image {
	width: 128px;
}

.modal-body .block-regular-sales-add--goods-image figure {
	background: #f5f5f5;
	min-width: 100px;
	min-height: 100px;
	padding: 5px;
}

.modal-body .block-regular-sales-add--goods-name {
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 4px;
}

.modal-body .block-regular-sales-add--price-info {}

.modal-body .block-regular-sales-add--price {
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 4px;
}

.modal-body .block-regular-sales-add--regular-repeat-price {
	font-weight: bold;
	font-size: 12px;
}

.modal-body .block-regular-sales-add--qty {
	margin-top: 6px;
	display: flex;
	flex-direction: row;
	width: auto;
	align-items: center;
}

.modal-body .block-regular-sales-add--qty>div {
	font-weight: bold;
	font-size: 16px;
}

.modal-body .block-regular-sales-add--action {
	width: 100%;
}

.modal-body .block-regular-sales-add-sales-detail-append--item input[type="text"],
.modal-body .block-regular-sales-add-sales-detail-append--item textarea {
	width: 100%;
}

.modal-body .block-regular-sales-add-sales-detail-append--item textarea {
	resize: none;
}

/* ----定期購入商品詳細画面---- */
.block-regular-purcharse-detail {
	margin: 10px;
}

.block-regular-purcharse-detail--header {
	margin: -10px -10px 0;
}

.block-regular-purcharse-detail--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-regular-purcharse-detail--regular-sales-items th {
	text-align: left;
	width: 40%;
}

.block-regular-purcharse-detail--regular-sales-items {
	margin-bottom: 10px;
}

.block-regular-purcharse-detail--card-change {
	margin-bottom: 10px;
}

.block-regular-purcharse-detail--cycle-change {
	margin-bottom: 10px;
}

.block-regular-purcharse-detail--shipment-header {
	margin: 0 -10px 10px;
}

.block-regular-purcharse-detail--shipment-info {
	padding-bottom: 10px;
}

.block-regular-purcharse-detail--shipment-address {
	margin-bottom: 10px;
}

.block-regular-purcharse-detail--goods-items {
	margin-bottom: 10px;
}

.block-regular-purcharse-detail--goods-items th {
	width: 30%;
	text-align: left;
	vertical-align: middle;
}

.block-regular-purcharse-detail--goods-name td a {
	text-decoration: underline;
}

.block-regular-purcharse-detail--append-header {
	margin: 0 -10px 10px;
}

.block-regular-purcharse-detail--append {
	padding-bottom: 10px;
}

.form-group .block-regular-purcharse-detail--append-item .form-control {
	display: block;
	min-height: 24px;
}

.block-regular-purcharse-detail--include-header {
	width: auto;
	margin: 0 -10px 10px;
	background: #f5f5f5;
	padding: 6px 10px 4px;
	border-bottom: none;
}

.block-regular-purcharse-detail--include {
	padding-bottom: 10px;
}

.block-regular-purcharse-detail--action-message {
	padding-top: 10px;
}

.block-regular-purcharse-detail .block-topic-path {
	margin: 10px -10px 0;
}

.block-regular-purcharse-list--order-id a {
	text-decoration: underline;
}

/* ----定期購入商品配送先変更画面---- */
.block-regular-purcharse-shipment-info-update {
	margin: 10px;
}

.block-regular-purcharse-shipment-info-update--header {
	margin: -10px -10px 0;
}

.block-regular-purcharse-shipment-info-update--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-regular-purcharse-shipment-info-update--old-info-header {
	width: auto;
	margin: 0 -10px 10px;
	background: #f5f5f5;
	padding: 6px 10px 4px;
	border-bottom: none;
}

.block-regular-purcharse-shipment-info-update--old-info {
	margin-bottom: 10px;
}

.block-regular-purcharse-shipment-info-update--new-info-header {
	width: auto;
	margin: 0 -10px 10px;
	background: #f5f5f5;
	padding: 6px 10px 4px;
	border-bottom: none;
}

.block-regular-purcharse-shipment-info-update--new-address {
	margin-bottom: 10px;
}

.block-regular-purcharse-shipment-info-update--cust-edit,
.block-regular-purcharse-shipment-info-update--dest-edit,
.block-regular-purcharse-shipment-info-dest-add {
	text-align: right;
}

.block-regular-purcharse-shipment-info-dest-add {
	padding-top: 5px;
}

.block-regular-purcharse-shipment-info-update--new-item {
	border-bottom: 1px solid #eee;
	padding-bottom: 5px;
}

.block-regular-purcharse-shipment-info-update .block-topic-path {
	margin: 10px -10px 0;
}

/* ----定期購入商品配送先変更画面(AmazonPay)---- */
.block-regular-purcharse-shipment-info--amazonpay-body {
	margin: 0 auto;
}

.block-regular-purcharse-shipment-info--amazonpay-message {
	text-align: left;
}

.block-regular-purcharse-shipment-info--amazonpay-login {
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}

.block-regular-purcharse-shipment-info--amazonpay-error {
	text-align: left;
	color: #a94442;
}

.block-regular-purcharse-shipment-info--amazonpay-widget-error {
	color: #a94442;
}

/* ----定期購入商品サイクル情報変更画面---- */
.block-regular-purcharse-cycle-info-update {
	margin: 10px;
}

.block-regular-purcharse-cycle-info-update--header {
	margin: -10px -10px 0;
}

.block-regular-purcharse-cycle-info-update--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-regular-purcharse-cycle-info-update--regular-sales-items th {
	text-align: left;
	width: 40%;
}

.block-regular-purcharse-cycle-info-update--regular-sales-items {
	margin-bottom: 10px;
}

.block-regular-purcharse-cycle-info-update--card-change {
	margin-bottom: 10px;
}

.block-regular-purcharse-cycle-info-update--cycle-change {
	margin-bottom: 10px;
}

.block-regular-purcharse-cycle-info-update--shipment-header {
	margin: 0 -10px 10px;
}

.block-regular-purcharse-cycle-info-update--shipment-info {
	padding-bottom: 10px;
}

.block-regular-purcharse-cycle-info-update--shipment-address {
	margin-bottom: 10px;
}

.block-regular-purcharse-cycle-info-update--goods-items {
	margin-bottom: 10px;
}

.block-regular-purcharse-cycle-info-update--goods-items th {
	width: 30%;
	text-align: left;
	vertical-align: middle;
}

.block-regular-purcharse-cycle-info-update--goods-name td a {
	text-decoration: underline;
}

.block-regular-purcharse-cycle-info-update--append-header {
	margin: 0 -10px 10px;
}

.block-regular-purcharse-cycle-info-update--append {
	padding-bottom: 10px;
}

.form-group .block-regular-purcharse-cycle-info-update--append-item .form-control {
	display: block;
	min-height: 24px;
}

.block-regular-purcharse-cycle-info-update--action-message {
	padding-top: 10px;
}

.block-regular-purcharse-cycle-info-update .block-topic-path {
	margin: 10px -10px 0;
}

.block-regular-purcharse-cycle-info-update--skip-cancel-message {
	font-size: 10px;
}

.block-regular-cycle--select-timespec-title {
	font-weight: bold;
	margin-right: 5px;
}

/* ----定期購入商品解約画面---- */
.block-regular-purcharse-cancellation {
	margin: 10px;
}

.block-regular-purcharse-cancellation--header {
	margin: -10px -10px 0;
}

.block-regular-purcharse-cancellation--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-regular-purcharse-cancellation--goods-items {
	margin-bottom: 10px;
}
.block-regular-purcharse-cancellation--postage-info th,
.block-regular-purcharse-cancellation--goods-items th {
	width: 30%;
	vertical-align: middle;
}

.block-regular-purcharse-cancellation--goods-items td {
	vertical-align: top;
}

.block-regular-purcharse-cancellation--goods-items td a {
	text-decoration: underline;
}

.block-regular-purcharse-cancellation .block-topic-path {
	margin: 10px -10px 0;
}

.block-regular-purcharse-cancellation--cancel-reason-items {
	margin: 0 auto;
}

.block-regular-purcharse-cancellation--cancel-reason-items label::after {
	content: "\A";
	white-space: pre;
}

.block-regular-purcharse-cancellation--cancel-reason-other-comment {
	padding-top: 10px;
	display: none;
}

/* ----定期購入商品変更画面---- */
.block-goodschange-list .block-thumbnail-t--items {
	display: block;
	font-size: unset;
}

.block-goodschange-list .action-buttons {
	margin: 0 5px;
}

.block-goodschange-list .block-regular-goodschange-info-header-msg {
	margin-bottom: 10px;
}

.block-goodschange-list .block-goodschange-list-item-buttons-selected {
	background: #fffcfc;
	border: 1px solid #f00;
	color: #f00;
	font-weight: bold;
	display: inline-block;
	margin: 10px 0;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	width: 100%;
	padding: 10px 0;
}

.block-thumbnail-t--refill-goods-price-items {
	text-align: right;
}

.block-thumbnail-t--refill-goods-total-price-info {
	font-weight: bold;
}

div.block-thumbnail-t--refill-goods-total-price-items>div.block-thumbnail-t--refill-goods-total-price {
	text-align: right;
}

/* ----定期購入 本品とレフィル切り替え画面---- */
.block-refillgoods-list .block-thumbnail-t--items {
	display: block;
	font-size: unset;
}

.block-refillgoods-list .block-refillgoods-list-item-buttons-selected {
	background: #fffcfc;
	border: 1px solid #f00;
	color: #f00;
	font-weight: bold;
	display: inline-block;
	margin: 10px 0;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	width: 100%;
	padding: 10px 0;
}

/* ----定期購入支払い方法変更画面---- */
.block-regular-purcharse-method-info-update {
	margin: 10px;
}

.block-regular-purcharse-method-info-update--regular-sales-items {
	padding: 10px;
}

.block-regular-purcharse-method-info-update--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-regular-purcharse-method-info-update--current-method-title {
	font-weight: bold;
}

.block-regular-purcharse-method-info-update--current-method {
	margin: 2px 0 0 1em;
}

.block-regular-purcharse-method-info-update--change-method-title {
	margin-top: 5px;
	font-weight: bold;
}

.block-regular-purcharse-method-info-update--change-method {
	margin: 2px 0 0 1em;
}

.block-regular-purcharse-method--info-cardedit a {
	text-decoration: underline;
}

.block-regular-purcharse-method-info-update--change-method label::after {
	content: "\A";
	white-space: pre;
}

.block-regular-purcharse-method-info-update--amazonpay {
	margin: 0 10px 10px;
}

/* ----カード情報確認画面---- */
.block-credit-card-confirmation {
	margin: 0 20px 10px;
}


.block-credit-card-confirmation--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-credit-card-confirmation--credit-card-info p {
	padding: 10px 0;
}

.block-credit-card-confirmation .block-topic-path {
	margin: 10px -10px 0;
}

/* ----カード情報変更画面---- */
.block-update-credit-card-info {
	margin: 10px;
}

.block-update-credit-card-info--header {
	margin: -10px -10px 0;
}

.block-update-credit-card-info--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-update-credit-card-info--update-creditcard-header {
	margin: 0 -10px 10px;
}

.block-update-credit-card-info .block-topic-path {
	margin: 10px -10px 0;
}

.block-update-credit-card-info--security-code input[type="number"] {
	width: 90px;
}

/* --- カード情報変更 --- */
.block-customer-update--commit-btn--block-loading {
	height: 65px;
	width: 65px;
	position: absolute;
	transform: scale(0.4);
	display: inline-block;
}

/* ----お問い合わせ画面---- */
.block-inquiry,.block-inquiry-history {
	margin: 0 10px 10px;
}

.block-inquiry--customer-name {
	margin: 20px 0;
	font-weight: bold;
}

.block-inquiry--message {
	padding: 0 0 10px;
}

.block-inquiry--name .form-control input {
	margin: 0 0 5px;
}

.block-inquiry--inquiry-body textarea {
	width: 100%;
}

.block-inquiry .block-topic-path {
	margin: 10px -10px 0;
}

/* ----お問い合わせ確認画面---- */
.block-inquiry--confirmation-form .form-control {
	display: block;
	min-height: 24px;
}

/* ----お問い合わせ完了画面---- */
.block-inquiry-completed {
	margin: 10px;
}

.block-inquiry-completed--header {
	margin: -10px -10px 0;
}

.block-inquiry-completed--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

.block-inquiry-completed--message {
	padding-bottom: 10px;
}

.block-inquiry-completed .block-topic-path {
	margin: 10px -10px 0;
}

/* ----お問い合わせ履歴一覧画面---- */
.block-inquiry-history--customer-name {
	margin: 20px 0;
	font-weight: bold;
}

.block-inquiry-history--body ul {
	margin-bottom: 10px;
}

.block-inquiry-history--body li {
	border-bottom: 2px solid #444;
}

.block-inquiry-history--body li:first-child {
	border-top: 2px solid #444;
}

.block-inquiry-history--body li>span {
	display: block;
}

.block-inquiry-history--subject,
.block-inquiry-history--inquiry-id {
	padding-left: 10px;
}

.block-inquiry-history--subject a {
	text-decoration: underline;
}

.block-inquiry-history--subject a:after {
	right: 10px;
}

.block-inquiry-history .action-buttons {
	margin: 10px 0;
}

/* ----お問い合わせ履歴詳細画面---- */
.block-inquiry-history-detail--customer-name {
	font-weight: bold;
	margin: 0 10px 10px;
	font-weight: bold;
}

.block-inquiry-history-detail--subject {
	background: #f5f5f5;
	padding: 6px 10px 4px;
}

.block-inquiry-history-detail--body {
	margin: 10px;
}

.block-inquiry-history-detail--date {
	margin-left: 10px;
	margin-bottom: 10px;
	float: left;
}

.block-inquiry-history-detail--title {
	margin-bottom: 10px;
	overflow: hidden;
}

.block-inquiry-history-detail--contact-info {
	display: block;
	margin-top: 10px;
}

.block-inquiry-history-detail--id {
	margin-right: 10px;
	margin-bottom: 10px;
	float: right;
}

.block-inquiry-history-detail--contact-name {
	float: left;
}

.block-inquiry-history-detail--body {
	margin-bottom: 10px;
}

.block-inquiry-history-detail--update-dt {
	float: right;
}

.block-inquiry-history-detail--item-header {
	margin-top: 15px;
	overflow: hidden;
	border-bottom: 2px solid #444;
}

.block-inquiry-history-detail--form {
	margin-top: 10px;
	margin-bottom: 10px;
}

.block-inquiry-history-detail--item dd {
	margin-bottom: 10px;
	overflow-wrap: break-word;
}

.block-inquiry-history-detail--message {
	padding: 0 10px 10px;
}

.block-inquiry-history-detail--inquiry-body {
	margin: 10px;
}

.block-inquiry-history-detail--inquiry-body textarea {
	width: 100%;
}

.block-inquiry-history-detail--form .action-buttons {
	margin: 0 10px 0;
}

.block-inquiry-history-detail--inquiry-body-confirm {
	margin-bottom: 10px;
}

/* ----お問い合わせ履歴詳細確認画面---- */
.block-inquiry-history-detail--confirm {
	margin: 10px;
}

.block-inquiry-history-detail--message-confirm {
	padding-bottom: 10px;
}

/* スマレジ */
.block-purchase-history-detail--smaregipoint {
	clear: both;
}

/* ----フリーお問い合わせ履歴詳細確認画面---- */
.block-inquiry--confirmation-free-contact {
	display: block;
	min-height: 24px;
}

/* ----ポイント履歴一覧画面---- */
.block-point-history-list {
	margin: 10px;
}

.block-point-history-list--header {
	margin: -10px -10px 0;
}

.block-point-history-list--customer-info {
	margin-bottom: 10px;
}

.block-point-history-list--customer-name {
	margin-bottom: 10px;
	font-weight: bold;
}

.block-point-history-list--point {
	font-weight: bold;
	font-size: 18px;
}

.block-point-history-list--point-hitstory-item {
	margin-bottom: 10px;
}

.block-point-history-list--point-hitstory-item th {
	width: 35%;
	white-space: normal;
	vertical-align: middle;
}

.block-point-history-list--point-hitstory-item td {
	text-align: left;
}

.block-point-history-list--store-name td a {
	text-decoration: underline;
}

.block-point-history-list--point-purpose td a {
	text-decoration: underline;
}

.block-point-history-list .block-topic-path {
	margin: 10px 0 0;
}

/* ----所持クーポン一覧画面---- */

.block-coupon-list--table {
	margin-bottom: 10px;
}

.block-coupon-list--table th {
	vertical-align: middle;
	width: 35%;
	white-space: normal;
}

.block-coupon-list--table td {
	text-align: left;
}

.block-coupon-list .block-topic-path {
	margin: 0;
}

/* ----店舗クーポン一覧画面---- */
.block-store-coupon-list {
	margin: 10px;
}

.block-store-coupon-list--header {
	margin: -10px -10px 0;
}

.block-store-coupon-list--table {
	border: 1px solid #ccc;
	width: 100%;
	margin-bottom: 10px;
}

.block-store-coupon-list--table td {
	text-align: left;
	padding: 0 10px;
}

.block-store-coupon-list--table .block-store-coupon-list--dt {
	text-align: right;
	padding-bottom: 10px;
}

.block-store-coupon-list--table .block-store-coupon-list--name {
	padding: 10px 10px 0 10px;
	font-size: 16px;
	font-weight: bold;
}

.block-store-coupon-list--table .block-store-coupon-list--bonus {
	text-align: right;
	color: #f00;
	font-size: 300%;
}

.block-store-coupon-list--table .block-store-coupon-list--comment {
	text-align: left;
}

.block-store-coupon-list--table .block-store-coupon-list--bf-expires {
	font-weight: bold;
	text-align: center;
	background-color: #ffa500;
}

.block-store-coupon-list--table .block-store-coupon-list--af-expires {
	font-weight: bold;
	text-align: center;
	background-color: #a9a9a9;
}

.block-store-coupon-list--list a {
	text-decoration: none;
}

.block-store-coupon-list .block-topic-path {
	margin: 10px -10px 0;
}

/* ----店舗クーポン詳細画面---- */
.block-store-coupon-detail {
	margin: 10px;
}

.block-store-coupon-detail--header {
	margin: -10px -10px 0;
}

.block-store-coupon-detail--is-customer {
	padding-bottom: 10px;
	text-align: right;
}

.block-store-coupon-detail--is-customer a {
	text-decoration: underline;
}

.block-store-coupon-detail--table {
	width: 100%;
	border: 1px solid #ccc;
	margin-bottom: 10px;
}

.block-store-coupon-detail--name {
	padding: 1px 5px;
	text-align: left;
}

.block-store-coupon-detail--description {
	padding: 1px 5px;
	text-align: left;
}

.block-store-coupon-detail--bonus {
	color: #f00;
	font-size: 180%;
	padding: 1px 5px;
	text-align: left;
}

.block-store-coupon-detail--dt {
	padding: 1px 5px;
	text-align: right;
}

.block-store-coupon-detail--customer-name {
	margin: 0 10px 10px;
	padding: 5px;
	background: #f8f8f8;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.block-store-coupon-detail--barcode-number {
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 5px;
	word-break: break-all;
}

.block-store-coupon-detail--barcode-image {
	display: flex;
	justify-content: center;
	padding: 0 10px 10px;
}

.block-store-coupon-detail--barcode-image img {
	height: auto;
	width: auto;
}

.block-store-coupon-detail--coupon-code {
	margin: 0 10px 10px;
	padding: 5px;
	background: #f8f8f8;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.block-store-coupon-detail--messege {
	padding-bottom: 10px;
}

.block-store-coupon-detail--alert {
	width: 100%;
	border: 1px solid #f00;
	margin: 0 0 10px;
	padding: 10px;
	border-style: dotted;
}

/* ----会員カード画面---- */
.block-customer-card {
	margin: 10px;
}

.block-customer-card--header {
	margin: -10px -10px 0;
}

.block-customer-card--message {
	padding-bottom: 10px;
	text-align: right;
}

.block-customer-card--message a {
	text-decoration: underline;
}

.block-customer-card--card-info {
	width: 100%;
	margin-bottom: 10px;
	padding: 5px;
	background: #f8f8f8;
	border: 1px solid #ccc;
}

.block-customer-card--number {
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 5px;
	word-break: break-all;
}

.block-customer-card--barcode {
	display: flex;
	justify-content: center;
	padding-bottom: 10px;
}

.block-customer-card--barcode img {
	height: auto;
	width: auto;
}

.block-customer-card--comment {
	padding-bottom: 10px;
}

.block-customer-card--comment-2 {
	width: 100%;
	border: 1px solid #f00;
	margin: 0 0 10px;
	color: #f00;
	border-style: dotted;
	padding: 10px;
}

.block-customer-card .block-topic-path {
	margin: 10px -10px 0;
}

/* ----ログアウト画面---- */
.block-logout {
	margin: 10px;
}

.block-logout--message {
	padding: 0 0 10px;
}

.block-logout--message a {
	text-decoration: underline;
}

/* ----退会画面---- */
.block-withdrawal {
	margin: 0 10px 10px;
}

.block-withdrawal .block-topic-path {
	margin: 10px -10px 0;
}

.block-withdrawal--customer-name {
	margin: 0 0 10px;
	font-weight: bold;
}

/* ----会員ID変更画面---- */
.block-member-id {
	margin: 10px;
}

.block-member-id--update-header {
	margin: -10px -10px 0;
}

.block-member-id--customer-name {
	margin-bottom: 10px;
	font-weight: bold;
}

.block-member-id .block-topic-path {
	margin: 10px -10px 0;
}

.block-member-id--completed-message a {
	text-decoration: underline;
}

/* ----会員登録メール送信完了---- */
.block-member-terms--auth-url-mail-comp {
	margin: 10px;
}

/* ----会員登録(クイックエントリー)---- */
.block-quick-member-info {
	margin: 10px;
}

.block-quick-member-info h1 {
	margin: -10px -10px 0;
}

.block-quick-member-info--value-label {
	display: block;
	margin: 5px 0;
}

/* ----会員登録確認(クイックエントリー)---- */
.block-quick-member-info-confirmation {
	margin: 10px;
}

.block-quick-member-info-confirmation h1 {
	margin: -10px -10px 0;
}

.block-quick-member-info-confirmation--pwd {
	word-break: break-all;
}

.block-quick-member-registration-completed {
	margin: 10px;
}

.block-quick-member-registration-completed h1 {
	margin: -10px -10px 0;
}

.block-quick-info-confirmation--login-state-saving {
	margin-top: 10px;
}

.block-quick-info-confirmation--login-state-saving-message {
	margin-top: 10px;
}

/* ----メールアドレス変更画面(メールアドレス確認機能ON)---- */
.block-mail-address {
	margin: 10px;
}

.block-mail-address--update-header {
	margin: -10px -10px 0;
}

.block-mail-address--update-message {
	margin-bottom: 10px;
}

.block-mail-address--customer-name {
	margin-bottom: 10px;
	font-weight: bold;
}

.block-mail-address .block-topic-path {
	margin: 10px -10px 0;
}

/* ----メールアドレス変更確認メール送信完了画面(メールアドレス確認機能ON)---- */
.block-mail-address--update-complete {
	margin: 10px;
}

.block-mail-address--update-completed-header {
	margin: -10px -10px 0;
}

.block-mail-address--update-completed-message {
	margin-bottom: 10px;
}

.block-mail-address--update-complete-customer-name {
	margin-bottom: 10px;
	font-weight: bold;
}

.block-mail-address--update-complete .block-topic-path {
	margin: 10px -10px 0;
}

/* ----メールアドレス変更完了画面(メールアドレス確認機能ON)---- */
.block-mail-address--registration {
	margin: 10px;
}

.block-mail-address--registration-message-login a {
	text-decoration: underline;
}

.block-mail-address--registration-header {
	margin: -10px -10px 0;
}

.block-mail-address--registration .block-topic-path {
	margin: 10px -10px 0;
}

/* ----制限付きログイン画面---- */
.block-login-parts--body {
	text-align: center;
}

.block-login-parts--body a {
	margin-top: 10px;
	margin-bottom: 10px;
}

/* 生体認証端末登録画面 */
.block-member-biometric--authenticator-name {
	display: grid;
	grid-template-columns: 11fr 1fr;
	grid-template-rows: 2fr 1fr 2fr;
	column-gap: 15px;
}

.block-member-biometric--authenticator-name--btn-update {
	margin-top: 0.2rem;
	text-align: left;
	align-self: end;
	grid-column: 1 / 2;
	grid-row: 3 / -1;
}

.block-member-biometric--authenticator-name--value {
	word-break: break-all;
	overflow-wrap: break-word;
	grid-column: 1 / -1;
	grid-row: 1 / 2;
}

.block-member-biometric--authenticator-name--rgpd {
	grid-column: 1 / -1;
	grid-row: 2 / 3;
}

.block-member-biometric--authenticator-name--btn-remove {
	font-size: x-large;
	font-weight: bold;
	cursor: pointer;
	text-align: center;
	align-self: end;
	grid-column: 2 / -1;
	grid-row: 3 / -1;
}

.block-member-biometric--disable-message-none {
	display: none !important;
}

.block-member-biometric--disable-message-show {
	display: block !important;
}

.block-member-biometric--register-none {
	display: none !important;
}

.block-member-biometric--register-show {
	display: inline-block !important;
}

/* 定期次回お届け日変更 */
.block-regular-change-next-expected-dt {
    margin-bottom: 30px;
}

.block-regular-change-next-expected-dt .dispnone_ {
    display: none;
}

.block-regular-change-next-expected-dt--calendar-frame {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    list-style: none;
}

.block-regular-change-next-expected-dt--month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.block-regular-change-next-expected-dt--month-header .calendar-nav {
    min-width: 130px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    padding: 5px 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.block-regular-change-next-expected-dt--month-header .calendar-nav:hover {
    color: #ffb6c1;
}

.block-regular-change-next-expected--calendar-days-frame,
.block-regular-change-next-expected--calendar-days-frame-header {
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.block-regular-change-next-expected--calendar-days-frame {
    min-height: 80px;
}

.block-regular-change-next-expected--calendar-days-frame-header {
    min-height: 40px;
    background-color: #ffeaf7;
}

.block-regular-change-expected-dt--calendar-day--radio {
    display: none;
}

.calendar-days {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    box-sizing: border-box;
}

.calendar-days:has(input:checked) {
    border-color: #007bff;
    background-color: #ffeaf7;
    font-weight: bold;
}

.block-regular-change-next-expected-dt--current-month {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    flex: 1;
}

.block-regular-change-next-expected-dt--calendar-frame .disabled-day {
    background-color: #f2f2f2 ;
    color: #aaa;
    pointer-events: none;
    opacity: 0.6;
}
.block-regular-change-next-expected-dt--day-list {
    display: grid;
    grid-template-columns: 200px auto;
    gap: 0;
}

.block-regular-change-next-expected-dt--day-list dt,
.block-regular-change-next-expected-dt--day-list dd {
    display: flex;
    align-items: center;
    min-height: 80px;
    border: 1px solid #ccc;
}

.block-regular-change-next-expected-dt--day-list dt {
    justify-content: flex-end;
    font-weight: bold;
    padding-right: 10px;
    min-width: 200px;
    background-color: #ffeaf7;
}

.block-regular-change-next-expected-dt--day-list dd {
    justify-content: flex-start;
    padding-left: 10px;
    margin: 0;
}
.js-customer-info {
	overflow: hidden;
}
.page-menu .pane-main {
  overflow: unset;
}

/*定期契約情報*/
.block-regular-purcharse-list--alter-end,
.block-regular-purcharse-list--skip,
.block-regular-purcharse-list--alter,
.block-regular-purcharse-list--date-spec dl .block-regular-purcharse-list--alter-end{
	order: 2;
	margin: 0 0 0 auto;
	font-size: 10px;
	font-weight: bold;
	line-height: 1;
	border-radius: 2px;
	padding: 4px 8px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	max-height: 16px;
}

.page-menu .block-regular-purcharse-list--alter-end,
.page-menu .block-regular-purcharse-list--skip,
.page-menu .block-regular-purcharse-list--alter,
.page-menu .block-regular-purcharse-list--date-spec dl .block-regular-purcharse-list--alter-end{
	margin: 0 0 0 auto;
}

.block-regular-purcharse-list--detail {
	width: 306px;
	margin: 0 20px 0 0;
	padding: 20px 16px 20px;
	box-sizing: border-box;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0px 1px 20px rgba(32, 49, 105, 0.1);
}

/*定期契約情報 商品切替*/
.block-regular-purcharse-list--detail.detail-change {
	grid-column: 1 / -1;
	width: auto;
}
.block-regular-purcharse-list--detail-change {
	margin: 10px;
}

/*定期契約情報 切替予約*/
.block-regular-purcharse-list--goods-change-from {
	display: flex;
	width: 100%;
	padding: 10px;
}
.block-regular-purcharse-list--goods-change-from-image {
	padding: 5px;
}
.block-regular-purcharse-list--goods-change-from-description {
	padding: 5px;
}
.block-regular-purcharse-list--goods-change-to {
	padding: 10px;
}
.block-regular-purcharse-list--goods-change-to-title {
	color: #13216A;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
	margin-bottom: 5px;
}
.block-regular-purcharse-list--goods-change-to-item {
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 10px;
	margin: 10px 0 0 0;
	display: flex;
}
.block-regular-purcharse-list--goods-change-to-image {
	padding: 5px;
}
.block-regular-purcharse-list--goods-change-to-description {
	padding: 5px;
}

/*定期契約情報 即時変更*/
.block-regular-purcharse-list--goods-change-proposal-from {
	display: flex;
	width: 100%;
	padding: 10px;
}
.block-regular-purcharse-list--goods-change-proposal-from-image {
	padding: 5px;
}
.block-regular-purcharse-list--goods-change-proposal-from-description {
	padding: 5px;
}
.block-regular-purcharse-list--goods-change-proposal-to {
	padding: 10px;
}
.block-regular-purcharse-list--goods-change-proposal-to-title {
	color: #13216A;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
	margin-bottom: 5px;
}
.block-regular-purcharse-list--goods-change-proposal-to-item {
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 10px;
	margin: 10px 0 0 0;
	display: flex;
}
.block-regular-purcharse-list--goods-change-proposal-to-image {
	padding: 5px;
}
.block-regular-purcharse-list--goods-change-proposal-to-description {
	padding: 5px;
}

.block-regular-purcharse-list--postage {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 10px 5px 5px auto;
}
.block-regular-purcharse-list--postage-val {
	color: #13216A;
	font-weight: bold;
	font-size: 14px;
	line-height: 1;
}
.block-regular-purcharse-list--sales-link {
	width: unset;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;

}
.block-regular-purcharse-list--sales-link a{
	height: 30px;
	border-radius: 16px;
	background: #0D2D6C;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	margin: 16px 0 0 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.block-regular-purcharse-list--sales-link a:hover{
	opacity: 0.8;
}
.page-regularhistory .pager-total {
	font-size: 12px;
	text-align: left;
}
.block-regular-purcharse-list--header {
	margin: 20px 0 20px 0;
	font-size: 34px;
}
@media print, screen and (max-width: 767px) {
	.page-menu .navitopicpath_ + * h1 {
		margin-top: 56px;
	}
	main h1 {
		margin: 20px 0;
	}
	.block-regular-purcharse-list{
		margin: 20px;
	}
	.block-regular-purcharse-list--header {
		margin: 20px 20px 20px 20px;
		padding: 0;
		font-size: 28px;
	}
	.block-regular-purcharse-list .action-buttons,
	.block-regular-purcharse-list--pager-bottom,
	.block-regular-purcharse-list--pager-top,
	.block-regular-purcharse-list--customer-name {
		margin: 0 20px;
	}
	.block-regular-purcharse-list--regular-list {
		margin: 0 20px;
	}
	.page-regularhistory .block-regular-purcharse-list--list {
		flex-direction: column;
	}
	.block-regular-purcharse-list--list>dd.block-regular-purcharse-list--detail:first-of-type {
		margin-top: 20px;
	}
	.block-regular-purcharse-list--list>dd.block-regular-purcharse-list--detail {
		width: unset;
		margin: 0 20px 20px;
		box-sizing: border-box;
	}

	.block-favorite--delete-fg label + span{
		display: block;
	}
}
/*定期契約情報*/
.block-favorite--delete-fg-checkbox {
	width: max-content;
}
@media print, screen and (max-width: 767px) {
	.block-favorite--delete-fg-checkbox {
		width: unset;
	}
	.block-favorite {
		margin: 0;
		padding: 12px 0 0;
	}
	.block-favorite--header {
		margin-bottom: 32px;
	}
	.block-favorite--price-items {
		display: flex;
		flex-direction: row;
		margin: 10px 0 0 0;
	}
	.block-favorite--price.price {
		font-size: 2.0rem;
		margin: 0 0 10px;
	}
}
.block-coupon-list main {
	margin: 0 20px;
	width: unset;
}
.pane-order-contents .pane-main > div,
.pane-contents .pane-main > div {
	margin-left: 20px;
	margin-right: 20px;
}
.page-menu .pane-contents .pane-main > div {
	margin-left: 0px;
	margin-right: 0px;
}
/*定期契約情報 切替予約中*/
.block-regular-purcharse-list--transition-reserve {
	padding: 10px;
}
.block-regular-purcharse-list--transition-reserve-title {
	color: #13216A;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 10px;
	margin-bottom: 10px;
	width: fit-content;
}
.block-regular-purcharse-list--transition-reserve-item {
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 10px;
	display: flex;
}
.block-regular-purcharse-list--transition-reserve-item-image {
	padding: 5px;
}
.block-regular-purcharse-list--transition-reserve-item-description {
	padding: 5px;
}
.block-regular-purcharse-list--transition-reserve-cancel {
    margin: 5px 0 auto auto;
    text-align: right;
    flex-shrink: 0;
}

/*マイページ下部*/
.block-cms-menber-limit{
	margin: 0 0 80px;
	padding: 0 0 80px;
	border-bottom: 1px solid rgba(19, 33, 106, 0.1);
}
.block-member-limit-content{
	margin-top: 24px;
}
ul.block-maypage-content__lists{
	padding: 5px 10px 10px;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: nowrap;
}
.page-menu #block-mypage--info .block-maypage-content{
	padding-right: 0;
}
ul.block-maypage-content__lists::-webkit-scrollbar {
  height: 6px;
}
ul.block-maypage-content__lists::-webkit-scrollbar-button {
  display: none;
}
ul.block-maypage-content__lists::-webkit-scrollbar-track {
  background: transparent;
}
ul.block-maypage-content__lists::-webkit-scrollbar-thumb {
  background: rgba(16, 56, 79, 0.1);
  border-radius: 999px;
}
.maypage-content__item{
	width: calc(285 / 960 * 100%);
	min-width: 285px;
}
.item-card{
	width: 100%;
	height: 100%;
	padding: 20px 20px 24px;
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	box-shadow: 0px 0px 15px rgba(63, 84, 154, 0.1);
}
.item-card__image{
	width: 100%;
	aspect-ratio: 1 / 1;
}
.item-card__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.item-card__detail{
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.item-card__title{
	color: #13216A;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.02em;
	border-bottom: none;
}
.item-card__text{
	margin-top: 14px;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.02em;
	flex-grow: 1;
}
.block-cms-otherinfo{
	margin-top: 52px;
}
.block-cms-otherinfo li a{
	color: #13216A;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
}
.block-cms-menber-limit h2{
	background: url(../../img/usr/mypage/member_b.png) 5px center no-repeat;
}

.maypage-content__item .item-card{
	height: 100%;
}


@media print, screen and (max-width: 767px) {
	.block-favorite--delete-fg-checkbox {
		width: unset;
	}
	.block-favorite--header {
		margin-bottom: 32px;
	}
	.block-favorite--price-items {
		display: flex;
		flex-direction: column;
		margin: 10px 0 0 0;
		text-align: left;
	}
	.block-favorite--price-title {
		display: block;
		line-height: 1;
	}
	.block-favorite--price.price {
		font-size: 2.0rem;
		margin: 8px 0 0;
		display: block;
	}
	.block-favorite--default-price.default-price{
		flex-basis: unset;
	}
	.block-coupon-list main {
		margin: 0 20px;
		width: unset;
	}
	.pane-order-contents .pane-main > div,
	.pane-contents .pane-main > div {
		margin-left: 20px;
		margin-right: 20px;
	}
	.page-menu .pane-contents .pane-main > div {
		margin-left: 0px;
		margin-right: 0px;
	}
	.page-regularhistory .pane-contents .pane-main > div.block-topic-path {
		margin-left: 0;
		margin-right: 0;
	}
	.block-mypage--info{
		margin: 0 20px 80px
	}
	.block-maypage-content{
		margin-top: 24px;
	}
	.block-cms-menber-limit{
		margin: 0 20px 80px;
	}
}