@charset "UTF-8";
/* brake point */
/* 1rem=16px の設定*/
html {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

body {
  font-family: 'Murecho', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8rem;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 1.125rem;
  }
}

/* =========================================================
	font-weight & other font
========================================================== */
/* GoogleFonts「Be Vietnam」用CSS */
.alphabetFont_be-vietnam {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 600;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  /*height:auto;*/
}

/* font color */
/* 青系 色の薄い順 */
/* 黄色系 色の薄い順 */
/* 本文テキストカラー */
/* タイトルテキストカラー */
/* グレー 色の薄い順 */
/* =========================================================
	hack IE
========================================================== */
img {
  max-width: 100%;
  height: auto;
}

/* SP PC */
.sm {
  display: block;
}
@media screen and (min-width: 640px) {
  .sm {
    display: none;
  }
}

.sm-md {
  display: block;
}
@media screen and (min-width: 768px) {
  .sm-md {
    display: none;
  }
}

.sm-lg {
  display: block;
}
@media screen and (min-width: 1280px) {
  .sm-lg {
    display: none;
  }
}

.md {
  display: none;
}
@media screen and (min-width: 768px) {
  .md {
    display: block;
  }
}

.lg {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lg {
    display: block;
  }
}

.xl {
  display: none;
}
@media screen and (min-width: 1280px) {
  .xl {
    display: block;
  }
}

.inbl {
  display: inline-block;
}

#tag {
  display: none;
}

/* float */
.floatL {
  float: left;
}

.floatR {
  float: right;
}

/* object-fit */
.hogehoge {
  object-fit: cover;
  object-position: bottom;
  font-family: "object-fit: cover; object-position: bottom;";
}

figure {
  position: relative;
}
figure figcaption {
  position: absolute;
  bottom: 6%;
  right: 3%;
  padding: 0 .5em;
  color: #1e4265;
  font-size: 0.75rem;
  line-height: 1.2em;
}
figure figcaption.outside {
  position: relative;
  bottom: auto;
  right: auto;
  text-align: right;
  padding: .5em;
  background: none;
  color: #536e88;
  font-size: 0.75rem;
  line-height: 1.2em;
}

.min-note {
  font-size: 0.75rem;
  line-height: 1.3em;
}
@media screen and (min-width: 1280px) {
  .min-note {
    font-size: 0.75rem;
    line-height: 1.5em;
  }
}

/* =========================================================
	.alignfull  & .alignwide
========================================================== */
.alignfull {
  width: 100vw !important;
  margin-left: calc( 50% - 50vw );
  margin-right: calc( 50% - 50vw );
  max-width: none;
}

@media screen and (max-width: 1103px) {
  .alignfull_sp {
    width: 100vw !important;
    margin-left: calc( 50% - 50vw );
    margin-right: calc( 50% - 50vw );
    max-width: none;
  }
}

@media screen and (min-width: 1280px) {
  .alignwide {
    width: 1602px !important;
    margin-left: calc( 50% - 1602px / 2 ) !important;
    margin-right: calc( 50% - 1602px / 2 ) !important;
  }
}

/* =========================================================
	body font
========================================================== */
/* =========================================================
	links
========================================================== */
a {
  color: #1e87f0;
  transition: 0.9s;
}
a:hover {
  opacity: 0.7;
}

a.linkStyle::after {
  content: '';
  margin-left: .3em;
  margin-right: .3em;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("../img/icon_link.png");
  background-size: contain;
  vertical-align: middle;
}

/* =========================================================
	body- width
========================================================== */
section {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

/* clearfix */
.clearfix {
  *zoom: 1;
  overflow: hidden;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
  height: 0;
  visibility: hidden;
}

/* =====================================================
  SP版 ナビゲーション
===================================================== */
.fat-nav,
.hamburger__icon,
.hamburger__icon:after,
.hamburger__icon:before {
  -moz-transition-duration: .4s;
  -o-transition-duration: .4s;
  -webkit-transition-duration: .4s;
}

.hamburger {
  display: block;
  width: 60px;
  height: 60px;
  position: fixed;
  top: 1%;
  right: 2%;
  z-index: 10000;
  padding: 0 12px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  text-decoration: none;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 3px 6px rgba(30, 66, 101, 0.7);
}
.hamburger:hover {
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger__icon {
  position: relative;
}
.hamburger__icon span.hamburger__text {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
}

.hamburger__icon:after,
.hamburger__icon:before {
  display: block;
  width: 33px;
  height: 3px;
  border-radius: 10px;
  background-color: #1e87f0;
  -moz-transition-property: background-color,-moz-transform;
  -o-transition-property: background-color,-o-transform;
  -webkit-transition-property: background-color,-webkit-transform;
  transition-property: background-color,transform;
  transition-duration: 0.4s;
}

.hamburger__icon:after,
.hamburger__icon:before {
  position: absolute;
  content: "";
}

.hamburger__icon:before {
  top: 30px;
}

.hamburger__icon:after {
  top: 40px;
}

.hamburger.active .hamburger__icon {
  background-color: transparent;
}

.hamburger.active .hamburger__icon:after,
.hamburger.active .hamburger__icon:before {
  background-color: #1e87f0;
}

.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(5px) rotate(30deg);
  -ms-transform: translateY(5px) rotate(30deg);
  -webkit-transform: translateY(5px) rotate(30deg);
  transform: translateY(5px) rotate(30deg);
}

.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-5px) rotate(-30deg);
  -ms-transform: translateY(-5px) rotate(-30deg);
  -webkit-transform: translateY(-5px) rotate(-30deg);
  transform: translateY(-5px) rotate(-30deg);
}

.fat-nav {
  top: 0;
  left: 0;
  z-index: 9999;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: #1e87f0;
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  transition-duration: .4s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 1024px) {
  .fat-nav {
    display: none;
  }
}

.fat-nav__wrapper {
  margin: auto;
  padding-top: 5em;
  width: 80%;
  height: 100%;
}

.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.fat-nav ul {
  margin: 0;
  margin-top: 2em;
  padding: 0;
}
.fat-nav ul li {
  text-align: center;
  color: #fff;
  font-size: 1.1875rem;
}
.fat-nav ul li a {
  padding: 1em 0;
  display: block;
  color: #fff;
  text-decoration: none;
}

/* =====================================================
  PC版 ナビゲーション
===================================================== */
.fat-navPC {
  display: none;
}
@media screen and (min-width: 1024px) {
  .fat-navPC {
    z-index: 9999;
    position: absolute;
    top: 3%;
    left: 0%;
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;
    height: auto;
    padding-bottom: 3em;
  }
}
@media screen and (min-width: 1024px) {
  .fat-navPC .fat-navPC__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: auto;
    padding: 1.2% 2%;
    width: 1200px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(30, 66, 101, 0.7);
    border-radius: 53px;
  }
}
@media screen and (min-width: 1024px) {
  .fat-navPC .fat-navPC__wrapper .headerNavBlockPC__logoBlock {
    width: 18%;
    max-width: 192px;
  }
}
@media screen and (min-width: 1024px) {
  .fat-navPC .fat-navPC__wrapper .headerNavBlockPC__nemuList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 70%;
  }
  .fat-navPC .fat-navPC__wrapper .headerNavBlockPC__nemuList .headerNavBlockPC__nemuList__item {
    padding-right: 2em;
  }
  .fat-navPC .fat-navPC__wrapper .headerNavBlockPC__nemuList .headerNavBlockPC__nemuList__item:last-child {
    padding-right: 0;
  }
  .fat-navPC .fat-navPC__wrapper .headerNavBlockPC__nemuList .headerNavBlockPC__nemuList__item a {
    color: #001f3e;
    text-decoration: none;
  }
  .fat-navPC .fat-navPC__wrapper .headerNavBlockPC__nemuList .headerNavBlockPC__nemuList__item a:hover {
    opacity: 1;
    position: relative;
  }
  .fat-navPC .fat-navPC__wrapper .headerNavBlockPC__nemuList .headerNavBlockPC__nemuList__item a:hover::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    display: inline-block;
    width: 7em;
    height: 3px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #1e87f0;
    border-radius: 2px;
  }
}

/*# sourceMappingURL=jquery.fatNav.css.map */
