@charset "utf-8";
/*==================================================

Global Default
==================================================*/
body {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic", Meiryo, sans-serif;
	line-height: 1.5;
	font-size: 16px;

	font-size: calc(13px + (14 - 13) * ((100vw - 320px) / (1920 - 320)));
	color: #000000;
	background: #EDEDED;
	padding-top: 1px;
}
body * {
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
	line-hight: 1.2;
}
main, section {
	position: relative;
}
a {
	color: inherit;
}
a:hover {
	color: inherit;
}
a:visited {
	color: inherit;
}
a:active {
	color: inherit;
}
img {
	height: auto;
}
i {
	vertical-align: middle;
	line-height: 1;
	font-size: 20px;
}
.center {
	text-align: center;
}
.caution {
	color: #D50000;
}
.flexbox:after {
	display: none;
}
[class*="viewport"] {
	width: 100%;
	max-width: 1366px;
	padding: 0 2%;
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
}
.viewport-1 {
	max-width: 1366px;
}
.viewport-m {
	max-width: 1024px;
}
.viewport-s {
	max-width: 768px;
}
.section-spacing {
	/*padding-top: 70px;
	padding-bottom: 70px;*/
	padding-bottom: 30px;
}

.section-spacing2 {
	padding-top: 70px;
	/*padding-bottom: 70px;*/
	padding-bottom: 30px;
}
.section-spacing3 {
	padding-bottom: 5px;

}

@media only screen and (max-width: 768px) {
	.section-spacing {
		/*padding-top: 40px;*/
		padding-bottom: 30px;
	}
	.section-spacing2 {
		padding-top: 40px;
		padding-bottom: 30px;
	}
	.section-spacing3 {
		padding-bottom: 15px;
	}

}
/*==================================================

Main Header
==================================================*/
#main-header {
	width: 100%;
	height: 100px;
	padding: 0 2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 7;
	background: #FFF;
}
#main-header h1 {
	width: 280px;
}
#menu {
	display: none;
}
#global-navi li {
	float: left;
	color: #004092;
	font-weight: bold;
	letter-spacing: .3em;
	margin-left: 3em;
}
#global-navi li:first-child {
	display: none;
}
#global-navi li a {
	display: block;
	padding: 4px 0;
	position: relative;
	overflow: hidden;
}
#global-navi li a:before {
	content: '';
	background: #004092;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: -102%;
	transition: all .3s;
}
#global-navi li a:hover:before {
	left: 0;
}
#global-navi li i {
	font-size: 14px;
	display:none;
}
@media only screen and (max-width: 768px) {
	#main-header {
		flex-direction: row-reverse;
		height: 60px;
	}
	#main-header h1 {
		width: 230px;
		margin: 0 auto;
		transform: translateX(-20px);
	}
	#menu {
		height: 50px;
		width: 50px;
		float: right;
		cursor: pointer;
		position: relative;
		z-index: 10;
		display: block;
		transition: all .3s;
		right: 0;
	}
	#menu.active {
		position: absolute;
		right: 2%;
	}
	#menu span {
		height: 2px;
		width: 26px;
		background: #000;
		display: block;
		margin: 0 auto;
		position: relative;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		-webkit-transition: all .5s;
		transition: all .5s;
	}
	#menu span:before, #menu span:after {
		content: '';
		height: 2px;
		width: 26px;
		background: #000;
		display: block;
		position: absolute;
		-webkit-transition: all .5s;
		transition: all .5s;
	}
	#menu span:before {
		top: -8px;
	}
	#menu span:after {
		top: 8px;
	}
	#global-navi {
		width: 100%;
		height: 100%;
		max-height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		background: #004092;
		transform: translateX(-100%);
		transition: all .2s cubic-bezier(.4, 0, .2, 1);
		overflow: hidden;
		overflow-y: auto;
		z-index: 9;
	}
	#global-navi li:first-child {
		display: block;
		width: 150px;
		margin-top: 70px;
	}
	#global-navi li {
		color: #FFF;
		float: none;
		margin-left: 30px;
	}
	#global-navi li a {
		padding: 10px 0;
	}
	#global-navi li i {
		display:inline;
	}
	body.menu-visible #menu span {
		background: transparent;
	}
	body.menu-visible #menu span:before {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 0;
		background: #FFF;
	}
	body.menu-visible #menu span:after {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		top: 0;
		background: #FFF;
	}
	body.menu-visible #global-navi {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
/*==================================================

Main visual
==================================================*/
#main-visual {
	/*height: calc(100vh - 100px);*/
	/*overflow: hidden;*/
	margin: 100px 0 0 0;
	/*border-top: 10px solid #004092;
	border-bottom: 10px solid #004092;*/
}
/*#main-visual:before {
	content: '';
	width: 100%;
	height: 100%;
	background: url("../img/mask.png") repeat center center;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	opacity: .5;
}*/
#main-visual.slider {
	/*position: absolute !important;
	left: 0;
	top: 0;*/
	width: 100% !important;
	/*height: 100% !important;*/
	/*z-index: 0 !important;*/
}
#main-visual.slider {
	/*position: absolute !important;
	left: 0;
	top: 0;*/
	width: 100% !important;
	/*height: 100% !important;*/
	/*z-index: 0 !important;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;*/
}

/*#main-visual.slider img {
	max-width: 100%;
	max-height: 100%;
	height: 100vh;
	width: auto;
	margin: 0 auto;
}*/


.slider.slick-initialized {
    display: block;
}

.slider .slick-slide:not(.slick-center) {
  -webkit-filter: blur(5px);
  -moz-filter:blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  transition: 0.2s linear;
}


/*
#main-visual h2 {
	width: 590px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
#main-visual h2 img {
	opacity: 0;
	transform: scale(.95) skewY(-3deg);
	transform-origin: center center;
	transition: all 1.5s;
}
#main-visual h2 img.is-shown {
	opacity: 1;
	transform: scale(1) skewY(0deg);
}
#main-visual a {
	width: 30px;
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	display: none;
	z-index: 5;
}
*/

@media only screen and (max-width: 768px) {
	#main-visual {
		/*height: calc(100vh - 60px);*/
		/*border-top: 5px solid #004092;
		border-bottom: 5px solid #004092;
		border-top: 5px solid #004092;
		border-bottom: 5px solid #004092;*/
		margin-top: 60px;
	}

/*
	#main-visual h2 {
		width: 75%;
		min-width: 280px;
	}
	#main-visual a {
		display: block;
	}
*/

.slider .slick-slide:not(.slick-center) {
	-webkit-filter:none;
	-moz-filter:none;
	-o-filter:none;
	-ms-filter:none;
	filter: none;
	transition:none;
}


}
/*==================================================

Company
==================================================*/

#company{
	margin-top:150px;
}

#company table {
	margin-top: 50px;
	width: 100%;
}
#company table tr {
	background: url("../img/ico-line.png") repeat-x left top;
	background-size: 2px 1px;
}
#company table tr.noline {
	background: none;
}

#company table tr.noline2 {
	background: none;
	border-bottom:1px dotted #BBB;
}

#company table th {
	padding: 16px 0;
	/*width: 100px;*/
	text-align: left;
	font-weight: bold;
	font-size: 1.1em;
	vertical-align: top;
	color:#003f8e;
}
#company table td {
	text-align: left;
	padding: 5px;
}

#company table td.midashi{
	width:150px !important;
}


#company table p {
	float: left;
}
#company table p span {
	background: #AEAEAE;
	max-width: 120px;
	color: #FFF;
	margin-bottom: 10px;
	display: block;
	text-align: center;
}
#company table p + figure {
	float: right;
	width: 220px;
	opacity: 0;
	transform: translateX(5%);
	transition: all .7s;
}
#company table p + figure.is-shown {
	opacity: 1;
	transform: translateX(0);
}

#company table #organization {
	max-width: 560px;
	background: #FFF;
	border: 1px solid #004092;
	padding: 30px 70px;
	margin: 30px auto 0;
	opacity: 0;
	transform: translateY(-5%);
	transition: all .7s;
}
#company table #organization.is-shown {
	opacity: 1;
	transform: translateY(0);
}
@media only screen and (max-width: 768px) {

#company{
	margin-top:80px;
}

	#company table {
		margin-top: 20px;
	}
	#company table tr {
		background-size: 1.5px auto;
		width: 100%;
	}


	#company table p {
		float: none;
	}
	#company table p span {
		max-width: 100%;
	}
	#company table p + figure {
		float: none;
		margin: 20px auto 0;
	}
	#company table #organization {
		margin: 0 auto;
		background: none;
		border: none;
		padding: 0;
		max-width: 420px;
	}

  .pcbr { display:none; }
  .spbr { display:block; }

}

/*==================================================

Message
==================================================*/
#message {
	margin-top:150px;
}

h3 {
	color:#003f8e;
	line-height: 2;
}

.box {
	background-color:#FFF;
	margin:1em 0px;
	padding:1.25em;
	border-bottom:2px dotted #003f8e;
}

#message p {
	color: #000;
	line-height: 2;
	/*text-align: justify;*/
	/*opacity: 0;*/
}

.hidden_box {
    margin: 2em 0;/*前後の余白*/
    padding: 0;
}

/*ボタン装飾*/
.hidden_box label {
	max-width:100%;
	padding: 15px;
	font-weight: bold;
	cursor :pointer;
	font-size:1.3em;
	color:#003f8e;
}

.hidden_box label span{
	font-weight: normal;
	font-size:0.7em;
	margin-left:1.5em;
	color:#000;
}


/*ボタンホバー時
.hidden_box label:hover {
    background: #efefef;
}*/

/*チェックは見えなくする*/
.hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
	height: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.8s;
	padding:0 1em;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
	padding: 10px  1em;
	height: auto;
	opacity: 1;
}

.linklist{
	padding:0.5em;
}

.linklist2{
	padding:0.5em;
	color: #000000;
	text-indent: 1em;
}

span.btn-flat-simple {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 0.25em 0.5em;
	text-decoration: none;
	color: #003f8e;
	background: #ECECEC;
	transition: .4s;
}

span.btn-flat-simple:hover {
	background: #003f8e;
	color: white;
}

.inpagelink{
	display: block;
	padding-top:70px;
	margin-top:-70px;
}

input[type=checkbox] {
	transform: scale(1.5);
	-ms-transform: scale(1.5, 1.5);
	-webkit-transform: scale(1.5, 1.5);
	transform: scale(1.5, 1.5);
}

.input1{
	width: 100%; /*親要素いっぱい広げる*/
	padding: 8px 12px; /*ボックスを大きくする*/
	font-size: 14px;
	border-radius: 3px; /*ボックス角の丸み*/
	border: 2px solid #ddd; /*枠線*/
	box-sizing: border-box; /*横幅の解釈をpadding, borderまでとする*/
	margin-bottom:1em;
}

.input2{
	width: 20%; /*親要素いっぱい広げる*/
	padding: 8px 12px; /*ボックスを大きくする*/
	font-size: 14px;
	border-radius: 3px; /*ボックス角の丸み*/
	border: 2px solid #ddd; /*枠線*/
	box-sizing: border-box; /*横幅の解釈をpadding, borderまでとする*/
	margin-bottom:1em;
	margin-right:1em;
}

.input3{
	width: 40%; /*親要素いっぱい広げる*/
	padding: 8px 12px; /*ボックスを大きくする*/
	font-size: 14px;
	border-radius: 3px; /*ボックス角の丸み*/
	border: 2px solid #ddd; /*枠線*/
	box-sizing: border-box; /*横幅の解釈をpadding, borderまでとする*/
	margin-bottom:1em;
	margin-left:1em;
}

.buttonsubmit {
	display       : inline-block;
	/*border-radius : 5%;*/          /* 角丸       */
	font-size     : 16pt;        /* 文字サイズ */
	text-align    : center;      /* 文字位置   */
	cursor        : pointer;     /* カーソル   */
	padding       : 12px 1.8em;   /* 余白       */
	background    : #000066;     /* 背景色     */
	color         : #ffffff;     /* 文字色     */
	line-height   : 1em;         /* 1行の高さ  */
	transition    : .3s;         /* なめらか変化 */
	border        : 2px solid #000066;    /* 枠の指定 */
	margin:0 1em 0 0;
}
.buttonsubmit:hover {
	color         : #000066;     /* 背景色     */
	background    : #ffffff;     /* 文字色     */
}

.buttonreset {
	display       : inline-block;
	/*border-radius : 5%;*/          /* 角丸       */
	font-size     : 16pt;        /* 文字サイズ */
	text-align    : center;      /* 文字位置   */
	cursor        : pointer;     /* カーソル   */
	padding       : 12px 12px;   /* 余白       */
	background    : #990000;     /* 背景色     */
	color         : #ffffff;     /* 文字色     */
	line-height   : 1em;         /* 1行の高さ  */
	transition    : .3s;         /* なめらか変化 */
	border        : 2px solid #990000;    /* 枠の指定 */
}
.buttonreset:hover {
	color         : #990000;     /* 背景色     */
	background    : #ffffff;     /* 文字色     */
}

div.formleft{
	width:50%;
	float:left;
}
div.formright{
	width:50%;
	float:left;
	padding-left:2em;
}


@media only screen and (max-width: 768px) {

#message {
	margin-top:80px;
}

.inpagelink{
	display: block;
	padding-top:15px;
	margin-top:-15px;
}

div.formleft{
	width:100%;
	float:none;
}
div.formright{
	width:100%;
	float:none;
	padding-left:0;
}


}


/*==================================================

Description
==================================================*/
#description h2{
	/*width: 135px;*/
	padding:1em 0 0 0;
	margin: 1.5em auto 1.5em;
}
#description ul{
	display: flex;
	justify-content: space-between;
}
#description li{
	flex: 1 1 25%;
	margin: 8px;
	position: relative;
	opacity: 0;
	transform: translateX(-5%);
	transition: all 1s cubic-bezier(0.39, 0.58, 0.57, 1);
}
#description li:nth-child(2){
	transition-delay: .07s;
}
#description li:nth-child(3){
	transition-delay: .14s;
}
#description li:nth-child(4){
	transition-delay: .21s;
}
#description ul.is-shown li {
	opacity: 1;
	transform: translateX(0);
}
#description li span{
/*
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #004092;
	font-size: 26px;
	font-weight: bold;
	background: #FFF;
	box-shadow: 3px 3px 0 #004092;
	position: absolute;
	left: -8px;
	top: -8px;
*/
}
#description li p {
	text-align: justify;
	margin-top: 15px;
}

#description li div.obi{
	position: absolute;
	left: 0;
	top:58%;
	color: #fff;
	margin: 0;
	padding:1.5% 3% 1.5% 3%;
	height: auto;
	width: 100%;
	background:#003f8e;
	filter: Alpha(opacity=90);
	opacity: 0.9;
}

#description li div.obi p{
	margin-top:0px;
}

#description li div.obi2{
	left: 0;
	top:58%;
	color: #fff;
	margin: 0;
	padding:1.5% 3% 1.5% 3%;
	height: auto;
	width: 100%;
	background:#003f8e;
	filter: Alpha(opacity=90);
	opacity: 0.9;
}

#description li div.obi2 p{
	margin-top:0px;
}

#description li div.obi2 a{
	width:100%
	margin:0;
}


@media only screen and (max-width: 768px) {
	#description h2 {
		margin: 0 auto 20px;
	}
	#description ul {
		display: block;
		/*flex-wrap: nowrap;*/
	}
	#description li {
		flex: 1 1 46%;
		margin: 2%;
		margin-bottom:1em;
		position: relative;
	}
	#description li span {
		width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 20px;
	}
	#description li p {
		margin: 5px 0 10px;
	}

	#description li .obiimg{
		min-width: 100%;
		max-width: 100%;
		height: auto;
	}
	#description li div.obi {
		/*top:53%;*/
		padding:4% 3% 2% 3%;
		position: absolute;
		bottom: 0;
	}

}
/*==================================================

Fllow
==================================================*/
#flow {
	background: #FFF;
}
#flow h2 {
	width: 312px;
	margin: 0 auto 50px;
}
#flow picture {
	display: block;
	max-width: 640px;
	margin: 0 auto;
	transform: translateX(-5%);
	opacity: 0;
	transition: all .7s;
}
#flow picture.is-shown {
	opacity: 1;
	transform: translateX(0);
}
#flow figure {
	display: none;
    max-width: 768px;
    width: 100%;
    margin: 50px auto 0;
}
@media only screen and (max-width: 768px) {
	#flow h2 {
		margin-bottom: 20px;
	}
	#flow picture {
		max-width: 360px;
	}
}
/*==================================================

Contact
==================================================*/
#contact {
	/*background: #FFF;*/
	text-align: center;
}
#contact h2 {
	width: 206px;
	margin: 0 auto 20px;
}

#contact div.contbox {
	max-width:70%;
	margin:0 auto;
}

/*
#contact a {
	display: block;
	padding: 8px 32px;
	border: 1px solid rgba(0, 0, 0, .34);
	border-radius: 4px;
	font-weight: bold;
	max-width: 550px;
	margin: 0 auto;
	transition: all .3s;
}
#contact a:hover {
	color: #FFF;
	background: #004092;
	border: 1px solid #004092;
}
#contact a span {
	margin-left: 30px;
}
#contact a span i {
	margin-right: 6px;
	vertical-align: initial;
}
*/

@media only screen and (max-width: 768px) {
	#contact {
		text-align: center;
	}
	#contact div.contbox {
	max-width:100%;
	margin:0 auto;
}

/*
	#contact a {
		display: inline-block;
		padding: 8px 50px;
	}
	#contact a span {
		display: block;
		margin: 5px 0 0;
	}
*/
}

/*スマホだけ改行*/
@media screen and (min-width: 768px){   
  .pcbr { display:block; }
  .spbr { display:none; }
}
@media screen and (max-width: 768px){   
  .pcbr { display:none; }
  .spbr { display:block; }
}

/*==================================================

Main Footer
==================================================*/
#back-top {
	width: 60px;
	height: 60px;
	padding: 12px 0;
	line-height: 1.2;
	background: #003f8e;
	border-radius: 100px;
	position: fixed;
	right: 2%;
	bottom: 2%;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transform: translateY(130%);
	transition: all .5s;
	z-index: 5;
}
#back-top.active {
	opacity: 1;
	transform: translateY(0);
}
#back-top i {
	display: block;
}
#main-footer {
	padding: 32px 2%;
	background: #003f8e;
	color: #FFF;
	text-align: center;
	position: relative;
	background-color: #0066CC;
}

#main-footer .flexbox{
	display: flex;
}

#main-footer .flexbox img{
	margin-right:1.5em;
}

#main-footer .flexbox p #copyright{
	line-height: 50px;
}

#copyright{
	margin:1em auto;
}


/*
@media only screen and (max-width: 768px) {
	#back-top {
		display: none;
	}
}
*/
