/* ========================================== */
/* base */
/* ========================================== */

body {
	font-family:'M PLUS Rounded 1c',"メイリオ",Meiryo,"HiraKakuProN-W3","ヒラギノ角ゴ ProN W3",sans-serif;
	line-height:1.8;
	color: var(--default);
	font-size:14px;
}

ul {
	padding:0px;
	margin:0;
	list-style:none;
}

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

dt {
	font-weight:normal;
}

a {
	text-decoration:none;
	word-wrap:break-word;
	word-break: break-all;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	color: var(--default);
	transform: rotate(0.03deg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a:hover {
	text-decoration:none;
	color: inherit;
	opacity: 0.8;
}

a:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

input[type="text"],input[type="password"],input[type="email"],textarea,select{ 
	font-family: inherit;
	font-size:1em !important;
	font-weight:inherit;
/*    -webkit-appearance: none;*/
}

.container {
	max-width: 1200px;
}

dl,dd,p {
	margin:0;
	padding:0;
	transform: rotate(0.03deg);
}

/* color-list */
:root {
  --main: #AC8E90;
  --accent: #9F9229;
  --default: #363636;
}


/* ========================================== */
/* フォント */
/* ========================================== */


.font-base {
	font-family:'M PLUS Rounded 1c',"メイリオ",Meiryo,"HiraKakuProN-W3","ヒラギノ角ゴ ProN W3",sans-serif;
}

.font-accent {
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color:var(--main);
	font-weight: 800;
}

.font-xs {
	font-size: 11px;
	line-height: 1.4rem;
}

a {
	-webkit-transition:.3s ease;
	transition:.3s ease;
}

a:hover {
	text-decoration:none;
}


/* ========================================== */
/* ヘッダー */
/* ========================================== */

header {
	box-shadow: 0 3px 6px rgba(0,0,0,0.06);
	background-color: #fff;
}

header .brand-logo img {
	width: 300px;
}

header.navbar .navbar-brand a {
	font-size: 22px;
	font-weight: 800;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.3;
	/*text-shadow: 3px 3px 3px #FBF9F6, -3px -3px 3px #FBF9F6,
  -3px 3px 3px #FBF9F6,  3px -3px 3px #FBF9F6,
  3px 0 3px #FBF9F6, -3px  0 3px #FBF9F6,
  0 3px 3px #FBF9F6,  0 -3px 3px #FBF9F6;*/
}

header.navbar .navbar-brand a span {
	display: block;
	font-size: 13px;
}

header a,
a:not([href]):not([tabindex]) {
	color: var(--main);
	font-size: 20px;
	font-weight: 800;
	text-decoration:none;
	cursor: pointer;
}

header a:hover,
header a:not([href]):not([tabindex]):hover {
	color: var(--main);
	cursor: pointer;
}

header .btn {
	min-width:100px;
}

header .nav-link {
	border-bottom:none;
	padding: 0 16px!important;
}

header .nav-link:hover {
	border-bottom:none;
}

#fanclub_btn {
	background: var(--accent);
	height: 65px;
	color: #fff;
	padding: 15px 24px 0!important;
	border-radius: 0 30px 30px 0;
}

.fc-menu {
	position: fixed;
	top: 0;
	right: -1060px;
	width: 960px;
	height: 100dvh;
	background-color: rgba(255,255,255,0.8);
	transition: all .5s;
	overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.fc-menu.active {
	right: 0px;
}

.menu-container {
	max-width: 440px;
	margin: 32px auto 0;
}

.menu-logo {
	max-width: 440px;
	margin: 0 auto 45px;
}

.menu-logo img {
	width: 100%;
}

.menu-content {
	padding: 45px 30px;
	border: 3px solid var(--main);
	border-radius: 16px;
	background-color: #FFF3F3;
}

.btn-area {
	display: flex;
	gap: 24px;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}

.btn-area > .btn {
	background-color: var(--main);
	padding: 18px;
	border: 1px solid var(--main);
	border-radius: 9999px;
	width: 180px;
	height: 60px;
	letter-spacing: 1px;
	font-size: 16px;
	font-weight: 800;
	color: #fff;
}

.menu-area {
	display: flex;
	flex-wrap: wrap;
	max-width: 295px;
	margin: 0 auto;
	gap: 16px;
}

.menu {
	min-width: 86px;
}

.menu .menu-icon {
	background-color: #fff;
	padding: 15px;
	border: 2px solid var(--main);
	border-radius: 9999px;
	width: 86px;
	height: 86px;
}

.menu .menu-icon img {
	display: block;
	width: 100%;
	height: 100%;
}

.menu > p {
	font-size: 16px;
	font-weight: 800;
	color: var(--default);
	text-align: center;
}

header .close-btn {
	position: relative;
	width: 40px;
	height: 40px;
	margin: 20px 32px 0 auto;
	cursor: pointer;
}

header .close-btn span {
	display: block;
	background-color: var(--default);
	width: 20px;
	height: 3px;
	cursor: pointer;
}

header .close-btn span:nth-child(1) {
	transform: rotate(45deg);
	position: absolute;
	top: 19px;
	left: 10px;
}

header .close-btn span:nth-child(2) {
	transform: rotate(-45deg);
	position: absolute;
	top: 19px;
	right: 10px;
}


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

	header.navbar .navbar-brand {
    margin-bottom: 0;
	}
	
	header .btn {
		min-width:80px;
		font-size:90%;
	}

	header.navbar {
		padding:0;

	}

	.navbar-toggler-custom-icon {
		height:25px;
	}

}



@media screen and (min-width: 992px) {

	header {
		height: 65px;
		width: 98%;
		max-width: 1200px;
		margin: 24px auto 0;
		border-radius: 30px;
		padding: .5rem 0 .5rem 1rem!important;
	}

	header.top_header {
		box-shadow: 0 3px 6px rgba(0,0,0,0.06);
	}

	header.navbar .navbar-brand {
    margin-bottom: .1rem;
	}

	header .navbar-expand-lg .navbar-nav .nav-link {
		padding: 0 16px;
	}
	
	header .header_nav {
		color:#333;
		text-decoration:none;
		padding:0 0 1px !important;
		margin:0 .5rem;
		position:relative;
		-webkit-transition:.3s ease;
		transition:.3s ease;
	}

	header .header_nav:hover {
		opacity:0.8;
		text-decoration:none;
	}

	header .header_nav::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 1px;
		-webkit-transform: scaleX(0);
		-ms-transform: scaleX(0);
		transform: scaleX(0);
		background-color: #333;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}

	header .header_nav:hover::after {
		-webkit-transform: scaleX(1);
		-ms-transform: scaleX(1);
		transform: scaleX(1);
	}

}

.nav-open-btn {
	display: none;
	position: fixed;
	left: 50%;
	bottom: 15px;
	transform: translateX(-50%);
	width: 65px;
	height: 38px;
	z-index: 100;
	box-shadow: 0 3px 3px rgba(0, 0, 0, .25);
	background-color: #A97D80;
	padding: 8px;
	border-radius: 9999px;
}

.nav-open-btn img {
	display: block;
	width: 45px;
	margin: 5px auto;
}

.nav-open-btn .close {
	display: none;
}

.nav-sp {
	display: none;
	position: fixed;
	bottom: -1000px;
	width: 100%;
	border-top: 1px solid var(--default);
	background-color: #FFF3F3;
	transition: all .5s;
}

.nav-sp.active {
	bottom: 0;
}

.nav-sp-tab {
	display: flex;
	width: 100%;
	border-bottom: 1px solid var(--default);
}

.nav-sp-tab > a {
	display: block;
	position: relative;
	width: 100%;
	padding: 16px 0;
	background-color: var(--main);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: -1px;
	color: #fff;
	text-align: center;
}

.nav-sp-tab > a:after {
	content: "";
	display: block;
	position: absolute;
	width: 1px;
	height: 100%;
	max-height: 55px;
	background: var(--default);
	top: 0;
	bottom: 0;
	right: 1px;
	margin: auto;
}

.nav-sp-tab > a:last-child:after {
	display: none;
}

.nav-sp-content {
	padding: 16px 20px 0;
	border-bottom: 1px solid var(--default);
}

.nav-sp-menus {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 36px;
	max-width: 290px;
	margin: 0 auto 24px;
}

.nav-sp-menu {
	width: 70px;
}

.nav-sp-icon {
	background-color: #fff;
	padding: 12px 15px 15px;
	border: 2px solid #A97D80;
	border-radius: 9999px;
	margin-bottom: 4px;
	max-width: 70px;
	max-height: 70px;
}

.nav-sp-icon img {
	width: 100%;
}

.nav-sp-menu > p {
	font-size: 12px;
	font-weight: 800;
	text-align: center;
	color: var(--default);
}

.nav-sp-btnarea {
	display: flex;
	gap: 16px;
	justify-content: space-between;
	align-items: center;
	max-width: 255px;
	margin: 25px auto 62px;
}

.nav-sp-btnarea > .btn {
	background-color: #A97D80;
	border: 1px solid #A97D80;
	border-radius: 9999px;
	width: 120px;
	height: 30px;
	font-size: 14px;
	font-weight: 800;
	color: #fff;
}

@media screen and (max-width: 991px) {
	.nav-open-btn,
	.nav-sp {
		display: block;
	}

	.nav-open-btn .close { 
		opacity: 1;
		width: 20px;
		float: none;
		margin: 2px auto;
	}

	.fc-menu {
		display: none;
	}
}

/* ========================================== */
/* CONTENTS */
/* ========================================== */

.container h2 {
	margin:50px auto;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	color:#ac8e90;
}


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

	.container h2 {
		font-size:26px;
		margin: 16px auto;
	}

}


/* ========================================== */
/* フッター */
/* ========================================== */

footer {
	margin-top: 360px;
	background: #F6F7F7;
	padding: 0 0 64px;
	position: relative;
}

footer:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 424px;
	top: -240px;
	left: 0;
	background: url(../../images/ft-bg.png) repeat-x center / 1920px;
}

footer .footer-about .logo {
  max-width: 460px;
}

footer .footer-about .sns {
	width: 100%;
	max-width: 360px;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: auto;
}

footer .footer-about .sns li {
	width: 100%;
	height: 100%;
	max-width: 76px;
	max-height: 75px;
}

footer .footer-about .sns li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	color: var(--default);
}

footer .footer-about .sns li img {
	display: block;
	width: 50px;
}

footer .footer-about .sns li a span {
  font-size: 14px;
  text-align: center;
}

footer .footer-about .sns li:first-child img {
	width: 50px;
	height: 50px;
	border-radius: 9999px;
	border: 1px solid var(--default);
	padding: 8px;
}

footer .footer-navigation p {
	font-size: 32px;
	color: var(--default);
}

footer .footer-navigation ul {
	margin-bottom: 20px;
}

footer .footer-navigation ul li {
	font-size: 22px;
}

footer .footer-navigation ul li a {
	color: var(--default);
}

footer .footer-navigation ul li:before {
  content: "-";
  margin-right: 10px;
}

footer hr {
	display: none;
}

footer ul.infolink {
	display: flex;
	justify-content: center;
	gap: 16px;
	transform: rotate(0.03deg);
}

footer li a {
	color: var(--default);
	font-size: 16px;
}

footer li a:hover {
	color: var(--default);
	opacity: 0.8;
}

footer .copy {
	font-size: 14px;
	text-align: center;
}

@media screen and (max-width: 991px) {
	footer .footer-about .logo {
    max-width: 345px;
    margin-top: 50px;
	}

	footer hr {
		display: block;
		width: 95%;
		background: rgba(54, 54, 54, 0.5);
	}

	footer ul.infolink {
		flex-direction: column;
	}
}

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

	footer {
		margin-top: 120px;
	}

	footer:before {
		height: 83px;
		background-size: auto 83px;
		top: -70px;
	}

	footer .footer-navigation ul li {
		font-size: 16px;
	}

}

/* ========================================== */
/* 共通カラー */
/* ========================================== */
/* ベースカラー */
/* 背景 */
.bg-base {
	/* サイト全体の背景色 */
	background: linear-gradient(325deg,rgba(251, 249, 246, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(251, 249, 246, 1) 100%);
}
.bg-toggle {
	/* サイト全体の背景色 */
	background-color: #333;
}

/* メインカラー */
/* 背景 */
.bg-main {
	/* 主にヘッダの背景色 */
	background-color: #212121;
}
/* サブカラー */
.bg-sub {
	/* 主にフッタの背景色 */
	background-color: #F0F0F0;
}
/* アクセントカラー */
/* 任意でUIパーツの色を増やしたいときに定義を増やす */
.bg-accent-light-gray {
	background-color: #f8f8f8;
}
.bg-accent-light-red {
	background-color: #efdfdf;
}

.post-item a{
	color: inherit;
}
.post-item a:hover{
	color: inherit;
}

a, .btn-link{
	color: #ac8e90;
}

a:hover,  .btn-link:hover{
	color: #cdc3c3;
}

/* テキスト */
.text-base {
	color: #fff;
}
.text-main {
	color: #333;
}
.text-accent-light-gray {
	color: #c0c0c0;
}
.red {color:#FF0004;}

/* ========================================== */
/* UIパーツ別 */
/* ========================================== */
/* ボタン */
.btn {
	border-radius: 2rem;
}
.btn-main {
	color: #fff !important;
	background-color: #ac8e90;
	border-color: #ac8e90;
}
@media screen and (min-width: 768px) {
	.btn-main {
		color: #333 !important;
		background-color: transparent;
		background-image: none;
		border-color: #333;
	}
}
.btn-main:hover {
	color: #fff !important;
	background-color: #ac8e90;
	border-color: ##ac8e90;
}

.navbar .btn-outline-dark:hover,
.navbar .btn-outline-dark:active {
	color: #fff;
	border-color: ##ac8e90!important;
	background-color: #ac8e90!important;
}

a.btn {
	text-decoration:none;
}


/* アラート */
.alert-main {
	color: #856404;
	background-color: #fff3cd;
	border-color: #ffeeba;
}
.alert-registration-mail.alert,
.alert-mypage-change-email.alert {
	border: none;
}
.alert-registration-mail.alert .alert-heading,
.alert-mypage-change-email.alert .alert-heading {
	color: #ff0000;
}
.alert-registration-mail.alert .alert-body,
.alert-mypage-change-email.alert .alert-body {
	color: #565656;
}

/* バッジ（ラベル） */
.badge-history-status.badge {
	font-size: 100%;
	font-weight: normal;
	padding: .5em 1em;
}
.badge-history-status.badge-secondary {
	color: #343a40;
	background-color: #e9ecef;
}

/* ========================================== */
/* 画面別 */
/* ========================================== */


/* マイページ履歴 */
@media screen and (min-width: 768px) {
	.row-history-left {
		border-right: 1px solid rgba(0,0,0,.1);
	}
}


/*--------------------
  MYPAGE
--------------------*/
@media screen and (min-width: 768px) {
	.row-history-left {
		border-right: 1px solid rgba(0,0,0,.1);
	}
}

.mypage-plan-contract-footer {
	display: none;
}

.uploaded-photo-status-label, .shipping-history-status-label, .ec-history-status-label, .ticket-history-status-label, .ticket-history-ticket-status-label {
	border-radius: 2rem;
	padding: 6px 1em;
}

/*membership-card*/

.membership-card-image .membership-card-image-on-member-number {
	right: 3%;
	bottom: 3%;
	color:#5f6368;
	font-size: 16px;
}

@media screen and (max-width: 575px) {
	.membership-card-image .membership-card-image-on-member-number {
		font-size: 4vw;
	}
}

/*------------------------
 pagination上余白
------------------------*/
ul.pagination {
	margin-top: 80px;
	flex-wrap: wrap;
}

/* color */
.page-item.disabled .page-link {
	color: #BDBDBD;
	pointer-events: none;
	cursor: auto;
	background-color: rgba(255,255,255,0);
	border-color: #BDBDBD;
}

.page-link {
	color: #BDBDBD;
	border: 1px solid #BDBDBD;
}

.page-link:hover {
	color: #ac8e90;
	background-color: #e9ecef;
	border-color: #BDBDBD;
}

ul.pagination .page-item.active .page-link {
	background-color: #ac8e90;
	border-color: #ac8e90;
}

.page-link:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*--------------------------------
 form 内容確認ページ
--------------------------------*/
form dd{
	margin-bottom:1rem;
}
form dt label{
	font-weight: 700;
}

/*--------------------
  STORE TAG
--------------------*/
#store .store_tag ul{
	text-align: left!important;
	display: inline;
}

#store .store_tag ul li{
	padding: 0!important;
	margin-left: 1em;
}