@charset "UTF-8";

/* =============================================
	mobile menu settings
=============================================　*/
/* Mobile Menu Button */
#menu-button{
	visibility:hidden;
	opacity:0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 900;
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	background-color: #fafafa;
}
#menu-button.nav-on {
	visibility:visible;
	opacity:1;
}
#menu-button .ham-lines {
	position: relative;
	margin: 0 auto;
	width: 32px;
	height: 32px;
}
#menu-button .ham-lines span,
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
	position: absolute;
	display: block;
	right: 0;
	left: 0;
	margin: 0 auto;
	width: 28px;
	height: 2px;
	background-color: #111;
	border-radius: 1px;
}
#menu-button .ham-lines span {
	bottom: 15px;
	transition: all .25s .25s;
	opacity: 1;
}
#menu-button .ham-lines::before,
#menu-button .ham-lines::after {
	content: "";
}
#menu-button .ham-lines::before{
	bottom: 24px;
	animation: menu-bar01 .75s forwards;
}
#menu-button .ham-lines::after {
	bottom: 6px;
	animation: menu-bar03 .75s forwards;
}
#menu-button .ham-text {
	font-size: 12px;
	line-height: 1;
}
#menu-button.is-active .ham-lines span {
	opacity: 0;
}
#menu-button.is-active .ham-lines::before {
	animation: active-menu-bar01 .5s forwards;
}
#menu-button.is-active .ham-lines::after {
	animation: active-menu-bar03 .5s forwards;
}
@keyframes menu-bar01 {
	0% {
		transform: translateY(9px) rotate(45deg);
	}
	50% {
		transform: translateY(9px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
@keyframes menu-bar03 {
	0% {
		transform: translateY(-9px) rotate(-45deg);
	}
	50% {
		transform: translateY(-9px) rotate(0);
	}
	100% {
		transform: translateY(0) rotate(0);
	}
}
@keyframes active-menu-bar01 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(9px) rotate(0);
	}
	100% {
		transform: translateY(9px) rotate(45deg);
	}
}
@keyframes active-menu-bar03 {
	0% {
		transform: translateY(0) rotate(0);
	}
	50% {
		transform: translateY(-9px) rotate(0);
	}
	100% {
		transform: translateY(-9px) rotate(-45deg);
	}
}
/* Mobile Menu Button end */

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

	Common settings

============================================= */
/* table border and paddings */
table th,
table td{
	border: 1px solid #424242;
	padding: 10px;
}

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

	Media Query

============================================= */
@media screen and (max-width: 1400px) { /* for iPad pro landscapes */

}

@media screen and (max-width: 1180px) { /* for tablet landscapes */

	#pagewrap {
		position: relative;
		padding-bottom: 51px;
	}

	#header.header {
		padding-top: 0;
	}

	/* module menu button visible */
	#menu-button{
		visibility:visible;
		opacity:1;
	}
	
	/* Mobile Menu Container ここを調整すると、メニューボタンクリック後の動作を調整できる */
	#main-menu-container {
		position: fixed;
		z-index: 700;
		top: 0;
		left: -100vw;
		right: auto;
		bottom: auto;
		overflow-y: auto;
		background-color: #f1f1f1;
		display:block;
		width: 100vw;
		height: 100vh;
		transition: .3s linear;
	}
	#main-menu-container.is-active{
		left: 0;	
	}
	/* Mobile Menu Container ここを調整すると、メニューボタンクリック後の動作を調整できる */

}

@media screen and (max-width: 1024px) { /* for tablet landscape */

	/* style for contact forms, if do not use to delete please
	コンタクフォームのテーブル調整　不要なら消す*/
	.wpcf7 table tr th,
	.wpcf7 table tr td{
		width:100%;
		display:block;
		padding: 10px 0px;
	}
	.wpcf7 table tr th{
		padding-bottom:0;
	}
	/* style for contact forms, if do not use to delete please
	コンタクフォームのテーブル調整　不要なら消す*/

}

@media screen and (max-width: 980px) { /* for mobile landscape */
	#pc-backtop {
		display: none;
	}
	#footer .sp-footer-icons-container {
		display: flex;
	}
}

@media screen and (max-width: 820px) { /* for tablet portrate */
	#pc-backtop {

	}
	#footer .sp-footer-icons-container {

	}
}

@media screen and (max-width: 768px) { /* for mobile  */
	

}

@media screen and (max-width: 460px) { /* for mobile small  */
	

}


body.skin-default{
   background:#fff;
}

body *{
    box-sizing:border-box;
}

/**pagewidth body

:root{
  --pagewidthbody:1600px;
}

#pagewrap,
.themify_builder_row.fullwidth .row_inner{
	max-width:var(--pagewidthbody);
    width: 100%;
    margin: 0 auto;
}

end pagewidth body**/

body .pagewidth{
	width:100%;
	max-width:1000px;
	margin:0 auto;
	
	box-shadow: 
    0px 4px 0px 0px #fff, 
    0px -4px 0px 0px #fff, 
    -4px 0px 4px 0px #2181f1, 
    4px 0px 4px 0px #2181f1;
  padding-left:1% !important;
  padding-right:1% !important;
}

.module_row > .row_inner{
	width:100%;
}


/* -----End pagewrap pagewidth----- */

/* -----header----- */
body #headerwrap{
   background-color:inherit;
}

#headerwrap #header,
#footerwrap #footer{
   border:0px;
}

body #header.header{
	background-image:url("../../uploads/header_bg.jpg");
  background-position:center;
  background-repeat:no-repeat;
  background-size:100% 100%;
	padding:0;
	overflow:hidden;
	
	display:flex;
  align-items: center;
  justify-content: space-between;
  /*height:125px;*/
  padding:27px 1.5% 26px !important;
}

.header-brand-container{
	padding:0;
}

.rh{
  font-weight:bold;
}

.rh p{
	margin-bottom:0;
  color:#011b4f;
}

.rh font{
	font-size:15px;
  color:#1681f6;
  font-weight:normal;
}

.tel_header{
	font-size:18px;
}

body #site-logo{
	position:static;
}

body #site-logo a,
body #site-logo img{
	display:inline-block;
	vertical-align:middle;
}

/* -----end header----- */

/* -----menu----- */

#headerwrap #main-menu-container{display:none;}

#sidebar .module-menu ul > li {height: 50px;padding:0;border:0;margin-bottom:7px;}
#sidebar .module-menu ul > li > a {display:block;width:100%;height:100%;text-align:left;text-indent:100%;white-space:nowrap;
overflow:hidden;padding: 0;margin: 0;outline:none;}
#sidebar .module-menu .current_page_item a,#pagewrap .menu-globalnav-container .current-menu-item a {background-color: transparent;color: #666;border-radius: 0;}

                                 #sidebar .module-menu ul  li.nav00 {display:none;}

 #sidebar .module-menu ul  li.nav01 a{ background-image:url("../../uploads/nav01.jpg");}
 #sidebar .module-menu ul  li.nav02 a{ background-image:url("../../uploads/nav02.jpg");}
 #sidebar .module-menu ul  li.nav03 a{ background-image:url("../../uploads/nav03.jpg");}
 #sidebar .module-menu ul  li.nav04 a{ background-image:url("../../uploads/nav04.jpg");}

 #sidebar .module-menu ul  li.nav05 a{ background-image:url("../../uploads/nav01_en.jpg");}
 #sidebar .module-menu ul  li.nav06 a{ background-image:url("../../uploads/nav02_en.jpg");}
 #sidebar .module-menu ul  li.nav07 a{ background-image:url("../../uploads/nav03_en.jpg");}
 #sidebar .module-menu ul  li.nav08 a{ background-image:url("../../uploads/nav04_en.jpg");}

  #sidebar .module-menu ul  li a:hover{
    opacity:0.7;
  }

.page-template-default #pagewrap #mmain-menu-container li.nav_en, 
.page-template-page-en #pagewrap #main-menu-container li.nav_jp, 
.page-template-default #pagewrap .module-menu li.nav_en, 
.page-template-page-en #pagewrap .module-menu li.nav_jp, 
.page-template-default #pagewrap #sidebar .text_eng, 
.page-template-page-en #pagewrap #sidebar .text_jap{
    display: none;
}

/* -----end menu----- */

/* -----footer----- */
#footerwrap #footer{
	overflow:hidden;
}

.copyright-container{
	border-top: 2px solid #01154f;
    padding: 10px 0 15px;
	text-align:center;
}

.copyright-container a img{
	display:block;
}

.copyright-container span,.copyright-container a{
  display:inline-block;
	vertical-align:middle;
  padding-left:3px;
}

.copyright-container span.copyright{
	color:#000;
  font-size:13px;
	display:block;
	padding:10px 0 0;
}

body #pc-backtop{
	width:auto;
    bottom: 337px;
	display:none;
}

#pagewrap .f-con .rtt a{
	padding:0;
}

/* -----end footer----- */

/* -----general----- */

body .module.module-layout-part{
	margin-bottom:0px;
}

#pagewrap .module .module-title{

}

.module-image:hover a img{
	opacity:0.7;
}

table{
	width:100%;
	border-collapse:collapse;
}


.module.module-buttons *{
	display:block;
}

.module.module-buttons span{
	margin:0;
}


.m_font_1.module,
.ti_font_1.module .module-title{

}

#content{
	padding:0;
}

.module{
	margin-bottom:30px;
}
.module p:last-child{
	margin:0;
}

body .module_row > .row_inner {
    max-width:100%;
}

.sidebar1 #sidebar {
    max-width: 230px !important;
    width: 100%;
    padding: 5px 0 10px;
}

.sidebar1 .module-menu.module{
	margin-bottom:11px;
}

.sidebar1 .module-menu ul.ui.nav{
	border-radius: unset;
    box-shadow: unset;
    background: none;
}

.text_sidebar_1.module .module-title{
    color: #01164d;
    font-size: 18px;
	line-height:1.4em;
	margin:0 0 10px;
    text-transform: capitalize;
    text-align: center;
}
.text_sidebar_1.module .tb_text_wrap{
	border: 3px solid #021a60;
    padding: 9px 12px;
}

.sidebar1 #content {
    max-width: 690px;
    width: 100%;
    margin: 5px 0 15px;
}

/* -----end general----- */


.ti_page_1.module{
  background: url(../../uploads/icon_anchor.png)no-repeat top 3px left 7px,linear-gradient(to bottom, #2e5db5, #133e9d , #052c8b );
  display: flex;
  align-items: baseline;
  font-size: 12px;
  color: #fff;
  padding: 7px 0 6px 40px;
  margin-bottom:10px;
}

.ti_page_1.module .module-title{
	margin:0 5px 0 0;
  font-size:15px;
  color:#fff;
}

.ti_page_2.module{
	padding: 0 0 5px 0;
  font-size: 15px;
  font-weight:bold;
  background: url(../../uploads/business4_04_bg_01.jpg)no-repeat left bottom;
  margin-bottom:15px;
}

.ti_page_2a.module{
  background: url(../../uploads/info2_03_line.jpg)no-repeat left bottom;
}

.content_page_1.module{
	border: solid 2px #021a61;
  border-width:0 2px 2px 2px;
    margin: 0 0 20px 0;
	padding:9px 12px;
}


.ti_content_page_1.module{
	margin:0;
}

.ti_content_page_1.module .module-title{
	font-weight: bold;
  color: #03256a;
  background: url("../../uploads/info2_04_line2.jpg") left bottom repeat-x;
  padding: 5px 10px;
  margin: 0;
  font-size:13px;
  border: solid 2px #021a61;
  border-width:2px 2px 0 2px;
}

.ti_content_page_1a.module .module-title,
.content_page_1a.module{
	border-color:#167eea;
}

.link_text.module a,
.anchor_info.module a{
	color:#2e81e9;
}

.anchor_info.module a{
	display:inline-block;
}

body .link_text.module a:hover,
body .anchor_info.module a:hover{
	color:#2e81e9;
  text-decoration:underline;
}

.bg_1_home{
	background:url("../../uploads/top_02_bg.jpg")no-repeat top 34px right;
}

.table_home_1 table tr td{
	border:1px solid #c5c4c4;
  padding:13px 20px;
}

.table_home_1 table tr td:first-child{
	width:140px;
  text-align:center;
  font-weight:bold;
  background-color: #f0fbff;
}

.list_page_1 ul{
	margin:0;
}

.list_page_1 ul li{
	list-style: none;
    border: solid 1px #e4e4e4;
    padding: 10px 15px;
  margin:0;
  border-width:1px 1px 0 1px;
  font-weight:bold;
}

.list_page_1 ul li:last-child{
	border-width:1px;
}

/* POST */

.post_home_1.module{
}

.post_home_1 .list-post{
}

.post_home_1.module.module-post .post{
  margin-bottom:38px;
}

.post_home_1 time{
  font-size:15px;
  margin:0;
	color:#fff;
	width:100px;
}

.post_home_1.module.module-post .post-title{
  margin-bottom:1px;
}

.post_home_1.module.module-post .post-title a{
	color:#000;
	font-size:15px;
  text-decoration:underline;
}
.post_home_1.module.module-post .post-title a:hover{
  text-decoration:none;
}

/* End POST */

.site a{
	text-decoration:underline;
}
.site a:hover{
	text-decoration:none;
}








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


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

	#pagewrap .pagewidth{
    width:98%;
  }
	#headerwrap #main-menu li.nav00 {
		display: block;
	}
	
	body.mobile_menu_active #header,body #header.header  {
    	padding: 55px 10px 25px !important;
		width: 100%;
	}

	.header-brand-container,.rh{
		float:none;
		text-align:center;
		padding:0;
	 }
	
	.header-brand-container{
		margin-bottom:25px;
	}
	
	.page-template-default #headerwrap #main-menu-container ul > li.menu-item.nav_en,
	.h_contact{
		display:none;
	}
#headerwrap #main-menu-container.is-active{
		display: flex;
    align-items: center;
	justify-content: center;
	background:rgb(33,129,241,0.95);
	}
#headerwrap #main-menu {
    background: none;
    padding-right: 0;
	        list-style: none;
        margin: 0;
}
#headerwrap #main-menu li ul.sub-menu {
		position: static;
		opacity: 1;
		visibility: unset;
		background: none;
		padding:0;
	}
	#headerwrap #main-menu li ul.sub-menu li {
    	background:none;
		padding-bottom:15px;
	}
	li ul.sub-menu li:first-child {
		padding-top: 0;
	}
	li ul.sub-menu li:last-child {
		padding-bottom: 0;
	}
#headerwrap #main-menu-container ul > li.menu-item{
		padding: 10px;
		background: none;
		text-align: center;
		border-bottom:0;
	}
	
	#headerwrap #main-menu-container ul > li.menu-item > a{
		font-size:20px;
		color:#fff;
		text-transform: uppercase;
	}

body .sp-footer-icons-container a {
    font-size: 14px;
    padding: 11px 0;
}

#pagewrap {
    padding-bottom: 0;
}
	
	body #menu-button{
		background:#2181f1;
	}
	
	body #menu-button .ham-lines span, 
	body #menu-button .ham-lines::before, 
	body #menu-button .ham-lines::after{
		background-color:#fff;
	}
	body #menu-button .ham-text{
		color:#fff;
	}

body #footer .sp-footer-icons-container a{
		background:#2181f1;
		color: #fff;
		border-color:#fff;
	}
	
	body.sidebar-left #content,
	body.sidebar-left #sidebar{
		float:none;
	}
	
	.sidebar1 #content{
		max-width: unset;
	}

	.sidebar1 #sidebar {
		margin: 0 auto;
	}

	body #header.header {
		flex-wrap: wrap;
		flex-direction: column;
	}
	
	body .pagewidth {
		box-shadow: unset;
		padding-left: 0% !important;
		padding-right: 0% !important;
	}


	
}

@media screen and (max-width: 939px) {
  
	#pagewrap .pagewidth{
    width:96%;
  }
	
  .f-con{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    z-index:9999;
  }
	
#headerwrap #main-menu > li {display:block;border:0;padding:10px;}
		
	
body #headerwrap {
  padding:0;
}
  
  
  body.mobile_menu_active .social-widget{
  	padding:0;
  }

body #footerwrap .f-con {
    display:flex;
	}

body #footerwrap .f-con a {
    padding: 5px;
  }
  
  .img_right_939_center .subrow_inner{
  	flex-direction: column-reverse;
  }

#pagewrap {
    padding-bottom:50px;
}

body #pc-backtop{
		display:none;
	}

}


@media screen and (max-width: 768px) {
  
  .table_multicolumn.module .tb_text_wrap{
    overflow: auto;
    margin-right: 2%;
    margin-left: 2%;
	}
  
  
  .table_multicolumn.module.module .tb_text_wrap table{
    width: 685px;
	}

}

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

#pagewrap .pagewidth{
/*     width:92%; */
  }
	
	
	.table_home_1 table tr td{
		display:block !important;
		width:100% !important;
	}
	
	.bg_1_home{
		background:none;
	}

}

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

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

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

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

