@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用

*******************************************************/


/* hero (ファーストビュー) */
.hero {
	width: 100%;
	height: 100vh;
	min-height: 720px;
	position: relative;
	overflow: hidden;
	background: #15171c;
	color: #FFF;
	}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	}

.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: brightness(0.7) contrast(1.05);
	}

.hero__overlay {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding: 80px 0;
	background:
		linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%),
		linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 60%);
	}

.hero__content {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
	}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	background: #f5cd1a;
	color: #1a2a5e;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 28px;
	}

.hero__badge::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #1a2a5e;
	border-radius: 50%;
	}

.hero__copy {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 64px;
	line-height: 1.18;
	letter-spacing: 0.02em;
	margin: 0 0 28px;
	color: #FFF;
	text-shadow: 0 2px 30px rgba(0,0,0,0.25);
	}

.hero__copy-stripe {
	display: inline-block;
	background: #f5cd1a;
	color: #1a2a5e;
	padding: 0 14px;
	margin: 0 4px;
	transform: skewX(-8deg);
	}

.hero__copy-stripe > span {
	display: inline-block;
	transform: skewX(8deg);
	}

.hero__sub {
	font-size: 17px;
	line-height: 1.9;
	max-width: 650px;
	margin: 0 0 36px;
	color: rgba(255,255,255,0.92);
	}

.hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 24px;
	}

.hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 56px;
	padding: 0 32px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.06em;
	transition: .2s;
	white-space: nowrap;
	}

.hero__btn--primary {
	background: #f5cd1a;
	color: #1a2a5e;
	box-shadow: 0 4px 0 #e6b800;
	}

.hero__btn--primary:hover {
	background: #fdd732;
	}

.hero__btn--secondary {
	background: transparent;
	color: #FFF;
	border: 2px solid #FFF;
	height: 52px;
	}

.hero__btn--secondary:hover {
	background: rgba(255,255,255,0.1);
	}

.hero__btn--sp {
	display: none;
	}

.hero__attrib {
	font-size: 12px;
	color: rgba(255,255,255,0.7);
	letter-spacing: 0.04em;
	}



/* overview (概要・キャッチ) */
.overview {
	background: #FFF;
	text-align: center;
	}

.overview__h2 {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 32px;
	color: #1a2a5e;
	letter-spacing: 0.04em;
	line-height: 1.5;
	margin-bottom: 32px;
	}

.overview__txt {
	font-size: 16px;
	line-height: 2.1;
	color: #3a3f4b;
	}

.overview__bg {
	display: none;
	}



/* 共通：セクション見出し補助 */
.brand__num,
.product__num,
.spec__num,
.flow__num,
.faq__num {
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.2em;
	color: #e6b800;
	margin-bottom: 8px;
	text-align: center;
	}

.brand__eyebrow,
.product__eyebrow,
.spec__eyebrow,
.flow__eyebrow,
.faq__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #1a2a5e;
	margin: 0 auto 18px;
	}

.brand__wrapper,
.product__wrapper,
.spec__wrapper,
.flow__wrapper,
.faq__wrapper {
	text-align: center;
	}

.brand__eyebrow::before,
.product__eyebrow::before,
.spec__eyebrow::before,
.flow__eyebrow::before,
.faq__eyebrow::before {
	content: "";
	width: 32px;
	height: 2px;
	background: #f5cd1a;
	}



/* brand */
.brand {
	background: #FFF;
	border-top: 1px solid #e5e7eb;
	}

.brand__inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: center;
	text-align: left;
	margin-top: 40px;
	}

.brand__media {
	position: relative;
	aspect-ratio: 4/5;
	overflow: hidden;
	}

.brand__media::before {
	content: "";
	position: absolute;
	bottom: -20px;
	left: -20px;
	width: 120px;
	height: 120px;
	background: #f5cd1a;
	z-index: -1;
	}

.brand__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	}

.brand__points {
	display: grid;
	gap: 18px;
	}

.brand__point {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 16px;
	align-items: start;
	}

.brand__point-num {
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 28px;
	color: #e6b800;
	line-height: 1;
	border-top: 2px solid #1a2a5e;
	padding-top: 8px;
	}

.brand__point-body {
	padding-top: 4px;
	}

.brand__point-title {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 17px;
	color: #1a2a5e;
	margin-bottom: 4px;
	}

.brand__point-text {
	font-size: 14.5px;
	line-height: 1.85;
	color: #3a3f4b;
	}

.brand__chance {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 40px;
	padding: 24px 28px;
	background: #FFF;
	border: 1px solid #e5e7eb;
	border-left: 4px solid #f5cd1a;
	}

.brand__chance-logo {
	height: 48px;
	width: auto;
	}

.brand__chance-body {
	flex: 1;
	}

.brand__chance-label {
	font-size: 12px;
	font-weight: 500;
	color: #6b7280;
	letter-spacing: 0.1em;
	margin-bottom: 4px;
	}

.brand__chance-name {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #1a2a5e;
	}

.brand__chance-link {
	font-size: 13px;
	color: #1a2a5e;
	text-decoration: underline;
	white-space: nowrap;
	}

.brand__chance-link::after {
	content: " →";
	}



/* product */
.product {
	background: #f7f8fa;
	}

.product__lead {
	font-size: 15px;
	line-height: 2;
	color: #3a3f4b;
	max-width: 720px;
	margin: 0 auto;
	}

.product__hero {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 40px;
	align-items: stretch;
	margin-top: 48px;
	text-align: left;
	}

.product__spec {
	background: #1a2a5e;
	color: #FFF;
	padding: 40px;
	display: flex;
	flex-direction: column;
	}

.product__spec-label {
	font-family: "Oswald", sans-serif;
	font-size: 12px;
	letter-spacing: 0.2em;
	color: #f5cd1a;
	margin-bottom: 14px;
	}

.product__spec-name {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 36px;
	letter-spacing: 0.04em;
	line-height: 1.2;
	margin-bottom: 22px;
	color: #FFF;
	}

.product__spec-desc {
	font-size: 14.5px;
	line-height: 1.9;
	color: rgba(255,255,255,0.88);
	margin-bottom: 28px;
	}

.product__spec-list {
	margin: 0;
	}

.product__spec-row {
	display: flex;
	justify-content: space-between;
	padding: 14px 0;
	border-top: 1px solid rgba(255,255,255,0.15);
	font-size: 14px;
	}

.product__spec-row:last-of-type {
	border-bottom: 1px solid rgba(255,255,255,0.15);
	}

.product__spec-row dt {
	color: rgba(255,255,255,0.6);
	font-weight: 500;
	}

.product__spec-row dd {
	color: #FFF;
	font-weight: 600;
	margin: 0;
	text-align: right;
	}

.product__spec-yellow {
	color: #f5cd1a;
	}

.product__image {
	position: relative;
	overflow: hidden;
	background: #1a1f2e;
	}

.product__image-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	}

.product__image-corner {
	position: absolute;
	top: 16px;
	right: 16px;
	background: #f5cd1a;
	color: #1a2a5e;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.12em;
	padding: 6px 12px;
	z-index: 2;
	}

.product__benefits {
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: #e5e7eb;
	text-align: left;
	}

.product__benefit {
	background: #FFF;
	padding: 36px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	}

.product__benefit-num {
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.2em;
	color: #e6b800;
	}

.product__benefit-icon {
	width: 56px;
	height: 56px;
	border: 2px solid #1a2a5e;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 28px 28px;
	}

.product__benefit-icon--presence {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28' fill='none' stroke='%231a2a5e' stroke-width='2' stroke-linecap='round'><path d='M14 2L14 26'/><path d='M2 14L26 14'/><circle cx='14' cy='14' r='6' fill='%231a2a5e'/></svg>");
	}

.product__benefit-icon--shield {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28' fill='none' stroke='%231a2a5e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2L24 7V15C24 21 14 26 14 26C14 26 4 21 4 15V7L14 2Z'/></svg>");
	}

.product__benefit-icon--palette {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28' fill='none' stroke='%231a2a5e' stroke-width='2' stroke-linecap='round'><circle cx='14' cy='14' r='11'/><circle cx='9' cy='11' r='1.5' fill='%231a2a5e'/><circle cx='14' cy='8' r='1.5' fill='%231a2a5e'/><circle cx='19' cy='11' r='1.5' fill='%231a2a5e'/><circle cx='20' cy='17' r='1.5' fill='%231a2a5e'/></svg>");
	}

.product__benefit-title {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 22px;
	color: #1a2a5e;
	letter-spacing: 0.04em;
	}

.product__benefit-text {
	font-size: 14.5px;
	line-height: 1.9;
	color: #3a3f4b;
	}

.product__gallery {
	margin-top: 60px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 8px;
	}

.product__gallery-cell {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
	}

.product__gallery-cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
	}

.product__gallery-cell:hover img {
	transform: scale(1.05);
	}

.product__gallery-cell--big {
	aspect-ratio: 16/9;
	grid-row: span 2;
	}



/* spec */
.spec {
	background: #FFF;
	}

.spec__lead {
	font-size: 15px;
	line-height: 2;
	color: #3a3f4b;
	max-width: 720px;
	margin: 0 auto;
	}

.spec__table {
	margin: 40px auto 0;
	width: 100%;
	max-width: 960px;
	border-collapse: collapse;
	background: #FFF;
	border: 1px solid #e5e7eb;
	text-align: left;
	}

.spec__table th,
.spec__table td {
	padding: 18px 22px;
	font-size: 14.5px;
	border-bottom: 1px solid #e5e7eb;
	}

.spec__table tr:last-child th,
.spec__table tr:last-child td {
	border-bottom: none;
	}

.spec__table th {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 700;
	background: #f7f8fa;
	color: #1a2a5e;
	width: 32%;
	letter-spacing: 0.04em;
	vertical-align: middle;
	}

.spec__table td {
	color: #15171c;
	}

.spec__pending {
	display: inline-block;
	color: #6b7280;
	font-size: 12px;
	background: #f1f2f4;
	padding: 2px 8px;
	margin-left: 6px;
	}

.spec__note {
	margin: 20px auto 0;
	max-width: 960px;
	padding: 16px 20px;
	background: #fff3b0;
	border-left: 3px solid #e6b800;
	font-size: 13.5px;
	line-height: 1.8;
	color: #3a3f4b;
	text-align: left;
	}



/* flow */
.flow {
	background: #f7f8fa;
	}

.flow__lead {
	font-size: 15px;
	line-height: 2;
	color: #3a3f4b;
	max-width: 720px;
	margin: 0 auto;
	}

.flow__steps {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0;
	text-align: left;
	}

.flow__step {
	position: relative;
	padding: 28px 18px 24px 22px;
	background: #FFF;
	border-top: 4px solid #1a2a5e;
	}

.flow__step + .flow__step {
	border-left: 1px solid #e5e7eb;
	}

.flow__step::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -10px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #e5e7eb;
	transform: translateY(-50%);
	z-index: 1;
	}

.flow__step:last-child::after {
	display: none;
	}

.flow__step-num {
	font-family: "Oswald", sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #e6b800;
	line-height: 1;
	margin-bottom: 10px;
	}

.flow__step-title {
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 14.5px;
	color: #1a2a5e;
	margin-bottom: 6px;
	line-height: 1.4;
	}

.flow__step-text {
	font-size: 12.5px;
	line-height: 1.7;
	color: #3a3f4b;
	}

.flow__note {
	margin-top: 32px;
	padding: 20px 24px;
	background: #1a2a5e;
	color: #FFF;
	font-size: 14px;
	line-height: 1.85;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	text-align: left;
	}

.flow__note-tag {
	background: #f5cd1a;
	color: #1a2a5e;
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.16em;
	padding: 4px 10px;
	white-space: nowrap;
	flex-shrink: 0;
	}



/* faq (accordion) */
.faq {
	background: #FFF;
	}

.faq__lead {
	font-size: 15px;
	line-height: 2;
	color: #3a3f4b;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	}

.faq__box {
	margin-top: 40px;
	border-top: 1px solid #e5e7eb;
	}

.faq__item {
	border-bottom: 1px solid #e5e7eb;
	}

.faq__item-question {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 8px;
	cursor: pointer;
	transition: .15s;
	}

.faq__item-question:hover {
	background: #f7f8fa;
	}

.faq__item-question p {
	flex: 1;
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: #1a2a5e;
	line-height: 1.5;
	margin: 0;
	}

.faq__item-question::before {
	content: "Q";
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: #e6b800;
	width: 24px;
	flex-shrink: 0;
	}

.acco__btn {
	width: 28px;
	height: 28px;
	position: relative;
	flex-shrink: 0;
	}

.acco__btn::before,
.acco__btn::after {
	content: "";
	position: absolute;
	background: #1a2a5e;
	transition: transform 0.2s;
	}

.acco__btn::before {
	left: 0;
	right: 0;
	top: 13px;
	height: 2px;
	}

.acco__btn::after {
	top: 0;
	bottom: 0;
	left: 13px;
	width: 2px;
	}

.acco__btn--open::after {
	transform: scaleY(0);
	}

.faq__item-answer {
	display: none;
	padding: 0 8px 24px 50px;
	}

.faq__item-answer p {
	font-size: 14.5px;
	line-height: 1.95;
	color: #3a3f4b;
	margin: 0;
	}

.faq__item-answer p::before {
	content: "A. ";
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	color: #1a2a5e;
	margin-right: 8px;
	}



/******************************************************

タブレット 768〜1199px

*******************************************************/

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

.hero {
	min-height: 600px;
	}

.hero__copy {
	font-size: 44px;
	}

.hero__sub {
	font-size: 15px;
	}

.brand__inner {
	grid-template-columns: 1fr;
	gap: 32px;
	}

.brand__media {
	aspect-ratio: 16/10;
	}

.product__hero {
	grid-template-columns: 1fr;
	}

.product__image {
	aspect-ratio: 4/3;
	}

.product__benefits {
	grid-template-columns: 1fr;
	}

.product__gallery {
	grid-template-columns: 1fr 1fr;
	}

.product__gallery-cell--big {
	grid-column: span 2;
	grid-row: auto;
	aspect-ratio: 16/9;
	}

.flow__steps {
	grid-template-columns: 1fr 1fr;
	}

.flow__step::after {
	display: none;
	}

.flow__step + .flow__step {
	border-left: none;
	}

.spec__table th {
	width: 38%;
	}

}



/******************************************************

スマホ 〜767px

*******************************************************/

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

.hero {
	min-height: 500px!important;
	}

.hero__overlay {
	padding: 60px 0;
	}

.hero__content {
	margin-top: 50px;	
	}
	
.hero__copy {
	font-size: 24px;
	line-height: 1.4;
	}

.hero__copy-stripe {
	padding: 0 4px;
	}

.hero__badge {
	font-size: 10px;
	padding: 5px 10px;
	margin-bottom: 10px;
	}

.hero__sub {
	font-size: 12px;
	margin-bottom: 24px;
	}

.hero__btn {
	width: 100%;
	height: 44px;
	font-size: 14px;
	}
	
.hero__attrib {
	display: none;
	}

.hero__btn--sp {
	display: inline-flex;
	}
	
.scrollDown {
	display: none;
	}

.overview__h2 {
	font-size: 22px;
	}

.overview__txt {
	font-size: 14px;
	line-height: 2;
	}

.brand__chance {
	flex-wrap: wrap;
	gap: 12px;
	padding: 16px 18px;
	}

.product__spec {
	padding: 28px 22px;
	}

.product__spec-name {
	font-size: 28px;
	}

.product__benefits {
	margin-top: 48px;
	}

.product__benefit {
	padding: 24px 22px;
	}

.product__gallery {
	grid-template-columns: 1fr;
	}

.product__gallery-cell--big {
	grid-column: auto;
	}

.spec__table th,
.spec__table td {
	display: block;
	width: 100%;
	padding: 12px 18px;
	}

.spec__table th {
	padding-bottom: 4px;
	border-bottom: none;
	}

.spec__table td {
	padding-top: 4px;
	}

.flow__steps {
	grid-template-columns: 1fr;
	}

.flow__note {
	flex-direction: column;
	gap: 8px;
	}

.faq__item-question p {
	font-size: 14px;
	}

}


.faq__box {
	text-align: left;
	}

.faq__lead {
	margin-bottom: 0;
	}

/* faq item open default state */
.faq__item--open .faq__item-answer {
	display: block;
	}




/******************************************************

SP追加調整 〜767px (revision)

*******************************************************/

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

/* hero: 高さ500px固定 */
.hero {
	height: 500px;
	min-height: 500px;
	}

.hero__overlay {
	padding: 40px 0;
	}

/* product benefits: BENEFIT 01〜03 を中央揃え */
.product__benefit {
	text-align: center;
	align-items: center;
	}

.product__benefit-icon {
	margin-left: auto;
	margin-right: auto;
	}

}
