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

/* CSS Variables */
:root {
	/* Black-based Color Scheme */
	--color-bg: #000000;
	--color-bg-secondary: #0a0a0a;
	--color-bg-tertiary: #111111;
	--color-bg-card: #0d0d0d;
	
	/* Accent Colors */
	--color-cyan: #00d4ff;
	--color-magenta: #ff00ff;
	--color-green: #00ff88;
	--color-gold: #ffd700;
	
	/* Text Colors */
	--color-text: #ffffff;
	--color-text-secondary: #e0e0e0;
	--color-text-muted: #999999;
	--color-text-dim: #666666;
	
	/* Gradients */
	--gradient-main: linear-gradient(135deg, #00d4ff 0%, #ff00ff 50%, #00ff88 100%);
	--gradient-accent: linear-gradient(90deg, #00d4ff, #ff00ff);
	--gradient-card: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
	
	/* Typography */
	--font-primary: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-display: 'Montserrat', sans-serif;
	
	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 3rem;
	--spacing-xl: 5rem;
	--spacing-xxl: 8rem;
	
	/* Border Radius */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 50px;
	
	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-base: 0.3s ease;
	--transition-slow: 0.5s ease;
}

body {
	font-family: var(--font-primary);
	line-height: 1.8;
	color: var(--color-text);
	background: var(--color-bg);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

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

dt {
	font-weight:normal;
}

a {
	word-wrap:break-word;
	word-break: break-all;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
	text-decoration:none;
}
 
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;
}

dl,dd,p {
	margin:0;
	padding:0;
}

img {
	max-width: 100%;
	height: auto;
}



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

.font-base {
	font-family: var(--font-primary);
}

.font-accent {
  font-family: 'Abel', sans-serif;
}

.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.16);
}

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


header a {
	color: #f8f9fa;
	text-decoration:none;
}

header a:hover {
	color: #f8f9fa;
}

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

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

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

@media screen and (max-width: 990px) {
	
header .btn {
	min-width:80px;
	font-size:90%;
}

header.navbar {
	padding:0;

}

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

}



@media screen and (min-width: 991px) {
	
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);
}

}




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

.container h2 {

}


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

.container h2 {

}

}


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

footer {
	padding:32px 0;
	border-top:solid 1px #C9C9C9;
}

footer ul {
	margin-bottom:32px;
}

footer li {
	display:inline-block;
	margin-right:32px;
}

footer li a {
	color:#5F6368;
}

footer li a:hover {
	opacity:0.4;
	color:#5F6368;
}

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

footer li {
	display:inline-block;
	margin-right:18px;
}
	
}

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

footer li {
	display:block;
	margin:0 0 16px;
}
	
}

footer .copy {
font-size: 12px;
}






/* ========================================== */
/* 共通カラー */
/* ========================================== */
/* ベースカラー */
/* 背景 */
.bg-base {
  /* サイト全体の背景色 */
  background-color: #fff;
}
.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;
}

/* テキスト */
.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: #333;
  border-color: #333;
}
@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: #333;
  border-color: #333;
}

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: #808080;
}

/* バッジ（ラベル） */
.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:#fff;
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;
}

/*--------------------------------
 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;
}

/*--------------------
  FORMS CSS
--------------------*/

.forms-title {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.8rem, 5vw, 2.5rem);
	font-weight: 800;
	background: var(--gradient-main);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: 2px;
	margin-bottom: 8px;
}

.forms-contents {
	background: var(--color-bg-card);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	padding: 30px;
	width: 100%;
	max-width: 760px;
	margin: 2.5rem auto 0;
}

.col-md-9 {
	max-width: 100%;
	flex: 0 0 100%;
}

.form-group {
	flex-direction: column;
}

.col-lg-3 {
	flex: 0 0 100%;
	max-width: 100%;
}

.col-lg-9 {
	flex: 0 0 100%;
	max-width: 100%;
}

/* リード文エリアCSS */
.forms-read-area {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
}

.form-section {
	background: var(--color-bg-card);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-lg);
	padding: 30px;
	margin-bottom: 24px;
}

.section-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.pipa-consent-section {
	border: 2px solid rgba(0, 212, 255, 0.3);
}

.pipa-notice {
	padding: 24px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 0, 128, 0.05));
	border: 1px solid rgba(0, 212, 255, 0.2);
	border-radius: var(--radius-md);
	margin-bottom: 24px;
	font-size: 0.95rem;
	line-height: 1.9;
	color: var(--color-text-secondary);
}

.pipa-item {
	padding: 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-md);
}

.pipa-item-title {
	font-weight: 600;
  color: var(--color-cyan);
}

.pipa-rights {
	border-color: rgba(255, 193, 7, 0.3);
  background: rgba(255, 193, 7, 0.05);
}

.pipa-rights .pipa-item-title {
	color: #ffc107;
}

.pipa-contact {
	border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.05);
}

.contact-email a {
	color: var(--color-cyan);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-email a:hover {
	color: var(--color-magenta);
}

.media-notice {
	background: rgba(0, 212, 255, 0.08);
	border: 1px solid rgba(0, 212, 255, 0.2);
	border-radius: var(--radius-md);
	padding: 20px;
	margin-bottom: 24px;
}

.upload-requirements {
	background: rgba(255, 193, 7, 0.08);
	border: 1px solid rgba(255, 193, 7, 0.25);
	border-radius: var(--radius-md);
	padding: 20px 24px;
	margin-bottom: 24px;
}

.security-notice {
	background: rgba(239, 68, 68, 0.08);
	border: 1px solid rgba(239, 68, 68, 0.25);
	border-radius: var(--radius-md);
	padding: 20px 24px;
	margin-bottom: 24px;
}

.sharing-guide {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	padding: 20px 24px;
	margin-top: 24px;
}

.forms-contents .btn-main {
	background: var(--gradient-accent);
	color: #fff!important;
	box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
	font-weight: 700;
}

.forms-contents .btn-main:hover{
	transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* responsiv */
@media screen and (max-width: 768px) {

	.forms-title {
		font-size: 1.5rem;
	}

	.forms-contents {
    padding: 16px;
	}

	.form-section {
		padding: 20px 16px;
	}

	.section-title {
		font-size: 1rem;
	}

	.pipa-notice {
		padding: 18px;
		font-size: 0.9rem;
	}

	.pipa-item {
		padding: 16px;
		font-size: 0.9rem;
	}

	.media-notice,
	.upload-requirements,
	.security-notice,
	.sharing-guide {
		font-size: 0.9rem;
		line-height: 1.7;
		padding: 16px;
	}

}