@charset "UTF-8";
/*----------------------------------------
	reset.scss
---------------------------------------- */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, address, em, img, picture,
small, strong, sub, sup, b, i, dl, dt, dd, ol, ul, li,
article, aside, figure, footer, header, main, menu, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: normal;
  vertical-align: baseline;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header, footer, article, section, picture, aside, nav, menu, figure, figcaption {
  display: block;
}

li {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*----------------------------------------
	base.scss
---------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
  overflow-x: hidden;
}

.fv,
.swipe-panel,
.scroll-contents {
  height: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  /* 勢いよくスクロールしても必ずここで止まる */
}

.l-footer {
  scroll-snap-align: end;
}

body {
  position: relative;
  margin: 0 auto;
  font-family: "NotoSansCJKjp", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
  color: #000;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
}

a {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a:link, a:visited {
  color: #000;
}

a:focus,
*:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*	mediaqueries
-------------------*/
@media print, screen and (min-width: 750px) {
  a[href^="tel:"] {
    color: #000;
    pointer-events: none;
  }
}
/*// ============================================================
// base
// ============================================================*/
/*----------------------------------------
wrapper.scss
---------------------------------------- */
.l-wrapper {
  position: relative;
  min-height: 100%;
}
.l-wrapper.-fixed {
  height: 100vh;
  overflow: hidden;
}

.l-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (min-width: 576px) and (max-width: 1279px) {
  .l-inner {
    padding: 0 3.4375vw;
  }
}

/*----------------------------------------
	footer.scss
---------------------------------------- */
.l-footer {
  max-width: 750px;
  margin: 0 auto;
}
.l-footer img {
  height: 30px;
}

/*// ============================================================
// layout
// ============================================================*/
/*----------------------------------------
	module/breakpoint.scss
---------------------------------------- */
@media screen and (max-width: 575px) {
  .m-tab-only,
.m-pc-only,
.m-tabpc-only {
    display: none !important;
  }

  .m-sp-only {
    display: block !important;
  }
}
@media screen and (min-width: 576px) and (max-width: 1279px) {
  .m-sp-only,
.m-pc-only {
    display: none !important;
  }

  .m-tab-only {
    display: block !important;
  }
}
@media print, screen and (min-width: 1280px) {
  .m-sp-only,
.m-tab-only,
.m-sptab-only {
    display: none !important;
  }

  .m-tabpc-only,
.m-pc-only {
    display: block !important;
  }
}
/*----------------------------------------
	module/video.scss
---------------------------------------- */
.m-video {
  width: 100%;
  max-width: 750px;
  height: auto;
}
.m-video video {
  width: 100%;
}

/*----------------------------------------
	module/marker.scss
---------------------------------------- */
.m-marker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 10px;
}
.m-marker__item {
  width: 56px;
}
.m-marker__item img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 750px) {
  .m-marker {
    gap: 2.6666666667%;
  }
  .m-marker__item {
    width: 7.4666666667vw;
  }
}

@-webkit-keyframes markerExtend {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes markerExtend {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.markerExtend {
  -webkit-animation-name: markerExtend;
  animation-name: markerExtend;
}

@-webkit-keyframes markerExtendcol {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes markerExtendcol {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    -webkit-transform: translate3d(-5%, 0, 0);
    transform: translate3d(-5%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.markerExtendcol {
  -webkit-animation-name: markerExtendcol;
  animation-name: markerExtendcol;
}

/*// ============================================================
// modules
// ============================================================*/