@charset "utf-8";

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

	--style.css--

	1. Style setting
		1-1. Base styles
		1-2. Structure styles

	2. Layout setting
		2-1. Header styles
			2-1_1. SpNavi
		2-2. GlobalNavi styles
		2-3. Main styles
		2-4. Footer styles
		2-5. Page styles

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

/*==================================================================
	1. Base setting
===================================================================*/
/* ------------------------------------------------------------------
	1-1. Base styles
-------------------------------------------------------------------*/
body {
	font-family: 'Noto Sans JP', sans-serif;
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 400;/* Noto Sans JP Regular */
	color: #000;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

a { color: #00418F; text-decoration: none;}
a.underline { text-decoration: underline;}

/* ------------------------------------------------------------------
	1-2. Structure styles
-------------------------------------------------------------------*/
.container {
	background: #7edaff;
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	position: relative;
}
.container_flex {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*==================================================================
	2. Layout setting
===================================================================*/

/* ------------------------------------------------------------------
	2-1. Header styles
-------------------------------------------------------------------*/
/* ------------------------------------
	ハンバーガーメニュー
------------------------------------*/
.hamburger {
	position: fixed;
	top: 0;
	right: 2%;
	width: 52px;
	height: 52px;
	cursor: pointer;
	z-index: 101;
}
.hamburger::after,.hamburger::before {
	content: "";
	height: 3px;
	width: 50%;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #000;
	border-radius: 3px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.hamburger::before {
	top: 16px;
}
.hamburger::after {
	bottom: 16px;
}
.hamburger span {
	height: 3px;
	width: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #000;
	border-radius: 3px;
}

/* OPEN時 */
.drawer-open .hamburger {
	margin-top: 2%;
}
.drawer-open .hamburger span {
	display: none;
}
.drawer-open .hamburger:before {
	background: #FFF;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	top: 24px;
}
.drawer-open .hamburger:after {
	background: #FFF;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	top: 24px;
}

/* ------------------------------------
	SNS
------------------------------------*/
.x_icon {
	background: #004eb7;
	position: absolute;
	top: 0;
	right: 3%;
	width: 10vw;
	padding: 2% 0 3% 0;
	text-align: center;
	font-size: 5.625vw;
	color: #FFF;
	z-index: 2;
	/* リボン型に切り抜き */
	clip-path: polygon(
		0 0,
		100% 0,
		100% 100%,
		50% 85%,
		0 100%
	);
}
.x_icon a {
	color: inherit;
}
/*
.x_icon:after {
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	border-left: 5vw solid #004eb7;
	border-right: 5vw solid #004eb7;
	border-bottom: 2vw solid transparent;
}
*/

@media only screen and (min-width: 641px) {
	.x_icon {
	width: 70px;
	font-size: 36px;
	}
	.x_icon:after {
	border-left: 35px solid #004eb7;
	border-right: 35px solid #004eb7;
	border-bottom: 15px solid transparent;
	}
	
}

/* ------------------------------------------------------------------
	2-1_1. SpNavi
-------------------------------------------------------------------*/
#sp_nav {
	background-color: rgba(0,0,0,.8);
	top: 0;
	right: -80%;
	width: 80%;
}
.drawer--right.drawer-open #sp_nav {
	right: 0;
}
.drawer-overlay {
	/*background-color: rgba(0,0,0,.4) !important;*/
}
.sp_nav_logo img {
	max-height: 60px;
	margin-bottom: 2%;
}
.sp_nav_list {
	padding: 5%;
	color: #FFF;
}
.sp_nav_item {
	border-bottom: 1px solid #D9D3C5;
	padding: 5% 8% 5% 0;
	font-size: 18px;
	font-weight: 500;
	position: relative;
}
.sp_nav_item:after {
	position: absolute;
	top: 50%;
	right: 10px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f105";
	font-size: 18px;
	color: #FFF;
}
.sp_nav_item a {
	display: block;
	color: inherit;
}

/* ------------------------------------------------------------------
	2-3. Main styles
-------------------------------------------------------------------*/
.section {
	margin-bottom: 8%;
}
.section_wrap {
	padding: 0 5%;
}

/* ------------------------------------------------------------------
	2-4. Footer styles
-------------------------------------------------------------------*/
.footer {
	background: #FFF;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 3%;
	margin-top: 8%;
	color: #FFF;
}
.footer_item {
	color: #4d4d4d;
}
.fnav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 15px;
	font-size: 14px;
}
.fnav a {
	color: inherit;
}
.copyright {
	margin-top: 3%;
	font-size: 10px;
}
.flogo {
	width: 15vw;
	max-width: 100px;
	text-align: right;
}

/* ------------------------------------------------------------------
	2-5. Page styles
-------------------------------------------------------------------*/

/* ▼▼▼ここに各コーダーが別途作成したCSS内のスタイルをドッキングしていく▼▼▼ */
/* --------------------------------
	トップページここから
--------------------------------*/
.mv {
	width: 100%;
	background: url("../img/mv_bg.png") repeat center top;
	background-size: cover;
	position: relative;
}
.mv:after {
	background: #7edaff;
}
.mv_logo {
	position: absolute;
	top: 85vw;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	max-width: 640px;
}
.mv_btn {
	width: 70vw;
	max-width: 430px;
	margin: 0 auto;
}
.mv_btn a {
	display: block;
	background: -moz-linear-gradient(top, #ffae00, #ffc900);
	background: -webkit-linear-gradient(top, #ffae00, #ffc900);
	background: linear-gradient(to bottom, #ffae00, #ffc900);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
	border-radius: 100vh;
	padding: 5% 0;
	text-align: center;
	text-shadow:
		-2px -2px 1px #f49a0d,
		 2px -2px 1px #f49a0d,
		-2px 2px 1px #f49a0d,
		 2px 2px 1px #f49a0d,
		 0 -2px 1px #f49a0d,
		 2px 0 1px #f49a0d,
		 0 2px 1px #f49a0d,
		-2px 0 1px #f49a0d;
	font-size: 4vw;
	font-weight: 700;
	color: #FFF;
	position: relative;
	overflow: hidden;
}
.mv_btn a::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fbfbfb;
	animation: btn_animation 2.5s ease-in-out infinite;
}
.mv_btn span::before,
.mv_btn span::after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 6vw;
	height: 6vw;
	background: url(../img/deco_1.png) no-repeat;
	background-size: contain;
}

@-webkit-keyframes btn_animation {
	0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.info_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 15px;
	background: url("../img/bg_hexagon.jpg") repeat left top;
	border: 3px solid #d6f3fe;
	border-radius: 5px;
	width: 90%;
	margin: 5% auto 0 auto;
	padding: 5%;
	text-align: center;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
position: relative;
}
/*
.info_box::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 6vw;
	height: 6vw;
	background: url(../img/deco.png) no-repeat;
	background-size: contain;
}
*/
.info_box::before,
.info_box::after {
	content: "";
	position: absolute;
	width: 31vw;
	height: 20vw;
	background: url(../img/deco_2.png) no-repeat;
	background-size: contain;
}
.info_box::before {
	bottom: -15%;
	left: -6%;
	transform: scale(-1, -1);
}
.info_box::after {
	top: -15%;
	right: -6%;
}

.info_title {
	font-size: 8vw;
	text-shadow:
		-3px -3px 1px #fff,
		 3px -3px 1px #fff,
		-3px  3px 1px #fff,
		 3px  3px 1px #fff,
		-3px  0   1px #fff,
		 3px  0   1px #fff,
		 0  -3px  1px #fff,
		 0   3px  1px #fff;
	
/*	text-shadow:
		-3px -3px 0 #fff,
		 3px -3px 0 #fff,
		-3px  3px 0 #fff,
		 3px  3px 0 #fff;*/
	color: #ff8a00;
}
.dl_area {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
}
.dl_area a img {
	height: 10vw;
}

@media only screen and (min-width: 641px) {
	.mv_logo {
	top: 542px;
	}
	.mv_btn a {
	font-size: 24px;
	}
	.mv_btn span::before,
	.mv_btn span::after {
	width: 38px;
	height: 38px;
	}
	
	.info_box::before,
	.info_box::after {
	width: 198px;
	height: 125px;
	}
	.info_title {
	font-size: 52px;
	}
	.dl_area a img {
	height: 70px;
	}
	
}

/* ------------------------------------
	トップページここまで
------------------------------------*/

/* --------------------------------
	シリアルコード入力ペーここから
--------------------------------*/
.logo {
	width: 50%;
	margin: 0 auto;
	padding: 5% 0;
}

.form_list {
	margin-bottom: 8%;
}
.form_subject {
	margin-bottom: 2%;
	font-size: 18px;
	font-weight: 700;
}
.form_body {
	word-break: break-all;
}
.form_message {
	background: #FFF;
	border-radius: 10px;
	padding: 5%;
	font-size: 14px;
}
.form_message_title {
	margin-bottom: 5%;
	font-size: 20px;
}

/* ------------------------------------
	シリアルコード入力ページここまで
------------------------------------*/

/* ▲▲▲ここに各コーダーが別途作成したCSS内のスタイルをドッキングしていく▲▲▲ */


/* ボタン内スピナー */
.button-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}













