@charset "utf-8";
/* CSS Document */
/*######################################################
基本設定
######################################################*/
@import url(//fonts.googleapis.com/earlyaccess/mplus1p.css); /*font-family: "Mplus 1p";*/
@import url(//fonts.googleapis.com/earlyaccess/roundedmplus1c.css); /*font-family: "Rounded Mplus 1c";*/
@import url(//fonts.googleapis.com/earlyaccess/hannari.css); /*font-family: "Hannari";*/
@import url(//fonts.googleapis.com/earlyaccess/kokoro.css); /*font-family: "Kokoro";*/
@import url(//fonts.googleapis.com/earlyaccess/sawarabimincho.css); /*font-family: "Sawarabi Mincho";*/
@import url(//fonts.googleapis.com/earlyaccess/sawarabigothic.css); /*font-family: "Sawarabi Gothic";*/
@import url(//fonts.googleapis.com/earlyaccess/nikukyu.css); /*font-family: "Nikukyu";*/
@import url(//fonts.googleapis.com/earlyaccess/nicomoji.css); /*font-family: "Nico Moji";*/
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css); /*font-family: "Noto Sans Japanese";*/
html {
	height: 100%;
}
body {
	color: #666;
	font-family: "Noto Sans Japanese", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 18px;
	line-height: 1.6;
	height: 100%;
}
img {
	max-width: 100%;
	height: auto;
	width /***/ : auto;
	vertical-align: bottom;
}
a {
	color: #09f;
	text-decoration: none;
	transition: 0.3s;
	cursor: pointer;
}
a:hover {
	opacity: 0.5;
}
a[target="_blank"] {position: relative;display: inline-block;margin: 0 1em 0 0;}
a[target="_blank"]:before,a[target="_blank"]:after {
	content:"";
	position: absolute;
	right: calc(-.5rem - 4px);
	top: 4px;
	width: .5rem;
	height: .5rem;
	box-sizing: border-box;
	border: solid;
	border-width: 2px 1px 1px;
}
a[target="_blank"]:after {right: calc(-.5rem - 2px);top: 6px;border-width: 0 0 1px 1px;}
@media (max-width: 768px) {
html {}
body {}
img {}
a {}
a:hover {}
a[target="_blank"] {}
a[target="_blank"]:before,a[target="_blank"]:after {}
a[target="_blank"]:after {}
}
/*######################################################
共通箇所
######################################################*/
/*//////////////////////////////////////
header
//////////////////////////////////////*/
header {
	width: 100%;
	padding: 0px calc(50% - 600px);
	box-sizing: border-box;
	position: absolute;
	display: flex;
	justify-content: space-between;
	z-index: 10000;
	background: rgba(0,204,0,0.5);
	/* border-top: solid 30px #09f; */
}
header .logo {
	padding: 28px 0 5px;
	font-size: 32px;
	color: #fff;
	font-weight: 700;
	/* text-shadow: 0 0 1px #0c0, 0 0 1px #0c0, 0 0 1px #0c0, 0 0 1px #0c0, 0 0 1px #0c0, 0 0 1px #0c0, 0 0 1px #0c0, 0 0 1px #0c0, 0 0 1px #0c0; */
}
header .logo:hover {
	opacity: 0.5;
}
header .logo img {
	height: 50px;
}
header .headline {
	position: absolute;
	top: 5px;
	/* left: calc(50% - 640px); */
	color: #fff;
}
@media (max-width: 768px) {
	header {
		padding: 0 10px;
		border-top: solid 50px #09f;
	}
	header .logo {
		padding: 0;
		position: absolute;
		top: -40px;
	}
	header .logo:hover {}
	header .logo img {
		height: 30px;
	}
	header .headline {
	display: none;
	}
}
/*//////////////////////////////////////
nav
//////////////////////////////////////*/
nav {
	position: relative;
	z-index: 100;
	margin-top: 40px;
	margin-right: -20px;
}
nav .sp_menu {
	display: none;
}
nav .sp_menu_bg {
	display: none;
}
nav > ul {
	display: flex;
	/* justify-content: flex-end; */
	/* flex-wrap: wrap; */
	/* width: 530px; */
	font-size: 18px;
}
nav > ul li {
	position: relative;
}
nav > ul li:nth-of-type(1){
    display: none;
}
nav > ul li:before {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 0;
	margin: auto;
	border-left: solid 1.5px #fff;
	height: 50%;
	right: 0;
}
nav ul li a {
	display: block;
	margin: 0;
	padding: 8px 20px;
	line-height: 1;
	text-decoration: none;
	color: #fff;
	font-weight: 500;
}
nav > ul li:nth-last-of-type(1):before,nav > ul li:nth-last-of-type(2):before {content: none;}
nav > ul li:last-of-type a {background: #ff0;color: #0c0;}
nav ul li a[target="_blank"] {
    display: block;
    margin: 0;
}
nav ul li a[target="_blank"]:before, nav ul li a[target="_blank"]:after {
	content: none;
}
nav ul > li:hover > a {
	opacity: 0.5;
}
nav > ul > li .drop {
	position: absolute;
	z-index: 100;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 10px;
	background: rgba(255, 255, 255, .9);
	/* box-shadow: 0px 2px 5px rgba(0,0,0,.5); */
	box-sizing: border-box;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
}
nav > ul > li .drop dl {
	display: flex;
	flex-wrap: wrap;
}
nav > ul > li .drop dl a {
	padding: 10px;
	font-weight: 500;
}
nav > ul > li .drop dl a:hover {}
nav > ul > li .drop dl dt {}
nav > ul > li .drop dl dt a {}
nav > ul > li .drop dl dd {
	width: calc(100%/3);
}
nav > ul > li:hover > .drop {
	opacity: 1;
	visibility: visible;
}
nav.fixed {
	position: fixed;
	top: 0;
	background: rgba(0, 204, 0, 0.8);
	animation-name: navi;
	animation-duration: 1s;
	animation-timing-function: ease;
	left: 0;
	margin: 0;
	min-width: 1200px;
	padding: 0px calc(50% - 600px);
	backface-visibility: hidden;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
}
@keyframes navi {
	0% {
		top: -100px;
	}
	100% {
		top: 0;
	}
}
nav.fixed ul {
	position: relative;
	width: auto;
}
nav.fixed > ul li:first-of-type {
	display: block;
}
nav.fixed > ul li:nth-of-type(-n+4){font-size: inherit;order: inherit;}
nav.fixed > ul li:before {
	content: none;
}
nav.fixed > ul li a {
	font-size: inherit;
}
@media (max-width: 768px) {
	nav {
		z-index: 300;
	}
	nav .sp_menu {
		display: block;
		position: fixed;
		top: 0px;
		right: 0px;
		color: #fff;
		width: 50px;
		height: 50px;
		z-index: 9999;
		background: #09f;
		cursor: pointer;
		transition: 0.5s ease-in-out;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		border-radius: 0 0 0 5px;
		box-sizing: border-box;
		text-align: center;
		padding-top: 27px;
		font-family: "Noto Sans Japanese";
		font-size: 12px;
	}
	nav .sp_menu:before {
		content: "";
		position: absolute;
		top: 23px;
		left: 0;
		right: 0;
		margin: auto;
		background: #fff;
		height: 3px;
		width: 32px;
		box-shadow: inset 0px 0px 0px 0px #fff, 0px -8px #fff, 0 -16px #fff;
	}
	nav.open .sp_menu {
		right: 80%;
	}
	nav .sp_menu_bg {
		z-index: 99;
		display: none;
		top: 0;
		left: 0;
		position: fixed;
	}
	nav.open .sp_menu_bg {
		display: block;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.2);
	}
	nav.open ul {
		right: 0px;
		width: 80%;
	}
	nav ul li {
		float: none;
		width: 100%;
		text-align: left;
		padding: 0;
	}
	nav ul li a {
		color: #fff;
	}
	nav ul li ul {
		background: transparent;
		position: relative;
		overflow: visible;
	}
	nav > ul {
		position: fixed !important;
		z-index: 1000;
		display: block;
		font-size: 0.9em;
		background-color: #09f;
		width: 80%;
		right: -80%;
		padding: 10px;
		list-style-type: none;
		transition: 0.5s ease-in-out;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		box-sizing: border-box;
		height: 100%;
		top: 0px;
		overflow: scroll;
	}
	nav > ul li {
    font-size: 14px !important;
}
nav > ul li:before {
	content: none;
}
	nav > ul li:first-of-type {
		display: block;
	}
	nav ul li a {}
nav > ul:last-of-type li:first-of-type {
	display: block;
}
nav ul:last-of-type li a {
}
	nav ul > li:hover > a {}
	nav > ul > li .drop {
		opacity: 1;
		visibility: visible;
		position: relative;
		padding: 0;
		background: transparent;
		margin: -5px 0 5px 20px;
	}
	nav > ul > li .drop dl {
		display: block;
	}
	nav > ul > li .drop dl a {
		font-weight: 300;
		padding: 5px;
	}
	nav > ul > li .drop dl a:hover {}
	nav > ul > li .drop dl dt {}
	nav > ul > li .drop dl dt a {}
	nav > ul > li .drop dl dd {
		width: auto;
	}
	nav > ul > li:hover > .drop {}
	nav.fixed {}
	nav.fixed ul {
    width: 80%;
}
}
/*//////////////////////////////////////
footer
//////////////////////////////////////*/
footer {
	background: #0c0;
	color: #fff;
	padding: 100px calc(50% - 600px) 40px;
	/* display: flex; */
	/* justify-content: space-between; */
	/* font-size: 12px; */
}
footer small{
	text-align: center;
	display: block;
}
.footer_menu {
	display: flex;
	justify-content: space-around;
	margin: 0 0 100px;
}
.footer_menu li {}
.footer_menu li dl{
    margin: 0 0 1rem;
}
.footer_menu li dl dt{}
.footer_menu li dl dd{
    padding: 0 0 0 1rem;
}
.footer_menu li a {
	color: #fff;
	display: block;
}
.footer_menu li strong{
    font-size: 30px;
    font-weight: 900;
}
.footer_menu li .to_form{
    background: #ff0;
    color: #0c0;
    font-weight: 700;
    text-align: center;
    line-height: 50px;
    margin: 0 0 1rem;
}
.footer_menu li .qr{
    text-align: center;
    font-weight: 900;
    font-size: 20px;
}
.footer_menu li .qr img{
    display: block;
    margin: auto;
}
a.page_top {
	transition: 1s;
	position: fixed;
	right: 10px;
	bottom: 10px;
	display: block;
	text-indent: -9999px;
	border: 6px #ccc solid;

	border-radius: 50px;
	width: 65px;
	height: 65px;
	float: right;
	box-sizing: border-box;
	visibility: hidden;
	opacity: 0;
	z-index: 5555;
}
a.page_top:before {
	content: '';
	height: 0;
	width: 0;
	display: block;
	border: 12px transparent solid;
	border-bottom-color: #ccc;
	position: absolute;
	top: 0px;
	left: 15px;
	border-radius: 3px;
}
a.page_top:after {
	content: '';
	height: 20px;
	width: 10px;
	display: block;
	background: #ccc;
	position: absolute;
	top: 21px;
	left: 22px;
	border-radius: 2px;
}
a.page_top.fixed {
	visibility: visible;
	opacity: 1;
}
a.page_top.fixed:hover {
	opacity: 0.5;
}
@media (max-width: 768px) {
	footer {
		padding: 30px 10px;
		flex-direction: column;
	}
	.footer_menu {
		margin-bottom: 20px;
		flex-direction: column;
	}
.footer_menu ul {
    margin: 0;
    list-style: disc;
    padding: 0 0 0 1.5rem;
}
.footer_menu ul li {}
.footer_menu ul li a {}
.copyright {
    align-items: center;
    text-align: center;
}
.copyright img {
    height: 30px;
    margin: 0 0 20px;
}
.copyright small {}
	a.page_top {
		border-radius: 50px;
		width: 46px;
		height: 46px;
	}
	a.page_top:before {
		border: 14px transparent solid;
		border-bottom-color: #ccc;
		left: 3px;
		top: -10px;
		border-radius: 3px;
	}
	a.page_top:after {
		height: 15px;
		width: 13px;
		top: 13px;
		left: 11px;
		border-radius: 2px;
	}
}
/*//////////////////////////////////////
全体要素
//////////////////////////////////////*/
#container {
	min-height: calc(100vh - 434px);
}
.ttl {
	background: #EFECE3;
	border-top: solid 96px;
	padding: 100px 0 60px;
	text-align: center;
	margin-bottom: 30px;
}
.ttl strong {
	display: block;
	font-size: 32px;
}
.ttl b {
	display: block;
	font-size: 18px;
}
@media (max-width: 768px) {
	#container {
		min-height: calc(100vh - 338px);
	}
	.ttl {
		border-top: solid 60px;
		padding: 30px 0 30px;
	}
	.ttl strong {}
	.ttl b {}
}
/*######################################################
個別設定
######################################################*/
/*/////////////////////////////////////////
下層ページ共通
/////////////////////////////////////////*/
.kaso_img {
	background-repeat: no-repeat;
	background-position: center 38%;
	height: 340px;
	background-size: cover;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 0 0;
	box-sizing: border-box;
}
.kaso_img strong {
	font-size: 50px;
	position: relative;
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 0px 0px 2px rgb(0 0 0 / 50%), 0px 0px 2px rgb(0 0 0 / 50%), 0px 0px 2px rgb(0 0 0 / 50%), 0px 0px 2px rgb(0 0 0 / 50%);
}
.pankuzu {
	padding: 0px calc(50% - 600px);
	line-height: 46px;
	background: #85E7FF;
	color: #fff;
}
.pankuzu a {
	color: #fff;
}
.pankuzu a:hover {}
.kaso_ttl {
	background: #0c0;
	color: #fff;
	padding: 20px calc(50% - 500px) 0;
	display: flex;
	justify-content: center;
	font-size: 40px;
	font-weight: 700;
}
.kaso_menu {
	background: #0c0;
	padding: 30px calc(50% - 650px);
	display: flex;
	justify-content: center;
	font-size: 18px;
	font-weight: 400;
}
.kaso_menu li {
	position: relative;
}
.kaso_menu li:before {
	content: "";
	position: absolute;
	top: 2px;
	bottom: 0;
	margin: auto;
	border-left: solid 1.5px #fff;
	height: 50%;
}
.kaso_menu li:first-of-type:before {
	content: none;
}
.kaso_menu li a {
	display: block;

	margin: 0;
	padding: 11px 30px;
	line-height: 1;
	text-decoration: none;
	color: #fff;
}
.kaso_cnt {
	padding: 50px calc(50% - 500px);
	position: relative;
}
.kaso_cnt:first-of-type {
	padding-top: 100px;
}
.kaso_cnt:first-of-type:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 65px 172px 0 172px;
    border-color: #0c0 transparent transparent transparent;
}
.kaso_cnt:last-of-type {
	padding-bottom: 100px;
}
@media (max-width: 768px) {
	.kaso_img {
		height: 200px;
		background-position: top 40px center;
	}
	.kaso_img:before {}
	.kaso_img:after {
		font-size: 42px;
		line-height: 32px;
	}
	.kaso_img strong {
		font-size: 20px;
		font-weight: 900;
	}
	.pankuzu {
		padding: 10px;
		line-height: 1;
	}
	.pankuzu a {}
	.pankuzu a:hover {}
.kaso_menu {
    font-size: 12px;
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
}
.kaso_menu li {}
.kaso_menu li:before {
    content: none;
}
.kaso_menu li:first-of-type:before {}
.kaso_menu li a {
    padding: 5px 5px;
}
	.kaso_cnt {
		padding: 50px 10px;
	}
.kaso_cnt:first-of-type {
    padding-top: 50px;
}
.kaso_cnt:last-of-type {}
}