@charset "UTF-8";
/* -------------------------------
 * google font
 * Fira Sans
 * https://fonts.google.com/specimen/Fira+Sans
 * -------------------------------- 
@import url(https://fonts.googleapis.com/css?family=Fira+Sans:400,500,700,900);
.wf_fira_sans {
  font-family: 'Fira Sans', sans-serif;
}*/

/* -------------------------------
 * google font
 * Crimson Text
 * https://fonts.google.com/specimen/Crimson+Text
 * -------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Crimson+Text:400,600,700);
.font_en {
	font-family: 'Crimson Text', serif;
}

/* -------------------------------
	default
-------------------------------- */
body {
  word-wrap: break-word;
  letter-spacing: 0.05em;
}

.fs_lg_25 {
  font-size: 25px;
}
.fs_lg_76 {
  font-size: 76px;
}

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

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

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

  .fs_lg_25 {
    font-size: 16px;
    font-size: calc(16px + 9 * (100vw - 320px) / 880);
  }
	.fs_lg_76 {
    font-size: 40px;
    font-size: calc(40px + 36 * (100vw - 320px) / 880);
  }
}
/* -------------------------------
	common
-------------------------------- */
.inner-946 {
  width: 100%;
  max-width: 1006px;
}

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

.row-inline {
  letter-spacing: -.40em;
}
.row-inline * {
  letter-spacing: 0.05em;
}
.row-inline > [class^="col-"], .row-inline > [class*=" col-"] {
  float: none;
  display: inline-block;
  vertical-align: middle;
}

@media print, screen and (min-width: 1200px) {
  .row-lg-25 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .row-lg-25 > [class^="col-"], .row-lg-25 > [class*=" col-"] {
    padding-left: 25px;
    padding-right: 25px;
  }
}
/* -------------------------------
	header
-------------------------------- */
#header h1 {
  font-size: 14px;
  text-align: center;
  margin: 15px;
}
#header h1 img {
  width: 120px;
}

@media print, screen and (min-width: 768px) {
  #header h1 {
    margin: 0;
    padding-top: 17px;
  }
  #header h1 img {
    width: auto;
  }
}
/* -------------------------------
	ｇNavi
-------------------------------- */
.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;
}

.gnavi {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  text-align: left;
  font-size: 13px;
  border-left: solid 1px #333;
  background: url(../images/common/gnavi_bg.jpg) no-repeat center bottom;
  background-size: cover;
  -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 .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}

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

/* サイドメニューオープン */
.side-open .gnavi {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.side-open .side-menu-btn {
  -webkit-transform: translate3d(-260px, 0, 0);
  transform: translate3d(-260px, 0, 0);
}

/* スタイル */
.gnavi {
  padding-top: 3px;
}
.gnavi ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gnavi ul li {
  background-color: #fff;
  border-top: dashed 1px #333;
}
.gnavi ul li a {
  color: #3c4747;
  font-size: 13px;
  line-height: 25px;
  text-decoration: none;
  display: block;
  padding: 15px 10px 15px 47px;
	position: relative;
}
.gnavi ul li a img {
  width: 22px;
	position: absolute;
	left: 15px;
}
.gnavi ul li a:hover, .gnavi ul li a:focus {
  text-decoration: none;
  background-color: #eaeaea;
}
.gnavi ul li.active a {
  color: #55a3e1;
}
.gnavi ul li:first-child {
  border-top: none;
}
.gnavi ul li:last-child {
  border-top: none;
}
.gnavi ul li:last-child a {
  color: #fff;
  background-color: #fbb40a;
}
.gnavi ul li:last-child a:hover, .gnavi ul li:last-child a:focus {
  background-color: #D29503;
}
.gnavi ul li:last-child.active a {
  color: #fff;
  background-color: #fbb40a;
}

/* pc */
@media print, screen and (min-width: 768px) {
  .side-menu-btn, .overlay {
    display: none;
  }

  .gnavi {
    width: 100%;
    height: inherit;
    padding: 0;
    border: none;
    background: #fff;
    position: static;
    overflow-y: inherit;
		-webkit-transition: none;
  					transition: none;
  }
  .gnavi, .side-open .gnavi {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .gnavi ul {
    overflow: hidden;
  }
  .gnavi ul li {
    float: left;
    width: 16.6667%;
    border: none;
  }
  .gnavi ul li a {
    font-size: 12px;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    height: 170px;
    padding: 43px 0 0;
    position: relative;
  }
  .gnavi ul li a img {
    width: auto;
    display: block;
    margin: 0 auto 10px;
		position: static;
		left: auto;
  }
  .gnavi ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 34px;
    width: 100%;
    height: 4px;
    opacity: 0;
    background-color: #eaeaea;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .gnavi ul li a:hover, .gnavi ul li a:focus {
    background-color: inherit;
  }
  .gnavi ul li a:hover:after, .gnavi ul li a:focus:after {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .gnavi ul li.active a {
    color: #3c4747;
  }
  .gnavi ul li.active a:after {
    opacity: 1;
    background-color: #55a3e1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
		-webkit-transition: none;
    				transition: none;
  }
  .gnavi ul li:last-child a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .gnavi ul li:last-child a:after {
    display: none;
  }
  .gnavi ul li:last-child a:hover, .gnavi ul li:last-child a:focus {
    background-color: #FCCF62;
  }
}
/* -------------------------------
 ボタンデザイン
-------------------------------- */
#panel-btn {
  display: block;
  position: relative;
  width: 43px;
  height: 43px;
  margin: 0;
  border-left: solid 1px #333;
  border-bottom: solid 1px #333;
  background: #fff;
  overflow: hidden;
}
#panel-btn:hover {
  background: #fff;
}
#panel-btn .panel-txt {
  color: #111;
  font-size: 10px;
  line-height: 1;
  -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: 3px;
}

#panel-btn-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  margin: -5px 0 0 -9px;
  background: #333;
  transition: .2s;
}
#panel-btn-icon:before, #panel-btn-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  background: #333;
  transition: .3s;
}
#panel-btn-icon:before {
  margin-top: -6px;
}
#panel-btn-icon:after {
  margin-top: 4px;
}

#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);
}

/* -------------------------------
	footer
-------------------------------- */
#footer {
  color: #fff;
  padding: 50px 0;
  background: url(../images/common/foot_bg.jpg) no-repeat center center;
  background-size: cover;
}
#footer h3 {
  font-size: 20px;
  font-weight: bold;
}
#footer .fnavi {
  float: right;
}
#footer .fnavi ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .fnavi ul li {
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 0.02em;
}
#footer .fnavi ul li a {
  color: #fff;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 0;
}
#footer .fnavi ul li a:after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background-color: #fff;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
#footer .fnavi ul li a:hover, #footer .fnavi ul li a:focus {
  color: #333;
  text-decoration: none;
}
#footer .fnavi ul li a:hover:after, #footer .fnavi ul li a:focus:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}
#footer .copyright {
  color: #86898a;
  font-size: 12px;
  margin: 3em 0 0;
}

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

/* -------------------------------
	main
-------------------------------- */
#wrap {
  overflow: hidden;
}

.main_ttl {
  padding: 15px 0;
  background-image: -moz-linear-gradient(0deg, #8292d9 0%, #82d7d9 100%);
  background-image: -webkit-linear-gradient(0deg, #8292d9 0%, #82d7d9 100%);
  background-image: -ms-linear-gradient(0deg, #8292d9 0%, #82d7d9 100%);
}
.main_ttl h2 {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}
.main_ttl h2 .en {
  color: #4777d7;
  font-family: 'Crimson Text', serif;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: -0.025em;
}

@media print, screen and (min-width: 768px) {
  .main_ttl {
    height: 160px;
    padding: 0;
    display: flex;
    justify-content: left;
    align-items: center;
    position: relative;
    z-index: 0;
  }
  .main_ttl:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/common/main_ttl_bg.png) no-repeat center;
    z-index: -1;
  }
  .main_ttl h2 {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .main_ttl h2 .en {
    font-size: 24px;
    font-size: calc(24px + 24 * (100vw - 320px) / 880);
  }
}
/* -------------------------------
	title
-------------------------------- */
.head_ttl {
  font-weight: normal;
  text-align: center;
}
.head_ttl img {
  display: block;
  margin: 0 auto 1em;
}

.head_ttl_b {
  font-weight: normal;
  text-align: center;
  margin-bottom: 2.4em;
  position: relative;
}
.head_ttl_b span {
  display: inline-block;
}
.head_ttl_b .en {
  color: #55a3e1;
  font-family: 'Crimson Text', serif;
  font-size: 2em;
  line-height: 1.1;
  text-shadow: 1px 1px 0px #fff,-1px 1px 0px #fff,1px -1px 0px #fff,-1px -1px 0px #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 0;
}
.head_ttl_b .ja {
  font-size: 0.8em;
  font-weight: normal;
}
.head_ttl_b .ja:before, .head_ttl_b .ja:after {
  content: "-";
}
@media print, screen and (min-width: 768px) {
  .head_ttl_b .en:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 77px;
    margin-left: -155px;
    background: url(../images/common/ttl_img_a.png) no-repeat left center;
    background-size: cover;
    z-index: -1;
  }
}

.hh_ttl_a {
  font-weight: normal;
  position: relative;
}
.hh_ttl_a .en {
  color: #55a3e1;
  font-family: 'Crimson Text', serif;
  font-size: 2em;
  line-height: 1.1;
  letter-spacing: normal;
}
.hh_ttl_a .ja {
  font-size: 0.8em;
  font-weight: normal;
  padding-left: 1em;
  position: relative;
}
.hh_ttl_a .ja:before {
  content: "-";
  position: absolute;
  left: 0;
  width: 1em;
  margin-top: 0.15em;
  text-align: center;
}

.hh_ttl_b {
  padding-bottom: 10px;
  position: relative;
  z-index: 0;
}
.hh_ttl_b:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1em;
  height: 2px;
  background-color: #55a3e1;
}

.hh_ttl_c {
  text-align: center;
  padding-bottom: 0.5em;
  border-bottom: solid 1px #333;
}

.en_ttl_a {
	font-family: 'Crimson Text', serif;
	font-weight: 400;
	line-height: 1.1;
}

/* -------------------------------
	table
-------------------------------- */
@media (max-width: 543px) {
  .table-inline tr {
    width: 100%;
    display: inline-block;
  }
  .table-inline tr th, .table-inline tr td {
    width: 100% !important;
    display: block;
  }
}
/* -------------------------------
	btn
-------------------------------- */
.btn-more {
  line-height: 87px;
  text-align: center;
  width: 263px;
  height: 87px;
  display: block;
  margin: 0 auto;
  border: solid 1px #fff;
}
.btn-more:hover, .btn-more:focus {
  background-color: rgba(255, 255, 255, 0.35);
}

.btn-img:hover {
  opacity: 0.75;
}

/* -------------------------------
	box
-------------------------------- */
.box-padding-60 {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media print, screen and (min-width: 768px) {
  .box-padding-60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/* -------------------------------
	hr
-------------------------------- */
hr {
  margin: 30px 0;
}

.hr_style_a {
  border-top: dotted 2px #ddd;
}

@media print, screen and (min-width: 768px) {
  hr {
    margin: 60px 0;
  }
}
/* -------------------------------
	figure
-------------------------------- */
.grid {
  position: relative;
  clear: both;
  list-style: none;
}
.grid figure {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}
.grid figure img {
  position: relative;
  display: block;
}
.grid figure figcaption {
  color: #fff;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.grid figure figcaption::before, .grid figure figcaption::after {
  pointer-events: none;
}
.grid figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

/* -------------------------------
	画像中央
-------------------------------- */
.photo {
  position: relative;
  padding-bottom: 75%;
  /*これが縦横比*/
  height: 0;
  overflow: hidden;
}

.photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  min-width: 50px;
  width: auto;
  height: auto;
}

/* -------------------------------
	common
-------------------------------- */
.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%;
  }
}
/* --▼color-- */
.text-red {
  color: #ff0000 !important;
}

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

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

.fs20 {
  font-size: 20px !important;
}

/* --▼text-- */
.lh_sm {
  line-height: normal !important;
}

.text-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

.text-default {
  color: #3c4747 !important;
}

.pp00 {
  padding: 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: 30px !important;
}

.margin-bottom2x {
  margin-bottom: 60px !important;
}

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

  .margin-bottom2x {
    margin-bottom: 120px !important;
  }
}
@media (max-width: 767px) {
  .mb30_sp {
    margin-bottom: 30px;
  }
}
