@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	line-height: 1.8;
	color: #272626;
	font-size: 16px;
	background: #f6f6f6 url(../images/bg_border.png) center;
	background-size: 500px;
	font-weight: 200;
}

.pc_none {
	display: none;
}

a {
	text-decoration: none;
	color: #272626;
}

img {
	width: 100%;
	height: auto;
}

.flex {
	display: -webkit-flex;
	display: flex;
}

h1, h2, h3 {
	font-weight: 200;
}

#wrapper {
	position: relative;
}

#wrapper::before {
	content: '';
	width: 180px;
	height: 100%;
	display: block;
	background: #eee;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

#container {
	margin-bottom: 40px;
}

.contents {
	padding: 40px 0;
}

.inner {
	width: 90%;
	margin: 0 auto;
}

/*header*/

#header {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	-webkit-align-items: center;
	align-items: center;
	justify-content: space-between;
	z-index: 999;
}

.logo {
	text-align: center;
}

.contact {
	width: 180px;
	text-align: center;
	background: #398a91;
}

.contact a {
	display: block;
	color: #fff;
	height: 100px;
	line-height: 100px;
}

.ham {
	width: 180px;
}

.menu_trigger,
.menu_trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	cursor: pointer;
}

.menu_trigger {
	position: relative;
	width: 30px;
	height: 20px;
	margin-left: 30px;
}

.menu_trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #272626;
}

.menu_trigger span:nth-of-type(1) {
	top: 0;
}

.menu_trigger span:nth-of-type(2) {
	top: 9px;
}

.menu_trigger span:nth-of-type(3) {
	bottom: 0;
}

.menu_trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(9px) rotate(-45deg);
	transform: translateY(9px) rotate(-45deg);
}

.menu_trigger.active span:nth-of-type(2) {
	left: 200%;
	opacity: 0;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-animation: active_menu .8s forwards;
	animation: active_menu .8s forwards;
}

@-webkit-keyframes active_menu {
	100% {
		height: 0;
	}
}
@keyframes active_menu {
	100% {
		height: 0;
	}
}

.menu_trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(45deg);
	transform: translateY(-9px) rotate(45deg);
}

/*g_nav*/

#g_nav {
    background: #eee;
    position: fixed;
    top: 100px;
	left: -250px;
    height: 100%;
    z-index: 999;
    width: 250px;
    -webkit-transition: .8s ease;
    -moz-transition: .8s ease;
    transition: .8s ease;
	font-size: 14px;
	letter-spacing: 1px;
}

.open #g_nav {
	left: 0;
    animation: show 0.1s linear 0s;
}

#g_nav ul {
	padding: 60px 0;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	text-align: right;
}

#g_nav ul li {
	padding: 5px 50px;
}

#g_nav .sub-menu {
    height: 100%;
	overflow: hidden;
	opacity: 0;
	transition: 0.8s;
    background: #f6f6f6;
    position: fixed;
    top: 100px;
    left: 250px;
    width: 0;
    padding: 60px 0;
	z-index: -1;
	text-align: left;
}

#g_nav .menu-item-has-children {
	position: relative;
	overflow: hidden;
}

#g_nav .menu-item-has-children::after {
    content: '';
	transition: .8s;
    position: absolute;
    top: 2px;
    right: -40px;
    border: 15px solid transparent;
    border-right: 20px solid #f6f6f6;
    z-index: 2;
	opacity: 0;
}

#g_nav .menu-item-has-children:hover .sub-menu {
    opacity: 1;
	width: 250px;
    padding: 60px 0;
    box-sizing: border-box;
}

#g_nav .menu-item-has-children:hover::after {
	opacity: 1;
	right: 0;
}

#layer {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.3);
	z-index: 997;
}

.open {
	overflow: hidden;
}

/*main_visual*/

#main_visual {
	position: relative;
	justify-content: space-between;
	padding: 160px 0 160px 5%;
}

#page_home #main_visual {
	-webkit-align-items: center;
	align-items: center;
	justify-content: flex-end;
	padding: 0;
}

#main_visual .ms_box {
	background: #247e86;
	text-align: center;
	color: #fff;
	width: 530px;
	position: absolute;
	left: 5%;
	bottom: 50px;
	padding: 90px 0;
}

#page_home #main_visual .ms_box {
	padding: 140px 0;
}

#main_visual .ms_txt {
	font-size: 30px;
	display: inline-block;
	letter-spacing: 2px;
	text-indent: 2px;
	line-height: 1.4;
}

#main_visual .ms_txt .ja {
	font-size: 16px;
	display: block;
	position: relative;
	text-align: center;
}

#page_home #main_visual .ms_txt .ja {
	text-align: right;
}

#page_home #main_visual .ms_txt .ja::before {
	content: '';
	width: 50px;
	height: 1px;
	background: #fff;
	display: block;
	position: absolute;
	left: 0;
	top: 10px;
}

#main_visual .bg_main_visual {
	min-height: 300px;
	height: 50vh;
	width: 80%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#page_home #main_visual .bg_main_visual {
	height: 65% !important;
	min-height: auto;
}

.scroll {
    width: 1px;
    height: 100px;
    background: #398a91;
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
	margin-left: 0.5px;
	-webkit-animation: scroll 5s infinite;
	animation: scroll 5s infinite;

}

@-webkit-keyframes scroll {
  0% {
  	height: 100px;
  }
  50% {
  	height: 50px;
  }
  100% {
  	height: 100px;
  }
}

@keyframes scroll {
  0% {
  	height: 100px;
  }
  50% {
  	height: 50px;
  }
  100% {
  	height: 100px;
  }
}

/*box*/

.box {
	background: #fff;
	box-sizing: border-box;
	padding: 70px;
}

.box .txt {
	letter-spacing: 1px;
}

/*title*/

.title {
	text-align: center;
	font-size: 40px;
	margin: 0 0 10px 0;
	letter-spacing: 2px;
	text-indent: 2px;
}

.title_mini {
	font-size: 25px;
	text-align: center;
	letter-spacing: 2px;
	text-indent: 2px;
	margin: 0 0 10px 0;
}

/*btn*/

.btn {
	width: 330px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	background: #398a91;
	margin: 40px auto 0 auto;
	letter-spacing: 2px;
	text-indent: 2px;
}

.btn a {
	display: block;
	color: #fff;
}


/*about*/

#about .box .txt {
	width: 750px;
	margin: 0 auto;
}

#about .title_mini {
	margin-bottom: 30px;
}

/*business*/

#business .title,
#business .title_mini {
	text-align: left;
}

.item_list {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.item {
	width: 33.33%;
}

.item .box {
	padding: 45px 50px;
}

.item .eyecatch {
	width: 100%;
	height: 300px;
}

.more {
	text-align: right;
	letter-spacing: 2px;
	text-indent: -2px;
	color: #398a91;
	margin-top: 20px;
}

.eyecatch {
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#business .item {
	background: #fff;
	position: relative;
}

#business .box .txt {
	padding-bottom: 50px;
}

#business .more {
	position: absolute;
	bottom: 45px;
	right: 50px;
}

/*service*/

#service .box,
#magazine .box {
	width: 45%;
}

#service .eyecatch,
#magazine .eyecatch {
	width: 55%;
}

/*magazine*/

#magazine .inner {
	width: 95%;
	margin-left: 5%;
}

#magazine .eyecatch {
	padding-left: 65px;
	box-sizing: border-box;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}

.magazine_item {
	width: 400px;
	background: #fff;
	position: relative;
}

.magazine_item a {
	display: block;
	padding: 40px;
	height: 100%;
	min-height: 350px;
	box-sizing: border-box;
}

.magazine_item .head {
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	margin: 0 0 20px 0;
}

.magazine_item .thumb {
	width: 90px;
	height: 90px;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.magazine_item .more {
	margin: 0;
	position: absolute;
	bottom: 40px;
	right: 40px;
}

.meta {
	text-align: right;
	letter-spacing: 1px;
	width: 230px;
}

.meta .cat {
	font-size: 13px;
	color: #398a91;
	margin-bottom: 5px;
}

.meta  .cat li {
	border: 1px solid #398a91;
	line-height: 22px;
	padding: 0 5px;
	display: inline-block;
	margin: 0 0 5px 5px;
}

.meta  .cat li a {
	color: #398a91;
}

.meta {
	font-size: 14px;
	line-height: 1;
}

.date {
	text-transform: uppercase;
}

.magazine_title {
	font-size: 20px;
	line-height: 1.4;
	margin: 0 0 10px 0;
}

.excerpt {
	font-size: 14px;
}

/*information*/

.info_list {
	margin: 40px 0 70px 0;
}

.info_list .padd {
	padding: 0 50px 50px 50px;
	position: relative;
}

.info_item {
	width: 33.3%;
	box-sizing: border-box;
	font-size: 14px;
	border-right: 1px solid #e5e5e5;
}

.info_item .more {
	position: absolute;
	bottom: 0;
	right: 50px;
}

.info_item a {
	display: block;
}

.info_item:last-of-type {
	border: none;
}

.info_item .date {
	font-size: 20px;
	margin: 0 0 10px 0;
}

/*contact*/

#contact .box {
	background: #398a91;
	color: #fff;
	position: relative;
	z-index: 1;
}

#contact .btn {
	background: #fff;
}

#contact .btn a {
	color: #398a91;
}

#contact .txt {
	width: 750px;
	margin: 0 auto;
}

.map {
	overflow: hidden;
	height: 520px;
	margin-top: -160px;
}

.map iframe {
	width: 100%;
	height: 1000px;
	margin-top: -200px
}

#page_contact .map,
#page_conf .map,
#page_thanks .map {
	margin-top: 0;
}

/*footer*/

#footer {
	background: #fff;
	padding: 80px 0;
}

#f_nav {
	font-size: 14px;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 80px 0;
	letter-spacing: 1px;
}

#f_nav ul {
	padding: 0 30px;
}

#f_nav ul .sub-menu {
    position: relative;
    padding: 5px 0px 5px 30px;
    margin: 0;
}

#f_nav ul .sub-menu::before {
	content: '';
	width: 1px;
	height: 100%;
	display: block;
	background: #e5e5e5;
	position: absolute;
	top: 0;
	left: 10px;
}

#f_nav ul li {
	margin: 5px 0;
}

address {
	border-top: 1px solid #e5e5e5;
	color: #acacac;
	font-size: 12px;
	text-align: center;
	font-style: normal;
	padding-top: 25px;	
}

/*breadcrumbs*/

#breadcrumbs {
	font-size: 14px;
	letter-spacing: 1px;
}

#breadcrumbs .fa {
	color: #cdcdcd;
	padding: 0 10px;
}

/**/

.post_contents .txt {
	width: 780px;
	margin: 0 auto;
}

.post_contents .txt p {
	margin-bottom: 20px;
}

.post_contents {
	padding: 100px 70px;
}

.post_contents .title_mini {
	margin-bottom: 40px;
}


/*sns*/

#sns {
	line-height: 1;
	position: fixed;
	z-index: 999;
	left: 2%;
	bottom: 45px;
	font-size: 16px;
	color: #4e4e4e;
}

#sns::before {
	content: '';
    width: 1px;
    height: 70px;
    background: #4e4e4e;
    display: block;
    position: absolute;
    top: -90px;
    left: 9px;
}

#sns .read {
	-webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
	line-height: 20px;
	margin: 0 0 15px 0;
	letter-spacing: 1px;
}

#sns ul li {
	font-size: 20px;
	margin: 0 0 5px 0;
}

#sns ul li img {
	width: 17px;
}

#sns ul li a {
	color: #4e4e4e;
}

/*page_magazine*/

.magazine_list {
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.magazine_list::after {
	content: '';
	width: 400px;
	display: block;
	margin: 5px;
}

.magazine_list .magazine_item {
	margin: 5px;
}

#page_magazine #magazine .inner,
#page_cat #magazine .inner,
#page_information #information .inner {
	max-width: 1230px;
	width: 90%;
	margin: 0 auto;
}

/*page-numbers*/

ul.page-numbers {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	margin: 50px 0;
}

ul.page-numbers .page-numbers {
	width: 40px;
	height: 40px;
	line-height: 40px;
	box-sizing: border-box;
	border: 1px solid #398a91;
	text-align: center;
	color: #398a91;
	display: block;
	margin-left: 10px;
}

ul.page-numbers .current {
	background: #cbcbcb;
	border-color: #cbcbcb;
	color: #fff;
}

ul.page-numbers .next,
ul.page-numbers .prev {
	width: 120px;
	background: #398a91;
	color: #fff;
	letter-spacing: 1px;
	text-indent: 1px;
}

/*post_magazine*/

#page_post_magazine #main_visual,
#page_post_information #main_visual {
	padding-bottom: 10px;
}

#single_magazine,
#single_information {
	padding-top: 0;
}

.post_magazine,
.post_information {
	background: #fff;
	padding: 100px 20%;
	margin: 0 0 40px 0;
}

.post_magazine .post_title,
.post_information .post_title {
	font-size: 25px;
	line-height: 1.4;
	margin-bottom: 10px;
}

.post_magazine .meta {
	margin: 0 0 20px auto;
}

.post_magazine .thumb {
	margin-bottom: 45px;
}

.post_magazine .txt p,
.post_information .txt p {
	margin-bottom: 20px;
}

.page_nav {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.page_nav_item {
	width: 49%;
	background: #fff;
	position: relative;
}

.page_nav_item a {
	width: 100%;
	height: 100%;
	padding: 35px;
	box-sizing: border-box;
}

.page_nav_item.prev {
	margin-right: auto;
}

.page_nav_item.next {
	margin-left: auto;
}

.page_nav_item.prev a {
	padding-left: 75px;
}

.page_nav_item.next a {
	padding-right: 75px;
}

.page_nav_item .thumb {
	width: 110px;
	height: 110px;
	margin-right: 35px;
}

.page_nav_item .meta {
	width: auto;
	text-align: left;
	margin-top: auto;
}

.page_nav_item .meta .cat li {
	margin: 0 5px 5px 0;
}

.page_nav_item .txt {
   width : -webkit-calc(100% - 145px) ;
   width : calc(100% - 145px) ;
   display: -webkit-flex;
   display: flex;
   -webkit-flex-wrap: wrap;
   flex-wrap: wrap;
}

.page_nav_item .magazine_title {
	width: 100%;
}

.page_nav_item .nav_txt {
	-webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
	text-align: center;
	letter-spacing: 2px;
	text-indent: 2px;
	background: #398a91;
	color: #fff;
	width: 40px;
	line-height: 40px;
	height: 100%;
}

.page_nav_item.prev .nav_txt,
.page_nav_item.next .nav_txt {
	position: absolute;
	top: 0;
}

.page_nav_item.prev .nav_txt {
	left: 0;
}

.page_nav_item.next .nav_txt {
	right: 0;
}

/*#page_information*/

#page_information .info_list {
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

#page_information .info_list::after {
	content: '';
	width: 400px;
	display: block;
	margin: 5px;
}

#page_information .info_list .padd {
	padding: 40px 50px 80px 50px;
}

#page_information .info_item {
	background: #fff;
	width: 400px;
	margin: 5px;
	border: none;
}

#page_information .info_item .more {
	position: absolute;
	bottom: 40px;
	right: 40px;
}

#page_information .info_item a {
	display: block;
}

/*#page_post_information*/

#single_information .date {
	font-size: 20px;
}

.post_information .post_title {
 	margin-bottom: 40px;
 }

#page_post_information  .info_list {
	margin: 0;
}

#page_post_information #page_information .inner {
    max-width: 1230px;
    width: 90%;
    margin: 0 auto;
}

#page_information .new {
	color: #398a91;
	margin-right: 10px;
}

/*company*/

#page_company .inner {
    max-width: 1230px;
    width: 90%;
    margin: 0 auto;
}

.company_list {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}

.company_list::after {
	content: '';
	width: 400px;
	display: block;
	margin: 5px;
}

.company_item {
    width: 400px;
    background: #fff;
	position: relative;
	margin: 5px;
}

.company_item a {
    box-sizing: border-box;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 20px;
}

.company_item .thumb {
	width: 100px;
	height: 100px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.company_item .txt {
	width: 245px;
	box-sizing: border-box;
	position: relative;
}

.company_title {
	font-size: 20px;
    line-height: 1.4;
}

.company_item .more {
	position: absolute;
	bottom: 0;
	right: 0;
}

/*form*/

input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family : inherit;
	font-size : 100%;
}

/*table*/

table {
	font-size: 14px;
}

table th, table td {
	padding: 10px;
	border: 1px solid #eee;
}

table th {
	background: #f6f6f6;
	font-weight: 200;
	text-align: left;
	width: 300px;
	vertical-align: middle;
}

table td {
	width: 480px;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    box-sizing: border-box;
	border: 1px solid #eee;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

textarea {
	resize: vertical;
	display: block;
}

input:focus {
	border: 1px solid #398a91;
}

table .w50 {
	width: 49%;
	box-sizing: border-box;
}

table .w50:first-of-type {
	margin-right: 0.5%;
}

.btn_list ul {
	-webkit-justify-content: center;
	justify-content: center;
}

.btn_list {
	margin-top: 40px;
}

.btn_list .btn {
	cursor: pointer;
	margin: 0 20px;
}

.btn_list .submit {
	color: #fff;
}

.btn_list .back {
	border: 1px solid #398a91;
	color: #398a91;
	background: #fff;
}







/* CUSTOM
-------------------------------------*/
#main_visual .bg_main_visual{
	width: 100%;
}
#page_home #main_visual .bg_main_visual{
	height: 80vh!important;
}
.contact{
	background: #3b93ff;
}
#main_visual .ms_box{
	background: rgba(59,147,245,.6);
}
.btn{
	background: #3b93ff;
}
#contact .box{
	background: #3b93ff;
}
.logo{
	width: 250px;
}
#f_nav ul{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
}
#f_nav ul li{
	width: 150px;
	text-align: center;
}
#footer{
	padding: 40px 0 0 0;
}
.item_list{
	justify-content: space-around;
}
.item{
	width:45%;
}
#g_nav{
	background:rgba(238,238,238,1);
}
.company_list{
	justify-content: center;
}
.company_item{
	width: auto;
}
.company_item caption{
	margin: 20px 0;
	font-size: 20px;
}
#sns{
	display: none;
}
#footer{
	padding: 0;
}
#f_nav{
	margin: 50px 0 0 0;
}
video{
	width: 100%;
}
#g_nav .menu-item-has-children::after{
	background:#eee;
}
.sub-menu{
	display: none;
}
.required{
	color:#BB004B;
	margin-left:10px;
	font-size:12px;
}