@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;
}

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

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;
}

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

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

/* .container {
	max-width: 750px;
	margin: 0 auto;
	background: url(../img/container_bg.jpg) repeat-y center top/100% auto;
} */

.container__pre {
	max-width: 750px;
	margin: 0 auto;
	background: #fcce00 url(../img/container_bg.jpg) no-repeat center calc(88/750*100vw)/contain;
}

.container__open {
	max-width: 750px;
	margin: 0 auto;
	background: #fcce00 url(../img/container_bg.jpg) no-repeat center calc(88/750*100vw)/contain;
}

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

.main {
	overflow: hidden;
}

.main__inner {
	margin: 0 6%;
	padding: 12% 0;
}

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

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

/* 見出し */

.section__head {
	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: #011f5d;
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
}

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

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

/* 本文 */

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

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

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

.section__head_image {
	padding: calc(25/648*100%) 0;
	text-align: center;
	white-space: nowrap;
	border-radius: 15px 15px 0 0;
	background: #011f5d;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section__head_image img {
	width: calc(557/648*100%);
	display: block;
}

@media screen and (max-width:750px) {
	.section__head_image {
		border-radius: 12px 12px 0 0;
	}
}

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

/* リスト表示 */

.section__list {
	/* font-size: 2.4rem; */
	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: 100;
	top: 0;
	left: 0;
	max-width: 750px;
	/*	padding: 3%;	*/
	border: solid #011f5d 8px;
	background-color: #ff0000;
}

.topfix__inner {
	position: relative;
}

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

.topfix__str01 {
	margin: 3% 0 0 6.5%;
}

.topfix__str02 {
	margin: 3% 0 0 13.8%;
}

.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__link {
	margin: 2% 2% 0;
	/* 	padding: 5%;
	border-radius: 4px;
	background: #fff100;
	border: #e10012 solid 8px;
*/
}

/* .header__link-tit {
	margin: 0 10% 3%;
} */

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

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

/* .header__link-btn img {
	filter: drop-shadow(4px 4px 4px rgba(0,0,0,0.4));
} */

.header__date {
	margin-top: 2%;
}

/*==============================
	対象商品（products）
==============================*/

#products .section__head {
	padding: 3% 5%;
}

/*==============================
	まずはエントリー（entry）
==============================*/

.entry__link {
	display: block;
	margin: 5% -3% 10% -9%;
}

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

/*==============================
	ダウンロード（download）
==============================*/

.download {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	padding: 5%;
	border: solid 6px #0d3482;
	border-radius: 15px;
	background: #ffffff;
}

.download__def-tit {
	width: 100%;
	margin-bottom: 5%;
}

.download__def-data {
	width: 23%;
	margin: 1%;
	list-style: none;
	border: solid 1px rgba(0, 0, 0, 0.1);
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}

@media screen and (max-width:750px) {
	.download {
		border: solid 5px #1b2a75;
		border-radius: 12px;
	}
}

@media screen and (max-width:576px) {
	.download {
		border: solid 4px #1b2a75;
		border-radius: 9px;
	}
}

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

.date__img {
	margin-top: 12%;
	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.4rem;
}

@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: #1b2a75;
}

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

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

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

/*===========================================
モーダル（modal）
===========================================*/

.modalArea {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
}

.modalBg {
	width: 100%;
	height: 100%;
	background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	max-width: 500px;
	padding: 30px;
	transform: translate(-50%, -50%);
	background-color: #ffffff;
}

.closeModal {
	font-size: 20px;
	line-height: 20px;
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 20px;
	cursor: pointer;
	text-align: center;
}

.modalContents {
	text-align: center;
}

.modalThumbnail {
	width: 60%;
	margin: 0 auto 30px;
}

.modalList {
	display: flex;
}

.modalItem {
	width: 50%;
	padding: 0 2%;
}

@media screen and (max-width:750px) {
	.modalWrapper {
		padding: 5%;
	}
	.modalThumbnail {
		width: 80%;
		margin: 0 auto 7%;
	}
}

/* ############################################
	アニメーション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%;
	border: solid #0d3482 8px;
	background-color: #e5127b;
}

.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;
	/* animation-delay: 3.5s; */
}

#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;
}