@charset "utf-8";

/* ---------------------------------------------------
・このCSSはPCとSPの表示比率を合わせています。
・サイズの単位は原則remにしてください。1rem = 1vw換算です。
・rootセレクタ内で、色やサイズの設定を指定してください。
---------------------------------------------------- */
/* BASE
------------------------- */
:root {
	/* テキストカラー */
	--mainTxtColor: #111111;
	/* 2つの値の大きい方が指定される (横幅)*/
	--contentWidth: max(500px, 20vw);
	--white: #ffffff;
	--black: #111111;
	--blue: #192f6f;
	--blue2: #1940b5;
	--green: #023f00;
	--green2: #067d02;
	--red: #90000c;
	--red2: #e00d1f;
	--yellow: #ddb136;
	--gray: #666666;
	--gray2: #cfcccc;
	--gray3: #f9f9f9;
	--notcieGray: #8a8a8a;

	--gold: #fde9b4;
	--gold2: #a8892c;
	--gold3: #c0a047;
	--gold4: #7f6002;
}

a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none;
	color: var(--gray);
}

html {
	font-size: min(1vw, calc(var(--contentWidth) / 100));
	overflow-x: hidden;
}

body {
	background-image: url("../img/bg.jpg");
	background-size: cover;
	background-repeat: repeat;
	background-position: top center;
	background-attachment: fixed;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-size: 4.2rem;
	line-height: 1.5;
	color: var(--mainTxtColor);
	margin: 0;
}

* {
	box-sizing: border-box;
}

img {
	width: 100%;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: underline;
	color: revert;
}

#contents {
	background: #fff;
	max-width: var(--contentWidth);
	margin-inline: auto;
	box-shadow: 0 0 20rem 0 rgba(87, 87, 87, 0.3);
	position: relative;
}

.img_left {
	float: left;
	margin-right: 5rem;
	margin-bottom: 5rem;
	width: 30%;
}

.wd_50 {
	width: 50%;
}

.wd_70 {
	width: 70%;
}

.l-header-info {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: calc(50% - 250px);
	display: grid;
	place-content: center stretch;
}

.l-header-logo {
	width: 50%;
	margin: 0 auto;
}

.r {
	color: var(--red);
}

.y {
	color: var(--yellow);
}

.y2 {
	color: var(--gold);
}

.blue {
	color: var(--blue);
}

.g {
	color: var(--green);
}

.wht {
	color: var(--white);
}

.grad_blk_rd {
	background: linear-gradient(90deg, var(--black), var(--red));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.grad_blk_rd2 {
	background: linear-gradient(0deg, var(--black), var(--red));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.grad_gold {
	background: linear-gradient(to right, var(--gold) 0%, var(--gold2) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.grad_gold2 {
	background: linear-gradient(to right, var(--gold3) 0%, var(--gold4) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


.grad_gold3 {
	background: linear-gradient(90deg, var(--gold), var(--white), var(--gold));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


.grad_rd {
	background: linear-gradient(90deg, var(--red), var(--red2), var(--red));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.grad_bl {
	background: linear-gradient(90deg, var(--blue), var(--blue2), var(--blue));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.grad_g {
	background: linear-gradient(90deg, var(--green), var(--green2), var(--green));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}


.b {
	font-weight: bold;
}

.b600 {
	font-weight: 600;
}

.b700 {
	font-weight: 700;
}

.b900 {
	font-weight: 900;
}

.u {
	text-decoration: underline;
}

.italic {
	font-style: italic;
}

.bg_wht {
	background: #fff;
}

.bg_blk {
	background: var(--black);
}

.bg_blk2 {
	background: #000;
}

.bg_or {
	background: var(--mainColor);
}

.bg_y2 {
	background: #fff8e2;
}

.bg_gry {
	background: #eee;
}

.bg_r {
	background: var(--red);
}

.bg_blue {
	background: var(--blue);
}

.bg_g {
	background: var(--green);
}

.bg_grad_gold {
	background: linear-gradient(to right, var(--gold) 0%, var(--gold2) 100%);
}

.bg_grad_gold2 {
	background: linear-gradient(90deg, var(--gold4), var(--gold3), var(--gold4));
}

.bg_grad_blk {
	background: linear-gradient(90deg, #000, #333, #000);
}

.bg_grad_g {
	background: linear-gradient(90deg, var(--green), var(--green2), var(--green));
}

.bg_grad_g {
	background: linear-gradient(90deg, var(--red), var(--red2), var(--red));
}

.shadow_r {
	filter: drop-shadow(0 0 1.5rem rgba(255, 0, 38, 0.2));
}

.shadow_or {
	filter: drop-shadow(0 0 1.5rem rgba(255, 187, 0, 0.3));
}

.shadow_wh {
	filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.8));
}

.shadow {
	filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.1));
}

/* ----------------------
font-size
---------------------- */
.font40 {
	font-size: 40%;
}

.font50 {
	font-size: 50%;
}

.font60 {
	font-size: 60%;
}

.font65 {
	font-size: 65%;
}

.font70 {
	font-size: 70%;
}

.font80 {
	font-size: 80%;
}

.font85 {
	font-size: 85%;
}

.font90 {
	font-size: 90%;
}

.font95 {
	font-size: 95%;
}

.font110 {
	font-size: 110%;
}

.font115 {
	font-size: 115%;
}

.font120 {
	font-size: 120%;
}

.font125 {
	font-size: 125%;
}

.font130 {
	font-size: 130%;
}

.font140 {
	font-size: 140%;
}

.font145 {
	font-size: 145%;
}

.font150 {
	font-size: 150%;
}

.font160 {
	font-size: 160%;
}

.font170 {
	font-size: 170%;
}

.font180 {
	font-size: 180%;
}

.font190 {
	font-size: 190%;
}

.font200 {
	font-size: 200%;
}

.font250 {
	font-size: 250%;
}

.font270 {
	font-size: 270%;
}

/* line-height */
.lh_11 {
	line-height: 1.1;
}

.lh_12 {
	line-height: 1.2;
}

.lh_13 {
	line-height: 1.3;
}

.lh_14 {
	line-height: 1.4;
}

.lh_17 {
	line-height: 1.7;
}

/* text-align */
.txt_c {
	text-align: center;
}

.txt_r {
	text-align: right;
}

.txt_l {
	text-align: left;
}

.bottom {
	margin-bottom: 1rem;
}

.bottomx2 {
	margin-bottom: 2rem;
}

.bottomx3 {
	margin-bottom: 3rem;
}

.bottomx4 {
	margin-bottom: 4rem;
}

.bottomx5 {
	margin-bottom: 5rem;
}

.bottomx6 {
	margin-bottom: 6rem;
}

.bottomx7 {
	margin-bottom: 7rem;
}

.bottomx8 {
	margin-bottom: 8rem;
}

.bottomx9 {
	margin-bottom: 9rem;
}

.bottomx10 {
	margin-bottom: 10rem;
}

.bottomx11 {
	margin-bottom: 11rem;
}

.bottomx12 {
	margin-bottom: 12rem;
}

.bottomx15 {
	margin-bottom: 15rem;
}

.bottomx20 {
	margin-bottom: 20rem;
}

.mark_y {
	background: linear-gradient(transparent 50%, #fffcbd 50%);
}

.mark_r {
	font-weight: bold;
	background: var(--red);
	color: #fff;
	padding: 1rem 2rem 1.8rem;
	display: inline-block;
	line-height: 1;
}

.mark_bk {
	background: linear-gradient(transparent 70%, #111 70%);
	padding: 1rem 2rem 1.8rem;
	display: inline-block;
	line-height: 1;
}

.mark_bl {
	background: linear-gradient(transparent 70%, #1a4385 70%);
	padding: 1rem 2rem 1.8rem;
	display: inline-block;
	line-height: 1;
}

.mark_gold {
	color: #093a44;
	display: inline-block;
	padding: 0 1rem;
	margin: 0 0.5rem;
	line-height: 1.4;
	background-image: linear-gradient(315deg, #dcbd37 0%, #ffeeb3 74%);
}

.mark_st {
	background-image: repeating-linear-gradient(-45deg, #f0ea6c 0, #fffcbd 3px, transparent 3px, transparent 6px);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% 20%;
}

.stripe-marker {
	background-image: repeating-linear-gradient(-45deg, var(--yellow) 0, var(--yellow) 2px, transparent 2px, transparent 4px);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% 0.5em;
}

.arrow {
	display: inline-block;
	border-style: solid;
	border-width: 30px 25px 0 25px;
	border-color: var(--red) transparent transparent transparent;
	margin: 3rem auto;
}

.arrow2 {
	width: 1.4em;
	height: 1.4em;
	border: 4px solid;
	border-color: transparent transparent var(--red) var(--red);
	transform: rotate(-45deg);
	margin: 0rem auto 5rem;
	position: relative;
	animation: move-y 1s infinite alternate ease-in-out;
}

@keyframes move-y {
	from {
		top: 0;
	}

	to {
		top: 15px;
	}
}

.arrow.r {
	border-color: var(--red) transparent transparent transparent;
}

.arrow.wht {
	border-color: var(--white) transparent transparent transparent;
}

.arrow.r {
	border-color: var(--red) transparent transparent transparent;
}

.flex {
	display: flex;
}

.grid {
	display: grid;
}

.box {
	padding: 4rem 3rem;
}

/* 注釈 */
.notice {
	padding-top: 3rem;
	font-size: 2.4rem;
	color: #989898;
	letter-spacing: 1px;
	position: relative;
}

.notice.wht {
	color: var(--white);
}

.notice.blk {
	color: #444;
}

.notice li {
	position: relative;
	padding-left: 3rem;
	display: inline-block;
}

.notice li::before {
	content: "※";
	position: absolute;
	left: 0;
}

.serif {
	font-family: 'Noto Serif JP', "serif";
	letter-spacing: -0.5px;
}

/*--------prihead--------*/
#scheader {
	overflow: hidden;
	z-index: 100;
	position: fixed;
	top: 0;
	width: var(--contentWidth);
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	background: linear-gradient(90deg, var(--red), var(--red2));
	color: #fff;
	padding: 2rem 0;
	line-height: 1;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 480px) {
	#scheader {
		width: 100%;
		padding: 3rem 0;
	}
}

#scheader .countdown {
	margin: 0 auto;
	padding: 0 0 0 calc(3rem + 80px);
	text-align: center;
	line-height: 1.2;
	font-size: 3rem;
	font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif, monospace;
}

.timer_num {
	display: inline-block;
	padding: 0 .4rem;
	margin: 0 .4rem;
	border-radius: 3px;
	color: var(--black);
	font-size: 150%;
	background: #fff;
}

/*=============================
#menu
=============================*/
@keyframes fadeIn {
	0% {
		top: -45%;
		opacity: 0;
	}

	100% {
		top: 0;
		opacity: 1;
	}
}

.back_menu {
	z-index: 9999;
	width: auto;
	min-width: 70px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	user-select: none;
	background-color: #333;
	transition: all 0.3s;
}

.back_menu a {
	font-size: clamp(11px, 3rem, 2.5rem);
	line-height: 1.2;
	color: var(--white);
	text-decoration: none;
	padding: 6px 6px 6px 4rem;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	transition: .3s ease all;
}

.back_menu a:hover {
	background-color: #666;
}

.back_menu a:after {
	position: absolute;
	content: "";
	width: 1rem;
	height: 1rem;
	border-style: solid;
	border-color: var(--white);
	border-width: 0 2px 2px 0;
	transform: rotate(135deg);
	left: 2rem;
}

/* .hamburger_menu {
	z-index: 9999;
	width: 50px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	user-select: none;
	background: #000;
	padding: 6px;
	transition: all 0.3s;
}

.hamburger_menu:hover {
	background: #111;
}

.hamburger_menu span {
	background-color: var(--white);
	height: 4px;
	width: calc(100% - 20px);
	position: absolute;
	transition: all 0.3s ease;
	left: 10px;
}

.hamburger_menu span:nth-of-type(1) {
	top: 25%;
}

.hamburger_menu span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}

.hamburger_menu span:nth-of-type(3) {
	bottom: 25%;
}

.hamburger_menu.active>span:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.hamburger_menu.active>span:nth-of-type(2) {
	opacity: 0;
}

.hamburger_menu.active>span:nth-of-type(3) {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
} */

#overlay {
	position: fixed;
	inset: 0;
	/* top, right, bottom, left すべて0 */
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
	z-index: 99;
}

#overlay.active {
	opacity: 1;
	pointer-events: auto;
	/* active時だけクリック反応する */
}

.nav_menu {
	z-index: 998;
	color: var(--black);
	display: none;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 0;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 18rem 5rem 16rem 5rem;
	width: 100%;
	min-height: auto;
	max-height: 80vh;
	background: rgba(255, 255, 255, 0.85);
	opacity: 0;
	overflow: hidden;
	overflow-y: auto;
	overflow-x: hidden;
	box-sizing: border-box;
	font-size: 4rem;
}

.nav_title {
	width: 100%;
	text-align: center;
	margin-bottom: 5rem;
}

.nav_menu.active {
	display: flex;
	animation: fadeIn 0.4s forwards;
}

.nav_menu ul {
	width: 100%;
}

.nav_menu li {
	width: 100%;
	display: block;
	text-align: left;
}

.nav_menu .nav_title a {
	background-color: #e5e5e5;
	border-radius: 6px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.nav_menu .nav_title a:after {
	content: "";
	display: block;
	height: 0;
	width: 0;
	position: absolute;
	bottom: 8px;
	right: 8px;
	border-left: 15px solid transparent;
	border-bottom: 15px solid #fff;
}

.nav_menu .grid {
	grid-template-columns: 1fr 1fr 1fr;
	gap: 5rem;
	align-items: center;
	font-size: 3.6rem;
}

.nav_menu .grid .image {
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 2rem;
	position: relative;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
}

.nav_menu .grid .image:after {
	content: "";
	display: block;
	height: 0;
	width: 0;
	position: absolute;
	bottom: 8px;
	right: 8px;
	border-left: 15px solid transparent;
	border-bottom: 15px solid #fff;
}

.nav_menu a {
	text-decoration: none;
	color: var(--black);
	display: block;
	margin: 0;
	width: 100%;
	transition: all 0.3s;
	position: relative;
	box-sizing: border-box;
	border-radius: 6px;
}

.nav_menu ul>ul li:first-child a {
	background: #000;
	margin-bottom: 2rem;
}

.nav_menu ul>ul li:nth-child(2) a {
	background: #000;
	margin-bottom: 2rem;
}

.nav_menu ul>ul li:nth-child(3) a {
	background: #000;
}

.nav_menu a:hover {
	opacity: .8;
}

/* -------------------------
body background
------------------------- */

#selection-pack {
	background-image: url(../img/bg_selection.jpg);
	background-size: cover;
}

#premium-pack {
	background-image: url(../img/bg_premium.jpg);
	background-size: cover;
}

#secret-pack {
	background-image: url(../img/bg_secret.jpg);
	background-size: cover;
}

/* -------------------------
Header
------------------------- */
header {
	margin: 0;
	position: relative;
}

header .header_inner {
	position: relative;
}

header .form_area {
	position: absolute;
	bottom: 5rem;
	width: 90%;
	left: 5%
}

.countdown {
	font-size: 3.5rem;
}



/* -------------------------
 common
------------------------- */
main {
	overflow: hidden;
}

section {
	padding: 12rem 0;
}

.btn_wrap {
	position: relative;
}

.sub_head {
	font-size: 5.8rem;
	text-align: center;
	font-weight: 900;
}

.bg_head {
	padding: 3rem;
}

.bg_head.lead {
	padding: 3rem 5rem;
}

.head_diagonal {
	width: 120%;
	transform: rotate(-5deg);
	position: relative;
	left: -10%;
}

.lead {
	font-size: 5rem;
	/* line-height: 1.5; */
	text-align: center;
	font-weight: 700;
}

.img_arrow {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}

.sec_inner {
	padding: 0;
	margin: 0 5%;
	position: relative;
}

video {
	width: 100%;
	vertical-align: bottom;
}

iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
}

/* mv_btn */
.mv_btn {
	text-align: center;
}

.mv_btn a {
	display: inline-block;
	background: #ddd;
	padding: 5px 20px;
	margin: 1rem auto 0;
	border-radius: 30px;
	font-size: 3.5rem;
	text-decoration: none;
	text-align: center;
	color: inherit;
}


/* 斜め吹き出し */
.slash {
	position: relative;
	text-align: center;
}

.slash_inner {
	display: inline-block;
}

.slash::before, .slash::after {
	content: "";
	background-color: var(--red);
	height: 100%;
	width: 2px;
	position: absolute;
	top: 10px;
}

.slash::before {
	left: 20px;
	transform: rotate(-25deg);
}

.slash::after {
	right: 20px;
	transform: rotate(25deg);
}

/* 2023～新ボタン ----------------------------------------------------------------------------------------------*/
.letter_btn {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 2rem 7rem;
	transition: 0.3s;
	background: #2590d0;
	font-size: 2.6rem;
	color: #fff;
	text-align: center;
	line-height: 1.3;
	text-decoration: none;
	text-shadow: 0 1px 3px #004cab;
	border-radius: 2rem;
	box-shadow: rgb(0, 103, 219) 0px 7px 0px 0px, rgba(255, 255, 255, 0.3) 0px 0px 20px 0px inset;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
}

.letter_btn:hover {
	filter: brightness(1.3);
}

.letter_btn:after {
	position: absolute;
	content: "";
	width: 3rem;
	height: 3rem;
	border-style: solid;
	border-color: #fff;
	border-width: 0 3.5px 3.5px 0;
	transform: rotate(45deg) translateY(-50%);
	top: 47%;
	right: 5rem;
}

.btn_ft .letter_btn {
	font-size: 5.5rem;
	line-height: 1.2;
	padding: 3rem 3rem 3rem 1rem;
}


/* footer ----------------------------------------------------------------------------------------------*/
/* Footer
------------------------- */
footer {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	background: #dddddd;
	color: #707070;
	padding: 5rem;
	margin: auto;
}

#footer {
	background: #f1f1f1;
	color: var(--black);
}

.footer_logo img {
	max-width: 300px;
}

.footer_txt {
	padding: 0 0 0 2rem;
	font-size: 2rem;
	line-height: 1.9;
}

.footer_txt ul {
	padding: 0;
}

#footer_wrap {
	width: 100%;
	text-align: center;
	padding: 2rem 0;
	margin: 0 auto;
	font-size: 80%;
	justify-content: center;
}

#footer_wrap li {
	display: inline-block;
	padding: 0 1rem 0;
	border-left: 1px solid #aaa;
}

#footer_wrap li:first-child {
	border: none;
	padding: 0 1em 0 0;
}

/* scfooter ---------------------------------------------------------------------------------------------- */
#scfooter {
	z-index: 1000;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0;
	background: rgba(255, 255, 255, 0.7);
	display: none;
	opacity: 0;
	pointer-events: none;
	/* 非表示時はクリック無効 */
	transition: opacity 0.6s;
}

#scfooter.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.scfooter_inner {
	display: block;
	width: 90%;
	max-width: calc(500px - 10rem);
	padding: 2rem 0 3rem;
	margin: 0 auto;
	border-radius: 20px;
	text-align: center;
	position: relative;
}

.scfooter_inner a {
	text-decoration: none;
}

.btn_ft {
	position: relative;
	/* overflow: hidden; */
	border-radius: 4px;
}

.hvr-wobble-vertical {
	vertical-align: middle;
	transform: translateZ(0);
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}

.btn_ft a {
	text-decoration: none;
	display: block;
	text-align: center;
}

/* form */
#form .form_item:has(.form_data) {
	grid-column: span 3 !important;
}

/*-----------------------------------------------------
section
 -----------------------------------------------------*/

/* -- intro --*/
#intro {
	padding-bottom: 0;
	padding-top: 5rem;
}

.intro_inner {
	padding: 10rem 0;

}

.intro_spe_box {
	padding: 0rem 2px 2px;
	background: linear-gradient(90deg, #5c0109, var(--red), #5c0109);

}

.intro_spe_box.blw {
	padding: 0rem 2px 2px;
	background: linear-gradient(90deg, #1d1509, #3e2e16, #1d1509);
}

.intro_spe_box.blk {
	padding: 0rem 2px 2px;
	background: linear-gradient(90deg, #000, #333, #000);

}

#intro .box:not(:first-child) {
	margin-top: 2px;
}

.spe_medal {
	margin: 0 auto;
	max-width: 280px;
	padding: 3rem 0;
}

.intro_kohatsu {
	background-image: url(../img/bg_kohatsu.jpg);
	background-size: 100%;
}

.intro_nakai {
	background-image: url(../img/bg_nakai.jpg);
	background-size: 100%;
}

.intro_matsui {
	background-image: url(../img/bg_matsui.jpg);
	background-size: 100%;
}

.intro_taira {
	background-image: url(../img/bg_taira.jpg);
	background-size: 100%;
}

.intro_kaneda {
	background-image: url(../img/bg_kaneda.jpg);
	background-size: 100%;
}

.intro_funo {
	background-image: url(../img/bg_funo.jpg);
	background-size: 100%;
}

.intro_yonezawa {
	background-image: url(../img/bg_yonezawa.jpg);
	background-size: cover;
}


.intro_uehara {
	background-image: url(../img/bg_uehara.jpg);
	background-size: 100%;
}


.intro_hiroe {
	background-image: url(../img/bg_hiroe.jpg);
	background-size: cover;
}


.intro_suzuki {
	background-image: url(../img/bg_suzuki.jpg);
	background-size: 100%;
}


.intro_sekino {
	background-image: url(../img/bg_sekino.jpg);
	background-size: 100%;
}

.intro_amito {
	background-image: url(../img/bg_amito.jpg);
	background-size: 100%;
}

.intro_tochiro {
	background-image: url(../img/bg_tochiro.jpg);
	background-size: 100%;
}

.intro_kotou {
	background-image: url(../img/bg_kotou.jpg);
	background-size: 100%;
}


.intro_hori {
	background-image: url(../img/bg_hori.jpg);
	background-size: 100%;
}


.intro_naishi {
	background-image: url(../img/bg_naishi.jpg);
	background-size: 100%;
}

.intro_ozawa {
	background-image: url(../img/bg_ozawa.jpg);
	background-size: 100%;
}

.intro_mishima {
	background-image: url(../img/bg_mishima.jpg);
	background-size: 100%;
}

.intro_onda {
	background-image: url(../img/bg_onda.jpg);
	background-size: 100%;
}

.intro_watanabe {
	background-image: url(../img/bg_watanabe.jpg);
	background-size: 100%;
}

.intro_shadel {
	background-image: url(../img/bg_shadel.jpg);
	background-size: cover;
}

.intro_nakano {
	background-image: url(../img/bg_nakano.jpg);
	background-size: 100%;
}

.intro_unmei {
	background-image: url(../img/bg_unmei.jpg);
	background-size: 100%;
}

.intro_fueta {
	background-image: url(../img/bg_fueta.jpg);
	background-size: 100%;
}

.intro_komagawa {
	background-image: url(../img/bg_komagawa.jpg);
	background-size: 100%;
}

.intro_imanaka {
	background-image: url(../img/bg_imanaka.jpg);
	background-size: 100%;
}

.intro_sawada {
	background-image: url(../img/bg_sawada.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
}

.intro_nihaku {
	background-image: url(../img/bg_nihaku.jpg);
	background-size: 100%;
}

/* -- lineup --*/
#lineup .table_wrap {
	max-height: 650px;
	overflow: hidden;

}

#lineup table {
	width: 100%;
	font-size: 3.2rem;

}

#lineup .table_wrap table {
	border: 1px solid #000;
	display: block;
	max-height: 650px;
	overflow-y: auto;
}

#lineup table th,
#lineup table td {
	padding: 0.5em;
}

#lineup table th {
	width: 30%;
}

#lineup table td {
	width: 45%;
}

#lineup table thead {
	width: 100%;
}

#lineup table thead th {
	background-color: var(--black);
	color: var(--white);
	padding: 1em 0.5em;
}

#lineup table thead th:nth-child(2) {
	width: 45%;
}

#lineup table thead th:nth-child(3) {
	width: 25%;
}

#lineup table tbody tr:nth-child(2n) {
	background-color: #f1f1f1;
}

#lineup table tbody td {
	text-align: left;
}

.lineup_badge img {
	max-width: 60px;
	width: 100%;
}

#lineup table .lineup_badge {
	width: 25%;
	text-align: center;
}

.budge_list {
	justify-content: space-between;
}

.budge_list__item img {
	max-width: 20px;
}

/* -- special --*/

#special {
	padding-top: 0;
}
#special .grid {
	grid-template-columns: 1fr 5.5fr;
	gap: 1rem;
	align-items: center;
	border-bottom: 1px dashed var(--gold3);
	padding: 2rem 0;
}

#special .grid:last-child {
	border-bottom: none;
}

#special .grid .num {
	font-weight: 900;
	font-family: serif;
	font-size: 180%;
	font-style: italic;
}

#special .spe_medal {
	max-width: 100%;
}

.spe_common .sub_head {
	padding: 3rem 0;
}

/* -- offer --*/
#offer {
	padding: 0;
}

#offer .bg_blk2 {
	padding-bottom: 10rem;
}

#offer .sale_price .bg_grad_gold2 {
	padding: 2rem 0;
	text-shadow: 0 0px 5px #333;
}

/* -- pay --*/
#pay {
	padding-top: 0;
}

#pay .bg_gry {
	padding: 10rem 0;
}

#pay .lead {
	padding: 3rem 0;

}

#pay .box_wrap {
	box-shadow: 0.5rem 0.5rem 0.5rem 0.1rem rgb(0, 0, 0, 0.2);
}

/* -- meessage --*/
#message {
	padding: 0;
}

/* 料金/*form
----------------------------------------------------------------------------------------------*/
.price-table {
	width: 100%;
	margin: 20px auto 0;
	border: 2px solid var(--red);
	line-height: 1.3;
	background: var(--white);
}

.price-table th {
	background: var(--red);
	color: var(--white);
	font-weight: bold;
	padding: 5px
}

.price-table tr:nth-child(2n) {
	background: #f8f8f8;
}

.price-table td {
	padding: 1rem 1.5rem;
	vertical-align: middle
}

.price-table td .small {
	font-size: 60%
}

.price-table td:nth-child(odd) {
	width: 63%;
	font-size: 2rem
}

.price-table td:nth-child(even) {
	width: 30%;
	text-align: center;
	font-size: 2.2rem;
	border-left: 3px dotted #ddd;
}

.price-table td .small {
	font-size: 75%
}

.price-table .bg_red {
	display: block;
	background: var(--red);
	padding: .5rem .5rem 0;
	margin: 0 0 .5rem;
	color: var(--white);
	font-size: 4rem;
	font-weight: bold
}

tr.price-table-result td {
	padding: 2rem;
	text-align: center
}

.price_box {
	/* margin: 4rem auto 2rem */
}

.price_result {
	margin: 0 auto;
	font-weight: bold;
	font-family: Arial, Helvetica, "sans-serif";
	position: relative;
	padding-top: 1rem
}

.price_result_main {
	font-size: 6rem;
	line-height: 1;
	margin: 0 0 0 13rem;
	color: var(--black);
}

.price_result_sub {
	margin-top: 0;
	font-size: 4.5rem;
	text-align: right;
	line-height: 1
}

.price_notice {
	padding: 3rem;
	margin: 2rem auto 0;
	background: var(--white)6f6
}

.price_notice p {
	padding: 0 0 0 1em;
	margin: 0 auto;
	font-size: 2.2rem;
	text-indent: -1em
}

/*月々約*/
.price_monthly {
	background: var(--black);
	width: 110px;
	height: 110px;
	border-radius: 200px;
	position: absolute;
	color: var(--white);
	line-height: 110px;
	text-align: center;
	font-size: 3rem;
	top: 0
}

/*amazon風料金*/
.am_price {
	margin: 0 auto;
	font-family: Arial, Helvetica, "sans-serif";
	position: relative;
	padding-top: 2rem;
	max-width: 560px;
	width: 100%;
}

.am_price_description {
	justify-content: start;
	align-items: center;
	margin-bottom: 2rem
}

.am_price_description_ttl {
	background: var(--red);
	color: var(--white);
	padding: 4px 8px;
	font-size: 4rem;
	margin-right: 1rem;
	border-radius: 4px
}

.am_price_box {
	font-size: 13rem;
	line-height: 1
}

.am_price_total {
	font-size: 10rem;
}

.am_price_symbol, .am_price_symbol2, .am_price_symbol3 {
	font-size: 41%;
	top: -1rem;
	position: relative
}

.am_price_symbol3 {
	font-size: 60%;
}

.am_price_result_sub, .am_price_result_sub2 {
	margin: 1rem auto 0;
	font-size: 3rem;
	line-height: 1;
	text-align: left;
	color: #565959
}

.am_price span.r {
	color: var(--red);
}

.am_price_list {
	margin: 0 auto
}

.am_price_list li {
	position: relative;
	padding: .3rem 0 0 3rem;
	line-height: 1.4;
	font-size: 3rem;
	color: #1a6171
}

.am_price_list li:before, .list1 li:after {
	content: "";
	position: absolute
}

.am_price_list li:before {
	top: 1.2rem;
	left: .5rem;
	-webkit-transform: rotate(50deg);
	-ms-transform: rotate(50deg);
	transform: rotate(50deg);
	width: .8rem;
	height: 1.2rem;
	border-right: 3px solid #1a6171;
	border-bottom: 3px solid #1a6171
}

.am_price_list li:after {
	left: 0;
	top: 1.2rem;
	width: 1.8rem;
	height: 1.8rem;
	border: 1px solid #626161;
	border-radius: 2px
}

.am_price_list li:last-child {
	padding-bottom: 0
}

.price_label {
	background: var(--red);
	color: var(--white);
	text-align: center;
	font-size: 4.6rem;
	font-weight: bold;
	line-height: 1.2;
	padding: 2rem 0
}

.am_price_list {
	margin-top: 1rem
}

.am_price_main {
	font-weight: bold;
}

p.am_price_main2 {
	font-size: 3rem;
	text-align: right;
	margin-top: 1rem
}

#guarantee .sub_head {
	font-size: 4.5rem;
	line-height: 1.3;
}

#guarantee .box {
	max-width: 800px;
	margin: auto;
}

#guarantee .ac_area {
	margin-bottom: 5rem;
}


/* -- よくある質問 ----------------------------------------------------------------------------------------------*/
#cp {
	background-color: #d4f4ff;
}

.cp_qa *,
.cp_qa *:after,
.cp_qa *:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 0 1em 0;
}

.cp_qa .cp_actab:last-child {
	margin-bottom: 0;
}

.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}

/* 質問 */
.cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 2em 1em 2.8em;
	cursor: pointer;
	border-radius: 0.5em;
	background:#f8f8f8;
	font-size: 4rem;
}

.cp_qa .cp_actab label::before {
	position: absolute;
	font-family: serif;
	font-size: 1.5em;
	left: 3rem;
	top: 4.2rem;
	content: 'Q';
}

.cp_qa .cp_actab label:hover {
	transition: all 0.3s;
	color: var(--red);
}

/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
	font-size: 1.7em;
	font-weight: bold;
	/* line-height: 2em; */
	position: absolute;
	top: 4rem;
	right: 0;
	content: '+';
	display: inline-block;
	right: 2rem;
	-webkit-transition: transform 0.4s;
	transition: transform 0.4s;
	position: absolute;
}

/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	position: relative;
	overflow: hidden;
	max-height: 0;
	padding: 0 0 0 2.5em;
	-webkit-transition: max-height 0.2s;
	transition: max-height 0.2s;
	border-radius: 0 0 0.5em 0.5em;
	font-size: 3.5rem;
}

.cp_qa .cp_actab .cp_actab-content::before {
	font-family: serif;
	font-size: 1.5em;
	position: absolute;
	margin: 0.4em 0 0 -1em;
	padding: 0;
	content: 'A';
	color: var(--red);
	top: 2rem;
}

.cp_qa .cp_actab .cp_actab-content_inner {
	padding: 5rem 5rem 5rem 0;
}

/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked~.cp_actab-content {
	max-height: 55em;
	border: 10px solid #f8f8f8;
	border-top: none;
	background: #fff;
}

/* --答えの高さ */
.cp_qa .cp_actab input:checked~.cp_actab-content.px {
	max-height: 85em;
	border: 10px solid #fff;
}

/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked~label {
	border-radius: 0.5em 0.5em 0 0;
}

/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked+label::after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

.cp_actab .notice {
	padding-top: 0;
}

.ac_inner {
	background: #fff4e9;
	padding: 2rem;
}

.ac_inner:first-child {
	padding: 0rem;
}

/* アコーディオンエリアの設定 */
.ac_area {
	display: none;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

.ac_inner:first-child {
	padding: 0rem;
}

/* フォームボタンの文言・アイコン */

.cta_btn:before {
	background-image: none;
	content: "";
	background-color: var(--white);
	width: 20px;
	height: 2px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}

.cta_btn:after {
	content: "";
	background-color: var(--white);
	width: 2px;
	height: 20px;
	position: absolute;
	top: 50%;
	transform: translate(50%, -50%);
	right: 30px;
}

.cta_btn.opened::after {
	content: none;
}

.cta_btn span {
	display: block;
}

.cta_btn.opened {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;

}


.cta_btn {
	display: block;
	width: 100%;
	background: var(--black);
	border: 1px solid var(--white);
	font-weight: bold;
	color: var(--white);
	line-height: 1.6;
	padding: 2rem 0;
	cursor: pointer;
	transition: 0.3s ease;
	position: relative;
	z-index: 10;
	text-decoration: none;
	border-radius: 6px;
	font-size: 4.2rem;
}

.cta_btn:hover {
	filter: brightness(1.3);
}

/* -- ボタン網掛け --*/
/*ボタンの親要素にposition:relative;を追加*/
.header_form {
	position: relative;
	margin-top: 3rem;
	padding-bottom: 8rem;
}

/*ボタンの親要素にposition:relative;を追加*/
.form_close {
	pointer-events: none;
	position: relative;
}

/*ボタンをクリックできないようにする(時限式で追加される)*/
.form_close .btn_ft {
	opacity: 0.3;
}

/*ボタンに薄い網掛けをする(時限式で追加される)*/
.form_close:before {
	position: absolute;
	content: "募集は終了しました";
	font-weight: 900;
	font-size: 5rem;
	z-index: 1;
	color: var(--red);
	font-family: 'Noto Sans JP', sans-serif;
	background: var(--white);
	padding: 4rem 2rem;
	top: 2rem;
	left: 3%;
	width: 94%;
	box-sizing: border-box;
	text-align: center;
}

/*ボタンの親要素にposition:relative;を追加*/
.form_close {
	pointer-events: none;
	position: relative;
}

/*ボタンをクリックできないようにする(時限式で追加される)*/
.form_close .form-btn,
.form_close .letter_btn {
	opacity: 0.3;
}

#scfooter.form_close:before {
	top: 65%;
	padding: 2rem 20rem;
}

/*ボタンの上に終了の文言を表示(時限式で追加される)*/
footer {
	background: #eee;
}

/*ボディ内のボタン網掛けの位置調整*/
main .form_close:before {
	width: 50%;
	top: 42%
}

#signup .form_close:before {
	top: 50%;
}

#cart__area,
#formJump {
	padding: 0;
}


#form .checkbox input[type=checkbox] + label:after{
	top: 30%!important;
    left: 1.3em!important;
}
@media (min-width:480px) {

#form .form_must{
	font-size: 60%!important;
}
	
}
/***************************
 * YouTube風・軽量埋め込み用スタイル（全面書き直し）
 * - サムネは四角キープ、枠角丸は付けない前提
 * - 再生ボタンは赤い矩形＋白い三角（公式寄せ）
 * - アクセシビリティと省モーション対応込み
 ***************************/
.yt-box {
  position: relative;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.yt-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 48px;
  background: url('https://www.gstatic.com/images/icons/material/system/1x/play_arrow_white_48dp.png') no-repeat center center;
  background-color: #FF0033;
  border-radius: 12px;
  background-size: 60%;
  transform: translate(-50%, -50%);
}
