@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  word-wrap: break-word;
}

input, textarea {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  font-weight: 500;
  color: #333;
}

@media only screen and (min-width: 992px) {
  main {
    margin-top: 90px;
  }
}

img {
  display: block;
}

.u-sp {
  display: block !important;
}
@media only screen and (min-width: 576px) {
  .u-sp {
    display: none !important;
  }
}

.u-tab {
  display: none !important;
}
@media only screen and (min-width: 576px) {
  .u-tab {
    display: block !important;
  }
}

.u-pc {
  display: none !important;
}
@media only screen and (min-width: 992px) {
  .u-pc {
    display: block !important;
  }
}

@media only screen and (min-width: 992px) {
  .sp {
    display: none !important;
  }
}

.c-txt-left {
  text-align: left;
}

.c-txt-center {
  text-align: center;
}

.c-txt-right {
  text-align: right;
}

/* ==================================
レイアウト
===================================== */
.l-container {
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}
@media only screen and (min-width: 576px) {
  .l-container {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .l-container {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    box-sizing: content-box;
  }
}

@media only screen and (min-width: 576px) {
  .l-column {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.l-header {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  transition: 0.3s ease-in-out;
  background-color: #fff;
}
@media only screen and (min-width: 992px) {
  .l-header {
    height: 120px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }
}
.l-header__inner {
  height: 100%;
  padding-right: 10px;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .l-header__inner {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 45px 0 50px;
    justify-content: space-between;
    align-items: center;
  }
}
.l-header__logo h1 {
  font-size: 10px;
  letter-spacing: normal;
  line-height: 1.25;
  color: #888888;
  white-space: nowrap;
}
@media only screen and (max-width: 575px) {
  .l-header__logo h1 {
    transform: scale(0.8) translateX(-29px);
  }
}
@media only screen and (min-width: 992px) {
  .l-header__logo h1 {
    font-size: 14px;
    line-height: 2.8571428571;
  }
}
.l-header__logo img {
  width: 207px;
}
@media only screen and (min-width: 992px) {
  .l-header__logo img {
    width: 398px;
  }
}
.l-header .c-button {
  position: relative;
  background-color: transparent;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: #158d96;
  cursor: pointer;
}
@media only screen and (min-width: 992px) {
  .l-header .c-button {
    display: none;
  }
}
.l-header .p-hamburger {
  width: 50px;
  height: 50px;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.l-header .p-hamburger__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: inherit;
  transition: inherit;
  z-index: 2;
}
.l-header .p-hamburger__line::before,
.l-header .p-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}
.l-header .p-hamburger__line::before {
  top: -7px;
}
.l-header .p-hamburger__line::after {
  top: 7px;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line {
  background-color: transparent;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::before,
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  top: 0;
  background-color: #244474;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #fff;
}
.l-header .p-hamburger[aria-expanded=true] .p-hamburger__line::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #fff;
}
.l-header .u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
@media only screen and (max-width: 991px) {
  .l-header__nav {
    height: calc(100vh - 60px);
    padding-top: 10px;
    padding-bottom: 75px;
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    overflow-y: scroll;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 991px) {
  .l-header__nav .l-header__list {
    margin-bottom: 40px;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav .l-header__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 20px;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav .l-header__list li:not(:last-child) {
    position: relative;
  }
  .l-header__nav .l-header__list li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    right: -18px;
    background-color: #000;
  }
}
@media only screen and (min-width: 992px) and (min-width: 992px) {
  .l-header__nav .l-header__list li:not(:last-child)::after {
    display: none;
  }
}
.l-header__nav .l-header__list li a {
  padding: 15px 0;
  font-size: 20px;
  line-height: 1.9;
  text-align: center;
  color: #333;
  border-bottom: 1px solid #e4e9ef;
  display: block;
}
@media only screen and (min-width: 992px) {
  .l-header__nav .l-header__list li a {
    padding: 5px;
    font-size: 18px;
    line-height: 1.4444444444;
    color: #333;
    border: none;
    position: relative;
    display: inline-block;
    transition: 0.3s ease-in-out;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav .l-header__list li a::after {
    content: "";
    width: 90%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 5%;
    background-color: #e4e9ef;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: 0.2s ease-in-out;
  }
}
@media only screen and (min-width: 992px) {
  .l-header__nav .l-header__list li a:hover::after {
    transform: scale(1, 1);
  }
}

body.is-drawerActive {
  overflow: hidden;
}
body.is-drawerActive .l-header {
  background-color: #fff;
}
body.is-drawerActive .l-header .l-header__logo img:nth-child(1) {
  display: block;
}
body.is-drawerActive .l-header .l-header__logo img:nth-child(2) {
  display: none;
}
body.is-drawerActive .l-header__nav {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  padding: 25px 0;
  background-color: #158d96;
}
.l-footer__copyright {
  font-size: 12px;
  line-height: 2.1666666667;
  text-align: center;
  color: #fff;
  display: block;
}

.c-bg {
  background-color: #f4f8f8;
}

html {
  scroll-behavior: smooth;
}

.p-mv {
  position: relative;
  z-index: 2;
}

.btn--fixed {
  /*max-width: 325px;*/
  width: 100%;
  /*width: 87%;*/
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 576px) {
  .btn--fixed {
    display: none;
  }
}
.btn--fixed.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.p-img--01 {
  margin-top: -14vw;
}
@media only screen and (min-width: 576px) {
  .p-img--01 {
    margin-top: -5.5vw;
  }
}

.p-wrap--01 {
  padding-top: 6vw;
  background: center/cover no-repeat url(../img/bg_01_sp.jpg);
}
@media only screen and (min-width: 576px) {
  .p-wrap--01 {
    padding-top: 4vw;
    background-image: url(../img/bg_01.jpg);
  }
}

.p-img--04 {
  position: relative;
}
.p-img--04 .btn--01 {
  width: 87%;
  position: absolute;
  bottom: 5.0955414013%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 576px) {
  .p-img--04 .btn--01 {
    width: 34%;
    bottom: 12.9426129426%;
  }
}

.p-img--04-2 {
  position: relative;
  margin-top: -4.5333333333%;
}
@media only screen and (min-width: 576px) {
  .p-img--04-2 {
    margin-top: -2.2135416667%;
  }
}
.p-img--04-2 .btn--03 {
  margin-top: -2.5390625%;
  width: 87.7333333333%;
  position: absolute;
  bottom: 3.6%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 576px) {
  .p-img--04-2 .btn--03 {
    width: 32.9427083333%;
    bottom: 8.9591567852%;
  }
}

.p-img--05 {
  width: 97%;
  margin: 0 auto 10vw;
}
@media only screen and (min-width: 576px) {
  .p-img--05 {
    width: 67.5%;
    margin-bottom: 3.5vw;
  }
}

.p-img--06 {
  width: 87%;
  margin: 0 auto 8vw;
}
@media only screen and (min-width: 576px) {
  .p-img--06 {
    width: 66%;
    margin-bottom: -2.5vw;
    transform: translateX(1%);
  }
}

.p-img--08 {
  position: relative;
  z-index: 2;
}

.p-img--09 {
  position: relative;
}
@media only screen and (min-width: 576px) {
  .p-img--09 {
    margin-top: -15.0390625%;
  }
}
.p-img--09 .btn--01 {
  width: 87%;
  position: absolute;
  bottom: 9.756097561%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 576px) {
  .p-img--09 .btn--01 {
    width: 34%;
    bottom: 11.6100766703%;
  }
}

.p-img--09-2 {
  margin-top: -4.5333333333%;
  position: relative;
}
@media only screen and (min-width: 576px) {
  .p-img--09-2 {
    margin-top: -2.5390625%;
  }
}
.p-img--09-2 .btn--03 {
  margin-top: -2.5390625%;
  width: 87.7333333333%;
  position: absolute;
  bottom: 3.6%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 576px) {
  .p-img--09-2 .btn--03 {
    width: 32.9427083333%;
    bottom: 8.9591567852%;
  }
}

@media only screen and (min-width: 576px) {
  .p-wrap--02 {
    background: top/contain no-repeat url(../img/bg_02.jpg);
  }
}

@media only screen and (min-width: 576px) {
  .p-img--11 {
    position: relative;
    z-index: 2;
  }
}

.p-img--12 {
  margin-top: -84vw;
}
@media only screen and (min-width: 576px) {
  .p-img--12 {
    margin-top: -6.5vw;
  }
}

.p-img--18 {
  position: relative;
}
.p-img--18 .btn--01 {
  width: 87.2%;
  position: absolute;
  bottom: 9.512195122%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 576px) {
  .p-img--18 .btn--01 {
    width: 33.984375%;
    bottom: 14.3835616438%;
  }
}

.p-img--18-2 {
  position: relative;
  margin-top: -4.5333333333%;
}
@media only screen and (min-width: 576px) {
  .p-img--18-2 {
    margin-top: -2.5390625%;
  }
}
.p-img--18-2 .btn--03 {
  margin-top: -2.5390625%;
  width: 87.7333333333%;
  position: absolute;
  bottom: 3.6%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 576px) {
  .p-img--18-2 .btn--03 {
    width: 32.9427083333%;
    bottom: 8.9591567852%;
  }
}

.p-img--19 {
  scroll-margin-top: 90px;
}
@media only screen and (max-width: 768px) {
  .p-img--19 {
    scroll-margin-top: initial;
  }
}

.p-img--19-2 {
  position: relative;
}
.p-img--19-2 .btn--04 {
  margin-top: -2.5390625%;
  width: 87.7333333333%;
  position: absolute;
  bottom: 1.8467852257%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 576px) {
  .p-img--19-2 .btn--04 {
    width: 32.9427083333%;
    bottom: 4.0669856459%;
  }
}

.p-img--22 {
  position: relative;
}
.p-img--22 .btn--02 {
  width: 87%;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 576px) {
  .p-img--22 .btn--02 {
    width: 34%;
    bottom: 14.3835616438%;
  }
}

.p-img--22-2 {
  position: relative;
  margin-top: -4.5333333333%;
}
@media only screen and (min-width: 576px) {
  .p-img--22-2 {
    margin-top: -2.5390625%;
  }
}
.p-img--22-2 .btn--03 {
  margin-top: -2.5390625%;
  width: 87.7333333333%;
  position: absolute;
  bottom: 3.6%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 576px) {
  .p-img--22-2 .btn--03 {
    width: 32.9427083333%;
    bottom: 8.9591567852%;
  }
}

.p-faq {
  padding: 5vw 0 16vw;
  background-color: #e1efef;
}
@media only screen and (min-width: 576px) {
  .p-faq {
    padding: 4.2vw 0 6.5vw;
  }
}
.p-faq__ttl {
  width: 38%;
  margin: 0 auto 4vw;
}
@media only screen and (min-width: 576px) {
  .p-faq__ttl {
    width: 13.6%;
    margin-bottom: 3.3vw;
  }
}
.p-faq__list {
  width: 86%;
  margin: 0 auto;
}
@media only screen and (min-width: 576px) {
  .p-faq__list {
    width: 52%;
  }
}
.p-faq__list dt {
  padding: 2px 3%;
  font-family: "Zen Old Mincho", serif;
  font-size: 4vw;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #009cc6;
}
@media only screen and (min-width: 576px) {
  .p-faq__list dt {
    padding: 0 2%;
    font-size: 1.6vw;
  }
}
.p-faq__list dd {
  padding: 5px 4%;
  font-size: 3.2vw;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #465c5e;
  background-color: #f2f09e;
}
@media only screen and (min-width: 576px) {
  .p-faq__list dd {
    padding: 10px 3.2%;
    font-size: 1.15vw;
  }
}
.p-faq__list dd a {
  color: #465c5e;
  border-bottom: 1px solid #465c5e;
}
.p-faq__list dd + dt {
  margin-top: 3vw;
}
@media only screen and (min-width: 576px) {
  .p-faq__list dd + dt {
    margin-top: 2vw;
  }
}

.l-header {
  width: 100%;
  height: 90px;
  padding: 0 20px 0 30px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-header {
    display: none;
  }
}
.l-header .l-header__logo {
  width: 74px;
}
.l-header .btn--01 {
  max-width: 325px;
}

.l-footer {
  padding: 40px 0;
  background-color: #00bfd3;
}
@media only screen and (min-width: 576px) {
  .l-footer {
    padding: 85px 0 65px;
  }
}
.l-footer .logo {
  max-width: 130px;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 576px) {
  .l-footer .logo {
    max-width: 170px;
    margin-bottom: 90px;
  }
}
.l-footer__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media only screen and (min-width: 576px) {
  .l-footer__list {
    max-width: 1000px;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.l-footer__list li {
  text-align: center;
}
.l-footer__list li a {
  font-weight: 400;
  color: #fff;
}
@media only screen and (min-width: 576px) {
  .l-footer__list li a {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */


#stalker-btn {
  display: block; /* 初期は非表示 */
  position: fixed; /* 画面に固定 */
  bottom: 30px; /* 下から30px */
  right: 30px; /* 右から30px */
  z-index: 1000; /* 他の要素より前面に */
  width: 200px; /* サイズを調整 */
}
@media screen and (max-width: 768px) {
  #stalker-btn {
    display: none; /* PC表示時に表示 */
  }
}

