
:root {
	--font-color: #333333;
	--link-color: #333333;
	--font-family: 'Noto Sans JP', 'Yu Gothic', '游ゴシック体', 'YuGothic', '游ゴシック', '游ゴシック Medium', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro W3', 'Hiragino Sans', sans-serif;
	--font-en: 'Open Sans', serif;
	--inner-wrap: 960px;
	--main-color: #003059;
	--color-pink: #EC417A;
	--viewport: 350;
	--breakpoint: 750;
	--size50: calc(50 / var(--viewport) * 50vw);
	--size70: calc(70 / var(--viewport) * 70vw);
	--size100: calc(100 / var(--viewport) * 100vw);
}
@media only screen and (min-width: 751px){
	:root {
		--breakpoint: 960;
		--viewport: 960;
	}
}

html {
    font-size: 62.5%;
}
body {
	font-family: var(--font-family);
	font-weight: normal;
	font-weight: 400;
    font-size: 16px;
    font-size: 1.6rem;
	letter-spacing: .1em;
	color: var(--font-color);
}
p,th,td,li,dt,dd {
	font-family: var(--font-family);
	line-height: 1.6em;
	letter-spacing: .1em;
}
a {
	color: var(--link-color);
	text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
a.txtlink { text-decoration: underline; }
a.txtlink:hover { text-decoration: none; }
.pink { color: var(--color-pink);}
.bg_blue1 { background-color: #DAEAF5;}
/** slide in **/
.mov { opacity: 0; }
.mov.xyz-in { opacity: 1; }
/** base **/
.textcenter { text-align: center; }
.textright { text-align: right;}
.textleft { text-align: left; }
img.aligncenter { display: block; margin: 1em auto;}
.list li {
	padding-left: 1.25em;
	position: relative;
}
.list li:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.list.list_maru li:before {
	content: "●";
}
.list.list_nom li:before {
	content: "・";
}
.list.list_note li:before {
	content: "※";
}
ol {
	counter-reset: item;
	list-style-type: none;
	padding-left: 0;
	display: inline-block;
}
ol > li {
	text-indent: -1.5em;
	padding-left: 1.5em;
	margin-bottom: .5em;
	text-align: left;
}
ol > li:before {
	counter-increment: item;
	content: counter(item)'.';
	padding-right: .5em;
}
ol > li:last-child {
	margin-bottom: 0;
}
/** layout　**/
.inner {
	max-width: var(--inner-wrap);
	width: 90%;
	display: block;
	margin: auto;
}
.iframe_wrap iframe {
	width: 100%;
}
/** title **/
.sec_ttl {
	font-size: min(calc(32 / var(--viewport) * 100vw), 32px);
	text-align: center;
	color: var(--main-color);
	font-weight: bold;
	line-height: 1.6em;
	margin: var(--size100) 0 var(--size50) 0;
}
.home_icon {
	text-align: center;
	margin: var(--size70) auto var(--size50) auto;
}
h3 {
	font-weight: bold;
	margin: 1.5em 0;
	color: var(--main-color);
}
/** hero **/
.hero {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	background-color: #DAEAF5;
	z-index: -2;
	overflow: hidden;
}
.hero::before {
	content: " ";
	width: 35%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background-image: url('../images/hero_pic@2x.png');
	background-repeat: no-repeat;
	background-position: left 0 center;
	background-size: cover;
	z-index: -1;
}
.hero .hero_inner {
	max-width: 1200px;
	width: 90%;
	display: block;
	margin: auto;
	z-index: 10;
}
.hero .hero_logo {
	width: min(calc(380 / var(--viewport) * 100vw), 320px);
	/*transform: translate(-50%, -50%);*/
	margin: var(--size50) auto;
}
.hero .hero_cap {
	font-size: min(calc(34 / var(--viewport) * 100vw), 34px);
	margin: 0 auto var(--size70) auto;
	line-height: 1.5em;
	font-weight: 700;
	letter-spacing: .1em;
	color: var(--main-color);
	text-align: center;
	text-shadow: 0 1px 5px rgb(0,0,0, 0.5);
}
/** footer **/
.footer {
	padding: var(--size50) 0 var(--size70) 0;
	background-color: #000000;
	color: #FFFFFF;
}
.footer .copy {
	font-size: 14px;
	text-align: center;
}
/** section **/
.sec_cap {
	color: var(--main-color);
	font-weight: bold;
	font-size: 1.1em;
	margin: var(--size70) 0;
}
.box_schme {
	display: block;
	margin: var(--size50) 0;
	border-radius: 30px;
	background-color: rgb(0,48,89, .2);
	padding: var(--size50);
}
.box_schme img {
	display: block;
	margin: auto;
}
.box_txt h3 {
	color: var(--main-color);
	border-bottom: 2px solid var(--main-color);
	padding-bottom: .5em;
	margin-bottom: 1em;
}
.border_top {
	border-top: 1px solid #CCC;
	padding: var(--size70) 0;
	margin-top: var(--size70);
}
table {
	width: 100%;
	border-top: 1px solid #CCC;
}
table th {
	text-align: left;
}
table th,table td {
	padding: 1em;
	border-bottom: 1px solid #CCC;
}
.contact_btn a {
	background: var(--color-pink);
	color: #FFFFFF;
	font-weight: bold;
	position: fixed;
	display: block;
	height: 44px;
	line-height: 44px;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
}
.contact_btn a::after {
	content: "》";
	display: inline-block;
	margin-left: 1em;
}
.contact_btn a:hover {
	opacity: .8;
}