@charset "utf-8";

.section_lineup {
	padding-bottom: 24%;
	padding-top: 30px;
	z-index: 6;
	background-color: #A60303;
}
@keyframes rotate {
	0% {
			transform: rotate(0deg);
	}

	100% {
			transform: rotate(360deg);
	}
}

.lineup_inner {
	overflow: hidden;
	padding-top: 80px;
}
.lineup_content {
	width: 90%;
	margin-left: auto;
	background-color: #EBEDF2;
	border-top-left-radius: 170px;
	padding-top: 1px; /*←子要素にネガティブマージンを効かす為に必要*/
	position: relative;
}
.lineup_content:nth-of-type(even) {
	margin-left: inherit;
	border-top-left-radius: 0;
	border-top-right-radius: 170px;
}
.lineup_content:not(:last-of-type) {
	margin-bottom: 10em;
}
.lineup_circle {
	width: 68%;
	max-width: 400px;
	position: absolute;
	top: -70px;
	left: -26%;
	animation: rotate 10s linear 0s infinite;
	z-index: 2;
}
.gradation4 {
	position: absolute;
	top: 100px;
	left: -11%;
	z-index: -1;
	width: 85%;
}
.lineup_content:nth-of-type(even) .gradation4  {
	left: inherit;
    right: -30%;
	transform: scale(1.5);
}
.lineup_number {
	font-family: Bagoss;
	color: #fff;
	background-color: #FF3901;
	width: 26px;
	height: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
    right: 8%;
    top: 40px;
	
}
.lineup_content:nth-of-type(even) .lineup_number {
	right: 0;
	left: 8%;
}
.lineup_box {
	/*position: absolute;
	bottom: 10%;
	left: 17%;
	z-index: 3;
	visibility: hidden;
	opacity: 0;
	transition: 1s;
	-ms-filter: blur(6px);
	filter: blur(6px);*/
	padding: 0 5% 3em;
	margin-top: -17%;
    position: relative;
	z-index: 3;
}
.lineup_box.active {
	/*visibility: visible;
	opacity: 1;
	-ms-filter: blur(0);
  filter: blur(0);*/
}
.lineup_product {
	width: 89%;
	margin: 0 auto;
}
.lineup_item_img {
	width: 70%;
	max-width: 300px;
	margin: 0 25px 0 auto;
	margin-bottom: -18%;
}
.lineup_content:nth-of-type(even) .lineup_item_img {
	transform: rotate(-4deg);
}
.lineup_box_up {
	position: relative;
	z-index: 4;
}
.lineup_item_tag {
	font-size: clamp(10px,2.8vw,12px);
	color: #fff;
	background-color: #FF3901;
	padding: 1.5% 5%;
	margin-bottom: 6%;
	display: inline-block;
	white-space: nowrap;
}
.lineup_item_tag_min {
	font-family: "dnp-shuei-mincho-pr6n", sans-serif;
}
.lineup_item_description {
	margin-bottom: 6%;
}
.lineup_item_description_text {
	font-family: "dnp-shuei-mincho-pr6n", sans-serif;
	font-size: clamp(10px,3.73vw,16px);
	color: #A60303;
	line-height: calc(26/16);
}
.lineup_item_title {
	font-size: clamp(10px,5.6vw,22px);
	font-weight: 500;
	color: #A60303;
	line-height: calc(27/24);
	margin-bottom: 4%;
}
.lineup_item_info {
	display: flex;
	align-items: baseline;
	margin-bottom: 11%;
}
.lineup_item_price {
	font-family: Bagoss-Medium;
	font-size: clamp(10px,5.6vw,24px);
}
.lineup_item_price_small {
	font-size: clamp(10px,3.27vw,14px);
}
.lineup_item_quantity {
	font-family: Bagoss;
	font-weight: 300;
	font-size: clamp(10px,3.27vw,14px);
	margin-left: 1em;
}
.lineup_info {
	counter-reset: number 0; 
	margin-top: 4em;
}
.lineup_info_cont {
	font-size: clamp(10px,4.2vw,14px);
	border-top: 1px solid var(--color01);
}
.lineup_info_cont_inner {
	width: 85%;
	margin: 0 auto;
}
.lineup_info_cont_title {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 1.5em;
	padding: 2.3em 0;
}
.lineup_info_cont_title .num {
	font-family: Bagoss;
    font-weight: 300;
	display: inline-block;
	color: var(--color01);
	border: 1px solid var(--color01);
	border-radius: 60px;
	padding: .3em .6em;
}
.lineup_info_cont_title .num::before {
	counter-increment: number 1;
	content: '0' counter(number, decimal-leading-zero);
}
.lineup_info_cont_title .tit {
}
.lineup_info_cont_title .tit_eng {
	font-family: Bagoss;
	font-weight: 300;
	color: var(--color01);
	font-size: 1.3em;
	margin-bottom: 3px;
}
.lineup_info_cont_title .tit_jp {
	font-size: .85em;
	font-weight: normal;
}
.lineup_info_cont_title .plus {
	width: 26px;
	height: 26px;
	background-color: var(--color01);
	border-radius: 50%;
	margin-left: auto;
	position: relative;
}
.lineup_info_cont_title .plus::before,
.lineup_info_cont_title .plus::after {
	content:"";
	display: inline-block;
	width: 40%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	translate:-50% -50%;
	transition: .5s;
}
.lineup_info_cont_title .plus::after {
	rotate: 90deg;
}
.lineup_info_cont_title.is-active .plus::after {
	rotate: 0deg;
}
.lineup_info_cont_text {
	line-height: 1.5em;
	padding-bottom: 3em;
	word-wrap: break-word;
    overflow-wrap: break-word;
	display: none;
}
.lineup_info_cont_text .txt-mt1 {
	margin-top: 1em;
	font-weight: 500;
}
.lineup_info_cont_text .txt-mt2 {
	margin-top: 2em;
	font-weight: 500;
}
.lineup_info_cont_text .txt-mt3 {
	margin-top: 3em;
	font-weight: 500;
}
.lineup_info_cont_text .txt-mt3 dt {
	font-weight: 500;
}
.lineup_info_cont_text .txt-orange {
	color: var(--color02);
	font-weight: 500;
}
.lineup_info_cont_text .txt-recom{
	font-size: .85em;
	color: var(--color02);
	border: 1px solid rgba(179,181,184,0.65);
	border-radius: 50px 0 0 50px;
	padding: .5em 1em;
	margin-right: 1em;
}
.lineup_info_cont_text .txt-bold {
	font-style: normal;
	font-weight: 500;
}
.lineup_info_cont_text .txt-small {
	font-size: .85em;
	line-height: 1.2em;
}
.lineup_info_cont_text .txt-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: .6em;
}
.lineup_info_cont_text .txt-list_item {
	text-align: center;
	font-size: .85em;
	line-height: 1.2em;
	border: 1px solid rgba(251,60,2,0.45);
	padding: 1em 5%;
	border-radius: 80px;
}

.fqa-title {
	padding-top: 0;
}
.faq {
	font-size: clamp(10px,3.73vw,15px);
	width: 85%;
	margin: 0 auto;
	color: #fff;
	padding-bottom: 2em;
}
.faq_cont {
	margin-bottom: 5em;
}
.faq_cont_tag {
	font-size: .7em;
	margin-bottom: 4em;
	color: #EBEDF2;
}
.faq_cont_tag .eng {
	display: inline-block;
	font-family: Bagoss;
	border: 1px solid #EBEDF2;
	padding: .5em 2em;
	border-radius: 100px;
	margin-bottom: .8em;
}
.faq_cont_tag .jp {
	display: block;
}
.faq_cont_item {
	border-bottom: 1px solid rgba(179,181,184,0.7);
	padding-bottom: 2em;
	margin-bottom: 2em;
}
.faq_cont_item .tit {
	font-weight: normal;
	line-height: 1.3em;
	margin-bottom: 1.5em;
	position: relative;
	padding-left: 10%;
}
.faq_cont_item .tit::before {
	content: "Q";
	font-family: Bagoss;
	color: var(--color02);
	font-size: 1.3em;
	position: absolute;
	left: 0;
	top: 0;
}
.faq_cont_item .text {
	font-size: .85em;
	font-weight: normal;
	line-height: 1.5em;
	padding-left: 10%;
}
.faq_cont_item .text .common-a-tag { 
	color: #fff;
	margin-top: .8em;
}
