@charset "UTF-8";
/* ############################################
	基本設定CSS
############################################ */

html {
	font-size: 62.5%;
}

body {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "sans-serif";
	font-size: 1.6rem;
	line-height: 1.5;
	word-wrap: break-word;
	word-break: break-all;
	color: #000000;
	background: #ffffff;
}

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

*:focus {
	outline: none;
}

.color-red {
	color: red;
}

/*==============================
	リンク
==============================*/

a {
	text-decoration: underline;
	color: red;
}

a:hover {
	text-decoration: none;
}

/*==============================
	画像
==============================*/

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

/*==============================
	改行調整
==============================*/

.nowrap {
	display: inline-block;
	width: max-content;
	white-space: nowrap;
	text-indent: initial;
}

/*==============================
	チェックボックス・ラジオボタン
==============================*/

input[type="checkbox"],
input[type="radio"] {
	z-index: -1;
	display: block;
	float: left;
	width: 1em;
	margin-right: -2rem;
	opacity: 0;

	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
	position: relative;
	display: inline-block;
	padding-left: 1.9em;
	cursor: pointer;
	text-align: left;
	text-decoration: none;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
	line-height: 1.65em;
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 1.4em;
	height: 1.4em;
	content: " ";
	transform: translateY(-50%);
	text-align: center;
	border: solid 2px;
	border-color: #00A684;
	background: #ffffff;
}

input[type="checkbox"] + label.error:before,
input[type="radio"] + label.error:before {
	border-color: #e60012;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
	content: "";
	color: #ffffff;
	border-color: #00A684;
	background-color: #00A684;
	background-image: url(../img/check-solid.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 80% 80%;
}

/*==============================
	テキスト入力ボックス
==============================*/

input[type="text"],
input[type="tel"],
input[type="email"] {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1em;
	display: block;
	width: 100%;
	padding: 0.5em 0.75em;
	text-decoration: none;
	color: inherit;
	border: none;
	border: solid 2px;
	border-color: #aaa5a4;
	border-radius: 4px;
	outline: 0;
	background: #f4f3f3;

	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

input[type="text"].error,
input[type="tel"].error,
input[type="email"].error {
	border-color: red;
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder {
	color: #aaa5a4;
}

@media screen and (max-width:750px) {
	input[type="text"],
	input[type="tel"],
	input[type="email"] {
		font-size: 3.2vw;
	}
}

@media screen and (max-width:576px) {
	input[type="text"],
	input[type="tel"],
	input[type="email"] {
		font-size: 1.6rem;
		font-size: 5.2vw;
	}
}

/* ############################################
	javascript用CSS
############################################ */

/*==============================
	スライダー（swiper）
==============================*/

.swiper-wrap {
	position: relative;
}

.swiper {
	margin: 5% 0;
}

.swiper-button-next {
	right: -3%;
	color: #00A684!important;
}

.swiper-button-prev {
	left: -3%;
	color: #00A684!important;
}

/*==============================
	アコーディオン（accordion）
==============================*/

.accordion {
	margin: 5% 0;
}

.accordion__head {
	font-size: 3.3rem;
	font-weight: bold;
	position: relative;
	padding: 0.5em 0;
	text-align: center;
	white-space: nowrap;
	color: #4c0815;
	border: solid 2px #4c0815;
	border-radius: 15px;
}

.accordion__head::after {
	position: absolute;
	top: 30%;
	right: 1.25em;
	display: block;
	width: 0.75em;
	height: 0.75em;
	content: "";
	transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
	transform: rotate(135deg);
	border-top: solid 2px #4c0815;
	border-right: solid 2px #4c0815;
}

.accordion__head.is-open::after {
	top: 40%;
	transform: rotate(-45deg);
}

.accordion__body {
	display: none;
	margin: 2.5% 0 0;
}

@media screen and (max-width:750px) {
	.accordion__head {
		font-size: 4.4vw;
		border-radius: 12px;
	}
}

@media screen and (max-width:576px) {
	.accordion__head {
		border-radius: 9px;
	}
}

/*==============================
	モーダルボックス
==============================*/

.modal {
	margin: 10% 0;
}

.modal__close,
.modal__open {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 3em;
	display: block;
	width: 80%;
	max-width: 450px;
	margin: 0 auto;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	color: #ffffff;
	border: none;
	background: #000000;
}

.modal__container {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	display: none;
	overflow: auto;
	width: 100%;
	height: 100%;
}

.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}

.modal__body {
	display: table;
	width: 100%;
	height: 100%;
}


.modal__main {
	display: table-cell;
	padding: 5%;
	text-align: center;
	vertical-align: middle;
}


.modal__content {
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	width: 93%;
	max-width: 600px;
	padding: 3.5%;
	color: #000000;
	background: #ffffff;
}

.modal__txt {
	font-size: 2.0rem;
	margin: 2.5% 0;
}

@media screen and (max-width:750px) {
	.modal__close,
	.modal__open {
		font-size: 3.2vw;
	}
}

@media screen and (max-width:576px) {
	.modal__close,
	.modal__open {
		font-size: 4.2vw;
	}
}


/*==============================
how_モーダル
==============================*/

.modal__open-how {
	display: block;
	cursor: pointer;
	border: none;
}

.modal__container-how {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	display: none;
	overflow: auto;
	width: 100%;
	height: 100%;
}

.modal__overlay-how {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}

.modal__content-how {
	position: relative;
	z-index: 1000;
	max-width: 750px;
	box-sizing: border-box;
	margin: 0 auto;
	overflow-y: auto;
	max-height: 90vh;
	margin: 3% auto;
	padding: 50px;
	background-color: #E20012;
}

@media screen and (max-width:750px) {
	.modal__content-how {
		width: 80%;
		padding: calc(50/750*100%);
	}
}

.modal__close-how {
	font-size: 30px;
	font-weight: 700;
	line-height: 30px;
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 30px;
	cursor: pointer;
	text-align: center;
}

.btn_close-how02 {
	width: 7em;
	display: block;
	text-align: center;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	padding: .5em 0;
	background-color: #000;
	margin: 1.5em auto 0;
	font-size: 20px;
	cursor: pointer;
}

@media screen and (max-width:750px) {
	.btn_close-how02 {
		font-size: 3.7vw;
	}
}

/*==============================
	バーコードリーダー
==============================*/

#interactive.viewport > canvas,
#interactive.viewport > video {
	width: 100%;
	max-width: 100%;
}

canvas.drawingBuffer {
	position: absolute;
	top: 0;
	left: 0;
}

/* ############################################
	コンテンツ用CSS
############################################ */

/*==============================
	コンテンツ（container）
==============================*/

.container {
	max-width: 750px;
	margin: 0 auto;
	background-color: #e20012;
}

/*==============================
	メイン（main）
==============================*/

.main {
	overflow: hidden;
}

.main__inner {
	/* margin: 0 6%; */
	/* padding: 12% 0; */
	padding: calc(110/750*100%) 6% calc(115/750*100%);
	background: url(../img/container_bg-appOpen01.png) repeat center top / 100% auto;
}

.main__inner01-preApp {
	padding: calc(110/750*100%) 6% calc(115/750*100%);
	background: url(../img/container_bg-pre_app01.png) no-repeat center top / 100%;
}

.main__inner01-preCard {
	padding: calc(110/750*100%) 6% calc(115/750*100%);
	background: url(../img/container_pre_card01.png) no-repeat center top / 100%;
}

.main__inner01-openApp {
	padding: calc(110/750*100%) 6% calc(115/750*100%);
	background: url(../img/container_bg-appOpen01.png) no-repeat center top / 100%;
}

.main__inner01-openCard {
	padding: calc(110/750*100%) 6% calc(115/750*100%);
	background: url(../img/container_bg-cardOpen01.png) no-repeat center top / 100%;
}

/*==============================
	セクション汎用（section）
==============================*/

.section+.section {
	margin-top: 12%;
}

.section-how+.section {
	margin-top: 12%;
}

/* 見出し */

.section__head, .section__head-how {
	font-size: 5.2rem;
	font-weight: bold;
	padding: 0.5% 0;
	text-align: center;
	white-space: nowrap;
	letter-spacing: 0.25rem;
	color: #ffffff;
	border-radius: 15px 15px 0 0;
	background: #00A684;
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
}

.section__head-how {
	background: #FFEE26;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section__head-how img {
	width: calc(552/648*100%);
	padding: calc(40/648*100%) 0;
}

@media screen and (max-width:750px) {
	.section__head {
		font-size: 7.0vw;
		border-radius: 12px 12px 0 0;
	}
}

.section__head02 {
	padding: calc(30/650*100%) 0 calc(10/650*100%);
	text-align: center;
	letter-spacing: 0;
	color: #ffffff;
	border-radius: 15px 15px 0 0;
	background: #00A684;
}

@media screen and (max-width:576px) {
	.section__head02 {
		border-radius: 9px 9px 0 0;
	}
}

.section__head__ttl{
	width: calc(480/650*100%);
	margin: 0 auto;
	padding: 0;
}

.section__head__notes {
	font-size: 2.4rem;
	text-align: center;
	color: #ffffff;
	margin-top: .5em;
}

@media screen and (max-width:750px) {
	.section__head__notes {
		font-size: 1.2rem;
		font-size: 3.2vw;
	}
}


/* 本文 */

.section__body, .section__body-how {
	padding: 5%;
	border: solid 6px #00A684;
	border-top: none !important;
	border-radius: 0 0 15px 15px;
	background: #ffffff;
}

.section__body-how {
	border: solid 6px #FFEE26;
}

@media screen and (max-width:750px) {
	.section__body {
		border: solid 5px #00A684;
		border-radius: 0 0 12px 12px;
	}
}

@media screen and (max-width:576px) {
	.section__body {
		border: solid 4px #00A684;
		border-radius: 0 0 9px 9px;
	}
}

/* リスト表示 */

.section__list {
	font-size: 1.65rem;
	margin-top: 5%;
}

.section__list-item {
	margin-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 750px) {
	.section__list {
		font-size: 3.2vw;
	}
}

/* テキスト表示 */

.section__txt {
	font-size: 2.4rem;
}

@media screen and (max-width: 750px) {
	.section__txt {
		font-size: 3.2vw;
	}
}

/*==============================
	固定表示専用（topfix）
==============================*/

.topfix {
	position: sticky;
	z-index: 99;
	top: 0;
	left: 0;
	max-width: 750px;
	border: solid #231815 8px;
	background-color: #f7f224
}

.topfix__inner {
	position: relative;
}

.topfix__str01,
.topfix__str02 {
	position: absolute;
	top: 0;
	left: 0;
	width: 7%;
}

.topfix__str01 {
	margin: 3.7% 0 0 8%;
}

.topfix__str02 {
	margin: 3.7% 0 0 15.5%;
}

.topfix__str01 img {
	animation: 4s 0s bound ease-in infinite;
}

.topfix__str02 img {
	animation: 4s 0.1s bound ease-in infinite;
}

@media screen and (max-width:750px) {
	.topfix {
		border-width: 6px;
	}
}

@media screen and (max-width:576px) {
	.topfix {
		border-width: 4px;
	}
}

@keyframes bound {
	79%,
	90%,
	97%,
	100% {
		-webkit-transform: translate(0);
		transform: translate(0);
	}
	85% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	94% {
		-webkit-transform: translateY(-4px);
		transform: translateY(-4px);
	}
	99% {
		-webkit-transform: translateY(-2px);
		transform: translateY(-2px);
	}
}

/*==============================
	ヘッダー専用（header）
==============================*/
.header {
	background: #e20012;
	position: relative;
}

.header__link {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto 0;
}

.header__link-open {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto calc(306/750*100%);
}

.header__link-btn {
	display: block;
	transition-property: opacity;
	transition-duration: 0.5s;
}

.header__link-btn:hover {
	opacity: 0.7;
}

.header__date {
	margin-top: 2%;
	margin-top: 0;
}

.header__date {
	margin-top: calc(50/750*100%);
	margin-top: 0;
}

/*==============================
	対象ブランド専用（brand）
==============================*/

.brand {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.brand__head {
	font-size: 3.8rem;
    font-weight: bold;
    padding: 0.5% 0;
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.25rem;
    color: #ffffff;
    background: #00A684;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
    margin: 5rem auto 2rem;
}

.brand__logo {
	width: 23%;
	margin: 1%;
	border: 1px solid #dddddd;
}

@media screen and (max-width:576px) {
	.brand__head {
		font-size: 2rem;
	}
}

/*==============================
	キャンペーン専用（step）
==============================*/

.step + .step::before {
	display: block;
	margin: 5% 0 2.5%;
	padding-top: 8.5%;
	content: "";
	background: transparent url(../img/step__bg.png) no-repeat center center/auto 100%;
}

.step__link {
	display: block;
	margin: 2% -3% 7% -5%;
}

.step__link img {
	max-width: 103%;
}

.step:nth-child(2) .step__tit {
	margin-right: -10%;
}

/*==============================
	応募規約専用（terms）
==============================*/

.terms {
	font-size: 1.6rem;
}

.terms__tit {
	font-weight: bold;
}

.terms__txt {
	margin-bottom: 5%;
}

.terms__list {
	margin-bottom: 5%;
}

.terms__list-item {
	margin-left: 1em;
	text-indent: -1em;
}

.terms__list-item > .terms__list {
	margin-bottom: 0;
}

@media screen and (max-width: 750px) {
	.terms {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 576px) {
	.terms {
		font-size: 1.4rem;
	}
}

/*==============================
	購入期間専用（date）
==============================*/

.date__img {
	margin-right: -7%;
	margin-left: -7%;
}

/*==============================
	お問い合わせ専用（contact）
==============================*/

.contact__def {
	font-weight: bold;
	margin: 5% 0;
}

.contact__def-tit {
	font-size: 4.2rem;
	line-height: 1.2;
	margin-bottom: 2%;
}

.contact__def-data {
	font-size: 2.2rem;
}

@media screen and (max-width:750px) {
	.contact__def-tit {
		font-size: 5.7vw;
	}
	.contact__def-data {
		font-size: 3.2vw;
	}
}

/*==============================
	フッター専用（footer）
==============================*/

.footer {
	padding: 5% 7%;
	background: #00A684;
}

.footer__company {
	font-size: 2.4rem;
	margin-bottom: 2.5%;
	color: #ffffff;
}

.footer__copy {
	font-size: 1.0rem;
	text-align: center;
	color: #ffffff;
}

/*===========================================
	カードサンプル
===========================================*/

.card {
	display: flex;
	align-items: center;
	flex-direction: column;
	margin: 10% 0;
	padding: 5%;
	border: solid 2px #aaa5a4;
	border-radius: 4px;
}

.card__img {
	width: 80%;
	margin-bottom: 5%;
	text-align: center;
}

.card__list {
	font-size: 2.4rem;
	width: 100%;
}

.card__list-item {
	margin-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 750px) {
	.card__list {
		font-size: 3.2vw;
	}
}

/*===========================================
	その他
===========================================*/

.btn_how {
	width: calc(715/660*100%);
	margin: 12% 0 0 calc(-27.5/660*100%);
}

/* ############################################
	フォーム用CSS
############################################ */

#form {
	margin-top: -21%;
	padding-top: 33%;
}

/*==============================
	メッセージ（form__message）
==============================*/

.form__message {
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.2;
	margin: 10% 0;
	padding: 1.25em 0;
	text-align: center;
	border-width: 6px;
	border-style: solid;
}

.form__message--alert {
	color: #ff0000;
	border-color: #ff0000;
}

.form__message--info {
	color: #0064e6;
	border-color: #0064e6;
}

.form__message br.sp-show {
	display: none;
}

@media screen and (max-width:750px) {
	.form__message {
		font-size: 3.7vw;
		border-width: 5px;
	}
}

@media screen and (max-width:576px) {
	.form__message {
		font-size: 4.7vw;
		border-width: 4px;
	}
	.form__message br.sp-show {
		display: block;
	}
}

/*==============================
	テキスト（form__txt）
==============================*/

.form__txt {
	font-size: 2.4rem;
	font-weight: bold;
	margin: 10% 0;
	text-align: center;
}

@media screen and (max-width: 750px) {
	.form__txt {
		font-size: 3.2vw;
	}
}

/*==============================
	入力項目（form__title）
==============================*/

.form__field {
	margin: 10% 0;
}

/*==============================
	タイトル（form__title）
==============================*/

.form__title {
	font-size: 2.8rem;
	font-weight: bold;
	margin: 0 0 5px 5px;
}

@media screen and (max-width:750px) {
	.form__title {
		font-size: 3.8vw;
	}
}

@media screen and (max-width:576px) {
	.form__title {
		font-size: 4.8vw;
	}
}

/*==============================
	エラー詳細（form__error）
==============================*/

.form__error {
	/* font-size: 1.8rem; */
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.2;
	/* margin: 0 0 5px 5px; */
	margin: 0.5em 0 0.5em 5px;
	text-align: left;
	color: red;
}

@media screen and (max-width:750px) {
	.form__error {
		font-size: 2.5vw;
	}
}

@media screen and (max-width:576px) {
	.form__error {
		font-size: 3.5vw;
	}
}

/*==============================
	注意事項（form__list）
==============================*/

.form__list {
	font-size: 1.8rem;
	margin-top: 10px;
}

.form__list-item {
	margin-left: 1em;
	text-indent: -1em;
}

@media screen and (max-width: 750px) {
	.form__list-item {
		font-size: 2.3vw;
	}
}

@media screen and (max-width:576px) {
	.form__list-item {
		font-size: 3.3vw;
	}
}

/*==============================
	入力確認（form__confirm）
==============================*/

.form__confirm {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1em;
	display: block;
	width: 100%;
	padding: 0.65em 0.75em;
	text-decoration: none;
	color: inherit;
	border: none;
	border: solid 2px;
	border-color: #00A684;
	border-radius: 4px;
	outline: 0;
	background: #e6fff7;
}

@media screen and (max-width:750px) {
	.form__confirm {
		font-size: 3.2vw;
	}
}

@media screen and (max-width:576px) {
	.form__confirm {
		font-size: 1.6rem;
		font-size: 5.2vw;
	}
}

/*==============================
	同意確認（form__agree）
==============================*/

.form__agree {
	font-size: 2.8rem;
	font-weight: bold;
	margin: 10% 0;
	text-align: center;
}

@media screen and (max-width:750px) {
	.form__agree {
		font-size: 3.8vw;
	}
}

@media screen and (max-width:576px) {
	.form__agree {
		font-size: 4.2vw;
	}
}

/*==============================
	ボタン（form__navi）
==============================*/

.form__navi {
	margin: 10% 0;
	text-align: center;
}

.form__button {
	margin: 2% auto;
}

.form__button[disabled] {
	cursor: default;

	-webkit-filter: grayscale(1);
	filter: gray;
	filter: grayscale(1);
}

.form__button--back {
	width: 63%;
}

.form__button img {
	filter: drop-shadow(4px 4px 4px rgba(0,0,0,0.4));
}

/* .form__button.form__button--entry,
.form__button.form__button--confirm {
	margin: 2% 0 7% -10%;
}

.form__button.form__button--entry img,
.form__button.form__button--confirm img {
	max-width: 103%;
} */

/*==============================
	追加：ref-form
==============================*/

.ref-form{
  /* margin: calc(50/560*100%) auto 0; */
}

.ref-ttl{
  display:inline-block;
  background:#FFEE26;
  color:#E20012;
  font-size: 26px;
  line-height: 1;
  font-weight: bold;
  border-radius: 6px;
  padding: .3em .5em;
}

@media screen and (max-width:750px) {
	.ref-ttl{
		font-size: 3.4vw;
		border-radius: .8vw;
	}
}

.ref-lead {
	font-size: 26px;
	font-weight: bold;
	margin-top: 1em;
}

@media screen and (max-width:750px) {
	.ref-lead {
		font-size: 3.4vw;
	}
}

.ref-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap:1em;
	margin: calc(35/560*100%) auto 0;
}

.ref-code{
  width: calc(380/560*100%);
}

.ref-code input[type="text"]{
  font-size: 24px;
  text-align: center;
  background-color: #fff;
  border: none;
  border-radius: 0;
  border-bottom: 4px solid #000;
  outline: none;
  padding: .5em;
}

@media screen and (max-width:750px) {
	.ref-code input[type="text"]{
		font-size: 3.2vw;
		border-bottom: 2px solid #000;
		}
}

/* プレースホルダーの色 */
.ref-code input[type="text"]::placeholder {
  color: #9FA0A0;
  font-weight: lighter;
}

.btn_ref-code {
	width: calc(188/560);
}

.btn_ref-code button[type="button"] {
	background: #000; 
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: .3em 1em;
	font-size:24px;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

.btn_ref-code button[type="button"]:hover {
	background: #ccc;
  	color: #000;
	box-sizing: border-box;
}

@media screen and (max-width:750px) {
	.btn_ref-code button[type="button"] {
		border-radius: .8vw;
		font-size:3.2vw;
	}
}

.ref-notes {
	font-size: 25px;
	color: #D31718;
	font-weight: bold;
	margin-top: 1em;
}

@media screen and (max-width:750px) {
	.ref-notes {
		font-size: 3.3vw;
	}
}

/*==============================
	クーポン
==============================*/

#main_coupon {
	background: url(../img/coupon_bg.png) repeat center center / auto;
	margin-right: -7%;
	margin-left: -7%;
}

.coupon_ttl {
	width: calc(701/750*100%);
	margin: 0 auto;
	padding-top: calc(25/750*100%);
}

.coupon_ttl_kakunin {
	width: calc(654/750*100%);
	margin: calc(35/750*100%) auto 0;
}

.coupon_day {
	width: calc(708/750*100%);
	margin: calc(45/750*100%) auto 0;
}

.coupon_image {
	width: calc(654/750*100%);
	margin: calc(35/750*100%) auto 0;
}

.coupon_notes {
	list-style: none;
	padding: calc(30/750*100%) calc(48/750*100%) calc(45/750*100%);
	font-size: 24px;
	line-height: 1.3;
	color: #000000;
}

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

@media screen and (max-width:750px) {
	.coupon_notes {
		font-size: 3.2vw;
	}
}


/* ############################################
	アニメーションCSS
############################################ */

#animation {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 3%;
	background-color: rgba(229, 0, 18, 1.00);
}

.ani__inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.ani__center {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 400px;
	transform: translate(-50%, -50%);
	text-align: center;
}

#animation {
	animation-duration: 0.8s;
}

#ani_step01 {
	animation-duration: 0.7s;
	animation-delay: 1.2s;
}

#ani_step02 {
	animation-duration: 0.7s;
	animation-delay: 1.9s;
}

#ani_step01 img,
#ani_step02 img {
	display: none;
}

/* bounceOut  */

@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
		opacity: 1;
	}
	50%,
	55% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
		opacity: 0;
	}
}
@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
		opacity: 1;
	}
	50%,
	55% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
		opacity: 1;
	}
	100% {
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
		opacity: 0;
	}
}

/* bounceIn  */

@-webkit-keyframes bounceIn {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
		opacity: 0;
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
		opacity: 1;
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
		opacity: 1;
	}
}

@keyframes bounceIn {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
		opacity: 0;
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
		opacity: 1;
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
		opacity: 1;
	}
}

/* fadeOutUp */

@-webkit-keyframes fadeOutUp {
	from {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		opacity: 0;
	}
}

@keyframes fadeOutUp {
	from {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		opacity: 0;
	}
}

/* ############################################
	追加CSS（2025/10/31）
############################################ */

/* ---------------------------------
	登録完了メッセージ
--------------------------------- */

.form__message--thanks {
	margin-bottom: 5%;
}

/* ---------------------------------
	アカウント表示
--------------------------------- */

.form__account {
	overflow: hidden;
	margin: 4% 0;
	border: solid 2px #777777;
	background: #ffffff;
}

.form__accounthead {
    font-weight: bold;
	text-align: center;
    padding: 0.25em 0.25em 0.4em;
	background: #777777;
	color: #ffffff;
	font-size: 2.4rem;
	line-height: 1.4;
}

.form__accountbody {
	padding: 1% 2%;
	text-align: center;
	font-size: 4.2rem;
	font-weight: bold;
}

@media screen and (max-width: 750px) {
	.form__accounthead {
		font-size: 3.4vw;
	}
	.form__accountbody {
		font-size: 6.2vw;
	}
}

@media screen and (max-width: 576px) {
	.form__accounthead {
		font-size: 4.4vw;
	}
	.form__accountbody {
		font-size: 7.2vw;
	}
}

/* ---------------------------------
	紹介コード発行
--------------------------------- */

.form__code {
	border-radius: 15px;
	margin-top: 10%;
	/* padding-bottom: 0.5em; */
	border: solid 0.5em #ffee30;
	border-top: 0;
}

.form__codehead {
	background-color: #ffee30;
}

.form__codebody {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	padding: 3% 3%;
	/* margin: 0 0.5em; */
}

.form__codetxt {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.form__codetxt small  {
	font-size: 1.8rem;
}

.form__codetxt strong  {
	font-size: 3.6rem;
}

.form__codebutton {
	background-color: red;
	color: #ffffff;
	padding: 0.5em 1em;
	border: none;
	border-radius: 100px;
	cursor: pointer;
	width: 100%;
	margin-top: 0.5em;
	font-size: 2.0rem;
}

@media screen and (max-width: 750px) {
	.form__code {
		border-radius: 12px;
	}
	.form__codetxt small  {
		font-size: 3.0vw;
	}
	.form__codetxt strong  {
		font-size: 5.6vw;
	}
	.form__codebutton {
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 576px) {
	.form__code {
		border-radius: 9px;
	}
	.form__codetxt small  {
		font-size: 4.0vw;
	}
	.form__codetxt strong  {
		font-size: 6.6vw;
	}
	.form__codebutton {
		font-size: 1.6rem;
	}
}

/* ---------------------------------
	獲得合計
--------------------------------- */

.form__point {
	border-radius: 15px;
	margin-top: 5%;
	border: solid 0.5em #00a584;
}

.form__pointhead {
	background-color: #00a584;
	color: #fff;
	text-align: center;
	padding-bottom: 0.5em;
	font-weight: bold;
}

.form__pointhead span {
	font-size: 2.4rem;
}

.form__pointbody {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}

.point__boxleft {
	font-size: 1.8rem;
	padding: 2%;
}

.point__boxright {
	padding: 2%;
	line-height: 1;
}

.point__totaltitle {
	display: flex;
	align-items: baseline;
	font-size: 5.0rem;
} 

.point__totaltitle small {
	font-size: 55%;
}

.point__totaltitle small:first-child {
	font-size: 50%;
}

.point__totaltitle strong {
	margin: 0 5px;
}

.form__point .color-red {
	color: red;
	text-align: center;
	padding-bottom: 1em;
	font-weight: bold;
	font-size: 1.6rem;
}

@media screen and (max-width: 750px) {
	.form__point {
		border-radius: 12px;
	}
	.form__pointhead span {
		font-size: 5.0vw;
	}
	.form__pointbody {
		flex-direction: column;
		padding-top: 3%;
	}
	.point__boxleft {
		font-size: 4.8vw;
	}
	.point__totaltitle {
		font-size: 14.0vw;
	} 
	.form__point .color-red {
		font-size: 3.5vw;
	}
}

@media screen and (max-width: 576px) {
	.form__point {
		border-radius: 9px;
	}
}
