﻿@charset "UTF-8";

/* ==================== base style */

* {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 100%;
	font-style: normal;
	text-decoration: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

//html { scroll-behavior: smooth; }

body {
	background-color: #ffffff;
	color: #333333;
	font-size: 120%;
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

table, th, td, img {
	border: none;
}

a:link,
a:visited {
	color: #f3993e;
	text-decoration: none;
}

a:hover,
a:active {
	color: #f71d6f;
	text-decoration: none;
}

a:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
}

a:focus {
	/*\*/
		overflow: hidden;
	/**/
}

.clearBoth {
	clear: both;
}


/* ==================== header */

header {
	width: 100%;
	padding: 10px 0 30px;
	background: #001a67 url("../img/bg.webp") center center no-repeat;
	background-size: cover;
	color: #ffffff;
	text-align: center;

	text-shadow: 5px 5px 5px #000, -5px -5px 5px #000,
	-5px 5px 5px #000,  5px -5px 5px #000,
	5px 0 5px #000, -5px  0 5px #000,
	0 5px 5px #000,  0 -5px 5px #000;
}

#headerLeft {
	float: left;
	width: 100px;
	height: 100px;
	margin: 0;
	text-align: left;
}

/* nav */

nav ul {
	width: 300px;
	margin: 20px auto;
	border-radius: 0 10px 10px 0;
}

nav li {
	border-bottom: solid 1px #ffe400;
}

nav li a:link,
nav li a:visited {
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px 0 10px 25px;
	color: #ffe400;
	text-decoration: none;

	text-shadow: 5px 5px 5px #000, -5px -5px 5px #000,
	-5px 5px 5px #000,  5px -5px 5px #000,
	5px 0 5px #000, -5px  0 5px #000,
	0 5px 5px #000,  0 -5px 5px #000;
}

nav li a:hover,
nav li a:active {
	color: #f71d6f;
	text-decoration: none;
}



#headerRight {
	float: right;
	width: 100px;
	height: 100px;
	margin: 0 20px 0 0;
	text-align: right;
}

#headerTop {
	width: 100%;
	margin: -100px 0 0 0;
	text-align: center;
}

#headerTop div img {
	padding: 2px;
	background: #ffffff;
	border-radius: 5px;
}

@media screen and (max-width: 1000px) {
	#headerLeft {
		width: 25%;
	}
	#headerRight {
		width: 25%;
	}
	#headerTop {
		margin: -100px 0 0 0;
	}
	#headerImg img {
		width: 96%;
	}
	nav {
		display: none;
	}
}



/* menu */

.hMenu {
	display: none;
	position: relative;
}

@media screen and (max-width: 1000px) {
	.hMenu {
		display: block;
		position: relative;
	}
}

/*inputのcheckboxは非表示*/
.hMenuCheckbox {
	display: none;
}

/*ハンバーガーメニュー*/
.hMenu_icon {
	display: inline-block;
	width: 50px;
	height: 50px;
	padding: 0 0 0 9px;
	background-color: #f3993e;
	border-radius: 5px;
	vertical-align: middle;
	cursor: pointer;
}

/*3本線*/
.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
	content: '';
	display: block;
	position: absolute;
	top: 15px;
	bottom: 0;
	width: 32px;
	height: 3px;
	background: white;
	cursor: pointer;
	z-index: 100;
}

.hamburger-icon:before {
	top: 10px;
}

.hamburger-icon:after {
	top: 20px;
}

/*メニュー以外を暗くする*/
#hMenu_black {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .7s ease-in-out;
	z-index: 98;
}

/*中身*/
#hMenu_content {
	position: fixed;
	top: 0;
	left: 0;
	max-width: 320px;
	width: 100%;
	height: 100vh;
	padding: 53px 16px 16px;
	background: #f3993e;
	overflow: auto;
	transition: .3s ease-in-out;
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
	z-index: 99;
}

/*チェックボックスにチェックが入ったら表示*/
input:checked ~ .hMenu_icon .hamburger-icon {
	background: transparent;
}

input:checked ~ .hMenu_icon .hamburger-icon::before {
	top: 10px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	z-index: 999;
}

input:checked ~ .hMenu_icon .hamburger-icon::after {
	top: 10px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 999;
}

input:checked ~ #hMenu_black {
	display: block;
	opacity: .8;
}

#hMenu_checkbox:checked ~ #hMenu_content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.hMenu_icon .hamburger-icon,
.hMenu_icon .hamburger-icon::before,
.hMenu_icon .hamburger-icon::after,
#hMenu_black,
#hMenu_content {
	-webkit-transition: all .3s;
	transition: all .3s;
}

#hMenu_content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#hMenu_content ul li {
	border-bottom: solid 1px white;
}

#hMenu_content li a {
	display: block;
	padding: 14px;
	font-size: 14px;
	color: white;
	text-decoration: none;
	transition-duration: 0.2s;
}

#hMenu_content li a:hover {
	background: #f85a67;
}


/* ==================== contentArea */

#contentArea {
	width: 100%;
	border-top: solid 10px #72a83c;
	font-size: 120%;
}

#contentArea h3 {
	margin: 10px 0 20px;
	font-size: 140%;
	font-weight: bold;
	color: #72a83c;
	text-align: center;
	line-height: 1.2em;
}

#contentArea h4 {
	font-size: 120%;
	font-weight: bold;
	color: #72a83c;
	line-height: 1.2em;
}

#partBox0 div,
#partBox1 div,
#partBox2 div,
#partBox3 div,
#partBox4 div,
#partBox5 div,
#partBox6 div,
#partBox7 div,
#partBox8 div,
#partBox9 div {
	width: 1000px;
	margin: 0 auto;
	text-align: center;
}


@media screen and (max-width: 1000px) {
	#partBox0 div,
	#partBox1 div,
	#partBox2 div,
	#partBox3 div,
	#partBox4 div,
	#partBox5 div,
	#partBox6 div,
	#partBox7 div,
	#partBox8 div,
	#partBox9 div {
		width: 96%;
	}
}


/* partBox0 */

#partBox0 {
	padding: 50px 0 50px;
	text-align: center;
}

#partBox0 a {
	display:inline-block;
	width: 340px;
	margin-bottom: 5px;
	padding: 10px 10px;
	background-color: #b91c22;
	border-radius: 10px;
	color: #ffffff;
}


@media screen and (max-width: 1000px) {
	#partBox0 iframe {
		width: 96%;
	}
	#partBox0 a {
		width: 96%;
	}
}


/* partBox1 */

#partBox1 {
	padding: 50px 0 70px;
	background-color: #d4efba;
	text-align: center;
}


/* partBox2 */

#partBox2 {
	padding: 50px 0 70px;
	text-align: center;
}

#partBox2 ul {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
}

#partBox2 ul li {
	width: 24%;
	min-height: 240px;
	margin: 5px;
	padding: 20px 0 0;
	background-color: #72a83c;
	border-radius: 50%;
	color: #fff;
	line-height: 1.1;
}

#partBox2 ul li .num {
	font-size: 180%;
	color: #ffe400;
}

@media screen and (max-width: 1000px) {
	#partBox2 ul li {
		width: 48%;
	}
}


/* partBox3 */

#partBox3 {
	padding: 50px 0 70px;
	text-align: center;
}

@media screen and (max-width: 1000px) {
	#partBox3 img {
		width: 96%;
	}
}


/* partBox4 */

#partBox4 {
	padding: 50px 0 70px;
	background-color: #d4efba;
	text-align: center;
}

#partBox4 img {
	border-radius: 10px;
}

#partBox4 table {
	margin: 0 auto;
}

#partBox4 table td {
	padding: 5px 5px;
	background-color: #d4efba;
	border-radius: 10px;
	text-align: left;
	vertical-align: top;
}

#partBox4 table td img {
	border: solid 4px #fab600;
	border-radius: 10px;
}

@media screen and (max-width: 1000px) {
	#partBox4 img {
		width: 96%;
	}
}


/* partBox5 */

#partBox5 {
	padding: 50px 0 70px;
	text-align: center;
}

#partBox5 table {
	width: 100%;
}

#partBox5 table td {
	padding: 20px 30px;
	background-color: #d4efba;
	border-radius: 10px;
	text-align: left;
	vertical-align: top;
}

#partBox5 table td img {
	border: solid 4px #fab600;
	border-radius: 10px;
}

@media screen and (max-width: 1000px) {
	#partBox5 table td {
		width: 100%;
	}
}


/* partBox6 */

#partBox6 {
	padding: 50px 0 70px;
	text-align: center;
}

#partBox6 ul {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
}

#partBox6 ul li {
	width: 31%;
	margin: 0 10px;
	padding: 20px 10px;
	color: #fff;
}

#partBox6 ul li span {
	font-size: 120%;
	font-weight: bold;
}

#partBox6 ul li.bgG {
	background: #72a83c;
	border-radius: 10px;
}

#partBox6 ul li.bgB {
	background: #00a1e8;
	border-radius: 10px;
}

#partBox6 ul li.bgR {
	background: #e5227f;
	border-radius: 10px;
}

@media screen and (max-width: 1000px) {
	#partBox6 li {
		font-size: 80%;
	}
	#partBox6 .text140 {
		font-size: 80%;
	}
}


/* partBox7 */

#partBox7 {
	padding: 50px 0 70px;
	background-color: #d4efba;
	text-align: center;
}

#partBox7 table {
	width: 100%;
}

#partBox7 table th {
	background: #e5227f;
	color: #fff;
}

#partBox7 table td {
	background: #fff;
	text-align: left;
}

#partBox7 table th,
#partBox7 table td {
	padding: 10px 20px;
	border-radius: 10px;
}


/* partBox8 */

#partBox8 {
	padding: 50px 0 70px;
	text-align: center;
}

#partBox8 table {
	width: 100%;
}

#partBox8 table th img {
	border: solid 4px #72a83c;
	border-radius: 10px;
}

#partBox8 table td {
	padding: 10px;
	text-align: left;
}

#partBox8 table table {
	font-size: 70%;
}

#partBox8 table table td {
	width: 50%;
	padding: 0px;
	text-align: left;
}

#partBox8 table table td span {
	font-size: 80%;
}


@media screen and (max-width: 1000px) {
	#partBox8 table th {
		display: block;
		width: 100%;
	}
	#partBox8 table td {
		display: block;
		width: 100%;
	}
	#partBox8 table table td {
		display: inline-block;
		width: 50%;
	}
}


/* partBox9 */

#partBox9 {
	padding: 50px 0 50px;
	text-align: center;
}

#partBox9 a {
	display:inline-block;
	width: 340px;
	margin-bottom: 5px;
	padding: 10px 10px;
	background-color: #b91c22;
	border-radius: 10px;
	color: #ffffff;
}


@media screen and (max-width: 1000px) {
	#partBox9 a {
		width: 96%;
	}
}


/* ==================== common */

.textYellow {
	color: #ffe400;
}

.textBold {
	font-weight: bold;
}

.textYB {
	color: #fab600;
	font-weight: bold;
}

.textGB {
	font-size: 120%;
	color: #72a83c;
	font-weight: bold;
}

.textBB {
	font-size: 120%;
	color: #00a1e8;
	font-weight: bold;
}

.textRB {
	font-size: 120%;
	color: #e5227f;
	font-weight: bold;
}

.text60 {
	font-size: 60%;
}

.text80 {
	font-size: 80%;
}

.text90 {
	font-size: 90%;
}

.text120 {
	font-size: 120%;
}

.text140 {
	font-size: 140%;
}

.text160 {
	font-size: 160%;
}

.w130 {
	width: 130px;
}

#downloadTop {
	position: fixed;
	top: 100px;
	right: 0px;
	z-index: 100;
}


/* ==================== pageTop */

#pageTop {
	position: fixed;
	bottom: 30px;
	right: 30px;
}


/* ==================== footer */

footer {
	width: 100%;
	padding: 30px 10px;
	background-color: #e7e7e7;
	font-size: 80%;
	text-align: center;
}

footer img {
	width: 150px;
}


