/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/

/* Box sizing rules */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
	margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

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

/* Set core root defaults */

html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img,
picture {
	display: block;
	height: auto;
	max-width: 100%;
	width: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */

button {
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
	font: inherit;
	outline: none;
	padding: 0;
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/

/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

html {
	font-size: 16px;
}

body {
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}

a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

.inner {
	margin-inline: auto;
	width: 100%;
}

.shop-link {
	align-items: center;
	background: linear-gradient(#fff 0%, #edebeb 100%);
	border: 2px solid #BEA700;
	border-radius: 8px;
	box-shadow: inset 2px 2px 2px #000;
	display: flex;
	height: clamp(40px, 10.66vw, 80px);
	justify-content: center;
	padding-inline: clamp(1px, 0.26vw, 2px);
	width: 100%;
}

.shop-link .logo-amazon {
	height: clamp(27px, 7.2vw, 54px);
	mix-blend-mode: multiply;
	width: -moz-fit-content;
	width: fit-content;
	margin-left: 3px;
}

.shop-link .logo-rakuten {
	height: clamp(27px, 7.2vw, 54px);
	mix-blend-mode: multiply;
	width: -moz-fit-content;
	width: fit-content;
	margin-left: 3px;
}

.hoverAnimation {
	position: relative;
	transition: filter 0.3s ease-out;
}

.shine-btn {
	border-radius: clamp(3px, 1.33vw, 10px);
	overflow: hidden;
	position: relative;
}

.shine-btn::before {
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
	content: "";
	height: 100%;
	left: -120%;
	position: absolute;
	top: 0;
	transform: skewX(-30deg);
	width: 100%;
}

.shine-btn::before {
	animation: shine 5s linear infinite;
}

/* モーダル */

.modal-overlay {
	background: rgba(0, 0, 0, 0.6);
	bottom: 0;
	display: block;
	height: 100%;
	left: 0;
	overflow-y: auto;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 100;
}

.modal-container {
	background: url(../img/img_modal-bg.webp) repeat center/contain;
	margin-inline: auto;
	max-width: 750px;
	padding: 5% 0;
	width: 100%;
}

.modal-container.container-iframe {
	align-items: center;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.modal-close {
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	position: absolute;
	right: -1rem;
	top: -1rem;
	transition: all 0.3s ease-out;
	z-index: 1000;
}

.modal-close:hover {
	transform: scale(1.1);
}

.micromodal-slide {
	display: none;
}

.micromodal-slide.is-open {
	display: block;
}

/* modal-item
-------------------------------------------------- */

.modal-item {
	background: linear-gradient(#fff 0%, #fbfbfb 2.96%, #919191 100%);
	margin-inline: auto;
	outline: 3px solid #CBA91E;
	outline-offset: clamp(-10px, -1.33vw, -10px);
	padding: clamp(10px, 1.33vw, 10px);
	position: relative;
	width: clamp(300px, 90vw, 675px);
}

.modal-item__upper {
	align-items: center;
	background: url(../img/img_modal-item-bg.webp) no-repeat center/cover;
	display: flex;
	flex-direction: column;
	padding: clamp(22px, 6vw, 45px) clamp(20px, 5.33vw, 42px);
	row-gap: clamp(10px, 2.66vw, 20px);
}

.modal-item__title {
	font-size: clamp(17px, 4.66vw, 35px);
	font-weight: 900;
	line-height: 1.4285714286;
	text-align: center;
}

.modal-item__name {
	margin-top: clamp(10px, 2.66vw, 20px);
}

.modal-item__name img {
	margin: 0 auto;
}

.modal-item__img {
	width: clamp(168px, 44.8vw, 336px);
}

.modal-item__text {
	font-size: clamp(16px, 3.2vw, 24px);
	font-weight: 900;
	letter-spacing: 0.02em;
	line-height: 1.5;
	text-align: justify;
}

.modal-item__content {
	align-items: center;
	background: #000;
	border-bottom: 3px solid #CBA91E;
	border-top: 3px solid #CBA91E;
	display: flex;
	justify-content: center;
	-moz-column-gap: clamp(20px, 6.4vw, 48px);
	column-gap: clamp(20px, 6.4vw, 48px);
	padding: clamp(20px, 5.33vw, 40px) clamp(10px, 3.46vw, 26px);
	position: relative;
}

.modal-item__info-box {
	border: clamp(1px, 0.26vw, 2px) solid #fff;
	padding: clamp(9px, 2.53vw, 19px) 0;
	text-align: center;
	width: clamp(104px, 27.2vw, 204px);
}

.modal-item__info-box.no-border {
	border: none;
	padding: 0;
	width: clamp(125px, 33.3vw, 250px);
}

.modal-item__info-box.margin-inline-auto {
	margin-inline: auto;
}

.modal-item__info-box:not(:first-of-type) {
	margin-top: clamp(15px, 4vw, 30px);
}

.modal-item__info-label {
	color: #fff;
	font-size: clamp(16px, 3.2vw, 24px);
	font-weight: 900;
}

.modal-item__info-value {
	color: #fff;
	font-size: clamp(25px, 6.66vw, 50px);
	font-weight: 900;
	line-height: 1;
}

.modal-item__info-value.is-word {
	font-size: clamp(8px, 2.13vw, 16px);
}
.modal-item__info-value.is-word .modal-item__info-title {
	display: block;
	margin-bottom: 6px;
	font-size: clamp(16px, 3.2vw, 32px);
}

.modal-item__info-value.is-eaalpha {
	font-size: clamp(20px, 5.33vw, 40px);
}

.modal-item__info-value span {
	font-size: clamp(16px, 3.2vw, 24px);
	font-weight: 900;
	margin-left: clamp(3px, 0.8vw, 6px);
}

.modal-item__chart {
	width: clamp(165px, 44.13vw, 331px);
}

.modal-item.modal-item__iframe {
	background: none;
	height: 100%;
	outline: none;
	outline-offset: unset;
	padding: 0;
	width: 90%;
}

.modal-item.modal-item__iframe .pc {
	display: none;
}

.modal-item.modal-item__iframe .sp {
	display: block;
}

.modal-iframe {
	height: 100%;
	width: 100%;
}

.modal-item__info-value sup {
	position: relative;
}

.modal-item__info-value sup::after {
	bottom: clamp(14px, 3.73vw, 28px);
	content: "※";
	font-size: clamp(6px, 1.6vw, 12px);
	position: absolute;
}

.modal-item__info-value .--reg {
	font-size: clamp(9px, 2.4vw, 18px);
	position: relative;
}

.modal-item__info-value .--reg::after {
	content: "";
	position: absolute;
}

.modal-item__notes {
	bottom: clamp(5px, 1.33vw, 10px);
	color: #fff;
	font-feature-settings: "halt";
	font-size: clamp(6px, 1.6vw, 12px);
	font-weight: 500;
	left: clamp(5px, 4.66vw, 35px);
	position: absolute;
}

.modal-item__info .notes {
	color: #fff;
	font-feature-settings: "halt";
	font-size: clamp(6px, 1.6vw, 12px);
	font-weight: 500;
	left: clamp(5px, 4.66vw, 35px);
}

.modal-item__text sup {
	font-size: clamp(6px, 1.6vw, 12px);
}

.modal-item__text small {
	font-feature-settings: "halt";
	font-size: clamp(6px, 1.6vw, 12px);
	font-weight: 500;
}

.lineup-item__flavor {
	background: #000;
	border-top: 3px solid #CBA91E;
	padding: clamp(8px, 2.66vw, 20px);
}

.flavor-list {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(3px, 0.8vw, 6px);
	justify-content: center;
}

.flavor-item {
	color: #fff;
	counter-increment: auto;
	display: flex;
	font-feature-settings: "palt";
	font-size: clamp(10px, 2.13vw, 16px);
	justify-content: center;
	width: clamp(130px, 28vw, 200px);
}

.flavor-item.mango {
	background: #E95413;
}

.flavor-item.apple {
	background: #F7B729;
}

.flavor-item.soda {
	background: #01AFED;
}

.flavor-item.yogurt {
	background: #7C9FD4;
}

.flavor-item.fluitsmix {
	background: #EE6B00;
}

.flavor-item.choco {
	background: #6E4738;
}

.flavor-item.lemon {
	background: #FFF100;
	color: #000;
}

.flavor-item.tropicalmango {
	background: #EC764E;
}

.flavor-item.macha {
	background: #649F32;
}

.flavor-item.cafeaulait {
	background: #C7926C;
}

.flavor-item.vanilla {
	background: #FFF4C2;
	color: #000;
}

.flavor-item.banana {
	background: #FBCB73;
	color: #000;
}

.flavor-item.strawberry {
	background: #ED86B3;
}

.flavor-item.premiumchoco {
	background: #341A10;
}

.header__inner {
	max-width: 750px;
	position: relative;
}

.header__logo.dshc {
	left: clamp(9px, 2.4vw, 18px);
	position: absolute;
	top: clamp(9px, 2.4vw, 18px);
	width: clamp(75px, 20vw, 150px);
	z-index: 100;
}

.header__logo.dns {
	position: absolute;
	right: clamp(9px, 2.4vw, 18px);
	top: clamp(9px, 2.4vw, 18px);
	width: clamp(76px, 20.26vw, 152px);
	z-index: 100;
}

.main {
	background: url(../img/img_bg.webp) repeat-y top center/contain;
	position: relative;
}

.fv {
	background: url(../img/img_fv_v3.webp) no-repeat center/cover;
	height: clamp(646px, 175.06vw, 1313px);
	margin-inline: auto;
	max-width: 750px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.fv__title {
	left: clamp(16px, 3.87vw, 29px);
	position: absolute;
	top: clamp(27px, 7.2vw, 54px);
	width: clamp(295px, 92.2vw, 692px);
}

.fv__catchcopy {
	bottom: clamp(25px, 6.666vw, 50px);
	position: absolute;
	right: clamp(7px, 1.86vw, 14px);
	width: clamp(122px, 48.66vw, 365px);
}

.fv__catchcopy img:not(:first-of-type) {
	margin-top: clamp(4px, 1.06vw, 8px);
}

.fv__catchcopy img:nth-of-type(1) {
	opacity: 0;
	width: clamp(122px, 48.66vw, 365px);
}

.fv__catchcopy img:nth-of-type(2) {
	opacity: 0;
	width: clamp(108px, 43.33vw, 325px);
}

.fv__catchcopy img:nth-of-type(3) {
	opacity: 0;
	width: clamp(105px, 42.13vw, 316px);
}

.fv__catchcopy img:nth-of-type(4) {
	width: clamp(108px, 43.33vw, 325px);
}

.fv__item-img {
	bottom: clamp(21px, 5.6vw, 42px);
	left: clamp(22px, 7.2vw, 54px);
	position: absolute;
	width: clamp(128px, 35.2vw, 264px);
}

.fv__button {
	bottom: clamp(96px, 25.6vw, 192px);
	height: clamp(122px, 32.53vw, 244px);
	left: clamp(24px, 7.86vw, 59px);
	padding: clamp(13px, 3.6vw, 27px);
	position: absolute;
	width: clamp(122px, 32.53vw, 244px);
	z-index: 1;
}

.fv__button::before {
	animation: circleImg 30s linear infinite;
	background: url(../img/txt_brand-movie-circle.webp) no-repeat center/cover;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.fv__button .fv__button--modal {
	position: relative;
}

.fv__button .fv__button--modal.pc {
	display: none;
}
.fv__button--modal::after {
	border-color: transparent transparent transparent #fff;
	border-style: solid;
	border-width: clamp(7px, 2vw, 15px) 0 clamp(7px, 2vw, 15px) clamp(13px, 3.6vw, 27px);
	content: "";
	height: 0;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) scale(1);
	transition: transform 0.3s ease-out;
	width: 0;
}

.fv__name {
	position: absolute;
	width: clamp(60px, 15.46vw, 116px);
}

.name-ishikawa {
	left: clamp(14px, 3.73vw, 28px);
	top: clamp(282px, 75.33vw, 565px);
	width: clamp(60px, 16.66vw, 125px);
}

.name-itoh {
	right: clamp(13px, 3.6vw, 27px);
	top: clamp(165px, 44vw, 330px);
}

.name-minamino {
	left: clamp(210px, 56vw, 420px);
	top: clamp(334px, 89.2vw, 669px);
}

.message {
	background: url(../img/img_message-bg.webp) no-repeat top center/cover;
	overflow: hidden;
	padding-bottom: clamp(60px, 16vw, 120px);
	padding-top: clamp(35px, 9.33vw, 70px);
	position: relative;
}

.message::after {
	background: url(../img/img_minamino03_v3.webp) no-repeat bottom right/cover;
	bottom: 0;
	content: "";
	height: clamp(677px, 180.4vw, 1353px);
	position: absolute;
	right: 0;
	width: clamp(172px, 45.73vw, 343px);
}

.message__title {
	height: clamp(143px, 38.13vw, 286px);
	left: 50%;
	position: relative;
	transform: translateX(-50%);
	width: clamp(320px, 112vw, 840px);
}

.player-list {
	margin-top: clamp(42px, 11.33vw, 85px);
}

.player-list__item {
	position: relative;
}

.player-list__item + .player-list__item {
	margin-top: clamp(72px, 19.2vw, 144px);
}

.player__text {
	position: relative;
	z-index: 1;
}

.player__lead {
	color: #fff;
	font-size: clamp(25px, 6.66vw, 50px);
	font-weight: 900;
	line-height: 1.3;
	text-align: center;
}

.player__lead .u-indent-left {
	display: inline-block;
	text-indent: -1em;
}

.player__lead .u-indent-right {
	display: inline-block;
	text-indent: 1em;
}

.player__lead.pos-l_10 {
	left: clamp(7px, 2vw, 15px);
	position: relative;
}

.player__job {
	color: #fff;
	font-size: clamp(16px, 2.93vw, 22px);
	font-weight: 900;
	margin-top: clamp(16px, 4.26vw, 32px);
	text-align: center;
}

.player__name {
	color: #fff;
	font-size: clamp(20px, 5.6vw, 42px);
	font-weight: 900;
	margin-top: clamp(3px, 0.8vw, 6px);
	text-align: center;
}

.player__name span {
	display: block;
	font-size: clamp(6px, 1.6vw, 12px);
}

.player__img {
	position: absolute;
}

.player__img.img__minamino--left {
	left: clamp(-46px, -6.13vw, -23px);
	top: clamp(-80px, -10.66vw, -40px);
	width: clamp(125px, 33.33vw, 250px);
}

.player__img.img__minamino--right {
	right: clamp(12px, 3.33vw, 25px);
	top: clamp(20px, 5.33vw, 40px);
	width: clamp(100px, 26.66vw, 200px);
}

.player__img.img__ishikawa--left {
	left: clamp(-18px, -2.4vw, -9px);
	top: clamp(-100px, -13.33vw, -50px);
	width: clamp(120px, 37.86vw, 284px);
}

.player__img.img__ishikawa--right {
	right: clamp(-76px, -10.13vw, -38px);
	top: clamp(72px, 14.4vw, 108px);
	width: clamp(124px, 38.66vw, 290px);
}

.player__img.img__itoh--left {
	left: clamp(-39px, -5.2vw, -20px);
	top: clamp(-80px, -10.66vw, -40px);
	width: clamp(114px, 30.4vw, 228px);
}

.player__img.img__itoh--right {
	right: clamp(-124px, -16.53vw, -62px);
	top: clamp(43px, 11.46vw, 86px);
	width: clamp(174px, 46.4vw, 348px);
}

.message__catch {
	margin-inline: auto;
	margin-top: clamp(118px, 31.46vw, 236px);
	width: clamp(300px, 88vw, 660px);
}

.message__lead {
	color: #fff;
	font-size: clamp(25px, 6.66vw, 50px);
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1.6;
	margin-left: clamp(30px, 8vw, 60px);
	margin-top: clamp(30px, 8vw, 60px);
}

.message__summary {
	color: #fff;
	font-size: clamp(16px, 3.73vw, 28px);
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1.8571428571;
	margin-left: clamp(30px, 8vw, 60px);
	margin-top: clamp(13px, 3.6vw, 27px);
	position: relative;
	z-index: 1;
}

.message .highlight {
	height: clamp(298px, 79.33vw, 595px);
	margin-inline: auto;
	margin-top: clamp(58px, 14.26vw, 107px);
	position: relative;
	width: clamp(320px, 90.4vw, 678px);
	z-index: 1;
}

.highlight-base {
	left: clamp(13px, 5.6vw, 42px);
	position: absolute;
	top: 0;
	width: clamp(294px, 78.653vw, 589px);
}

.highlight-01 {
	left: clamp(6px, -5.6vw, -42px);
	position: absolute;
	top: clamp(69px, 18.4vw, 138px);
	width: clamp(195px, 52vw, 390px);
}

.highlight-02 {
	position: absolute;
	right: clamp(6px, -5.6vw, -42px);
	top: clamp(114px, 30.4vw, 228px);
	width: clamp(244px, 64.93vw, 487px);
}

.highlight-03 {
	position: absolute;
	right: clamp(16px, 4.66vw, 35px);
	top: clamp(186px, 49.6vw, 372px);
	width: clamp(294px, 78.53vw, 589px);
}

.lineup {
	background: #000;
	overflow: hidden;
	position: relative;
}

.lineup::after {
	background: #E60012;
	bottom: -1px;
	clip-path: polygon(0 70%, 100% 0, 100% 100%, 0% 100%);
	content: "";
	height: clamp(55px, 16.26vw, 162px);
	left: 0;
	position: absolute;
	width: 100%;
}

.lineup__img {
	position: relative;
}

.lineup__catch {
	position: absolute;
	right: clamp(34px, 10.66vw, 80px);
	top: clamp(91px, 24.26vw, 182px);
	width: clamp(100px, 31.73vw, 238px);
}

.lineup__title {
	bottom: clamp(26px, 8vw, 60px);
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: clamp(286px, 86.53vw, 649px);
}

.lineup__list {
	display: flex;
	flex-direction: column;
	position: relative;
	row-gap: clamp(20px, 5.33vw, 40px);
	z-index: 1;
}

.lineup__item {
	background: linear-gradient(#fff 0%, #fbfbfb 2.96%, #919191 100%);
	margin-inline: auto;
	outline: 3px solid #CBA91E;
	outline-offset: clamp(-10px, -1.33vw, -10px);
	padding: clamp(10px, 1.33vw, 10px);
	width: clamp(300px, 90vw, 675px);
}

.lineup-item__upper {
	background: url(../img/img_lineup-item-bg.webp) no-repeat center/cover;
	display: grid;
	grid-template-columns: auto auto;
	padding: clamp(22px, 6vw, 45px) clamp(20px, 5.33vw, 42px);
	-moz-column-gap: clamp(16px, 4.4vw, 33px);
	column-gap: clamp(16px, 4.4vw, 33px);
}

.lineup-item__img {
	width: clamp(100px, 26.66vw, 200px);
}

.lineup-item__description {
	place-content: center;
}

.lineup-item__description p {
	font-size: clamp(16px, 3.2vw, 24px);
	font-weight: 900;
	letter-spacing: -0.007em;
	line-height: 1.5833333333;
	margin-top: clamp(8px, 2.26vw, 17px);
}

.lineup-img01 {
	width: clamp(167px, 44.66vw, 335px);
}

.lineup-img02 {
	width: clamp(159px, 42.53vw, 319px);
}

.lineup-img03 {
	width: clamp(104px, 27.86vw, 209px);
}

.lineup-img04 {
	width: clamp(111px, 29.73vw, 223px);
}

.lineup-item__button {
	grid-column: 1/3;
	margin-inline: auto;
	margin-top: clamp(20px, 5.33vw, 40px);
	text-align: center;
	width: clamp(240px, 73.33vw, 550px);
}

.lineup-item__comment {
	background: #000;
	border-bottom: 3px solid #CBA91E;
	border-top: 3px solid #CBA91E;
	overflow: hidden;
	position: relative;
}

.lineup-item__coupon {
	background: #000;
	border-bottom: 3px solid #CBA91E;
	padding: clamp(18px, 5.2vw, 39px) clamp(26px, 6.93vw, 52px) clamp(26px, 6.93vw, 52px);
	text-align: center;
}

.coupon-txt {
	color: #fff;
	font-size: clamp(16px, 4.26vw, 32px);
	font-weight: 900;
	margin-top: clamp(11px, 2.93vw, 22px);
}

.coupon {
	align-items: center;
	background-color: rgba(255, 255, 255, 0.7);
	display: inline-flex;
	margin-top: clamp(6px, 1.6vw, 12px);
	max-width: 410px;
	padding: clamp(5px, 1.33vw, 10px) clamp(11px, 3.06vw, 23px);
	-moz-column-gap: clamp(11px, 2.93vw, 22px);
	column-gap: clamp(11px, 2.93vw, 22px);
	position: relative;
}

.coupon-code {
	font-size: clamp(24px, 6.26vw, 47px);
	font-weight: 900;
}

.copy-btn {
	align-items: center;
	border: none;
	cursor: pointer;
	display: flex;
	height: clamp(29px, 7.73vw, 58px);
	justify-content: center;
	width: clamp(29px, 7.73vw, 58px);
}

.copy-btn .tooltip {
	bottom: clamp(-30px, -4vw, -15px);
	color: #E60012;
	font-size: clamp(10px, 2.66vw, 20px);
	font-weight: 700;
	left: 50%;
	opacity: 0;
	position: absolute;
	transform: translateX(-50%);
	transition: opacity 0.3s ease;
}

.copy-btn.show-tooltip .tooltip {
	opacity: 1;
}

.buynow {
	display: block;
	margin-inline: auto;
	margin-top: clamp(22px, 5.86vw, 44px);
	max-width: 520px;
}

.lineup-item__shops {
	background: url(../img/img_lineup_shops-bg.webp) no-repeat center/cover;
	display: grid;
	gap: clamp(10px, 2.66vw, 20px);
	grid-template-columns: repeat(2, 1fr);
	padding: clamp(13px, 3.6vw, 27px) clamp(15px, 4.13vw, 31px) clamp(17px, 4.53vw, 34px);
	text-align: center;
}

.lineup-item__shops p {
	font-size: clamp(12px, 3.2vw, 24px);
	font-weight: 900;
	grid-column: 1/3;
	line-height: 1.5833333333;
}

.lineup-item__shops .buynow {
	grid-column: 1/3;
	margin-top: 0;
	max-width: 323px;
}

.obsession {
	background: #E60012;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.obsession__img {
	padding-bottom: clamp(34px, 9.06vw, 68px);
	padding-top: clamp(50px, 13.33vw, 100px);
	position: relative;
}

.obsession__title {
	margin-left: clamp(3px, 0.8vw, 6px);
	width: clamp(250px, 76vw, 570px);
}

.obsession__player01 {
	position: absolute;
	right: clamp(-13px, -1.73vw, -13px);
	top: clamp(44px, 13.6vw, 102px);
	width: clamp(104px, 27.73vw, 208px);
	z-index: -1;
}

.obsession__player02 {
	bottom: clamp(-22px, 2.93vw, -22px);
	position: absolute;
	right: clamp(50px, 16vw, 127px);
	width: clamp(66px, 17.73vw, 133px);
}

.obsession__player02::after {
	bottom: 26px;
	color: #fff;
	content: "©︎H.N.F.";
	font-size: clamp(6px, 1.6vw, 12px);
	position: absolute;
	right: 100%;
}

.accordion-container {
	display: flex;
	flex-direction: column;
	row-gap: clamp(20px, 5.33vw, 40px);
}

.accordion-item {
	background: #fff;
}

.accordion-heading {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: clamp(60px, 16vw, 120px);
	padding-left: clamp(15px, 4vw, 38px);
	padding-right: clamp(15px, 4vw, 30px);
}

.accordion-title {
	position: relative;
}

.accordion-title h3 {
	font-feature-settings: "halt";
	font-size: clamp(16px, 4vw, 30px);
	font-weight: 900;
	line-height: 1.2666666667;
}

.accordion-subtitle {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
}

.accordion-title p {
	display: inline-block;
	font-size: clamp(9px, 2.4vw, 18px);
	font-weight: 900;
	letter-spacing: 0.05em;
}

.accordion-title span {
	font-size: clamp(10px, 3.2vw, 24px);
	font-weight: 900;
}

.accordion-title sup {
	font-size: clamp(8px, 2.13vw, 16px);
}

.accordion-title h3 small {
	display: flex;
	font-size: clamp(8px, 2.13vw, 16px);
	line-height: 1;
	margin-top: clamp(3px, 0.8vw, 6px);
}

.accordion-icon {
	align-items: center;
	border: clamp(1.5px, 0.4vw, 3px) solid #000;
	border-radius: 50%;
	display: flex;
	height: clamp(20px, 6.66vw, 50px);
	justify-content: center;
	margin-left: auto;
	transition: all 0.3s ease-out;
	width: clamp(20px, 6.66vw, 50px);
}

.accordion-heading.open .accordion-icon {
	background: #000;
}

.accordion-icon span {
	display: inline-block;
	height: clamp(11px, 2.93vw, 22px);
	position: relative;
	width: clamp(11px, 2.93vw, 22px);
}

.accordion-icon span::before {
	background: #000;
	content: "";
	height: clamp(1px, 0.4vw, 3px);
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease-out;
	width: 100%;
}

.accordion-icon span::after {
	background: #000;
	content: "";
	height: clamp(1px, 0.4vw, 3px);
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) rotate(90deg);
	transition: all 0.3s ease-out;
	width: 100%;
}

.accordion-heading.open .accordion-icon span::before {
	background: #fff;
}

.accordion-heading.open .accordion-icon span::after {
	background: #fff;
	transform: translate(-50%, -50%) rotate(180deg);
}

.accordion-number {
	aspect-ratio: 40/60;
	display: flex;
	justify-content: center;
	width: clamp(20px, 5.73vw, 43px);
}

.accordion-number img {
	-o-object-fit: contain;
	object-fit: contain;
}

.accordion-content {
	display: none;
}

.content-item {
	max-width: 750px;
	padding-inline: clamp(25px, 6.66vw, 50px);
	width: 100%;
}

.content-item__text {
	font-size: clamp(16px, 3.2vw, 24px);
	font-weight: 700;
	line-break: anywhere;
	line-height: 1.5;
	margin-top: clamp(15px, 4vw, 30px);
	padding-bottom: clamp(18px, 4.8vw, 36px);
}

.content-item__img {
	position: relative;
}

.content-item__img p {
	bottom: 0;
	font-size: clamp(8px, 2.13vw, 16px);
	position: absolute;
	right: 0;
}

.choice {
	background: url(../img/img_choice-bg.webp) no-repeat top center/cover;
	margin-top: clamp(-40px, -5.33vw, -40px);
	overflow: hidden;
	padding-top: clamp(88px, 23.46vw, 176px);
	position: relative;
}

.choice::before {
	background: #E60012;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	content: "";
	height: clamp(95px, 25.33vw, 190px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.choice__img {
	padding-bottom: clamp(26px, 6.93vw, 52px);
	position: relative;
	z-index: 1;
}

.choice__img::after {
	background: url(../img/img_choice-title_bg.webp) no-repeat center/cover;
	bottom: clamp(-600px, -80vw, -300px);
	content: "";
	height: clamp(878px, 234.13vw, 1756px);
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: clamp(1452px, 387.2vw, 2904px);
	z-index: -1;
}

.choice__title {
	padding-inline: clamp(20px, 5.33vw, 40px);
	width: 100%;
}

.choice__slogan {
	margin-top: clamp(6px, 1.73vw, 13px);
}

.choice .highlight {
	height: clamp(298px, 79.33vw, 595px);
	margin-inline: auto;
	margin-top: clamp(65px, 17.33vw, 130px);
	position: relative;
	width: clamp(320px, 90.4vw, 678px);
	z-index: 1;
}

.highlight-base {
	left: clamp(13px, 5.6vw, 42px);
	position: absolute;
	top: 0;
	width: clamp(294px, 78.653vw, 589px);
}

.highlight-01 {
	left: clamp(6px, -5.6vw, -42px);
	position: absolute;
	top: clamp(69px, 18.4vw, 138px);
	width: clamp(195px, 52vw, 390px);
}

.highlight-02 {
	position: absolute;
	right: clamp(6px, -5.6vw, -42px);
	top: clamp(114px, 30.4vw, 228px);
	width: clamp(244px, 64.93vw, 487px);
}

.highlight-03 {
	position: absolute;
	right: clamp(16px, 4.66vw, 35px);
	top: clamp(186px, 49.6vw, 372px);
	width: clamp(294px, 78.53vw, 589px);
}

/* itemBox
-------------------------------------------------- */

.itemBox {
	background: #000;
	margin-inline: auto;
	padding: clamp(10px, 2.66vw, 20px);
	position: relative;
	z-index: 1;
}

.itemBox__border {
	background: linear-gradient(90deg, #fbd37a 22.53%, #fbd37a 31.6%, #fbeac5 40.47%, #fbdfa1 45.38%, #fbd684 50.23%, #fbd37a 53%, #cc9d53 64.26%, #c3944c 68.54%, #ac7e3b 75.31%, #8b5e22 83.07%, #9a6d32 100%);
	padding: 8px;
	position: relative;
}

.itemBox__border::before {
	background: #000;
	content: "";
	inset: 2px;
	position: absolute;
	z-index: 0;
}

.itemBox__border::after {
	background: linear-gradient(90deg, #fbd37a 22.53%, #fbd37a 31.6%, #fbeac5 40.47%, #fbdfa1 45.38%, #fbd684 50.23%, #fbd37a 53%, #cc9d53 64.26%, #c3944c 68.54%, #ac7e3b 75.31%, #8b5e22 83.07%, #9a6d32 100%);
	content: "";
	inset: 6px;
	position: absolute;
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	z-index: 1;
}

.itemBox__content {
	background: #000;
	padding: 2px;
	padding-bottom: clamp(23px, 6vw, 45px);
	padding-top: clamp(23px, 6vw, 45px);
	position: relative;
	z-index: 2;
}

.itemBox__cta {
	margin-left: clamp(16px, 4.26vw, 32px);
	margin-right: clamp(16px, 4.26vw, 32px);
	margin-top: clamp(27px, 7.33vw, 55px);
	overflow: hidden;
}

.itemBox__shops {
	display: flex;
	justify-content: center;
	-moz-column-gap: clamp(10px, 2.66vw, 20px);
	column-gap: clamp(10px, 2.66vw, 20px);
	margin-top: clamp(25px, 5.33vw, 40px);
}

.itemBox__500yenOff {
	margin-top: clamp(7px, 1.86vw, 14px);
}

.itemBox__flex {
	align-items: end;
	display: flex;
	margin-top: clamp(13px, 3.46vw, 26px);
	padding-left: clamp(23px, 6vw, 45px);
	padding-right: clamp(16px, 4.26vw, 32px);
}

.itemBox__flex .wrap {
	width: 58%;
}

.itemBox__flex .itemBox__img {
	width: 42%;
}

.itemBox__text {
	color: #fff;
	font-size: clamp(18px, 4.93vw, 37px);
	font-weight: 900;
}

.itemBox__coupon-code {
	background: rgba(255, 255, 255, 0.7);
	border: none;
	display: inline-block;
	font-size: clamp(20px, 6.26vw, 47px);
	font-weight: 900;
	line-break: anywhere;
	margin-top: clamp(5px, 1.33vw, 10px);
	padding: clamp(1px, 0.4vw, 3px) 0 clamp(1px, 0.4vw, 3px) clamp(10px, 2.66vw, 20px);
	width: 100%;
}

.itemBox__copy {
	margin-top: clamp(16px, 4.26vw, 32px);
	position: relative;
}

.itemBox__copy .tooltip {
	color: #E60012;
	font-size: clamp(10px, 2.66vw, 20px);
	font-weight: 700;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: -1em;
	transform: translateX(-50%);
	transition: opacity 0.3s ease;
	width: -moz-max-content;
	width: max-content;
}

.itemBox__copy.show-tooltip .tooltip {
	opacity: 1;
}

.itemBox__lead {
	margin-inline: auto;
	margin-top: clamp(15px, 4vw, 30px);
	width: clamp(190px, 50.66vw, 380px);
}

.itemBox__notes {
	color: #fff;
	font-feature-settings: "halt";
	font-size: clamp(10px, 2.66vw, 20px);
	margin-inline: auto;
	margin-top: clamp(20px, 5.33vw, 40px);
	padding: 0 clamp(20px, 5.33vw, 40px);
}

.itemBox__notes p {
	text-align: left;
}

/* side-menu
-------------------------------------------------- */

.side-menu {
	bottom: 0;
	left: 0;
	position: fixed;
	transform: translateY(100%);
	transition: transform 0.3s ease-out;
	width: 100%;
	z-index: 90;
}

.side-menu.is-visible {
	transform: translateY(0);
}

.side-menu.is-stopped {
	position: absolute;
	transform: none;
}

.toTop {
	padding-bottom: clamp(100px, 26.66vw, 200px);
	padding-top: clamp(25px, 6.66vw, 50px);
	text-align: center;
}

.toTop__button {
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-inline: auto;
}

.toTop__icon {
	display: inline-block;
}

.toTop p {
	color: #fff;
	font-size: clamp(10px, 2.66vw, 20px);
	font-weight: 700;
	line-height: 1.6;
}

.toTop.side-menu__toTop {
	display: none;
}

.side-menu__links {
	align-items: flex-end;
	display: flex;
	justify-content: end;
}

.side-menu__links__item {
	display: block;
	width: 100%;
}

.side-menu__links__item + .side-menu__links__item {
	margin-top: 20px;
}

.side-menu__links__item img {
	width: 100%;
}

/* side banner
-------------------------------------------------- */

.side-banner {
	display: none;
}

.side-banner__wrap {
	animation: scrollUp 15s linear infinite 0.5s both;
	display: flex;
	flex-direction: column;
	row-gap: 52px;
}

.side-banner img {
	display: block;
	width: 100%;
}

/* Swiper
-------------------------------------------------- */

.swiper-container {
	position: relative;
	width: 100%;
}

.swiper {
	background: #000;
	height: clamp(598px, 159.33vw, 1195px);
	padding: clamp(10px, 2.66vw, 20px);
	width: 100%;
}

.swiper-slide {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	overflow: hidden;
}

.swiper-pagination-bullet {
	background: #3E3E3E;
	height: clamp(7px, 2vw, 15px);
	opacity: 1;
	width: clamp(7px, 2vw, 15px);
}

.swiper-pagination-bullet-active {
	background: #fff;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 clamp(3px, 0.93vw, 7px);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: clamp(-44px, -5.86vw, -44px);
	left: auto;
	right: clamp(20px, 2.66vw, 20px);
	width: -moz-fit-content;
	width: fit-content;
}

.swiper-button-next::before,
.swiper-button-next::after {
	background-color: #fff;
	border-radius: 9999px;
	content: "";
	height: clamp(2px, 0.53vw, 4px);
	position: absolute;
	right: 0;
	top: calc(50% - 2px);
	transform-origin: calc(100% - clamp(1px, 0.26vw, 2px)) 50%;
	width: clamp(12px, 3.2vw, 24px);
}

.swiper-button-next::before {
	transform: rotate(45deg);
}

.swiper-button-next::after {
	transform: rotate(-45deg);
}

.swiper-button-prev::before,
.swiper-button-prev::after {
	background-color: #fff;
	border-radius: 9999px;
	content: "";
	height: clamp(2px, 0.53vw, 4px);
	left: 0;
	position: absolute;
	top: calc(50% - 2px);
	transform-origin: clamp(1px, 0.26vw, 2px) 50%;
	width: clamp(12px, 3.2vw, 24px);
}

.swiper-button-prev::before {
	transform: rotate(45deg);
}

.swiper-button-prev::after {
	transform: rotate(-45deg);
}

.video-thumbnail {
	aspect-ratio: 644/1155;
	height: 100%;
	width: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.video-iframe {
	aspect-ratio: 16/9;
	height: 100%;
	max-width: 750px;
	width: 100%;
	width: 90%;
}

/* loading animation
-------------------------------------------------- */

.loader {
	background: #000;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 1000;
}

.loader__logo {
	clip-path: inset(0% 0% 100% 0);
	left: 50%;
	max-width: 325px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 30vw;
	z-index: 1001;
}

/* js-animation
-------------------------------------------------- */

.js-marker {
	background: linear-gradient(#e3cc5d 100%);
	background-repeat: no-repeat;
	background-size: 0% 100%;
	display: inline;
}

.js-marker.animate {
	background-size: 100% 100%;
	transition: background-size 0.7s ease-out;
}

#footer {
	background: #fff;
	padding-bottom: 46px;
	position: relative;
}

#footer .sec-other {
	padding: 40px 40px;
	position: relative;
}

#footer .sec-other .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: -15px;
}

#footer .sec-other li {
	font-size: 13px;
	line-height: 1;
	margin-top: 15px;
}

#footer .sec-other li + li {
	border-left: 1px solid #dcdcdc;
	margin-left: 20px;
	padding-left: 20px;
}

#footer .sec-other li:nth-child(odd) {
	clear: both;
}

#footer .sec-other a {
	color: #555;
	text-decoration: none;
}

#footer .sec-other a:hover {
	text-decoration: underline;
}

#footer .sec-other button#ot-sdk-btn.ot-sdk-show-settings {
	background-color: #fff;
	border: 0;
	color: #555;
	font-size: 13px;
	line-height: 1;
	padding: 0;
}

#footer .sec-other button#ot-sdk-btn.ot-sdk-show-settings:hover {
	background-color: none;
	color: #555;
	text-decoration: underline;
}

#footer .sec-logo {
	text-align: center;
}

#footer .sec-logo .logo {
	height: 36px;
	margin-inline: auto;
	width: 246px;
}

#footer .sec-logo .footer-text {
	margin-bottom: 33px;
}

#footer .sec-logo .footer-text img {
	margin-inline: auto;
	width: 246px;
}

#footer .sec-copyright {
	color: #555;
	font-size: 12px;
	line-height: 1;
	margin-top: 40px;
	text-align: center;
}

#footer .sec-copyright .only-sp,
#footer .sec-copyright .only-sp-min {
	display: none;
}

#footer::before {
	background: #00b4ed;
	background: linear-gradient(to right, #00b4ed 0%, #89ba17 50%, #ffe900 100%);
	content: "";
	display: block;
	height: 6px;
}

.main_1 ~ #footer {
	margin-top: 93px;
}

@media (prefers-reduced-motion: reduce) {

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	scroll-behavior: auto !important;
	transition-duration: 0.01ms !important;
}

}

@media (hover: hover) {

.hoverAnimation:hover {
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.shine-btn:hover {
	opacity: 1;
}

.fv__button--modal:hover::after {
	transform: translate(-50%, -50%) scale(1.3);
}

}

@media (min-width: 750px) {

html {
	font-size: 16px;
}
}

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

html {
	font-size: 2.1333333333vw;
}

a:hover {
	opacity: 0.8;
}

.inner {
	max-width: 750px;
}
.fv__button .fv__button--modal.pc {
	display: block;
}
.fv__button .fv__button--modal.sp {
	display: none;
}


.modal-item.modal-item__iframe {
	aspect-ratio: 16/9;
	background: none;
	height: -moz-fit-content;
	height: fit-content;
	outline: none;
	outline-offset: unset;
	padding: 0;
	width: 90%;
}

.modal-item.modal-item__iframe .sp {
	display: none;
}

.modal-item.modal-item__iframe .pc {
	display: block;
}

.flavor-list {
	justify-content: flex-start;
}

.side-menu {
	bottom: 0;
	width: auto;
}

.toTop {
	padding-bottom: clamp(25px, 6.66vw, 50px);
}

.side-menu__links {
	display: none;
}

}

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

.toTop.side-menu__toTop {
	display: inline-block;
	margin-bottom: 33px;
	margin-left: 37px;
	padding-bottom: 0;
}

.side-banner {
	align-items: center;
	background: #000;
	display: flex;
	flex-direction: column;
	height: 100vh;
	overflow: hidden;
	padding: 0 35px;
	position: fixed;
	right: 0;
	row-gap: 52px;
	top: 0;
	width: 130px;
}

}

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

.side-menu__links {
	display: block;
	width: clamp(225px, 26vw, 450px);
	z-index: 90;
}

}

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

#footer .sec-other {
	padding: 32px 0;
}

#footer .sec-other .tpl-inner-wrap {
	text-align: center;
}

#footer .sec-other .list {
	display: inline-flex;
	margin-top: -20px;
}

#footer .sec-other li {
	line-height: 1.4;
	margin-top: 20px;
	width: 45%;
}

#footer .sec-other li + li {
	border-left: none;
	margin-left: 15px;
	padding-left: 0;
}

#footer .sec-logo .logo {
	height: 25px;
	max-width: 170px;
	width: 100%;
}

#footer .sec-logo .footer-text {
	margin-bottom: 25px;
}

#footer .sec-logo .footer-text img {
	height: 37px;
	width: auto;
}

#footer .sec-copyright {
	line-height: 1.6;
	margin-top: 33px;
}

#footer .sec-copyright .only-sp {
	display: block;
}

.main_1 ~ #footer {
	margin-top: 9.6vw;
}

#footer .sec-logo .footer-text img {
	height: 37px;
	width: auto;
}

}

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

#footer .sec-other .list {
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: 0px;
	text-align: left;
	width: 80%;
}

#footer .sec-other li {
	margin-left: 0;
}

#footer .sec-other li + li {
	margin-left: 0;
}

#footer .sec-other li:nth-of-type(1) {
	width: 100%;
}

}

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

#footer .sec-copyright .only-sp-min {
	display: block;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes shine {

0% {
	left: -120%;
}

8% {
	left: 100%;
}

100% {
	left: 100%;
}

}

@keyframes circleImg {

0% {
	transform: rotate(0);
}

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

}

@keyframes scrollUp {

from {
	transform: translateY(0);
}

to {
	transform: translateY(-100%);
}

}

@keyframes drawLine {

0% {
	background-size: 0% 100%;
}

100% {
	background-size: 100% 100%;
}

}
