@charset "utf-8";

/*=========================================*/
/* All */
/*=========================================*/

@import url(https://fonts.googleapis.com/css?family=Lato);
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500;700&display=swap');

/*-- reset --*/

html, body, div, span, object,
h1, h2, h3, h4, h5, h6,
p, img, dl, dt, dd,
ol, ul, li,
fieldset, form, label, table, caption,
tbody, tfoot, thead,
article, aside, footer, header, menu, nav, section,
audio, video{
	margin:0;
	padding:0;
	border:0;
	outline:0;
	vertical-align:baseline;
	background:transparent;
}

.clearfix {zoom:1;}
.clearfix:after{content: "";display: block;clear: both;}
.clear{clear:both;}

ol, ul{
	list-style:none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section{
	display:block;
}

blockquote, q{
	quotes:none;
}

blockquote:before,
blockquote:after,
q:before,
q:after{
	content:'';
	content:none;
}

a:link{
	color:#003d72;
	text-decoration: underline;
}

a:visited{
	color:#003d72;
	text-decoration:underline;
}

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

img{
	vertical-align:top;
	font-size:0;
	line-height:0;
}

html{
	overflow-x: hidden;
}

body{
	position: relative;
	width: 100%;
    background-color: #003d72;
    font-size: 15px;
	line-height:175%;
	font-family:"Lato", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 400;
	font-style: normal;
	letter-spacing: 0.03em;
	text-align:left;
	color:#222222;
}

#wrapper{
	position: relative;
	overflow-x: hidden;
	background-color: #f9f9f9;
}

.sp{
    display: none;
}

.pc{
}

@media screen and (max-width:800px){
body{
    font-size: 13px;
	line-height:160%;
}

.sp{
    display: block;
}

.pc{
    display: none;
}
}

/*Chrome Opera*/
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
}

/*=========================================*/
/* Header */
/*=========================================*/

#header{
    position: fixed;
    top: 0px;
    left: 0;
	z-index:9999;
    width: 100%;
	height: 90px;
    color: #09536f;
}

#header_area{
	width: 100%;
	margin: 0px auto 0 auto;
	position: relative;
}

#header_title{
	display: block;
	position: absolute;
	padding: 20px 0px 0px 50px;
	margin: auto;
	text-align: center;
	transition: all 0.5s;
}

#header_title .logo{
	float: left;
	padding: 25px 0px 0 0px;
	text-align: left;
}

#header_title .logo a{
	width: 220px;
	display: block;
	color: #ffffff;
	text-decoration: none;
}

#header_title .logo a:hover {
	color: #ffffff;
}

#header_title .logo img{
	width: 100%;
}

#global_navi{
	float: right;
	margin: 50px 50px 0 0px;
}

#global_navi ul{
	overflow: hidden;
	display: inline-block;
}

#global_navi li{
	border-left: solid 1px rgba(255,255,255,0.3);
	margin: 0 19px;
	height: 20px;
	font-size:16px;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-align: left;
	float: left;
}

#global_navi li.first{
	border-left: none;
}

#global_navi a{
	padding: 0 16px;
	color: #fff;
	text-align: center;
	text-decoration:none;
	position: relative;
	display: inline-block;
	min-width: 75px; /* 横幅 */
	width: 100%; /* 横幅 */
	height: 20px; /* 縦幅 */
	line-height: 20px;
	overflow: hidden; /* はみ出し部分を隠す */
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	transition: all 1.0s;
}

#global_navi a:hover {
	transition: all 0.5s;
}

/* ボタンのテキスト */
.btn__text {
	position: absolute;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	transition: all 0.3s;
}

.btn__en {
	letter-spacing: 0.05em;
}

/* ボタンのテキスト(デフォルトのテキスト) */
.btn__text:nth-child(1) {
	top: 0;
}

/* ボタンのテキスト(隠れているテキスト) */
.btn__text:nth-child(2) {
	top: -100%;
}

/* ボタンホバーアクション */
#global_navi a:hover .btn__text:nth-child(1) {
	top: 100%;
}

#global_navi a:hover .btn__text:nth-child(2) {
	top: 0;
}

#header_btn{
    position: absolute;
	width:160px;
    height: 90px;
	right: 0;
	text-align: center;
}

#header_btn a{
	font-size:14px;
	letter-spacing: 0.06em;
	line-height: 90px;
	color: #ffffff;
	text-decoration: none;
	display: block;
    height: 90px;
    background-color: #52951d;
	-webkit-transition: opacity 1.0s ease-out;
	-moz-transition: opacity 1.0s ease-out;
	-ms-transition: opacity 1.0s ease-out;
	transition: opacity 1.0s ease-out;
	transition: all 1.5s;
}

#header_btn a:hover,
#header_btn a:active{
	background-color:#68bd21;
	transition: all 0.5s;
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    position:fixed;
    z-index: 999;
    top:0;
    right: -120%;
    width:100%;
    height: 100vh;
    background-color: #003d72;
    transition: all 0.8s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
    background-color: #003d72;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
/*#g-nav ul {
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}*/

#g-nav-list-area{
	width: 100%;
	max-width: 1000px;
	margin: auto;
	padding: 60px 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
}

#g-nav-list-area .g-nav-logo{
	width: 100%;
	padding: 0 0 60px 0;
	text-align: left;
}

#g-nav-list-area .g-nav-logo a{
	width: 200px;
	display: block;
}

#g-nav-list-area .g-nav-logo img{
	width: 100%;
}

#g-nav-list-area .box{
	padding: 0px 0 20px 0;
}

#g-nav-list-area li{
	padding: 0px 0 15px 0px;
	font-size: 15px;
	letter-spacing: 0.04em;
}

#g-nav-list-area li a{
    padding: 0 0 0 24px;
	background-image:url("../images/ic_arrow01.svg");
	background-position:center left 6px;
	background-repeat:no-repeat;
	background-size: 5px;
	color: #fff;
	text-decoration: none;
}

/*========= ボタンのためのCSS ===============*/
#openbtn_scroll{
    display: none;
    position:absolute;
    z-index: 9999;
    top:14px;
    right: 10px;
    cursor: pointer;
    width: 60px;
    height:50px;
}

/*×に変化*/  
#openbtn_scroll span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
}

.hasei_header #openbtn_scroll {
    top:18px;
}

.hasei_header #openbtn_scroll span{
    background-color: #000000;
}

#openbtn_scroll span:nth-of-type(1) {
	top:17px; 
}

#openbtn_scroll span:nth-of-type(2) {
	top:20px;
	opacity: 0;
}

#openbtn_scroll span:nth-of-type(3) {
	top:23px;
}

#openbtn_scroll.active span:nth-of-type(1) {
    top: 15px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
    background-color: #fff;
}

#openbtn_scroll.active span:nth-of-type(2) {
	opacity: 0;
}

#openbtn_scroll.active span:nth-of-type(3){
    top: 27px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
    background-color: #fff;
}

#openbtn_scroll {
	opacity: 1;
	transition: ease .3s opacity;
}

@media screen and (max-width:1080px){
#header{
	height: 70px;
}

#header_title{
	padding: 10px 0px 0px 30px;
}

#header_title .logo{
	padding: 18px 0px 0 0px;
}

#header_title .logo a{
	width: 200px;
}

#global_navi{
	display: none;
}

#header_btn{
	display: none;
}

#g-nav-list-area{
	width: auto;
	margin: 0 40px;
}

#openbtn_scroll{
    display: block;
}
}

@media screen and (max-width:800px){
#header{
	height: 60px;
}

#header_title{
	padding: 5px 0px 0px 20px;
}

#header_title .logo{
	padding: 16px 0px 0 0px;
}

#header_title .logo a{
	width: 160px;
}

#openbtn_scroll{
    top: 9px;
    right: 5px;
}

#g-nav-list-area{
	padding: 20px 0 0px 0;
	margin: 0 20px;
}

#g-nav-list-area .g-nav-logo{
	padding: 0 0 33px 0;
}

#g-nav-list-area .g-nav-logo a{
	width: 160px;
}

#g-nav-list-area li{
	padding: 0px 0 12px 3px;
	font-size: 14px;
}
}

/*=========================================*/
/* Contents */
/*=========================================*/

.scroll_point{
	position: absolute;
    margin-top: -45px;
}

br.pc{
}

br.sp{
    display: none;
}

@media screen and (max-width:1240px){
}

@media screen and (max-width:1080px){
}

@media screen and (max-width:800px){
br.pc{
    display: none;
}

br.sp{
    display: block;
}
}

/*=========================================*/
/* KV */
/*=========================================*/

.kv_area {
    position: relative;
    overflow: hidden;
}

#slider {
    width: 100%;
    height: 100vh;
}

.kv_area .catch{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size:42px;
    font-weight: 500;
    line-height: 155%;
    letter-spacing: 0.00em;
    text-transform: uppercase;
    color: #fff;
}

.kv_area .btn {
    z-index: 999;
    position: absolute;
    right: 30px;
    bottom: 40px;
    width: 320px;
}

.kv_area .btn a{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	flex-direction: column;
    justify-content:center;
	align-items:center;
    min-height: 100px;
    padding: 0px 0px;
    border-radius: 500px;
    background-color: #1163B1;
	box-shadow: 0px 10px 20px rgba(0,0,0,0.05);
    color: #fff;
    text-align: center;
	text-decoration:none;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	transition: all 1.0s;
}

.kv_area .btn a:hover {
    background-color: #003d72;
	transition: all 0.5s;
}

.kv_area .btn .read {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.kv_area .btn .text {
	background-image:url("../images/ic_mail01.png");
	background-position:left 15px center;
	background-repeat:no-repeat;
	background-size: 16px;
    margin: 2px 0 11px 0;
    padding: 0 15px 0px 40px;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.04em;
}

@media screen and (max-width:1080px){
.kv_area .catch{
    width: 80%;
    font-size:32px;
}

.kv_area .btn {
    right: auto;
    left: 50%;
    bottom: 30px;
    width: 340px;
    margin-left: -170px;
}
}

@media screen and (max-width:800px){
.kv_area .catch{
    width: 90%;
    font-size:22px;
}

.kv_area .btn {
    bottom: 20px;
    width: 240px;
    margin-left: -120px;
}

.kv_area .btn a{
    min-height: 55px;
}

.kv_area .btn .read {
    display: none;
}

.kv_area .btn .text {
	background-position:left 15px center;
	background-size: 15px;
    margin: 0px 0 0px 0;
    padding: 0 15px 0px 38px;
    font-size: 13px;
    line-height: 13px;
}
}

/*=========================================*/
/* index Solution */
/*=========================================*/

.index_solution_area {
	padding: 180px 0 150px 0;
	background-color: #003d72;
    background: linear-gradient(20deg, #003d72 0%, #0056A1 100%);
}

.index_solution_area .dorone{
	position: absolute;
    width: 360px;
    left: 50%;
    margin: -70px 0 0 150px;
}

.index_solution_area .dorone img{
    border-radius: 500px;
    width: 100%;
    animation: fuwafuwa_dorone 8s infinite ease-in-out .18s alternate;
    display: inline-block;
    transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa_dorone {
  0% {
    transform:translate(0, 0) rotate(-0deg);
  }
  50% {
    transform:translate(0px, -20px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(0deg);
  }
}

.index_solution_area .box {
    z-index: 1;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 0px 0 120px 0;
    color: #fff;
}

.index_solution_area .title_en {
    font-size: 55px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.index_solution_area .title_jp {
	padding: 25px 0 0 0;
    font-size: 16px;
	font-weight: 500;
}

.index_solution_area .read {
	padding: 35px 0 0 0;
    font-size: 35px;
	font-weight: 500;
    line-height: 160%;
}

.index_solution_area .text {
	padding: 40px 0 0 0;
    line-height: 200%;
}

.index_solution_area .btn {
    padding: 50px 0 0 0;
}

.index_solution_area .btn ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
    gap: 15px 15px;
}

.index_solution_area .btn li{
    flex: 1;
}

.index_solution_area .btn a{
    display: block;
    padding: 25px 0px 25px 0px;
    border-radius: 5px;
    border: solid 1px rgba(255,255,255,0.06);
    background-color: rgba(255,255,255,0.04);
    color: #fff;
    text-align: center;
	text-decoration:none;
	background-image:url("../images/ic_arrow01.svg");
	background-position:left 15px center;
	background-repeat:no-repeat;
	background-size: 5px;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	transition: all 1.0s;
}

.index_solution_area .btn a:hover {
    border: solid 1px rgba(255,255,255,0.5);
	transition: all 0.5s;
}

@media screen and (max-width:1300px){
.index_solution_area .box {
	width: auto;
	margin: 0 50px;
}
}

@media screen and (max-width:1080px){
}

@media screen and (max-width:800px){
.index_solution_area {
	padding: 60px 0 10px 0;
}

.index_solution_area .dorone{
    width: 150px;
    left: auto;
    right: 20px;
    margin: -20px 0 0 0px;
}

@keyframes fuwafuwa_dorone {
  0% {
    transform:translate(0, 0) rotate(-4deg);
  }
  50% {
    transform:translate(0px, -20px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(4deg);
  }
}

.index_solution_area .box {
	margin: 0 30px;
}

.index_solution_area .title_en {
    font-size: 35px;
}

.index_solution_area .title_jp {
	padding: 15px 0 0 0;
    font-size: 14px;
}

.index_solution_area .read {
	padding: 30px 0 0 0;
    font-size: 17px;
}

.index_solution_area .text {
	padding: 25px 0 0 0;
    font-size: 13px;
}

.index_solution_area .btn {
    padding: 35px 0 0 0;
}

.index_solution_area .btn ul{
	display: block;
}

.index_solution_area .btn li{
	margin: 0 0 10px 0;
}

.index_solution_area .btn a{
    padding: 20px 0px 20px 0px;
}
}

/*=========================================*/
/* index Slide */
/*=========================================*/

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/*
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.top_slide {
    display: -ms-grid;
    overflow: hidden;
}
/*----------------------------*/

.top_slide__wrap {
    display: flex;
    overflow: hidden;
    padding: 0px 0 0 0;
    margin: -160px 0 0px 0;
}

.top_slide__list {
    display: flex;
    list-style: none;
}

.top_slide__list--left{
    animation :infinity-scroll-left 50s infinite linear 0.1s both;
}

.top_slide__item {
    width: calc(100vw / 4);
    margin: 0px 10px 50px 10px;
}

.top_slide__item > img{
   width: 100%;
}

.top_slide__item img{
    display: block;
	padding: 0px 0px 0px 0px;
    border-radius: 10px;
	box-shadow: 0px 10px 20px rgba(0,0,0,0.05);
}

.top_slide__list .item_top{
    margin-top: 0px;
}

.top_slide__list .item_middle{
    margin-top: 70px;
}

.top_slide__list .item_bottom{
    margin-top: 140px;
}

@media screen and (max-width:800px){
.top_slide__wrap {
    padding: 0px 0 0 0;
    margin: -100px 0 0px 0;
}

.top_slide__item {
    width: calc(100vw / 2);
    margin: 0px 5px 50px 5px;
}

.top_slide__list .item_top{
    margin-top: 0px;
}

.top_slide__list .item_middle{
    margin-top: 30px;
}

.top_slide__list .item_bottom{
    margin-top: 60px;
}
}

/*=========================================*/
/* index Results */
/*=========================================*/

.index_results_area {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 50px 0 120px 0;
    text-align: center;
}

.index_results_area .title_en {
    font-size: 55px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #003d72;
}

.index_results_area .title_jp {
	padding: 25px 0 0 0;
    font-size: 16px;
	font-weight: 500;
    color: #003d72;
}

.index_results_area .read {
    font-size: 35px;
	font-weight: 500;
    line-height: 160%;
}

.index_results_area .read .blue{
    color: #003d72;
}

.index_results_area .text {
	padding: 8px 0 0 0;
    line-height: 200%;
}

.index_results_area .list{
    margin: 70px 0 0 0;
    padding: 65px 0px 80px 0px;
    border-radius: 25px;
    background-color: #fff;
}

.index_results_area .list ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
    width: 90%;
    padding: 50px 0 0 0;
    margin: auto;
}

.index_results_area .list li{
    width: 14.285%;
}

.index_results_area .list .img{
    margin: 8px;
    padding: 10px;
    border: solid 1px rgba(0,0,0,0.06);
    background-color: #fff;
}

.index_results_area .list a.img{
    display: block;
}

.index_results_area .list img{
    width: 100%;
}

.index_results_text01{
    margin: 30px 40px 0 40px;
    text-align: center;
}

.index_results_text02{
    margin: 10px 40px 0 40px;
}

@media screen and (max-width:1300px){
.index_results_area {
	width: auto;
	margin: 0 50px;
}
}

@media screen and (max-width:1080px){
.index_results_area .list li{
    width: 20%;
}
}

@media screen and (max-width:800px){
.index_results_area {
	margin: 0 20px;
	padding: 0px 0 20px 0;
}

.index_results_area .title_en {
    font-size: 35px;
}

.index_results_area .title_jp {
	padding: 15px 0 0 0;
    font-size: 14px;
}

.index_results_area .list{
    margin: 40px 0 0 0;
    padding: 30px 0px 20px 0px;
    border-radius: 15px;
}

.index_results_area .read {
    font-size: 20px;
}

.index_results_area .text {
	padding: 10px 30px 0 30px;
    line-height: 170%;
}

.index_results_area .list ul{
    padding: 25px 0 0 0;
}

.index_results_area .list li{
    width: 25%;
}

.index_results_area .list .img{
    margin: 4px;
    padding: 10px;
}

.index_results_text01{
    margin: 20px 30px 0px 30px;
}

.index_results_text02{
    margin: 10px 30px 10px 30px;
}
}

@media screen and (max-width:640px){
.index_results_area .list li{
    width: 50%;
}
}

/*=========================================*/
/* bottom Contact */
/*=========================================*/

.bottom_contact_area{
    padding: 0px 0 120px 0;
}

.bottom_contact_area .box{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	justify-content:center;
	align-items:center;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: 20px 0 60px 0;
    background-color: #003d72;
    background: linear-gradient(20deg, #003d72 0%, #0056A1 100%);
    border-radius: 25px;
}

.bottom_contact_area .box{
	background-image:url("../images/contact_img.jpg");
	background-position:center;
	background-repeat:no-repeat;
	background-size: cover;
    width: 100%;
}

.bottom_contact_area .box{
	width: 100%;
	filter: blur(100px);
	animation: blur-anim2 1.5s ease-out forwards;
}

@keyframes blur-anim2 {
	100% {	filter: blur(0); }
}

.bottom_contact_area .left{
    width: 50%;
    color: #003d72;
}

.bottom_contact_area .right{
    flex: 1;
}

.bottom_contact_area .text_area{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	flex-direction: column;
    justify-content:center;
    padding: 30px 80px 0px 100px;
}

.bottom_contact_area .title_en {
    font-size: 55px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.bottom_contact_area .title_jp {
	padding: 25px 0 0 0;
    font-size: 16px;
    font-weight: 500;
}

.bottom_contact_area .read {
	padding: 40px 0 0 0;
    font-size: 14px;
    font-weight: 400;
}

.bottom_contact_area .btn_area {
    padding: 60px 70px 0px 80px;
}

.bottom_contact_area .btn {
    margin: 0 0 25px 0;
}

.bottom_contact_area .btn_tell .tell_area{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	flex-direction: column;
    justify-content:center;
	align-items:center;
    min-height: 150px;
    padding: 0 0px 0 0px;
    border-radius: 5px;
    background-color: rgba(255,255,255,1.0);
    color: #003d72;
    text-align: center;
	text-decoration:none;
}

.bottom_contact_area .btn a{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	flex-direction: column;
    justify-content:center;
	align-items:center;
    min-height: 150px;
    padding: 0 0px 0 0px;
    border-radius: 5px;
    background-color: #1163B1;
    color: #fff;
    text-align: center;
	text-decoration:none;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	transition: all 1.0s;
}

.bottom_contact_area .btn a:hover {
    background-color: #003d72;
	transition: all 0.5s;
}

.bottom_contact_area .btn span {
    display: block;
    letter-spacing: 0.05em;
}

.bottom_contact_area .tell_read {
    font-size: 14px;
    font-weight: 300;
}

.bottom_contact_area .tell_number {
	background-image:url("../images/ic_tell02.png");
	background-position:left 15px center;
	background-repeat:no-repeat;
	background-size: 22px;
    margin: 8px 0px 0px 0px;
    padding: 0 30px 2px 45px;
    font-size: 25px;
    font-weight: 600;
    line-height: 25px;
}

.bottom_contact_area .tell_time {
    padding: 8px 0px 0px 0px;
    font-size: 14px;
    font-weight: 300;
}

.bottom_contact_area .mail_read {
    font-size: 14px;
    font-weight: 300;
}

.bottom_contact_area .mail_text {
	background-image:url("../images/ic_mail01.png");
	background-position:left 15px center;
	background-repeat:no-repeat;
	background-size: 20px;
    margin: 7px 0px 5px 0px;
    padding: 0 30px 0px 45px;
    font-size: 18px;
    line-height: 25px;
}

@media screen and (max-width:1300px){
.bottom_contact_area .box {
	width: auto;
	margin: 0 50px;
}
}

@media screen and (max-width:1080px){
.bottom_contact_area .left{
    width: 40%;
}

.bottom_contact_area .text_area{
    padding: 30px 20px 0px 60px;
}

.bottom_contact_area .tell_number {
	background-size: 20px;
    margin: 8px 0px 0px 0px;
    padding: 0 25px 2px 42px;
    font-size: 22px;
    line-height: 22px;
}

.bottom_contact_area .mail_text {
	background-size: 18px;
    margin: 7px 0px 5px 0px;
    padding: 0 25px 0px 42px;
    font-size: 16px;
    line-height: 16px;
}
}

@media screen and (max-width:800px){
.bottom_contact_area{
    padding: 0px 0 40px 0;
}

.bottom_contact_area .box{
	display: block;
	padding: 20px 0 60px 0;
	margin: 0 20px;
    border-radius: 15px;
    text-align: center;
	background-position:bottom center;
	background-repeat:no-repeat;
	background-size: 400px;
    background-color: #e6f0ef;
}

.bottom_contact_area .left{
    width: auto;
}

.bottom_contact_area .text_area{
    padding: 25px 30px 0px 30px;
}

.bottom_contact_area .title_en {
    font-size: 35px;
}

.bottom_contact_area .title_jp {
	padding: 15px 0 0 0;
    font-size: 14px;
}

.bottom_contact_area .read {
	padding: 20px 0 0 0;
    font-size: 13px;
}

.bottom_contact_area .btn_area {
    padding: 40px 20px 120px 20px;
}

.bottom_contact_area .btn {
    margin: 0 0 15px 0;
}

.bottom_contact_area .btn_tell .tell_area{
    min-height: 120px;
}

.bottom_contact_area .btn a{
    min-height: 120px;
}

.bottom_contact_area .tell_read {
    font-size: 12px;
}

.bottom_contact_area .tell_number {
	background-position:left 13px center;
	background-size: 17px;
    margin: 4px 0px 0px 0px;
    padding: 0 20px 2px 35px;
    font-size: 20px;
    line-height: 25px;
}

.bottom_contact_area .tell_time {
    padding: 4px 0px 0px 0px;
    font-size: 12px;
}

.bottom_contact_area .mail_read {
    font-size: 12px;
}

.bottom_contact_area .mail_text {
	background-position:left 13px center;
	background-size: 16px;
    margin: 2px 0px 5px 0px;
    padding: 0 20px 0px 38px;
    font-size: 14px;
    line-height: 25px;
}
}

/*=========================================*/
/* FOOTER */
/*=========================================*/

#footer{
	padding: 30px 0 80px 0;
	overflow: hidden;
	text-align: center;
	background-color: #003d72;
    background: linear-gradient(20deg, #003d72 0%, #0056A1 100%);
}

#footer .copyright{
	padding: 0px 0px 0px 0px;
	color: #ffffff;
    font-size: 11px;
	letter-spacing: 0.02em;
}

@media screen and (max-width:1080px){
}

@media screen and (max-width:800px){
}

/*=========================================*/
/* HASEI */
/*=========================================*/

.hasei_title_area{
    overflow: hidden;
}

.hasei_title{
    position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
    height: 500px;
	color: #ffffff;
    font-size: 11px;
	letter-spacing: 0.02em;
	background-color: #003d72;
    background: linear-gradient(20deg, #003d72 0%, #0056A1 100%);
	background-position:center;
	background-repeat:no-repeat;
	background-size: cover;
}

.hasei_title_company{
	background-image:url("../images/title_img_company.jpg");
}

.hasei_title_solution{
	background-image:url("../images/title_img_solution.jpg");
}

.hasei_title_contact{
	background-image:url("../images/title_img_contact.jpg");
}

.hasei_title_privacy{
	background-image:url("../images/title_img_privacy.jpg");
}

.hasei_title_net{
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/02.png) center center;
	background-position:bottom;
	background-repeat:repeat;
    opacity: 0.4;
}

.hasei_title .box{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

.hasei_title .title_en {
	padding: 25px 0 0 0;
    font-size: 55px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hasei_title .title_jp {
	padding: 25px 0 0 0;
    font-size: 16px;
	font-weight: 500;
}

.hasei_title .read {
	padding: 35px 0 0 0;
    font-size: 15px;
    line-height: 160%;
}

.hasei_contents{
    margin: 80px 0 100px 0;
}

.hasei_box{
	width: 100%;
	max-width: 1200px;
    margin: auto auto 50px auto;
    background-color: #fff;
    border-radius: 15px;
}

.hasei_subtitle {
    position: relative;
    display: inline-block;
    margin: 50px 60px 0px 60px;
    font-size: 11px;
	font-weight: 400;
    line-height: 160%;
	letter-spacing: 0.04em;
    color: #003d72;
    font-size: 22px;
    font-weight: 500;
}

.hasei_subtitle:before {
    content: '';
    position: absolute;
    left: 10px;
    bottom: -15px;
    display: inline-block;
    width: 20px;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #003d72;
    border-radius: 1px;
}

@media screen and (max-width:1300px){
.hasei_title .box {
	width: auto;
	margin: auto 50px;
}

.hasei_contents{
    margin: 80px 0 80px 0;
}

.hasei_box{
	width: auto;
	margin: auto 50px 30px 50px;
}
}

@media screen and (max-width:1080px){
.hasei_subtitle {
    margin: 40px 40px 0px 40px;
}
}

@media screen and (max-width:800px){
.hasei_title{
    height: 300px;
}

.hasei_title .title_en {
    font-size: 35px;
}

.hasei_title .title_jp {
	padding: 17px 0 0 0;
    font-size: 14px;
}

.hasei_contents{
    margin: 20px 0 20px 0;
}

.hasei_box{
	margin: auto 20px 20px 20px;
    border-radius: 10px;
}

.hasei_subtitle {
    margin: 30px 30px 0px 30px;
    font-size: 17px;
}
}

/*=========================================*/
/* solution */
/*=========================================*/

.solution_area{
}

.solution_area .title_area{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	align-items:center;
    flex-direction: row-reverse;
    padding: 30px;
	background-position:center right;
	background-repeat:no-repeat;
    background-size: 50%;
}

.solution_area .title_area_solution01{
}

.solution_area .img{
    width: 50%;
}

.solution_area .img img{
    width: 100%;
    border: solid 1px rgba(0,0,0,0.06);
	border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.solution_area .box{
    flex: 1;
    padding: 10px 40px 0 40px;
    background-color: #ffffff;
}

.solution_area .title_en {
    padding: 0 0 0 2px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #003d72;
}

.solution_area .title_en .number{
    padding: 0 0 0 5px;
    font-size: 16px;
    color: #003d72;
}

.solution_area .title_jp {
	padding: 5px 0 0 0;
    font-size: 34px;
	font-weight: 500;
    line-height: 160%;
    color: #003d72;
}

.solution_area .btn{
    display: block;
    width: 180px;
    margin: 40px 0 0 0;
    font-size: 14px;
}

.solution_area .btn a{
    display: block;
    padding: 10px 0px 10px 10px;
    border-radius: 5px;
	background-color: #1163B1;
    color: #fff;
    text-align: center;
	text-decoration:none;
	background-image:url("../images/ic_arrow01.svg");
	background-position:left 15px center;
	background-repeat:no-repeat;
	background-size: 5px;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	transition: all 1.0s;
}

.solution_area .btn a:hover {
	background-color: #003d72;
	transition: all 0.5s;
}

.solution_area .text_area {
    padding: 10px 50px 60px 50px;
}

.solution_area .text {
	padding: 10px 0 0 0;
    line-height: 200%;
}

.solution_area .img_area {
    padding: 40px 0 0 0;
    margin: 0 -15px;
}

.solution_area .img_area ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	justify-content: flex-end;
}

.solution_area .img_area li{
    width: 33.3333%;
}

.solution_area .img_area span{
    display: block;
    margin: 15px;
}

.solution_area .img_area img{
    width: 100%;
    border: solid 1px rgba(0,0,0,0.06);
	border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

@media screen and (max-width:1080px){
.solution_area .box{
    padding: 10px 40px 0 40px;
}

.solution_area .title_en {
    font-size: 13px;
}

.solution_area .title_en .number{
    padding: 0 0 0 3px;
    font-size: 15px;
}

.solution_area .title_jp {
    font-size: 28px;
}

.solution_area .btn{
    width: 160px;
    margin: 20px auto 0 auto;
    font-size: 13px;
}

.solution_area .text_area {
    padding: 10px 40px 40px 40px;
}
}

@media screen and (max-width:800px){
.solution_area .title_area{
	display: block;
    padding: 30px 30px 20px 30px;
    text-align: center;
}

.solution_area .title_en {
    font-size: 12px;
}

.solution_area .title_en .number{
    padding: 0 0 0 2px;
    font-size: 13px;
}

.solution_area .title_jp {
	padding: 2px 0 0 0;
    font-size: 19px;
}

.solution_area .img{
    width: auto;
}

.solution_area .img img{
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.solution_area .box{
    padding: 30px 0px 0 0px;
}

.solution_area .text_area {
    padding: 0px 30px 30px 30px;
}

.solution_area .img_area {
    padding: 10px 0 0 0;
    margin: 0 auto;
    max-width: 400px;
}

.solution_area .img_area ul{
	display: block;
}

.solution_area .img_area li{
    width: auto;
}

.solution_area .img_area span{
    display: block;
    margin: 15px 0 0px 0;
}
}

/*=========================================*/
/* company */
/*=========================================*/

.company_list {
    padding: 50px 60px 60px 60px;
}

.company_list ul {
}

.company_list li {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
    padding: 25px 0;
    border-top: solid 1px rgba(0,0,0,0.06);
}

.company_list .history li {
    padding: 20px 0;
}

.company_list li.noline {
    padding: 0px 0 25px 0;
    border-top: none;
}

.company_list li:first-child {
    border-top: none;
}

.company_list .left {
    width: 200px;
    font-weight: 500;
}

.company_list .history .left {
    width: 100px;
}

.company_list .right {
    flex: 1;
}

.company_list .office_area {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
}

.company_list .office {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	width: 50%;
}

.company_list .office .img{
    max-width: 140px;
}

.company_list .office .img img{
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    width: 100%;
}

.company_list .office .text_area{
    flex: 1;
    margin: 10px 20px 0 15px;
}

.company_list .office .name{
    padding: 0 0 8px 0;
    font-size: 16px;
    font-weight: bold;
}

.company_access {
    padding: 60px 60px 60px 60px;
}

.company_access iframe {
    width: 100%;
    height: 450px;
}

.company_message {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	flex-direction: row-reverse;
    padding: 60px 60px 60px 60px;
}

.company_message .img{
    width: 330px;
    margin: 0 0 0 50px;
}

.company_message .img img{
    display: block;
    width: 100%;
	border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.company_message .text_area{
    flex: 1;
    margin-top: -20px;
}

.company_message .message_read{
    padding: 0 0 10px 0;
    font-size: 22px;
    font-weight: 500;
}

.company_message .message_text {
    padding: 20px 0 0 0;
    line-height: 220%;
}

@media screen and (max-width:1080px){
.company_list {
    padding: 40px 40px;
}

.company_list ul {
    padding: 0px 0 0 0;
}

.company_list li {
	display: block;
}

.company_list .left {
    width: auto;
    padding: 0 0 8px 0;
}

.company_access {
    padding: 60px 40px 40px 40px;
}

.company_message {
	display: block;
    padding: 60px 40px 40px 40px;
}

.company_message .img{
    max-width: 400px;
    width: auto;
    margin: 0 auto 50px auto;
}

.company_message .message_read{
    font-size: 20px;
}

.company_message .message_text {
    padding: 15px 0 0 0;
}
}

@media screen and (max-width:800px){
.company_list {
    padding: 30px 30px;
}

.company_list ul {
}

.company_list li {
    padding: 20px 0;
}

.company_list .history li {
    padding: 15px 0;
}

.company_list .office_area {
    margin: 0px 0px -10px 0px;
}

.company_list .office {
	display: block;
	width: auto;
    margin: 5px 0px 0px 0px;
}

.company_list .office .img{
    max-width: 120px;
}

.company_list .office .text_area{
    margin: 10px 0px 15px 0px;
}

.company_list .office .name{
    padding: 0 0 5px 0;
    font-size: 14px;
}

.company_access {
    padding: 50px 30px 30px 30px;
}

.company_access iframe {
    height: 300px;
}

.company_message {
    padding: 50px 30px 30px 30px;
}

.company_message .img{
    max-width: 300px;
    margin: 0 auto 30px auto;
}

.company_message .text_area{
    margin-top: -10px;
}

.company_message .message_read{
    font-size: 16px;
}

.company_message .message_text {
    padding: 10px 0 0 0;
}
}

/*=========================================*/
/* contact */
/*=========================================*/

.contact_read {
    padding: 60px 60px 60px 60px;
    text-align: center;
}

#contact_form{
	border-top: solid 1px rgba(0,0,0,0.06);
	margin: 0px 60px 40px 60px;
}

#contact_form li{
	border-bottom: solid 1px rgba(0,0,0,0.06);
	list-style: none;
	overflow: hidden;
}

#contact_form .left{
	position: absolute;
	color:#000000;
	font-size:14px;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: 30px 0px 0px 0px;
}

.required {
	margin-left: 15px;
	padding:5px 12px 5px 12px;
	color:#ffffff;
	font-size:12px;
	font-weight: 500;
	line-height:100%;
	background-color: #1163B1;
	letter-spacing:0.05em;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

#contact_form .right{
	padding: 20px 0px 20px 300px;
	display: block;
}

#contact_form .right input{
	border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
	background-color: #ffffff;
	border: 1px solid rgba(0,0,0,0.12);
	padding: 12px 10px;
	-webkit-transition: opacity 1.0s ease-out;
	-moz-transition: opacity 1.0s ease-out;
	-ms-transition: opacity 1.0s ease-out;
	transition: opacity 1.0s ease-out;
	transition: all 1.5s;
}

#contact_form .right input:hover {
	border: 1px solid rgba(0,0,0,0.3);
	transition: all 0.5s;
}

#contact_form .right input:focus {
	border: 1px solid #317edb;
}

#contact_form .right textarea{
	border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
	background-color: #ffffff;
	border: 1px solid rgba(0,0,0,0.12);
	padding: 12px 10px;
	-webkit-transition: opacity 1.0s ease-out;
	-moz-transition: opacity 1.0s ease-out;
	-ms-transition: opacity 1.0s ease-out;
	transition: opacity 1.0s ease-out;
	transition: all 1.5s;
}

#contact_form .right textarea:hover {
	border: 1px solid rgba(0,0,0,0.3);
	transition: all 0.5s;
}

#contact_form .right textarea:focus {
	border: 1px solid #317edb;
}

#contact_form .right .radio_area{
	margin-right: 20px;
}

#contact_form .right .caution{
	margin-left: 10px;
	font-size: 13px;
}

.contact_form_btn{
	width:100%;
	padding:10px 0 60px 0;
	margin:0 auto;
	text-align: center;
}

.contact_form_btn ul{
	width:100%;
	max-width: 600px;
	margin: auto;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:         wrap;
}

.contact_form_btn li{
	width: 50%;
	margin: 0px auto 0 auto;
}

.contact_form_btn .btn{
	margin: 0px 10px 0 10px;
	text-align: center;
	border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
}

.contact_form_btn .btn a{
	cursor: pointer;
	font-family:'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
	font-size:14px;
	font-weight: normal;
	letter-spacing: 0.06em;
	color: #ffffff;
	text-decoration: none;
	display: block;
	width: 100%;
	padding: 19px 0 20px 0;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	box-shadow: 0 0px 6px rgba(0,0,0,0.0);
	background-color: #1163B1;
	-webkit-transition: opacity 1.0s ease-out;
	-moz-transition: opacity 1.0s ease-out;
	-ms-transition: opacity 1.0s ease-out;
	transition: opacity 1.0s ease-out;
	transition: all 1.5s;
}

.contact_form_btn .btn a:hover {
	box-shadow: 0 0px 12px rgba(0,0,0,0.0);
	background-color: #003d72;
	transition: all 0.5s;
}

.contact_form_btn .btn input{
	font-family:'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
	font-size:14px;
	color: #ffffff;
	letter-spacing: 0.00em;
	text-align: center;
	width: 100%;
	cursor: pointer;
	display: block;
	padding: 19px 0 20px 0;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	background-color: #1163B1;
	border: solid 2px #1163B1; 
	transition: all 0.5s;
}

.contact_form_btn .btn input:hover {
	background: #003d72;
	border: solid 2px #003d72; 
	transition: all 0.5s;
}

.contact_form_btn p{
	padding-top: 30px;
	color:#333333;
}

#contact_form_box{
	margin: 50px 120px 100px 120px;
}

.context_check_text{
    text-align: center;
    padding: 0 0 50px 0;
}

#contact_form_check_err{
	border: #317edb solid 3px;
	padding: 30px 30px;
	margin: 40px 0 40px 0;
	color: #317edb;
}

table.formTable{
	width:100%;
	margin:0px auto 50px auto;
	border-collapse:collapse;
}

table.formTable td,table.formTable th{
	border-top:1px solid rgba(0,0,0,0.05);
	padding:20px 0px;
}

table.formTable th{
	width:250px;
	font-size: 14px;
	letter-spacing: 0.08em;
	color:#000000;
}

#contact_execute_text01{
	padding: 150px 20px 20px 20px;
	font-size:25px;
	text-align: center;
	color: #000000;
}

#contact_execute_text02{
	padding: 0px 20px 150px 20px;
	text-align: center;
}

@media screen and (max-width:1024px){
.contact_read {
    padding: 40px 40px 40px 40px;
}

#contact_form{
	margin: 0px 40px 40px 40px;
}

#contact_form_box{
	margin: 50px 20px 100px 20px;
}
}

@media screen and (max-width:800px){
.contact_read {
    padding: 30px;
    text-align: left;
}

#contact_form{
	margin: 0px 30px 30px 30px;
}

#contact_form .left{
	position: relative;
	padding: 22px 0px 0px 0px;
}

#contact_form .right{
	padding: 15px 0px 20px 0px;
}

#contact_form .right .caution{
	margin-left: 0px;
	padding-top: 5px;
	display: block;
}

#contact_form .right input{
	width: 90%;
}

.contact_form_btn{
    width: auto;
	padding:10px 30px 40px 30px;
}

.contact_form_btn ul{
	max-width: 350px;
	margin: auto;
	display:block;
}

.contact_form_btn li{
	width: 100%;
	margin: 5px auto;
}

.contact_form_btn .btn{
	margin: 0px 0px 0 0px;
	text-align: center;
	border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
}

.contact_form_btn .btn a{
	padding: 15px 0 16px 0;
}

.contact_form_btn .btn input{
	padding: 15px 0 16px 0;
}

#contact_form_box{
	margin: 40px 20px 60px 20px;
}

.context_check_text{
    padding: 0 0 40px 0;
}

table.formTable th{
	width:200px;
}

#contact_execute_text01{
	padding: 80px 20px 15px 20px;
	font-size:18px;
}

#contact_execute_text02{
	padding: 0px 20px 100px 20px;
}
}

/*=========================================*/
/* privacy */
/*=========================================*/

.privacy_list {
    padding: 60px 60px;
}

.privacy_list .read {
    text-align: center;
}

.privacy_list ul {
    padding: 60px 0 0 0;
}

.privacy_list li {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
    padding: 25px 0;
    border-top: solid 1px rgba(0,0,0,0.06);
}

.privacy_list li:first-child {
}

.privacy_list .left {
    width: 260px;
    font-weight: 500;
}

.privacy_list .right {
    flex: 1;
}

@media screen and (max-width:1080px){
.privacy_list {
    padding: 40px 40px;
}

.privacy_list ul {
    padding: 40px 0 0 0;
}

.privacy_list li {
	display: block;
}

.privacy_list .left {
    width: auto;
    padding: 0 0 8px 0;
}
}

@media screen and (max-width:800px){
.privacy_list {
    padding: 30px 30px;
}

.privacy_list ul {
    padding: 30px 0 0 0;
}

.privacy_list li {
    padding: 20px 0;
}
}

/*=========================================*/
/* LP */
/*=========================================*/

.lp_mv{
	background-color: #404040;
    text-align: center;
}

.lp_mv img{
    width: 100%;
    max-width: 1280px;
    margin: auto;
}

.lp_title_area{
    overflow: hidden;
}

.lp_title{
    position: relative;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
    height: 600px;
	color: #ffffff;
    font-size: 11px;
    text-align: center;
	letter-spacing: 0.02em;
	background-color: #003d72;
    background: linear-gradient(20deg, #003d72 0%, #0056A1 100%);
	background-position:center;
	background-repeat:no-repeat;
	background-size: cover;
}

.lp_title_live{
	background-image:url("../images/title_img_live.jpg");
}

.lp_title_net{
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/02.png) center center;
	background-position:bottom;
	background-repeat:repeat;
    opacity: 0.4;
}

.lp_title .box{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

.lp_title .title_en {
	padding: 25px 0 0 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.lp_title .title_jp {
	padding: 30px 0 100px 0;
    font-size: 46px;
	font-weight: 500;
    letter-spacing: 0.02em;
}

.lp_img_area{
    position: relative;
	width: 100%;
	max-width: 1200px;
    margin: 40px auto -40px auto;
}

.lp_img_area ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
    justify-content:center;
	align-items:center;
}

.lp_img_area li{
    flex: 1;
    margin: 0 20px;
}

.lp_img_area img{
    width: 100%;
    border-radius: 15px;
}

.lp_box{
	width: 100%;
	max-width: 1000px;
    margin: auto auto 50px auto;
    background-color: #fff;
    border-radius: 15px;
}

.lp_box .text_area {
    padding: 50px 50px 50px 50px;
}

.lp_box .catch {
    padding: 0px 0px 30px 0px;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 160%;
    color: #003d72;
}

.lp_box .catch strong{
    font-size: 42px;
    font-weight: 500;
    line-height: 180%;
}

.lp_box .message {
    font-size: 18px;
    line-height: 180%;
}

.lp_box .text_box {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	border-top:1px solid rgba(0,0,0,0.08);
    padding: 35px 0px 0px 0px;
    margin: 50px 0 0 0;
}

.lp_box .text_area .read {
    width: 220px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #003d72;
}

.lp_box .text_area .text {
    flex: 1;
    padding: 0px 0px 0px 20px;
    font-size: 17px;
    line-height: 180%;
}

.lp_btn {
	width: 100%;
	max-width: 1000px;
    margin: 70px auto 0px auto;
}

.lp_btn a{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	flex-direction: column;
    justify-content:center;
	align-items:center;
    padding: 40px 0px 50px 0px;
    border-radius: 30px;
    background-color:#065096;
    color: #fff;
    text-align: center;
	text-decoration:none;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	transition: all 1.0s;
}

.lp_btn a:hover {
    background-color: #003d72;
	transition: all 0.5s;
}

.lp_btn span {
    letter-spacing: 0.05em;
}

.lp_btn .tell_read {
    display: block;
    font-size: 14px;
    font-weight: 300;
}

.lp_btn .tell_number {
    display: block;
	background-image:url("../images/ic_tell01.png");
	background-position:left 15px center;
	background-repeat:no-repeat;
	background-size: 22px;
    margin: 8px 0px 0px 0px;
    padding: 0 30px 2px 45px;
    font-size: 25px;
    font-weight: 600;
    line-height: 25px;
}

.lp_btn .tell_number .time {
    font-size: 16px;
    font-weight: 300;
}

.lp_btn .mail_text {
    display: block;
    margin: 30px 0px 0px 0px;
    padding: 0px 60px 0px 60px;
    background-color: #fff;
    border-radius: 500px;
    font-size: 16px;
    line-height: 25px;
    color: #003d72;
}

.lp_btn .mail_text .ic{
    display: block;
    padding: 25px 0px 25px 30px;
	background-image:url("../images/ic_mail02.png");
	background-position:left 0px center;
	background-repeat:no-repeat;
	background-size: 20px;
}

.lp_contact_box{
	width: 100%;
	max-width: 1000px;
    margin: auto auto 50px auto;
    background-color: #fff;
    border-radius: 15px;
}

.lp_contact_title{
    padding: 70px 30px 0 30px;
    font-size: 30px;
    font-weight: 400;
    color: #003d72;
    text-align: center;
}

.lp_contact_read{
    padding: 30px 30px 60px 30px;
    text-align: center;
}

.lp_header_contact{
    position: fixed;
    top: 20px;
    right: 30px;
    width: 180px;
}

.lp_header_contact a{
	font-family:'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
	font-size:15px;
    line-height: 55px;
	color: #ffffff;
	letter-spacing: 0.00em;
    text-align: center;
    text-decoration: none;
	cursor: pointer;
	display: block;
    width: 100%;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    display: block;
	background-color: #1163B1;
	border: solid 2px #1163B1; 
	transition: all 0.5s;
}

.lp_header_contact a:hover {
	background: #003d72;
	border: solid 2px #003d72; 
	transition: all 0.5s;
}

.lp_header_contact span.ic {
    padding: 0 6px 0 26px;
	background-image:url("../images/ic_mail01.png");
	background-position:left 0px center;
	background-repeat:no-repeat;
	background-size: 16px;
    text-align: center;
}

.lp_btn_return {
	width: 100%;
	max-width: 250px;
    margin: -100px auto 150px auto;
}

.lp_btn_return a{
	display: block;
    padding: 20px 0px;
    border-radius: 50px;
    background-color:#065096;
    color: #fff;
    text-align: center;
	text-decoration:none;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
	transition: all 1.0s;
}

.lp_btn_return a:hover {
    background-color: #003d72;
	transition: all 0.5s;
}

.lp_form_box{
    max-width: 1200px;
    margin: auto;
}

@media screen and (max-width:1100px){
.lp_box{
	width: auto;
	margin: auto 50px 30px 50px;
}

.lp_btn {
	width: auto;
	margin: 50px 50px 0px 50px;
}

.lp_contact_box{
	width: auto;
	margin: auto 50px 30px 50px;
}
}

@media screen and (max-width:1080px){
}

@media screen and (max-width:800px){
.lp_title{
    height: 280px;
}

.lp_title .title_en {
	padding: 0px 0 0 0;
    font-size: 15px;
}

.lp_title .title_jp {
	padding: 15px 0 10px 0;
    font-size: 28px;
}

.lp_img_area{
	width: auto;
    margin: 20px 5px 0px 5px;
}

.lp_img_area li{
    margin: 0 5px;
}

.lp_img_area img{
    border-radius: 5px;
}

.lp_box{
	width: auto;
	margin: auto 20px 20px 20px;
}

.lp_box .text_area {
    padding: 30px 30px 10px 30px;
}

.lp_box .catch {
    padding: 0px 0px 20px 0px;
    font-size: 16px;
    letter-spacing: 0.00em;
    line-height: 160%;
}

.lp_box .catch strong{
    font-size: 23px;
}

.lp_box .message {
    padding: 0px 0px 30px 0px;
    font-size: 16px;
}

.lp_box .text_box {
	display: block;
    padding: 25px 0px 20px 0px;
    margin: 0px 0 0 0;
}

.lp_box .text_area .read {
    width: auto;
    font-size: 18px;
}

.lp_box .text_area .text {
    padding: 20px 0px 0px 0px;
    font-size: 15px;
}

.lp_btn {
	width: auto;
	margin: 20px 20px 0px 20px;
}

.lp_btn a{
    padding: 30px 0px 40px 0px;
    border-radius: 30px;
}

.lp_btn .tell_read {
    font-size: 14px;
}

.lp_btn .tell_number {
	background-position:left 12px top 5px;
	background-size: 20px;
    margin: 8px 0px 0px 0px;
    padding: 0 30px 2px 40px;
    font-size: 22px;
}

.lp_btn .tell_number .time {
    display: block;
    font-size: 14px;
}

.lp_btn .mail_text {
    margin: 25px 20px 0px 20px;
    padding: 0px 30px 0px 30px;
    font-size: 14px;
}

.lp_btn .mail_text .ic{
    padding: 16px 0px 16px 28px;
	background-size: 18px;
}

.lp_contact_box{
	width: auto;
	margin: auto 20px 20px 20px;
}

.lp_contact_title{
    padding: 35px 30px 0 30px;
    font-size: 20px;
}

.lp_contact_read{
    padding: 20px 30px 30px 30px;
    text-align: left;
}

.lp_header_contact{
    top: 10px;
    right: 15px;
    width: 130px;
}

.lp_header_contact a{
	font-size:13px;
    line-height: 40px;
}

.lp_header_contact span.ic {
    padding: 0 0px 0 20px;
	background-size: 13px;
}

.lp_btn_return {
    margin: -50px auto 100px auto;
}
}

/*=========================================*/
/* LP 改修用追記 */
/*=========================================*/

.lp2_mv{
	background-color: #404040;
    text-align: center;
}

.lp2_mv img{
    width: 100%;
    max-width: 1280px;
    margin: auto;
}

.lp2_contents{
    padding: 20px 0 60px 0;
    background-color: #fff;
}

.lp2_back01{
    padding: 40px 0 0px 0;
    background-color: #fff;
}

.lp2_box{
	width: 100%;
	max-width: 1000px;
    margin: 0 auto 50px auto;
}

.lp2_category_title{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
    justify-content:center;
	align-items:center;
    width: 530px;
    height: 121px;
	background-position:center;
	background-repeat:no-repeat;
	background-size: contain;
}

.lp2_category_title_back01{
	background-image:url("../live2/images/title_back02.jpg");
}

.lp2_category_title h2{
    font-weight: 600;
    color: #000;
    text-shadow: 
    white 4px 0px 4px, white -4px 0px 4px,
    white 0px -4px 4px, white -4px 0px 4px,
    white 4px 4px 4px, white -4px 4px 4px,
    white 4px -4px 4px, white -4px -4px 4px,
    white 1px 4px 4px, white -1px 4px 4px,
    white 1px -4px 4px, white -1px -4px 4px,
    white 4px 1px 4px, white -4px 1px 4px,
    white 4px -1px 4px, white -4px -1px 4px,
    white 1px 1px 4px, white -1px 1px 4px,
    white 1px -1px 4px, white -1px -1px 4px;
}

.lp2_category_title h2.title01{
	font-size: 55px;
	letter-spacing: 0.05em;
}

.lp2_category_title h2.title02{
	font-size: 55px;
	letter-spacing: -0.02em;
}

.lp2_category_title h2.title03{
    margin-right: 20px;
	font-size: 50px;
	letter-spacing: -0.02em;
}

.lp2_img_area{
    position: relative;
	width: 100%;
	max-width: 1200px;
    margin: 40px auto 0px auto;
}

.lp2_img_area ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
    justify-content:center;
	align-items:center;
}

.lp2_img_area li{
    flex: 1;
}

.lp2_img_area li.img01{
    margin: 0 30px;
}

.lp2_img_area li.img02{
    margin: 0px 10px 20px 10px;
}

.lp2_img_area img{
    width: 100%;
    border-radius: 5px;
}

.lp2_text_area{
    padding: 40px 0 50px 0;
	background-position:center;
	background-repeat:no-repeat;
	background-size: 92%;
	background-image:url("../live2/images/text_back.jpg");
}

.lp2_text01{
    width: 86%;
    margin: auto;
    padding: 5px 0px;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    text-align: left;
}

.lp2_text02{
    width: 86%;
    margin: auto;
    padding: 5px 0px;
    font-size: 22px;
    font-weight: 600;
    line-height: 150%;
    text-align: left;
}

.lp2_text03{
    width: 86%;
    margin: auto;
    padding: 5px 0px;
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
    text-align: center;
}

.lp2_plan_area{
    position: relative;
	width: 100%;
	max-width: 900px;
    margin: 0px auto 0px auto;
}

.lp2_plan_area ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
    justify-content:center;
	align-items:center;
	height:auto;
}

.lp2_plan_area li{
    flex: 1;
    margin: 0 30px;
	background-position:center;
	background-repeat:no-repeat;
	background-size: 100%;
	background-image:url("../live2/images/plan_back.jpg");
}

.lp2_plan_area p{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
    justify-content:center;
	align-items:center;
    height: 230px;
    font-size: 24px;
    font-weight: 600;
    line-height: 170%;
    text-align: center;
}

.lp2_img_flow{
    padding: 40px 30px 0 30px;
}

.lp2_img_flow img{
    width: 100%;
}

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

}

@media screen and (max-width:1080px){
}

@media screen and (max-width:800px){
.lp2_mv{
    padding: 70px 0 0 0;
	background-color: #000;
    text-align: center;
}

.lp2_contents{
    padding: 10px 0 40px 0;
}

.lp2_back01{
    padding: 20px 0 0px 0;
}

.lp2_box{
	width: 100%;
	max-width: 1000px;
    margin: 0 auto 20px auto;
}

.lp2_category_title{
    width: 300px;
    height: 70px;
    margin: auto;
}

.lp2_category_title h2.title01{
	font-size: 30px;
}

.lp2_category_title h2.title02{
	font-size: 25px;
}

.lp2_category_title h2.title03{
    margin-right: 10px;
	font-size: 25px;
}

.lp2_img_area{
    margin: 20px auto 0px auto;
}

.lp2_img_area li.img01{
    margin: 0 10px;
}

.lp2_img_area li.img02{
    margin: 0px 5px 0px 5px;
}

.lp2_text_area{
    padding: 15px 0 20px 0;
	background-image: none;
}

.lp2_text01{
    width: auto;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.lp2_text02{
    width: auto;
    margin: auto;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.lp2_text03{
    width: auto;
    margin: auto;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.lp2_plan_area ul{
	flex-direction: column;
    margin-bottom: 10px;
}

.lp2_plan_area li{
    width: 100%;
    max-width: 320px;
    margin: 0 auto -20px auto;
	background-size: 100%;
}

.lp2_plan_area p{
    height: 180px;
    font-size: 16px;
}

.lp2_img_flow{
    width: 100%;
    max-width: 300px;
    margin: auto;
    padding: 20px 0px 0 0px;
}
}

/*=========================================*/
/* Article */
/*=========================================*/

.soon{
    height: 400px;
}

#header.header_article{
	height: 70px;
	background-color: #003d72;
}

.header_article #header_title{
	padding: 0px 0px 0px 20px;
}

.header_article #header_title .logo{
	padding: 18px 0px 0 0px;
}

.header_article #header_title .logo a{
	width: 160px;
}

.header_article #global_navi{
	margin: 24px 20px 0 0px;
}

.header_article #global_navi li{
	margin: 0 15px;
	height: 20px;
	font-size:13px;
}

.article_box{
    position: relative;
    overflow: hidden;
	width: 100%;
	max-width: 1000px;
    margin: auto auto 30px auto;
    background-color: #fff;
    border-radius: 15px;
}

.article_text_area{
    position: relative;
    overflow: hidden;
    padding: 30px 30px 30px 30px;
}

.article_inner{
    position: relative;
    overflow: hidden;
    padding: 25px 25px 15px 25px;
    border: solid 1px rgba(0,0,0,0.08);
    border-radius: 10px;
    background-color: rgba(0,0,0,0.01);
}

.article_inner_margin_bottom{
    margin-bottom: 10px;
}

.h1_article_area{
	max-width: 1000px;
    margin: 120px auto 50px auto ;
}

.h1_article{
    display: block;
    position: relative;
    padding: 0px 0 0px 35px;
    font-size: 41px;
    font-weight: 500;
    line-height: 150%;
    color: #003d72;
}

.h1_article:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    display: inline-block;
    width: 5px;
    height: 100%;
    background-color: #003d72;
    border-radius: 1px;
}

.h2_article{
    position: relative;
    display: block;
    border-bottom: solid 3px rgba(0,0,0,0.08);
    padding: 40px 0;
    margin: 0px 30px 10px 30px;
    color: #000;
    font-size: 26px;
    font-weight: 500;
    line-height: 160%;
}

.h2_article:before {
    content: '';
    position: absolute;
    left: 25px;
    bottom: -2px;
    display: inline-block;
    width: 50px;
    height: 3px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #003d72;
    border-radius: 1px;
}

.h2_article_2{
    position: relative;
    display: flex;
	align-items:center;
    background-color: #003d72;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 25px 20px 25px 20px;
    margin: 0px 0px 10px 0px;
    color: #fff;
    font-size: 26px;
    font-weight: 500;
    line-height: 160%;
}

.h2_article_2 .number{
    width: 45px;
    height: 45px;
    margin-right: 15px;
    background-color: #fff;
    border-radius: 3px;
    font-size: 22px;
    text-align: center;
    color: #003d72;
    line-height: 45px;
}

.h2_article_2 .text{
    flex: 1;
}

.h3_article{
    clear: both;
    position: relative;
    display: inline-block;
    margin-bottom: 22px;
    padding: 0 0 0 20px;
    color: #003d72;
    font-size: 24px;
    font-weight: 500;
    line-height: 160%;
}

.h3_article:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    display: inline-block;
    width: 3px;
    height: 100%;
    background-color: #dfdfdf;
    border-radius: 1px;
}

.h3_article_margin{
    margin-top: 50px;
}

.h3_article_2{
    clear: both;
    position: relative;
    display: flex;
	align-items:center;
    margin-bottom: 22px;
    color: #003d72;
    font-size: 24px;
    font-weight: 500;
    line-height: 160%;
}

.h3_article_2 .number{
    width: 35px;
    height: 35px;
    margin-right: 10px;
    background-color: #003d72;
    border-radius: 50px;
    font-size: 18px;
    text-align: center;
    color: #fff;
    line-height: 35px;
}

.h3_article_2 .text{
    flex: 1;
}

.article_text01{
    padding: 0 0 15px 0;
}

.article_text01_margin_bottom{
    margin-bottom: 10px;
}

.article_text02{
    padding: 5px 0 5px 0;
    font-size: 17px;
    font-weight: 500;
    color: #003d72;
}

.article_text02{
    padding: 5px 0 5px 0;
    font-size: 17px;
    font-weight: 500;
    color: #003d72;
}

.article_text03{
    display: inline-block;
    padding:5px 12px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #003d72;
}

.article_text03_margin_top{
    margin-top: 15px;
}

.article_text04{
    padding: 0 0 45px 0;
}

.article_text05{
    clear: both;
    margin: 0 0 30px 0;
    padding: 15px;
    background-color: #003d72;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    text-align: center;
}

.article_text06{
    margin: 10px 0 30px 0;
    color: #003d72;
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    text-align: center;
}

.article_text07{
    clear: both;
    margin: 20px 0 20px 0;
    padding: 8px 10px 10px 10px;
    background-color: #003d72;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
    text-align: center;
}

.article_text08{
    padding: 0 0 5px 0;
}

.article_text09{
    margin: 0px 0 20px 0;
    padding: 10px 15px 10px 15px;
    background-color: #003d72;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
}

.article_text09 a{
    color: #fff;
}

.article_text10{
    padding: 5px 0 30px 0;
    font-size: 20px;
    font-weight: 500;
    color: #003d72;
}

.article_font_blue{
    color: #003d72;
}

.article_font_red{
    color: #B60003;
}

.article_font_green{
    color: #00560E;
}

.article_font_underline{
    text-decoration: underline;
}

.article_check01{
    display: inline-block;
    padding: 5px 0 5px 30px;
	background-image:url("../images/ic_check01.png");
	background-position:center left 0px;
	background-repeat:no-repeat;
	background-size: 20px;
    color: #003d72;
}

.article_check02{
    display: inline-block;
    padding: 2px 0 2px 30px;
	background-image:url("../images/ic_check02.png");
	background-position:center left 0px;
	background-repeat:no-repeat;
	background-size: 20px;
    color: #003d72;
}

.article_box_small{
    border-bottom: solid 1px rgba(0,0,0,0.08);
    padding: 5px 0 10px 0;
    margin: 0 0 15px 0;
}

.article_box_small_noline{
    padding: 5px 0 0px 0;
    margin: 0 0 15px 0;
}

.article_movie_right{
    float: right;
    margin: 0 0 0 30px;
}

.article_movie01 iframe{
    width: 220px;
    height: 391px;
}

.article_movie02{
    margin: 0 auto 40px auto;
    text-align: center;
}

.article_movie02 iframe{
    width: 500px;
    height: 281px;
}

.article_img01{
    max-width: 500px;
    margin: 0 auto 0 auto;
    padding: 25px 0 10px 0;
}

.article_img01 img{
    display: block;
    width: 100%;
    margin: auto;
    border-radius: 10px;
    border: solid 1px rgba(0,0,0,0.08);
}

.article_img02{
    max-width: 400px;
    margin: 0 auto 0 auto;
    padding: 0px 0 20px 0;
}

.article_img02 img{
    display: block;
    width: 100%;
    margin: auto;
    border-radius: 10px;
    border: solid 1px rgba(0,0,0,0.08);
}

.article_img03{
    max-width: 400px;
    margin: -10px auto 0 auto;
    padding: 0px 0 40px 0;
}

.article_img03 img{
    display: block;
    width: 100%;
    margin: auto;
    border-radius: 10px;
}

.article_img_right{
    float: right;
    max-width: 400px;
    margin: 0 0px 40px 30px;
}

.article_img_right img{
    display: block;
    width: 100%;
    margin: auto;
    border-radius: 10px;
    border: solid 1px rgba(0,0,0,0.08);
}

.article_btn01{
    width: 350px;
    margin: 0 auto 20px auto;
}

.article_btn01 a{
    display: block;
    padding: 12px 0;
    color: #003d72;
    background-color: #fff;
    border: solid 2px #003d72;
    border-radius: 500px;
    font-size: 14px;
    font-weight: 500;
    text-align:center;
    text-decoration: none;
    opacity:1.0;
    -webkit-transition: opacity 1.0s ease-out;
    -moz-transition: opacity 1.0s ease-out;
    -ms-transition: opacity 1.0s ease-out;
    transition: opacity 1.0s ease-out;
    transition: all 0.2s;
}
.article_btn01 a:hover,
.article_btn01 a:active{
    background-color: #003d72;
    color:#fff;
    opacity:1.0;
    transition: all 0.2s;
}


.article_list01{
    padding: 0 0 8px 0px;
}

.article_list_margin_bottom{
    margin: 0 0 10px 0;
}

.article_list01 li{
    margin: 0 0 5px 25px;
    list-style: disc;
    list-style-position: outside;
}

.article_list02{
    padding: 5px 0 8px 0;
}

.article_list02 li{
    margin: 0 0 5px 25px;
    padding-left: 3px;
    list-style: decimal;
    list-style-position: outside;
}

.article_table01  {
    padding: 0px 0 20px 0;
}

.article_table01 table {
    width: 100%;
    background-color: #fff;
    border-collapse: collapse;
    border-top: 1px solid #333333;
    border-left: 1px solid #333333;
}
.article_table01 th {
    background-color: #eeeeee;
    border-bottom: 1px solid #333333;
    border-right: 1px solid #333333;
    text-align: left;
    vertical-align: middle;
}
.article_table01 td {
    padding: 6px 10px;
    background-color: #fff;
    border-bottom: 1px solid #333333;
    border-right: 1px solid #333333;
    color: #111;
    text-align: left;
    vertical-align: middle;
}

.article_table01 table td.text_left{
    text-align: left;
}

.article_table01 table td.text_right{
    text-align: right;
}

.article_table01 table td.text_center{
    text-align: center;
}

.article_table01 table td.td12{
    width: 12%;
}

.article_table01 table td.td16{
    width: 16%;
}

.article_table01 table td.td20{
    width: 20%;
}

.article_table01 table td.td22{
    width: 22%;
}

.article_table01 table td.td25{
    width: 25%;
}

.article_table01 table td.td33{
    width: 33.333%;
}

.article_table01 table td.td40{
    width: 40%;
}

.article_table01 table td.td50{
    width: 50%;
}

.article_table01 td.back_blue{
    background-color: #ECF4FE;
}

.article_table01 td.back_blue02{
    background-color: #003d72;
    color: #fff;
}

.article_table01 td.back_blue03{
    background-color: #1671BD;
    border-bottom: 1px solid #fff;
    color: #fff;
}
.article_table01 td.back_blue03.td_underline {
    border-bottom: 1px solid #333333;
}

.article_table01 td.back_gray01{
    background-color: #EBEBEB;
}

.article_table01 td.back_gray02{
    background-color: #dcdcdc;
}

.article_table01 td.back_gray03{
    background-color: #CBCBCB;
}

.article_table01 td .text_margin01{
    margin-top: 10px;
}

.article_link01{
    max-width: 600px;
    margin: 60px auto 0px auto;
    text-align: center;
}

.article_link01 a{
    display: block;
    padding: 30px 0;
    color: #003d72;
    background-color: #fff;
    border: solid 3px #003d72;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    text-align:center;
    text-decoration: none;
    opacity:1.0;
    -webkit-transition: opacity 1.0s ease-out;
    -moz-transition: opacity 1.0s ease-out;
    -ms-transition: opacity 1.0s ease-out;
    transition: opacity 1.0s ease-out;
    transition: all 0.2s;
}
.article_link01 a:hover,
.article_link01 a:active{
    background-color: #003d72;
    color:#fff;
    opacity:1.0;
    transition: all 0.2s;
}

.article_link01 a .ic{
    padding: 0 0 0 36px;
	background-image:url("../images/ic_mail02.png");
	background-position:center left 0px;
	background-repeat:no-repeat;
	background-size: 22px;
}

.article_link01 a:hover .ic,
.article_link01 a:active .ic{
	background-image:url("../images/ic_mail01.png");
}


@media screen and (max-width:800px){
#header.header_article{
	height: 60px;
}

.header_article #header_title{
	padding: 0px 0px 0px 15px;
}

.header_article #header_title .logo{
	padding: 15px 0px 0 0px;
}

.header_article #header_title .logo a{
	width: 140px;
}

.article_box{
	width: auto;
    margin: 5px 5px 5px 5px;
}

.article_text_area{
    padding: 10px 10px 5px 10px;
}

.article_inner{
    padding: 10px 10px 10px 10px;
    margin: 0 -5px;
}

.article_inner_margin_bottom{
    margin-bottom: 10px;
}

.h1_article_area{
    margin: 80px auto 20px auto ;
}

.h1_article{
    margin-left: 10px;
    padding: 0px 10px 0px 15px;
    font-size: 18px;
}

.h1_article:before {
    width: 3px;
}

.h2_article{
    padding: 16px 0 20px 0;
    margin: 0px 15px 10px 15px;
    font-size: 16px;
}

.h2_article_2{
    padding: 16px 16px 16px 16px;
    margin: 0px 0 10px 0;
    font-size: 16px;
}

.h2_article_2 .number{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    font-size: 13px;
    line-height: 30px;
}

.h3_article{
    margin-bottom: 12px;
    padding: 0px 0 0 14px;
    color: #003d72;
    font-size: 15px;
}

.h3_article:before {
    width: 3px;
}

.h3_article_margin{
    margin-top: 20px;
}

.h3_article_2{
    margin-bottom: 12px;
    color: #003d72;
    font-size: 15px;
}

.h3_article_2 .number{
    width: 25px;
    height: 25px;
    margin-right: 5px;
    font-size: 15px;
    line-height: 25px;
}

.article_text01{
    padding: 0 0 10px 0;
}

.article_text02{
    padding: 5px 0 5px 0;
    font-size: 13px;
}

.article_text03{
    padding:3px 10px;
    font-size: 13px;
}

.article_text03_margin_top{
    margin-top: 10px;
}

.article_text04{
    padding: 0 0 30px 0;
}

.article_text05{
    margin: 0 0 20px 0;
    padding: 12px;
    font-size: 14px;
}

.article_text06{
    margin: 10px 0 30px 0;
    font-size: 16px;
}

.article_text07{
    margin: 20px 0 15px 0;
    padding: 10px 10px 10px 10px;
    font-size: 14px;
}

.article_text09{
    margin: 0px 0 10px 0;
    padding: 8px 12px 8px 12px;
    font-size: 14px;
}

.article_text10{
    padding: 10px 0 20px 0;
    font-size: 17px;
}

.article_check01{
    padding: 5px 0 5px 25px;
	background-size: 18px;
}

.article_check02{
    padding: 2px 0 2px 25px;
	background-size: 18px;
}

.article_box_small{
    padding: 5px 0 0px 0;
    margin: 0 0 10px 0;
}

.article_box_small_noline{
    padding: 5px 0 0px 0;
    margin: 0 0 10px 0;
}
.article_movie_right{
    float: none;
    margin: 10px 0 10px 0px;
    text-align: center;
}

.article_movie_right iframe{
    margin: auto;
}

.article_movie01 iframe{
    width: 200px;
    height: 355px;
}

.article_movie02{
    margin: 20px auto 20px auto;
}

.article_movie02 iframe{
    width: 300px;
    height: 169px;
}

.article_img01{
    max-width: 400px;
    margin: 0 auto 0 auto;
    padding: 10px 10px 10px 10px;
}

.article_img02{
    max-width: 250px;
    margin: 0 auto 0 auto;
    padding: 0px 10px 20px 10px;
}

.article_img03{
    max-width: 350px;
    margin: -10px auto 0 auto;
    padding: 0px 10px 30px 10px;
}

.article_img_right{
    float: none;
    max-width: 250px;
    margin: 0 auto 0 auto;
    padding: 0px 10px 20px 10px;
}

.article_btn01{
    width: 250px;
    margin: 0 auto 10px auto;
}
.article_link01{
    max-width: auto;
    margin: 20px 10px 0px 10px;
}

.article_link01 a{
    padding: 20px 0;
    border: solid 2px #003d72;
    font-size: 15px;
}

.article_link01 a .ic{
    padding: 0 0 0 30px;
	background-size: 18px;
}

.article_table01  {
    padding: 0px 0 10px 0;
}

.article_table01 td {
    padding: 3px 5px;
}
}


/*=========================================*/
/* footter bottom link */
/*=========================================*/

.footer_bottom_link{
    position: fixed;
    width: 210px;
    bottom: 0;
    right: 0;
}

.footer_bottom_link .link_area{
	display: block;
}

.footer_bottom_link .link_area .btn{
    height: 50px;
    margin: 3px 3px;
}

.footer_bottom_link .link_area .btn_contact{
}

.footer_bottom_link .link_area .btn_contact a{
    display: block;
    height: 50px;
    color: #fff;
    background-color: #003d72;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    line-height: 50px;
    text-align:center;
    text-decoration: none;
    opacity:1.0;
    -webkit-transition: opacity 1.0s ease-out;
    -moz-transition: opacity 1.0s ease-out;
    -ms-transition: opacity 1.0s ease-out;
    transition: opacity 1.0s ease-out;
    transition: all 0.2s;
}

.footer_bottom_link .link_area .btn_contact a:hover,
.footer_bottom_link .link_area .btn_contact a:active{
    background-color: #235C8D;
    opacity:1.0;
    transition: all 0.2s;
}

.footer_bottom_link .link_area .btn_contact .ic {
	background-image:url("../images/ic_mail01.png");
	background-position:left 12px center;
	background-repeat:no-repeat;
	background-size: 18px;
    padding: 0 10px 2px 40px;
}

.footer_bottom_link .link_area .btn_tell{
}

.footer_bottom_link .link_area .btn_tell a {
    display: block;
    height: 50px;
    font-size: 16px;
    font-weight: 500;
    line-height: 50px;
    text-align:center;
    color: #fff;
    background-color: #003d72;
    border-radius: 6px;
    text-decoration: none;
    opacity:1.0;
    -webkit-transition: opacity 1.0s ease-out;
    -moz-transition: opacity 1.0s ease-out;
    -ms-transition: opacity 1.0s ease-out;
    transition: opacity 1.0s ease-out;
    transition: all 0.2s;
}

.footer_bottom_link .link_area .btn_tell a:hover,
.footer_bottom_link .link_area .btn_tell a:active{
    background-color: #235C8D;
    opacity:1.0;
    transition: all 0.2s;
}

.footer_bottom_link .link_area .btn_tell .tell_number {
	background-image:url("../images/ic_tell01.png");
	background-position:left 12px center;
	background-repeat:no-repeat;
	background-size: 18px;
    padding: 0 10px 2px 40px;
    text-decoration: none;
}

@media screen and (max-width:800px){
.footer_bottom_link{
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 5px 0;
    background-color: #003d72;
}

.footer_bottom_link .link_area{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;
	justify-content: center;
	align-items: center;
    max-width: auto;
    margin: 0 3px 0 3px;
}

.footer_bottom_link .link_area .btn{
    flex: 1;
    height: 40px;
    margin: 0 2px;
}

.footer_bottom_link .link_area .btn_contact a{
    height: 40px;
    color: #003d72;
    background-color: #fff;
    font-size: 12px;
    line-height: 40px;
}

.footer_bottom_link .link_area .btn_contact .ic {
	background-image:url("../images/ic_mail02.png");
	background-size: 16px;
    padding: 0 10px 0px 35px;
}

.footer_bottom_link .link_area .btn_contact a:hover,
.footer_bottom_link .link_area .btn_contact a:active{
    background-color: #C7D5E1;
}

.footer_bottom_link .link_area .btn_tell a{
    height: 40px;
    color: #003d72;
    background-color: #fff;
    font-size: 15px;
    line-height: 40px;
}

.footer_bottom_link .link_area .btn_tell a:hover,
.footer_bottom_link .link_area .btn_tell a:active{
    background-color: #C7D5E1;
}

.footer_bottom_link .link_area .btn_tell .tell_number {
	background-image:url("../images/ic_tell02.png");
	background-size: 16px;
    padding: 0 10px 0px 35px;
}
}
