@charset "UTF-8";
/* -------------------------------
	default
-------------------------------- */
/* IE スクロールバーを外側へ */
@-ms-viewport {
  width: auto;
  initial-scale: 1;
}
@viewport {
  width: device-width;
  initial-scale: 1;
}
body {
  letter-spacing: 0.05em;
}

@media (max-width: 1199px) {
  h1, .h1 {
    font-size: 30px;
    font-size: calc(30px + 12 * (100vw - 320px) / 880);
  }

  h2, .h2 {
    font-size: 26px;
    font-size: calc(26px + 10 * (100vw - 320px) / 880);
  }

  h3, .h3 {
    font-size: 22px;
    font-size: calc(22px + 8 * (100vw - 320px) / 880);
  }

  h4, .h4 {
    font-size: 18px;
    font-size: calc(18px + 6 * (100vw - 320px) / 880);
  }

  h5, .h5 {
    font-size: 16px;
    font-size: calc(16px + 2 * (100vw - 320px) / 880);
  }
}
/* ----- row ----- */
.row-5 {
  margin-left: -5px;
  margin-right: -5px;
}
.row-5 > [class^="col-"], .row-5 > [class*=" col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.row-10 {
  margin-left: -10px;
  margin-right: -10px;
}
.row-10 > [class^="col-"], .row-10 > [class*=" col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.row-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
.row-flex > [class^="col-"], .row-flex > [class*=" col-"] {
  float: none;
}
.row-flex.va-top {
  align-items: start;
}

/* -------------------------------
	header
-------------------------------- */
#header {
  background-color: #fff;
}
#header h1 {
  font-size: 16px;
  line-height: 50px;
  height: 50px;
  float: left;
  margin: 0;
  overflow: hidden;
}
#header h1 img {
  width: 220px;
}
#header .head_mitumori, #header .head_tel {
  float: right;
  height: 67px;
  overflow: hidden;
}
#header .head_mitumori {
  width: 195px;
  height: 67px;
}
#header .head_mitumori a {
  display: block;
}
#header .head_mitumori a:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#header .head_tel {
  font-size: 20px;
  line-height: 67px;
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 0.025em;
  text-align: center;
  width: 224px;
  display: block;
}
#header .head_tel a {
  color: #333;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) {
  #header h1 {
    line-height: 67px;
    height: 67px;
  }
  #header h1 img {
    width: auto;
  }
}
@media print, screen and (min-width: 992px) {
  #header .head_tel {
    font-size: 26px;
    width: 307px;
  }
}

/* -------------------------------
	gNavi
-------------------------------- */
#gNavi {
  position: relative;
  z-index: 99;
}
#gNavi .navmenu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
}
#gNavi .navmenu > li {
  font-size: 15px;
  font-weight: bold;
}
#gNavi .navmenu > li > a {
  color: #333333;
  text-align: center;
  height: 58px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 0 1em;
  position: relative;
}
#gNavi .navmenu > li > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transform: scaleX(0);
  background-color: #394687;
  transition: all .3s ease;
}
#gNavi .navmenu > li > a:hover, #gNavi .navmenu > li > a:focus, #gNavi .navmenu > li.active > a {
  color: #394687;
  text-decoration: none;
}
#gNavi .navmenu > li > a:hover:after, #gNavi .navmenu > li > a:focus:after, #gNavi .navmenu > li.active > a:after {
  transform: scaleX(1);
}
@media (max-width: 1199px) {
  #gNavi .navmenu > li {
    font-size: 13px;
    font-size: calc(13px + 2 * (100vw - 768px) / 432);
  }
}
@media screen and (max-width: 767px) {
  #gNavi {
    display: none;
  }
}

/* -------------------------------
 スマホ用　サイドメニュー
-------------------------------- */
.menuWrapper {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  width: 50px;
  height: 50px;
}

/**/
#menuButton {
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
#menuButton span, #menuButton::before, #menuButton::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 36px;
  height: 4px;
  margin: auto;
  background: #000;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #000;
}
#menuButton::before {
  z-index: 2;
  transform: translate(0, -12px);
  content: "";
}
#menuButton::after {
  z-index: 2;
  transform: translate(0, 12px);
  content: "";
}

/* 動き */
#menuButton span {
  transition: transform 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  transform: translate(-50px, 0);
  transition: transform 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

/* ----- 初期設定 ----- */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 3;
}

/* 開閉用ボタンの位置 */
.side-menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/**/
#sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  text-align: left;
  background: #fff;
  -webkit-transform: translate3d(260px, 0, 0);
  transform: translate3d(260px, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow-y: auto;
  z-index: 990;
}

/* サイドメニューオープン */
.side-open #sidebar {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}

/* 768以上で解除 */
@media print, screen and (min-width: 768px) {
  #sidebar, .menuWrapper, .overlay {
    display: none;
  }
}
/* ----- design ----- */
.side-menu .simulation_btn {
  padding-right: 50px;
}
.side-menu .simulation_btn a {
  display: block;
  background-color: #394687;
}
.side-menu .simulation_btn a img {
  width: auto;
  height: 50px;
}
.side-menu .navmenu {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: solid 1px #ddd;
}
.side-menu .navmenu a {
  color: #333;
  text-decoration: none;
}
.side-menu .navmenu a:hover, .side-menu .navmenu a:focus {
  text-decoration: none;
}
.side-menu .navmenu > li {
  border-bottom: solid 1px #ddd;
}
.side-menu .navmenu > li > a {
  font-weight: bold;
  padding: 10px 1.5em 10px 15px;
  display: block;
  position: relative;
}
.side-menu .navmenu > li > a:before {
  content: "\f054";
  color: #394687;
  font-family: 'FontAwesome';
  line-height: 1;
  position: absolute;
  right: 0.5em;
  top: 50%;
  margin-top: -.5em;
}
.side-menu .navmenu > li.active > a {
  color: #394687;
}

/* -------------------------------
	footer
-------------------------------- */
#footer {
  color: #fff;
  padding: 25px 0;
  background-color: #394687;
}
#footer h3 {
  font-size: 25px;
  font-weight: normal;
  text-align: center;
  margin: 0;
}

.footnavi {
  display: none;
  text-align: center;
  margin-bottom: 30px;
}
.footnavi ul {
  font-size: 14px;
  list-style: none;
  letter-spacing: -.4em;
  padding: 0;
  margin: 0 -.5em;
}
.footnavi ul li {
  letter-spacing: 0.025em;
  display: inline;
  padding: 0 .5em;
}
.footnavi ul li a {
  color: #fff;
  display: inline-block;
}

.foot_contact {
  letter-spacing: -.4em;
  text-align: center;
  margin-bottom: 30px;
}
.foot_contact > div {
  letter-spacing: 0.025em;
  display: inline-block;
  padding: 0 9px;
  margin: 5px 0;
  width: 262px;
}
.foot_contact > div span {
  line-height: 45px;
  text-align: center;
  display: block;
  border: solid 1px #fff;
}
.foot_contact > div a {
  display: block;
}
.foot_contact > div a span {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.foot_contact > div a:hover, .foot_contact > div a:focus {
  text-decoration: none;
}
.foot_contact > div a:hover span, .foot_contact > div a:focus span {
  color: #394687;
  background-color: #fff;
}
.foot_contact > div .tel {
  font-size: 18px;
}
.foot_contact > div .tel small {
  font-size: 15px;
}
.foot_contact > div .mail {
  font-size: 16px;
}

.copyright {
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  #footer {
    padding: 45px 0;
  }

  .footnavi {
    display: block;
  }
}
@media print, screen and (min-width: 992px) {
  #footer {
    padding: 45px 0;
  }

  .footnavi ul {
    margin: 0 -1em;
  }
  .footnavi ul li {
    padding: 0 1em;
  }
}
/* -------------------------------
	main
-------------------------------- */
/* -------------------------------
	main title
-------------------------------- */
.main_ttl {
  background-color: #fff;
  position: relative;
  z-index: 0;
}
.main_ttl:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ccc;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.main_ttl .container h2 {
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 2em 0;
}
.main_ttl .container h2 .in {
  padding: 0.3em 1em;
  display: inline-block;
  background-color: rgba(57, 70, 135, 0.9);
}
@media print, screen and (min-width: 768px) {
  .main_ttl:before {
    content: "";
    position: absolute;
    right: 0;
    top: -58px;
    bottom: 0;
    width: 48.2%;
    background: url(../images/common/bg02.png);
    z-index: -1;
  }
  .main_ttl:after {
    width: 71.8%;
  }
}

.simulation .main_ttl:after {
  background-image: url(../images/title/main_ttl_simulation.jpg);
}
.business .main_ttl:after {
  background-image: url(../images/title/main_ttl_business.jpg);
}
.history .main_ttl:after {
  background-image: url(../images/title/main_ttl_history.jpg);
}
.conditions .main_ttl:after {
  background-image: url(../images/title/main_ttl_conditions.jpg);
}
.branch .main_ttl:after {
  background-image: url(../images/title/main_ttl_branch.jpg);
}
.aboutus .main_ttl:after {
  background-image: url(../images/title/main_ttl_aboutus.jpg);
}
.contact .main_ttl:after {
  background-image: url(../images/title/main_ttl_contact.jpg);
}

/* -------------------------------
	title
-------------------------------- */
.hh_ttl_a {
  border-left: solid 5px #394687;
  padding-left: 15px;
}

.hh_ttl_b {
  text-align: center;
}
.hh_ttl_b .en, .hh_ttl_b .ja {
  display: block;
}
.hh_ttl_b .en {
  color: #394687;
  font-weight: bold;
}
.hh_ttl_b .ja {
  font-size: 0.533em;
  font-weight: normal;
  margin-top: 0.2em;
}

.hh_ttl_c {
  color: #394687;
  text-align: center;
  padding-bottom: 1em;
  position: relative;
}
.hh_ttl_c:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #394687 transparent transparent transparent;
  margin-left: -10px;
}

.hh_ttl_d {
  color: #394687;
  padding-bottom: 0.3em;
  border-bottom: solid 2px #394687;
  position: relative;
}
.hh_ttl_d:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background-color: #394687;
}

.hh_ttl_e {
  line-height: 1.4;
  padding: 0 0 0.3em 1em;
  border-bottom: solid 1px #ccc;
  position: relative;
}
.hh_ttl_e:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.6em;
  height: 0.6em;
  background-color: #394687;
}

/* -------------------------------
	pagetop
-------------------------------- */
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
}
@media (max-width: 767px) {
  #pagetop {
    right: 0;
    bottom: 0;
  }
  #pagetop img {
    width: 25px;
  }
}

/* -------------------------------
	box
-------------------------------- */
.box-padding-a {
  padding-top: 40px;
  padding-bottom: 20px;
}
.box-padding-a .mb {
  margin-bottom: 20px;
}

.box-type-a {
  padding-top: 0 !important;
  background-image: url(../images/common/bg01.png);
}
.box-type-a .hh_title {
  color: #fff;
  text-align: center;
  line-height: 1.2;
  max-width: 420px;
  padding: 1em 1em 2em;
  margin: 0 auto 30px;
  background: url(../images/common/sankaku.png) no-repeat center center;
  background-size: 100% 100%;
}

@media print, screen and (min-width: 768px) {
  .box-padding-a {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .box-padding-a .mb {
    margin-bottom: 40px;
  }
}
/* -------------------------------
	画像
 * contain; 要素に収まる
 * cover; トリミング
 * scale-down; 要素に最小サイズで収まる
-------------------------------- */
/* ----- 画像を枠に収める ----- */
.photo-ofi {
  height: 0;
  display: block;
  padding-bottom: 75%;
  background: url(../images/common/bg01.png);
  page-break-inside: avoid;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  font-family: 'object-fit: scale-down;';
  position: absolute;
  left: 0;
  top: 0;
}
.photo-ofi a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.photo-ofi .swipe {
  overflow: hidden;
}
.photo-ofi .swipe:after {
  content: "\f00e";
  color: #fff;
  font-family: 'FontAwesome';
  font-size: 32px;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(3);
  transform: translate(-50%, -50%) scale(3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 99;
}
.photo-ofi .swipe:hover:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

/* -------------------------------
	googlemap
-------------------------------- */
.googlemap {
  position: relative;
  padding-bottom: 66.666%;
  /*これが縦横比*/
  height: 0;
  background-color: #f8f8f8;
  overflow: hidden;
  z-index: 0;
}
.googlemap:before {
  color: #ccc;
  font-size: 43px;
  content: "google map";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media print, screen and (min-width: 768px) {
  .googlemap {
    padding-bottom: 560px;
  }
}

/* -------------------------------
	table
-------------------------------- */
@media only screen and (max-width: 543px) {
  .table-inline > thead > tr, .table-inline > tbody > tr {
    width: 100%;
    display: inline-block;
  }
  .table-inline > thead > tr > th, .table-inline > thead > tr > td, .table-inline > tbody > tr > th, .table-inline > tbody > tr > td {
    width: 100% !important;
    display: block;
  }
}
/* -------------------------------
	list
-------------------------------- */
.list-num-a {
  padding-left: 0;
  list-style: none;
  counter-reset: number;
}
.list-num-a li {
  padding-left: 2.5em;
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: dotted 1px #ccc;
  position: relative;
}
.list-num-a li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: counter(number) ". ";
}

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	btn
-------------------------------- */
.btn-a {
  color: #333;
  border: solid 1px #394687;
  padding: 0.6em 2em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.btn-a:hover, .btn-a:focus {
  color: #fff;
  background-color: #828ECA;
}

.en {
  font-family: Arial, Helvetica, "sans-serif";
}

/* -------------------------------
	common
-------------------------------- */
.htmlarea {
  line-height: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

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

.ov_hi {
  overflow: hidden;
}

.in-bk {
  display: inline-block;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

/* 画像回り込み */
img.aligncenter, img.alignright, img.alignleft {
  display: block;
  margin: 0 auto 15px;
}

@media print, screen and (min-width: 480px) {
  img.alignright {
    max-width: 38%;
    margin-left: 30px;
    display: inline;
  }
  img.alignleft {
    max-width: 38%;
    margin-right: 30px;
    display: inline;
  }

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
  img.alignright {
    max-width: 100%;
  }
  img.alignleft {
    max-width: 100%;
  }
}
/* --▼width-- */
.ww150 {
  width: 150px;
}

.ww200 {
  width: 200px;
}

.max-ww992 {
  max-width: 992px;
  margin: 0 auto;
}

/* --▼color-- */
.text-red {
  color: #ff0000 !important;
}

.bg-01 {
  background-color: #F3F4FA;
}

.bg-img-1 {
  background: url(../images/common/bg01.png);
}

.bg-img-2 {
  background: url(../images/common/bg02.png);
}

/* --▼font-- */
.fs12 {
  font-size: 12px !important;
}

.fs16 {
  font-size: 16px !important;
}

.fwn {
  font-weight: normal !important;
}

.fwb {
  font-weight: bold !important;
}

.lh_xs {
  line-height: 1.2 !important;
}

.lh_sm {
  line-height: 1.5 !important;
}

.lh_md {
  line-height: 2.0 !important;
}

.lh_lg {
  line-height: 2.2 !important;
}

/* --▼text-- */
.text-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}
/* --▼padding-- */
.pt00 {
	padding-top: 0 !important;
}
/* --▼margin-- */
/*bottom*/
.mb00 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.margin-bottom {
  margin-bottom: 40px !important;
}

@media print, screen and (min-width: 768px) {
  .text-sm-center {
    text-align: center;
  }

  /* --▼margin-- */
  .margin-bottom {
    margin-bottom: 80px !important;
  }
}
/* 印刷用 */
@media print {
  /* スクロールバー非表示 */
  html {
    -ms-overflow-style: none;
    /* ie */
  }
}
