@charset "UTF-8";
:root {
  --primary: #2d74d4;
  --grey: #eee;
  --light-grey: #f4fafe;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Hiragino Kaku Gothic StdN";
  src: url("../font/HiraginoKakuGothicStdNW3.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Hiragino Kaku Gothic StdN";
  src: url("../font/HiraginoKakuGothicStdNW4.otf");
  font-weight: 400;
}
@font-face {
  font-family: "Hiragino Kaku Gothic StdN";
  src: url("../font/HiraginoKakuGothicStdNW6.otf");
  font-weight: 600;
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0,100px,0);
    opacity: 0;
    transform: translate3d(0,100px,0);
  }
  100% {
      -webkit-transform: translateZ(0);
      opacity: 1;
      transform: translateZ(0);
  }
}
@keyframes scrolldown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(330%);
  }
}
html:not(.responsive) {
  min-width: 1000px; /* viewport */
}

@media screen and (max-width: 767px) {
  html.responsive {
    --paddingWrap: 5vw;
    --paddingWrap-negative: calc(var(--paddingWrap) * -1.1);
  }
}

/*=============================================
 * body
 *=============================================*/
body {
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  text-align: justify;
  color: #000;
}
body::before {
  content: "";
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 116, 202)), to(rgb(0, 192, 182)));
  background: linear-gradient(to right, rgb(0, 116, 202), rgb(0, 192, 182));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}
@media screen and (max-width: 767px) {
  body.navOpen {
    overflow: hidden;
  }
  body.navOpen .menu_toggle {
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 32px;
  }
}

/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/
.fnt-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.fnt-meiryo {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fnt-notosans {
  font-family: "Noto Sans JP", sans-serif;
}

.fnt-roboto {
  font-family: "Roboto", sans-serif;
}

/*=============================================
 * <main>
 *=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.bg-parallax {
  position: relative;
  z-index: -1;
}
.bg-parallax .img-parallax {
  clip: rect(0, auto, auto, 0);
  margin-bottom: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.bg-parallax .img-parallax img {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.bg-lightgrey {
  background: var(--light-grey);
}

.bg-grey {
  background: var(--grey);
}

.txt-red {
  color: #ea2100;
}

@media all and (-ms-high-contrast: none) {
  p.btn a img, header .nav-fl a img {
    transition: opacity 0s ease !important;
    -moz-transition: opacity 0s ease !important;
    -webkit-transition: opacity 0s ease !important;
  }
  .btn-over img,
  .over-img img,
  img.over,
  img:not(.btn):not(.non-over),
  button img {
    opacity: 1;
    transform: translateX(0) translateZ(0);
    -moz-transform: translateX(0) translateZ(0);
    -webkit-transform: translateX(0) translateZ(0);
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
  }
}
@media screen and (max-width: 767px) {
  html.responsive .wrap {
    width: auto;
    max-width: 100%;
    padding: 0 var(--paddingWrap);
  }
  img {
    width: 100%;
  }
  .pc {
    display: none !important;
  }
  #pagetop {
    width: 50px;
    bottom: 10px;
    z-index: 99;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
.btn-style-1 {
  width: auto;
  max-width: 100%;
  min-height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #999;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0;
  position: relative;
  z-index: 0;
}
.btn-style-1:hover {
  text-decoration: none;
  opacity: 0.7;
}
.btn-style-1 > span {
  display: inline-block;
  padding: 0 20px;
  position: relative;
  z-index: 0;
}
.btn-style-1 > span::before {
  content: "";
  width: 8px;
  background: url("../img/shared/icon-arrow-right.png") center/contain no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .btn-style-1 {
    min-height: 70px;
    padding: 10px 20px;
    font-size: 20px;
  }
  .btn-style-1 > span {
    padding: 0 40px;
  }
  .btn-style-1 > span::before {
    width: 13px;
  }
}

.ttl-style-1 .jp {
  display: block;
  font-weight: 500;
  font-size: 7vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.ttl-style-1 .en {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 3.5vw;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--primary);
}
@media screen and (min-width: 768px) {
  .ttl-style-1 .jp {
    margin-top: 10px;
    font-size: 38px;
    line-height: 58px;
  }
  .ttl-style-1 .en {
    font-size: 22px;
    line-height: 40px;
  }
}

.item-style-1 {
  margin-top: 15vw;
}
.item-style-1 dl {
  margin-top: 10px;
}
.item-style-1 dl dt {
  font-weight: 500;
  font-size: 19px;
}
.item-style-1 dl dd ul {
  margin: 0 -15px;
}
.item-style-1 dl dd ul li {
  width: 50%;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.item-style-1 dl .dflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .item-style-1 {
    margin: 32px;
  }
  .item-style-1 dl {
    margin-top: 20px;
  }
  .item-style-1 dl dt {
    font-size: 22px;
  }
  .item-style-1 dl dd {
    margin-top: 14px;
    line-height: 28px;
  }
  .item-style-1 dl dd ul {
    margin: 0 -20px;
  }
  .item-style-1 dl dd ul li {
    padding: 0 20px;
  }
}

/*=============================================
 * <header>
 *=============================================*/
header {
  padding-top: 13vw;
}
header h1 {
  margin-top: 6vw;
  font-weight: 500;
  font-size: 8vw;
  letter-spacing: 0.025em;
}
header .logo img {
  width: 30vw;
}
header .logobox {
  padding-bottom: 21vw;
}
@media screen and (min-width: 768px) {
  header {
    padding-top: 135px;
  }
  header h1 {
    -ms-flex-item-align: center;
        align-self: center;
    margin: 15px 0 0px 26px;
    font-size: 46px;
    line-height: 78px;
  }
  header h1 br.sp {
    display: block !important;
  }
  header .logo img {
    width: auto;
  }
  header .logobox {
    padding-bottom: 133px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  header h1 br.sp {
    display: none !important;
  }
}

.page-heading {
  margin-top: 15vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-heading {
    margin-top: 50px;
  }
}

.menu_toggle {
  width: 100% !important;
  display: block;
  margin-top: 0;
  padding: 70px 0 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 97;
}
.menu_toggle .nav {
  text-align: center;
}
.menu_toggle .nav .nav-link {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  letter-spacing: 0.025em;
}
.menu_toggle .nav .nav-link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.menu_toggle .nav .nav-btn {
  margin-top: 10vw;
}
.menu_toggle .nav .nav-btn.btn-style-1 {
  min-height: 60px;
  font-size: 19px;
}
.menu_toggle .nav .nav-btn.btn-style-1 > span {
  padding-right: 35px;
}
.menu_toggle .nav .nav-btn.btn-style-1 > span::before {
  width: 16px;
}
@media screen and (max-width: 767px) {
  .menu_toggle {
    height: 100vh;
    min-height: 100%;
    float: right;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease, height 0s !important;
    transition: 0.5s ease, height 0s !important;
  }
}
@media screen and (min-width: 768px) {
  .menu_toggle {
    padding: 25px 0;
    background: rgba(255,255,255,0.6);
  }
  .menu_toggle .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .menu_toggle .nav .nav-link {
    margin-right: 49px;
    padding: 0;
    font-size: 16px;
  }
  .menu_toggle .nav .nav-link.nav-top {
    margin-right: 80px;
    position: relative;
  }
  .menu_toggle .nav .nav-link.nav-top::before {
    content: "";
    border-left: 1px solid;
    position: absolute;
    top: 9px;
    bottom: 6px;
    right: -41px;
  }
  .menu_toggle .nav .nav-btn {
    margin-top: 0;
  }
  .menu_toggle .nav .nav-btn.btn-style-1 {
    min-height: 50px;
    padding: 5px 20px 7px;
    font-size: 16px;
  }
  .menu_toggle .nav .nav-btn.btn-style-1 > span {
    padding: 0 32px 0 12px;
  }
  .menu_toggle .nav .nav-btn.btn-style-1 > span::before {
    width: 14px;
  }
}

.hamburger {
  position: fixed;
  z-index: 98;
  top: 0;
  right: 0;
  width: 100%;
  height: 50px;
  padding: 0 var(--paddingWrap) 10px;
  box-sizing: border-box;
  background: rgba(255,255,255,0.6);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  margin: 0;
  overflow: visible;
}
.hamburger .hamburger-box {
  width: 35px;
  height: 30px;
  display: block;
  position: relative;
}
.hamburger .hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger .hamburger-inner, .hamburger .hamburger-inner::after {
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger .hamburger-inner::after {
  content: "";
  display: block;
  bottom: -8px;
}
.hamburger.is-active {
  top: 10px;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/** Vortex Reverse **/
.hamburger--vortex-r .hamburger-inner {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::after {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
          transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

/*=============================================
 * <footer>
 *=============================================*/
footer .logo img {
  width: 23vw;
}
footer .tel {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.1em;
}
footer .tel .tel-number {
  font-size: 32px;
  letter-spacing: 0.1em;
}
footer .opening {
  margin-top: -8px;
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
footer .set {
  padding: 15vw 0 17vw;
  text-align: center;
}
footer .set .txt {
  margin-top: 5vw;
}
footer .set .btn-link {
  margin-top: 6vw;
}
footer .copyright {
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 116, 202)), to(rgb(0, 192, 182)));
  background: linear-gradient(to right, rgb(0, 116, 202), rgb(0, 192, 182));
  font-family: "Hiragino Kaku Gothic StdN", sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  footer .logo img {
    width: 95px;
  }
  footer .tel {
    margin-top: 26px;
    font-size: 28px;
    line-height: 48px;
  }
  footer .tel .tel-number {
    font-size: 46px;
  }
  footer .opening {
    margin-top: 1px;
    font-size: 16px;
  }
  footer .set {
    padding: 54px 0 73px;
  }
  footer .set .txt {
    margin-top: 36px;
    font-size: 20px;
    line-height: 30px;
  }
  footer .set .btn-link {
    margin-top: 36px;
  }
  footer .copyright {
    font-size: 12px;
    line-height: 28px;
  }
}

/*=============================================
 * key
 *=============================================*/
#key {
  min-height: 114vw;
  padding-left: var(--paddingWrap);
  box-sizing: border-box;
  position: relative;
}
#key .scrolldown {
  width: 1px;
  height: 30vw;
  display: block;
  background: #f0f4f9;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  overflow: hidden;
}
#key .scrolldown::before {
  content: '';
  width: 100%;
  height: 100%;
  background: #006ae4;
  animation: scrolldown 4s ease-in-out infinite;
  position: absolute;
  top: -55%;
  bottom: 0;
  left: 0;
  right: 0;
}
#key .img img, #key .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#key .img {
  height: 114vw;
}
@media screen and (min-width: 768px) {
  #key {
    min-height: 780px;
    padding-left: calc(50% - 640px);
  }
  #key .img {
    height: 780px;
  }
  #key .scrolldown {
    height: 170px;
  }
}