@charset "UTF-8";
/* -------------------------------
 * Oswald
 * https://fonts.google.com/selection?selection.family=Oswald:400,700
 * -------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Oswald:400,500,700);
.en {
  font-family: 'Oswald', sans-serif;
}

/* -------------------------------
	default
-------------------------------- */
/* IE スクロールバーを外側へ */
@-ms-viewport {
  width: auto;
  initial-scale: 1;
}
@viewport {
  width: device-width;
  initial-scale: 1;
}
@media (max-width: 1199px) {
  h1, .h1 {
    font-size: 28px;
    font-size: calc(28px + 14 * (100vw - 320px) / 880);
  }

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

  h3, .h3 {
    font-size: 20px;
    font-size: calc(20px + 4 * (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-inline {
  letter-spacing: -.40em;
}
.row-inline * {
  letter-spacing: normal;
}
.row-inline > [class^="col-"], .row-inline > [class*=" col-"] {
  float: none;
  letter-spacing: normal;
  display: inline-block;
  vertical-align: middle;
}
.row-inline.va-top > [class^="col-"], .row-inline.va-top > [class*=" col-"] {
  vertical-align: top;
}

/* -------------------------------
	header
-------------------------------- */
#header {
  padding: 10px 0 20px;
  background-color: #fff;
}
#header h1 {
  font-size: 14px;
  line-height: normal;
  margin: 0;
  padding: 0;
}
#header h1 img {
  width: 230px;
}
@media print, screen and (min-width: 768px) {
  #header {
    padding: 21px 0 30px;
  }
  #header h1 {
    text-align: center;
  }
  #header h1 img {
    width: auto;
  }
}

/* -------------------------------
	gNavi
-------------------------------- */
#gNavi {
  margin-bottom: 15px;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9999;
}
#gNavi .logo {
  display: none;
}
#gNavi ul.gnav {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
#gNavi ul.gnav > li {
  float: left;
  width: 20%;
  text-align: center;
  position: relative;
}
#gNavi ul.gnav > li > a {
  color: #333;
  line-height: 1.333;
  text-align: center;
  height: 54px;
  padding: 5px 1.5em 0;
  display: inline-block;
  position: relative;
}
#gNavi ul.gnav > li > a .en {
  color: #124181;
  font-size: 11px;
  display: block;
}
#gNavi ul.gnav > li > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  background-color: #124181;
  transition: all .3s ease;
}
#gNavi ul.gnav > li > a:hover, #gNavi ul.gnav > li > a:focus, #gNavi ul.gnav > li.active > a {
  text-decoration: none;
}
#gNavi ul.gnav > li > a:hover:after, #gNavi ul.gnav > li > a:focus:after, #gNavi ul.gnav > li.active > a:after {
  transform: scaleX(1);
}

@media screen {
  .fixed-top {
    margin-top: 76px;
  }

  body.fixed-top #gNavi {
    position: fixed;
    top: -76px;
    left: 0;
    width: 100%;
    background-color: #124181;
    z-index: 999;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translate3d(0, 76px, 0);
    transform: translate3d(0, 76px, 0);
  }
  body.fixed-top #gNavi .logo {
    float: left;
    width: 65px;
    padding-left: 15px;
    line-height: 76px;
    display: block;
  }
  body.fixed-top #gNavi ul.gnav {
    float: right;
    width: 85%;
  }
  body.fixed-top #gNavi ul.gnav > li > a {
    color: #fff;
    height: 76px;
    padding: 24px 1em 0;
  }
  body.fixed-top #gNavi ul.gnav > li > a .en {
    color: #fff;
  }
  body.fixed-top #gNavi ul.gnav > li > a:after {
    background-color: #78c7ea;
  }
}
/* -------------------------------
 スマホ用　サイドメニュー
-------------------------------- */
/* ----- ボタン ----- */
#panel-btn {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0;
  border: solid 1px #fff;
  background: #124181;
  overflow: hidden;
}
#panel-btn .panel-txt {
  color: #fff;
  font-size: 10px;
  line-height: 1;
  -moz-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  -webkit-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8);
  text-decoration: none;
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 2px;
}

#panel-btn-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 2px;
  margin: -6px 0 0 -13px;
  background: #fff;
  transition: .2s;
}
#panel-btn-icon:before, #panel-btn-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: .3s;
}
#panel-btn-icon:before {
  margin-top: -8px;
}
#panel-btn-icon:after {
  margin-top: 6px;
}

#panel-btn .close {
  background: transparent;
}
#panel-btn .close:before, #panel-btn .close:after {
  margin-top: 0;
}
#panel-btn .close:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#panel-btn .close:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

/* ----- 初期設定 ----- */
.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: 7px;
  right: 10px;
  z-index: 9999;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/**/
#sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  text-align: left;
  background: #124181;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow-y: auto;
  z-index: 9990;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

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

/* 768以上で解除 */
@media print, screen and (min-width: 768px) {
  #sidebar, .side-menu-btn, .overlay {
    display: none;
  }
}
/* ----- design ----- */
.side-menu {
  padding: 60px 50px 0;
}
.side-menu .navmenu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-menu .navmenu a {
  color: #fff;
  text-decoration: none;
}
.side-menu .navmenu a:hover, .side-menu .navmenu a:focus {
  text-decoration: none;
}
.side-menu .navmenu > li {
  border-bottom: dotted 1px #ddd;
}
.side-menu .navmenu > li > a {
  padding: 10px 1.5em 10px 15px;
  display: block;
  position: relative;
}
.side-menu .navmenu > li > a:before {
  content: "\f054";
  color: #A4C5F2;
  font-family: 'FontAwesome';
  line-height: 1;
  position: absolute;
  right: 0.5em;
  top: 50%;
  margin-top: -.5em;
}
.side-menu .submenu > a:before {
  color: #999 !important;
  content: "\f0c9" !important;
}
.side-menu .submenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}
.side-menu .submenu ul li {
  font-size: 0.92em;
  border-top: dashed 1px #ddd;
}
.side-menu .submenu ul li a {
  display: block;
  padding: 8px 8px 8px 2em;
  position: relative;
}
.side-menu .submenu ul li a:before {
  content: "\f0da";
  font-family: 'FontAwesome';
  line-height: 1;
  position: absolute;
  left: 1.4em;
  top: 50%;
  margin-top: -.5em;
}

/* -------------------------------
	footer
-------------------------------- */
#footer {
  background-color: #fff;
}

.foot_row {
  padding: 20px 0 0;
}
.foot_row .col-1 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #124181;
}
.foot_row .col-2 {
  margin-bottom: 20px;
}
.foot_row .col-3 {
  display: none;
}

.logoarea {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: table;
}
.logoarea .in {
  padding-left: 15px;
  display: table-cell;
  vertical-align: middle;
}
.logoarea .in h3 {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 18px;
}
.logoarea .in p {
  line-height: 1.429;
  margin: 0;
}

.foot_tel {
  width: 100%;
  text-align: center;
}
.foot_tel p {
  line-height: normal;
  margin: 0;
}
.foot_tel .tel {
  font-size: 25px;
}
.foot_tel .tel small {
  font-size: 15px;
}

.footnavi {
  width: 100%;
  text-align: center;
}
.footnavi ul {
  text-align: center;
  letter-spacing: -.4em;
  padding: 0;
  margin: 0 -1em;
}
.footnavi ul li {
  letter-spacing: normal;
  padding: 0 1em;
  display: inline-block;
}
.footnavi ul li a {
  color: #333;
  line-height: 2;
}

.copyright {
  color: #fff;
  font-size: 12px;
  line-height: 46px;
  text-align: center;
  background-color: #124181;
}

@media print, screen and (min-width: 768px) {
  .foot_row {
    padding: 40px 0;
    overflow: hidden;
  }
  .foot_row .col {
    float: left;
    height: 100px;
    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;
  }
  .foot_row .col-1, .foot_row .col-2 {
    width: 50%;
  }
  .foot_row .col-1 {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
    border-right: solid 1px #124181;
  }
  .foot_row .col-2 {
    margin-bottom: 0;
  }
  .foot_row .col-3 {
    width: 100%;
  }

  .foot_tel .tel {
    font-size: 30px;
    margin-top: 15px;
  }
  .foot_tel .tel small {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .foot_row .col-1, .foot_row .col-2, .foot_row .col-3 {
    width: 33.33334%;
  }
  .foot_row .col-2 {
    border-right: solid 1px #124181;
  }
  .foot_row .col-3 {
    margin-top: 0;
  }

  .footnavi ul {
    width: 20em;
    text-align: left;
    margin: 0 auto;
    overflow: hidden;
  }
  .footnavi ul li {
    width: 50%;
    float: left;
  }
}
/* -------------------------------
	main
-------------------------------- */
#wrap {
  border-bottom: solid 1px #124181;
  overflow: hidden;
}

/* -------------------------------
	main title
-------------------------------- */
.main_ttl {
  height: 280px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background: url(../images/common/main_ttl_bg.jpg) no-repeat center center #124181;
  background-size: cover;
}
.main_ttl .container h2 {
  color: #fff;
  text-align: center;
  margin: 0;
}
.main_ttl .container h2 .en {
  font-size: 60px;
  font-weight: 500;
}
.main_ttl .container h2 .ja {
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 1199px) {
  .main_ttl {
    height: calc(120px + 160 * (100vw - 320px) / 880);
  }
  .main_ttl .container h2 .en {
    font-size: calc(24px + 36 * (100vw - 320px) / 880);
  }
  .main_ttl .container h2 .ja {
    font-size: 16px;
  }
}

/* -------------------------------
	title
-------------------------------- */
.hh_ttl_a {
  padding-bottom: 0.3em;
  border-bottom: solid 1px #124181;
}

.hh_ttl_b {
  color: #124181;
}
.hh_ttl_b .en {
  font-size: 1.8em;
  font-weight: 500;
  padding-right: 20px;
}
.hh_ttl_b .ja {
  font-size: 16px;
  display: inline-block;
  padding-right: 20px;
}

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

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

@media print, screen and (min-width: 768px) {
  .box-padding-a {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .box-padding-a .mb {
    margin-bottom: 30px;
  }
}
/* -------------------------------
	画像
 * contain; 要素に収まる
 * cover; トリミング
 * scale-down; 要素に最小サイズで収まる
-------------------------------- */
.photo-ofi {
  height: 0;
  padding-bottom: 75%;
  background-color: #78c7ea;
  position: relative;
}
.photo-ofi .in, .photo-ofi a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.photo-ofi .in img, .photo-ofi a img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  font-family: 'object-fit: scale-down;';
}
.photo-ofi a.img-search:after {
  content: "\f00e";
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #fff;
  font-family: 'FontAwesome';
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  background-color: #124181;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.photo-ofi a.img-search:hover:after, .photo-ofi a.img-search:focus:after {
  opacity: 1;
}

/* -------------------------------
	anchor
-------------------------------- */
@media print, screen and (min-width: 768px) {
  .anchor {
    margin-top: -76px;
    padding-top: 76px;
  }
}

/* -------------------------------
	googlemap
-------------------------------- */
.googlemap {
  position: relative;
  padding-bottom: 300px;
  height: 0;
  margin-bottom: 30px;
  overflow: hidden;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media print, screen and (min-width: 768px) {
  .googlemap {
    padding-bottom: 50%;
  }
}

/* -------------------------------
	table
-------------------------------- */
@media only screen and (max-width: 543px) {
  .table-inline tr {
    width: 100%;
    display: inline-block;
  }
  .table-inline tr th, .table-inline tr td {
    width: 100% !important;
    display: block;
  }
}
/* jquery.basictable.min.js */
table.bt thead, table.bt tbody th {
  display: none;
}
table.bt tbody tr {
  display: inline;
}
table.bt tbody tr th {
  width: 100% !important;
  display: block;
}
table.bt tbody tr td {
  width: 100% !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
}
table.bt tbody tr td:before {
  content: attr(data-th) ": ";
  display: block;
}
table.bt tbody tr td .bt-content {
  text-align: left;
  display: block;
}

/* -------------------------------
	list
-------------------------------- */
.list-diagram {
  list-style: none;
  padding-left: 0;
}
.list-diagram li {
  padding-left: 1em;
  position: relative;
}
.list-diagram li:before {
  display: block;
  content: '';
  position: absolute;
  top: .6em;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #3498db;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	btn
-------------------------------- */
/* -------------------------------
	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%;
  }
}
/* --▼bg-- */
.bg-img-a {
  background: url(../images/common/bg01.png);
}

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

/* --▼font-- */
.fs15 {
  font-size: 15px !important;
}

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

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

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

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

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

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

/* --▼text-- */
.text-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

/* --▼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-s {
  margin-bottom: 15px !important;
}

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

@media print, screen and (min-width: 768px) {
  .margin-bottom-s {
    margin-bottom: 30px !important;
  }

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