@charset "UTF-8";
@font-face {
  font-family: "notosans_cjk";
  src: url("font/NotoSansCJKjp-Bold.otf");
}
@font-face {
  font-family: "notosans_cjk_m";
  src: url("font/NotoSansCJKjp-Medium.otf");
}
@font-face {
  font-family: "notosans_cjk_r";
  src: url("font/NotoSansCJKjp-Regular.otf");
}
@font-face {
  font-family: "notosans_cjk_black";
  src: url("font/NotoSansCJKjp-Black.otf");
}
@font-face {
  font-family: "roboto";
  src: url("font/roboto-condensed.bold.ttf");
}
@font-face {
  font-family: "GeorginaDemo-Regular";
  src: url("font/GeorginaDemo-Regular.ttf");
}
/* line 29, ../sass/common.scss */
.yu-font {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
}

/* line 33, ../sass/common.scss */
html {
  color: #111;
  font-size: 62.5%;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
  width: 100%;
  height: 100%;
}

/* line 41, ../sass/common.scss */
body {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2.0rem;
  border: 1px solid #fff;
  border-width: 10px 10px 0;
  box-sizing: border-box;
  position: relative;
}
/* line 50, ../sass/common.scss */
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 10px;
  background-color: #fff;
}
/* line 60, ../sass/common.scss */
body:after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 10px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  /* line 41, ../sass/common.scss */
  body {
    border-width: 0;
  }
  /* line 72, ../sass/common.scss */
  body:before, body:after {
    display: none;
  }
}

/* line 78, ../sass/common.scss */
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-size: 16px;
}

/* line 91, ../sass/common.scss */
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

/* ==========================================================================
   基本css
   ========================================================================== */
/* line 99, ../sass/common.scss */
.hover a {
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
/* line 104, ../sass/common.scss */
.hover a:hover {
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}

/* line 112, ../sass/common.scss */
a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* line 118, ../sass/common.scss */
a:hover {
  cursor: pointer;
  opacity: 0.7;
}
/* line 121, ../sass/common.scss */
a:hover img {
  opacity: 0.7;
}

/* line 126, ../sass/common.scss */
.hover a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

/* line 132, ../sass/common.scss */
.hidden {
  display: none !important;
  visibility: hidden;
}

/* line 137, ../sass/common.scss */
.shadow, .tShadow {
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.25);
}

/* line 141, ../sass/common.scss */
.bShadow {
  -moz-box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.25);
}

/* line 147, ../sass/common.scss */
.shadow-inner {
  -moz-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.25);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.25);
}

/* line 153, ../sass/common.scss */
.radius {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}

/* line 159, ../sass/common.scss */
.transition {
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

/* line 166, ../sass/common.scss */
.opacity {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

/* line 172, ../sass/common.scss */
.bOpacity {
  background-color: rgba(255, 255, 255, 0.5);
}

/* line 176, ../sass/common.scss */
.gradient {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#000000')";
  background-image: -moz-linear-gradient(top, #ffffff, #000000);
  background-image: -ms-linear-gradient(top, #ffffff, #000000);
  background-image: -o-linear-gradient(top, #ffffff, #000000);
  background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#000000));
  background-image: -webkit-linear-gradient(top, #ffffff, #000000);
  background-image: linear-gradient(top, #ffffff, #000000);
}

/* ==========================================================================
   共通
   ========================================================================== */
/* line 191, ../sass/common.scss */
.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  /* line 196, ../sass/common.scss */
  .pc {
    display: none;
  }

  /* line 199, ../sass/common.scss */
  .sp {
    display: inline-block;
  }
}
/* line 204, ../sass/common.scss */
#fixedText {
  position: fixed;
  top: 50%;
  left: 20px;
  margin-top: -145px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  /* line 204, ../sass/common.scss */
  #fixedText {
    display: none;
  }
}

/* line 215, ../sass/common.scss */
#stage {
  overflow: hidden;
  position: relative;
}
/* line 218, ../sass/common.scss */
#stage:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 10px;
  height: 100%;
  background-color: #fff;
  z-index: 2;
}
/* line 229, ../sass/common.scss */
#stage:after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 10px;
  height: 100%;
  background-color: #fff;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  /* line 215, ../sass/common.scss */
  #stage {
    border-width: 0;
  }
  /* line 242, ../sass/common.scss */
  #stage:before, #stage:after {
    display: none;
  }
}

/* line 248, ../sass/common.scss */
.path {
  position: absolute;
  right: 50%;
  top: 120px;
  margin-right: -500px;
  z-index: 10;
  width: 1000px;
  text-align: right;
}
/* line 256, ../sass/common.scss */
.path ul {
  display: inline-flex;
}
/* line 258, ../sass/common.scss */
.path ul li {
  margin-left: 10px;
  color: #959595;
  font-size: 11px;
}
/* line 262, ../sass/common.scss */
.path ul li:first-child {
  position: relative;
  padding-right: 5px;
  margin-right: 5px;
}
/* line 266, ../sass/common.scss */
.path ul li:first-child:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: -7px;
  width: 5px;
  height: 1px;
  background-color: #959595;
}
/* line 277, ../sass/common.scss */
.path ul li:last-child {
  border-bottom: 1px solid #959595;
}
/* line 280, ../sass/common.scss */
.path ul li a {
  color: #959595;
}
@media screen and (max-width: 768px) {
  /* line 248, ../sass/common.scss */
  .path {
    display: none;
  }
}

/* line 290, ../sass/common.scss */
img {
  max-width: 100%;
  height: auto;
}

/* line 295, ../sass/common.scss */
a.btnMove {
  display: block;
  position: absolute;
}
/* line 298, ../sass/common.scss */
a.btnMove:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 6px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
/* line 310, ../sass/common.scss */
a.btnMove:hover {
  margin-top: 25px;
}
/* line 312, ../sass/common.scss */
a.btnMove:hover:after {
  top: 0;
  left: 0;
}

/* line 319, ../sass/common.scss */
#header {
  width: 100%;
  position: fixed;
  top: -80px;
  left: 0;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  background-color: rgba(255, 255, 255, 0.95);
}
@media screen and (max-width: 768px) {
  /* line 319, ../sass/common.scss */
  #header {
    opacity: 1;
    top: -60px;
    height: 60px;
    border-bottom: 2px solid #ddd;
    background-color: #fff;
  }
}
/* line 337, ../sass/common.scss */
#header.show, #header.open {
  opacity: 1;
  top: 0;
}
/* line 341, ../sass/common.scss */
#header .header-inner {
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
}
/* line 345, ../sass/common.scss */
#header .header-inner #logo {
  float: left;
  margin: 10px 0 0 20px;
}
@media screen and (max-width: 768px) {
  /* line 345, ../sass/common.scss */
  #header .header-inner #logo {
    float: none;
  }
}
@media screen and (max-width: 768px) {
  /* line 352, ../sass/common.scss */
  #header .header-inner .sp_phone {
    width: 34.4%;
    position: absolute;
    top: 20px;
    right: 70px;
  }
}
/* line 360, ../sass/common.scss */
#header .header-inner .sp_menu {
  width: 60px;
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px solid #ddd;
}
/* line 367, ../sass/common.scss */
#header .header-inner #nav {
  float: right;
}
@media screen and (max-width: 768px) {
  /* line 367, ../sass/common.scss */
  #header .header-inner #nav {
    float: none;
    display: none;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  /* line 378, ../sass/common.scss */
  #header .header-inner #nav .close_btn {
    width: 60px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
/* line 386, ../sass/common.scss */
#header .header-inner #nav ul {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  /* line 386, ../sass/common.scss */
  #header .header-inner #nav ul {
    margin-top: 60px;
  }
}
/* line 391, ../sass/common.scss */
#header .header-inner #nav ul li {
  float: left;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  /* line 391, ../sass/common.scss */
  #header .header-inner #nav ul li {
    float: none;
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}
/* line 401, ../sass/common.scss */
#header .header-inner #nav ul a {
  font-family: "GeorginaDemo-Regular";
  font-weight: bold;
  line-height: 6rem;
  letter-spacing: 0.12em;
  color: #434343;
  display: block;
  border-bottom: 5px solid #fff;
}
@media screen and (max-width: 768px) {
  /* line 401, ../sass/common.scss */
  #header .header-inner #nav ul a {
    font-size: 2.7rem;
    line-height: 1em;
    color: #004cca;
  }
  /* line 413, ../sass/common.scss */
  #header .header-inner #nav ul a span {
    color: #434343;
    font-size: 1rem;
    display: block !important;
    font-family: "notosans_cjk";
  }
}
/* line 420, ../sass/common.scss */
#header .header-inner #nav ul a:hover, #header .header-inner #nav ul a.current {
  border-bottom: 5px solid #dd3b56;
  color: #dd3b56;
}
@media screen and (max-width: 768px) {
  /* line 420, ../sass/common.scss */
  #header .header-inner #nav ul a:hover, #header .header-inner #nav ul a.current {
    border-bottom: 5px solid #fff;
  }
}
/* line 427, ../sass/common.scss */
#header .header-inner #nav ul a.contact {
  border: 1px solid #434343;
  line-height: 4rem;
  padding: 0 10px;
  margin-top: 10px;
  box-sizing: border-box;
  position: relative;
}
/* line 434, ../sass/common.scss */
#header .header-inner #nav ul a.contact span {
  position: relative;
  z-index: 2;
}
/* line 438, ../sass/common.scss */
#header .header-inner #nav ul a.contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #dd3b56;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
/* line 450, ../sass/common.scss */
#header .header-inner #nav ul a.contact:hover, #header .header-inner #nav ul a.contact.current {
  border: 1px solid #dd3b56;
  color: #fff;
}
/* line 453, ../sass/common.scss */
#header .header-inner #nav ul a.contact:hover:before, #header .header-inner #nav ul a.contact.current:before {
  width: 100%;
}
@media screen and (max-width: 768px) {
  /* line 450, ../sass/common.scss */
  #header .header-inner #nav ul a.contact:hover, #header .header-inner #nav ul a.contact.current {
    border: 1px solid #fff;
  }
  /* line 458, ../sass/common.scss */
  #header .header-inner #nav ul a.contact:hover:before, #header .header-inner #nav ul a.contact.current:before {
    width: 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 427, ../sass/common.scss */
  #header .header-inner #nav ul a.contact {
    border: none;
    line-height: 1em;
    padding: 0;
    margin-top: 0;
  }
  /* line 468, ../sass/common.scss */
  #header .header-inner #nav ul a.contact span {
    font-size: 2.7rem;
    font-family: "GeorginaDemo-Regular";
    font-weight: bold;
    color: #004cca;
  }
  /* line 473, ../sass/common.scss */
  #header .header-inner #nav ul a.contact span.sp {
    font-size: 1rem;
    font-family: "notosans_cjk";
    color: #434343;
  }
}

/* line 487, ../sass/common.scss */
#contents {
  opacity: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
/* line 493, ../sass/common.scss */
#contents.fade {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  /* line 498, ../sass/common.scss */
  #footer {
    text-align: center;
  }
}
/* line 502, ../sass/common.scss */
#footer .contact {
  background: url(../img/common/bg_footer_contact.jpg) center 0 no-repeat;
  background-size: cover;
  height: 460px;
}
@media screen and (max-width: 768px) {
  /* line 502, ../sass/common.scss */
  #footer .contact {
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 260px;
  }
}
/* line 512, ../sass/common.scss */
#footer .contact .texrArea {
  padding-top: 130px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  /* line 512, ../sass/common.scss */
  #footer .contact .texrArea {
    padding-top: 0;
  }
}
/* line 519, ../sass/common.scss */
#footer .contact .texrArea p {
  font-size: 28px;
  color: #1b1b1b;
  line-height: 3.6rem;
  text-align: center;
  font-family: "notosans_cjk";
}
@media screen and (max-width: 768px) {
  /* line 519, ../sass/common.scss */
  #footer .contact .texrArea p {
    font-size: 1.8rem;
    line-height: 1.5em;
  }
}
/* line 530, ../sass/common.scss */
#footer .contact .texrArea a {
  display: block;
  width: 220px;
  line-height: 45px;
  margin: 30px 0 0;
  color: #fff;
  background-color: #2153af;
  border-radius: 5px;
  left: 50%;
  margin-left: -110px;
}
/* line 540, ../sass/common.scss */
#footer .contact .texrArea a:after {
  content: "";
  border: 2px solid #2153af;
  border-radius: 5px;
  position: absolute;
  top: -6px;
  left: 6px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}
/* line 554, ../sass/common.scss */
#footer .contact .texrArea a:hover {
  margin-top: 25px;
  margin-left: -105px;
}
/* line 557, ../sass/common.scss */
#footer .contact .texrArea a:hover:after {
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  /* line 530, ../sass/common.scss */
  #footer .contact .texrArea a {
    position: relative;
  }
}
/* line 568, ../sass/common.scss */
#footer .footerBottom {
  background-color: #0d43a8;
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  /* line 568, ../sass/common.scss */
  #footer .footerBottom {
    padding: 30px 0 20px;
  }
}
/* line 574, ../sass/common.scss */
#footer .footerBottom .inner {
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
  padding: 0 70px;
}
@media screen and (max-width: 768px) {
  /* line 574, ../sass/common.scss */
  #footer .footerBottom .inner {
    padding: 0 6.67%;
  }
}
/* line 582, ../sass/common.scss */
#footer .footerBottom .inner .logo {
  float: left;
}
@media screen and (max-width: 768px) {
  /* line 582, ../sass/common.scss */
  #footer .footerBottom .inner .logo {
    float: none;
  }
}
/* line 587, ../sass/common.scss */
#footer .footerBottom .inner .logo img {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  /* line 587, ../sass/common.scss */
  #footer .footerBottom .inner .logo img {
    width: 45px;
    margin-bottom: 16px;
  }
}
/* line 594, ../sass/common.scss */
#footer .footerBottom .inner .logo p {
  color: #fff;
}
/* line 596, ../sass/common.scss */
#footer .footerBottom .inner .logo p.address {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  /* line 596, ../sass/common.scss */
  #footer .footerBottom .inner .logo p.address {
    font-size: 1rem;
    line-height: 1.6em;
  }
  /* line 601, ../sass/common.scss */
  #footer .footerBottom .inner .logo p.address small {
    margin-top: 10px;
  }
}
/* line 606, ../sass/common.scss */
#footer .footerBottom .inner .logo p.address .white a {
  color: #fff;
}
/* line 613, ../sass/common.scss */
#footer .footerBottom .inner .banner {
  float: right;
}
@media screen and (max-width: 768px) {
  /* line 613, ../sass/common.scss */
  #footer .footerBottom .inner .banner {
    float: none;
  }
}
/* line 619, ../sass/common.scss */
#footer .footerBottom .inner .subarea {
  overflow: hidden;
  width: 100%;
}
/* line 622, ../sass/common.scss */
#footer .footerBottom .inner .subarea ul {
  float: left;
}
@media screen and (max-width: 768px) {
  /* line 622, ../sass/common.scss */
  #footer .footerBottom .inner .subarea ul {
    display: flex;
    justify-content: space-between;
    float: none;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
  }
  /* line 631, ../sass/common.scss */
  #footer .footerBottom .inner .subarea ul:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 2px;
  }
}
/* line 641, ../sass/common.scss */
#footer .footerBottom .inner .subarea ul li {
  float: left;
  margin-right: 20px;
  padding-left: 12px;
  position: relative;
}
@media screen and (max-width: 768px) {
  /* line 641, ../sass/common.scss */
  #footer .footerBottom .inner .subarea ul li {
    float: none;
    margin-right: 0;
  }
}
/* line 650, ../sass/common.scss */
#footer .footerBottom .inner .subarea ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
}
@media screen and (max-width: 768px) {
  /* line 650, ../sass/common.scss */
  #footer .footerBottom .inner .subarea ul li:before {
    top: 7px;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #fff;
  }
}
/* line 670, ../sass/common.scss */
#footer .footerBottom .inner .subarea ul a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  /* line 670, ../sass/common.scss */
  #footer .footerBottom .inner .subarea ul a {
    font-size: 1.1rem;
  }
}
/* line 677, ../sass/common.scss */
#footer .footerBottom .inner .subarea p {
  float: right;
}
/* line 679, ../sass/common.scss */
#footer .footerBottom .inner .subarea p small {
  color: #fff;
}

/* line 691, ../sass/common.scss */
.backstretch {
  background-position: center top;
  background-size: cover;
}
