@charset "UTF-8";
/* Scss Document */
:root {
  --blue: #0c5ea4;
  --blue2: #7bbbf7;
  --blue3: #91caff;
  --blue4: #337db8;
  --navy: #1d1d1d;
  --main: #2a2a2a;
  --white: #ffffff;
  --white2: #f8f8f8;
  --grey: #f0f0f0;
}

html:not(.responsive) {
  width: 100%;
  /* viewport */
}

/*=============================================
 * body
 *=============================================*/
body {
  color: var(--main);
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 13px;
  line-height: 2.07;
  letter-spacing: 0;
  background: #FFF;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
}

/*=============================================
 * 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-kozuka {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-style: normal;
}

.fwr {
  font-weight: 400;
}

.fwm {
  font-weight: 500;
}

.fwb {
  font-weight: 700;
}

.fwh {
  font-weight: 900;
}

/*=============================================
 * .fnt - customs
 *=============================================*/
[class^=ico-inline] {
  display: inline-block;
  position: relative;
  line-height: 1;
}

.tc {
  text-align: center;
}

.tj {
  text-align: justify;
}

.tr {
  text-align: right;
}

.tl {
  text-align: left;
}

.fwb {
  font-weight: bold;
}

.db {
  display: block;
}

.disf {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.disf-between {
  justify-content: space-between;
}

.disf-j-center {
  justify-content: center;
}

.disf-a-center {
  align-items: center;
}

em {
  font-style: normal;
}

strong {
  font-weight: normal;
}

.slick-slider {
  z-index: 0;
}
.slick-slider .slick-dots {
  line-height: 0;
  text-align: center;
}
.slick-slider .slick-dots li {
  display: inline-block;
}
.slick-slider .slick-dots button {
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border-radius: 50%;
  background: #f2ecda;
  width: 7px;
  height: 7px;
  border: none;
}
.slick-slider .slick-dots button:hover {
  opacity: 0.8;
}
.slick-slider .slick-dots .slick-active button {
  background: #ca0349;
}
.slick-slider .slick-arrow {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  border: none;
  outline: none;
  border-radius: 50%;
  cursor: pointer;
  background: url("../img/shared/prev.png");
  background-position: center center;
  background-repeat: no-repeat, repeat;
  background-size: cover;
  z-index: 1;
}
.slick-slider .slick-arrow:hover {
  opacity: 0.8;
}
.slick-slider .slick-arrow.slick-prev {
  left: 0;
}
.slick-slider .slick-arrow.slick-next {
  right: 0;
  transform: rotate(180deg);
}

iframe {
  width: 100%;
  height: 100%;
}

.btn-global {
  display: block;
  text-align: center;
  box-sizing: border-box;
  background: var(--blue);
  color: #fff;
  border-radius: 60px;
  transition: all 0.3s ease;
}
.btn-global:hover {
  text-decoration: none;
}

.btn-contact {
  max-width: 346px;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: -0.02em;
  font-weight: 700;
  padding: 16px 0px 11px;
  margin-left: auto;
  margin-right: auto;
}

.ttl1 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
  text-align: center;
}
.ttl1.ttl-border:after {
  content: "";
  position: relative;
  display: block;
  margin: 0px auto;
  background: var(--blue);
  width: 45px;
  height: 3px;
}
@media screen and (min-width: 768px) {
  .ttl1 {
    font-size: 44px;
  }
  .ttl1.ttl-border:after {
    width: 91px;
    height: 6px;
  }
}

@media only screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .for-sp {
    display: none;
  }
  body {
    font-size: 24px;
    line-height: 1.917;
  }
  .slick-slider .slick-dots button {
    width: 15px;
    height: 15px;
  }
  .disf-pc {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  .btn-contact {
    font-size: 35px;
    max-width: 708px;
    padding: 32px 0px 23px;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .for-pc {
    display: none;
  }
}
/*=============================================
 * <main>
 *=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.wrap {
  width: auto;
  max-width: 953px;
}

/*=============================================
 * <header>
 *=============================================*/
header {
  position: relative;
}

#key {
  height: 90vw;
  background: var(--blue3);
}
#key .img-object{
  height: 100%;
}
@media screen and (min-width: 768px) {
  #key {
    height: 817px;
  }
}

.btn-contact-bottom {
  margin: 44px 5%;
}
@media screen and (min-width: 768px) {
  .btn-contact-bottom {
    margin: 88px 0px;
  }
}

/*=============================================
 * <footer>
 *=============================================*/
footer {
  text-align: center;
}
footer .inner {
  max-width: 1200px;
  margin: 0px auto;
  box-sizing: border-box;
}
footer .logo {
  width: 137px;
}
footer .col-left {
  background: var(--blue);
  color: var(--white2);
}
@media screen and (max-width: 767px) {
  footer .col-left {
    padding: 45px 5%;
  }
  footer .logo {
    margin: 0px auto;
  }
  footer nav {
    margin-top: 30px;
    justify-content: center;
  }
  footer address {
    color: var(--main);
    padding: 5px 5%;
  }
}
@media screen and (min-width: 768px) {
  footer {
    font-size: 16px;
    background: var(--blue);
    color: #fff;
    padding: 41px 0px 38px;
  }
  footer .inner {
    padding: 0px 20px;
  }
  footer nav {
    margin-left: 80px;
  }
}
@media screen and (max-width: 1000px) and (min-width: 768px) {
  footer {
    font-size: 14px;
  }
  footer .col-left nav {
    margin-left: 30px;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 30px, 0);
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
    transition: all 0.6s ease-out 0.1s;
  }
}
@keyframes fadeInUp {
  0% {
    -webkit-transform: translate3d(0, 30px, 0);
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
    transition: all 0.6s ease-out 0.1s;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.animated {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    -webkit-transition: none !important;
    animation: unset !important;
    transition: none !important;
  }
}