@charset "UTF-8";
/* マップ型変数breakpointsを定義 */
/* ====================================================
// common - 共通
==================================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  line-height: 1.7;
  color: #333;
  background-image: url(../img/bg3.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 4.5vw;
    background: none;
  }
}

a {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

a:hover {
  opacity: .8;
}

img {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.wrapper {
  width: 72rem;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .wrapper {
    width: 100%;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 1rem 1rem #00000020;
          box-shadow: 0 0 1rem 1rem #00000020;
}

.container {
  padding: 7rem 0 0;
  width: 72rem;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding-top: 13.8vw;
  }
}

.inner {
  padding: 0 2rem;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 3vw;
  }
}

.yellow {
  color: #FFE85D;
}

.pink {
  color: #f44c57;
}

.green {
  color: #06C655;
}

.bold {
  font-weight: bold;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #FFE85D));
  background: linear-gradient(transparent 70%, #FFE85D 0%);
  display: inline;
  padding: 0;
}

.marker-bk {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(0%, #333));
  background: linear-gradient(transparent 90%, #333 0%);
  display: inline;
  padding: .6rem .4rem;
}

.section {
  padding: 8rem 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 12vw 0;
  }
}

.title {
  width: 50%;
  margin: 0 auto 4rem;
}

@media screen and (max-width: 767px) {
  .title {
    margin-bottom: 6vw;
  }
}

.title.-small {
  width: 36%;
}

.microCopy {
  width: 90%;
  margin: 0 auto;
}

.yureru-s {
  -webkit-animation: yureru-s 2s infinite;
          animation: yureru-s 2s infinite;
}

@-webkit-keyframes yureru-s {
  0% {
    -webkit-transform: translate(2px, 0px);
            transform: translate(2px, 0px);
  }
  5% {
    -webkit-transform: translate(-2px, 0px);
            transform: translate(-2px, 0px);
  }
  10% {
    -webkit-transform: translate(2px, 0px);
            transform: translate(2px, 0px);
  }
  15% {
    -webkit-transform: translate(-2px, 0px);
            transform: translate(-2px, 0px);
  }
  20% {
    -webkit-transform: translate(2px, 0px);
            transform: translate(2px, 0px);
  }
  25% {
    -webkit-transform: translate(-2px, 0px);
            transform: translate(-2px, 0px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

@keyframes yureru-s {
  0% {
    -webkit-transform: translate(2px, 0px);
            transform: translate(2px, 0px);
  }
  5% {
    -webkit-transform: translate(-2px, 0px);
            transform: translate(-2px, 0px);
  }
  10% {
    -webkit-transform: translate(2px, 0px);
            transform: translate(2px, 0px);
  }
  15% {
    -webkit-transform: translate(-2px, 0px);
            transform: translate(-2px, 0px);
  }
  20% {
    -webkit-transform: translate(2px, 0px);
            transform: translate(2px, 0px);
  }
  25% {
    -webkit-transform: translate(-2px, 0px);
            transform: translate(-2px, 0px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}

.wave {
  margin-bottom: 6rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .wave {
    margin-bottom: 12vw;
  }
}

.wave.-nomb {
  margin-bottom: 0;
}

.wave.-mt {
  margin-top: -4rem;
}

@media screen and (max-width: 767px) {
  .wave.-mt {
    margin-top: -10vw;
  }
}

.wave.-mt2 {
  margin-top: -3rem;
}

@media screen and (max-width: 767px) {
  .wave.-mt2 {
    margin-top: -2vw;
  }
}

/* ====================================================
// header - ヘッダー
==================================================== */
.header {
  width: 72rem;
  height: 7rem;
  background-color: #fff;
  -webkit-box-shadow: 0 .3rem .3rem #00000020;
          box-shadow: 0 .3rem .3rem #00000020;
  position: fixed;
  z-index: 999;
}

@media screen and (max-width: 767px) {
  .header {
    width: 100%;
    height: 13.8vw;
  }
}

.header__inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
  height: 100%;
}

.header__logo {
  -ms-flex-preferred-size: 17%;
      flex-basis: 17%;
}

@media screen and (max-width: 767px) {
  .header__logo {
    -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
  }
}

.header__logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}

.drawerBtn {
  cursor: pointer;
  position: absolute;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 7rem;
  height: 7rem;
  right: 0;
}

@media screen and (max-width: 767px) {
  .drawerBtn {
    width: 13.8vw;
    height: 13.8vw;
  }
}

.drawerBtn::after {
  content: "";
  width: 11rem;
  height: 11rem;
  background-image: url(../img/menu.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
}

@media screen and (max-width: 767px) {
  .drawerBtn::after {
    width: 22.8vw;
    height: 22.8vw;
  }
}

.drawerBtn i {
  width: 4rem;
  height: .3rem;
  margin: auto;
  display: block;
  position: absolute;
  top: 50%;
  background-color: #333;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 767px) {
  .drawerBtn i {
    width: 7.5vw;
    height: 0.6vw;
  }
}

.drawerBtn__line-top {
  -webkit-transform: rotate(0) translateY(-1.4rem);
          transform: rotate(0) translateY(-1.4rem);
}

@media screen and (max-width: 767px) {
  .drawerBtn__line-top {
    -webkit-transform: rotate(0) translateY(-1.6vw);
            transform: rotate(0) translateY(-1.6vw);
  }
}

.drawerBtn.is-checked .drawerBtn__line-top {
  -webkit-transform: rotate(-45deg) translateY(0);
          transform: rotate(-45deg) translateY(0);
}

.drawerBtn.is-checked .drawerBtn__line-middle {
  background: transparent;
}

.drawerBtn__line-bottom {
  -webkit-transform: rotate(0) translateY(1.4rem);
          transform: rotate(0) translateY(1.4rem);
}

@media screen and (max-width: 767px) {
  .drawerBtn__line-bottom {
    -webkit-transform: rotate(0) translateY(1.6vw);
            transform: rotate(0) translateY(1.6vw);
  }
}

.drawerBtn.is-checked .drawerBtn__line-bottom {
  -webkit-transform: rotate(45deg) translateY(0);
          transform: rotate(45deg) translateY(0);
}

.drawerContent {
  position: absolute;
  display: block;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  background: #fffaf6;
  height: 100vh;
  z-index: -1;
  -webkit-transition: all .5s;
  transition: all .5s;
  padding: 14rem 10rem;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .drawerContent {
    padding: 20.5vw 8.5vw;
  }
}

.drawerContent.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.drawerBg {
  display: none;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 80rem;
  height: 100%;
  background: #fffaf6;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

@media screen and (max-width: 767px) {
  .drawerBg {
    width: 100%;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.drawerBg.is-checked {
  display: block;
}

.header__nav {
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .header__nav {
    margin-bottom: 6vw;
  }
}

.headerNav__item {
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .headerNav__item {
    margin-bottom: 1vw;
  }
}

.headerNav__item a {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 1rem 0;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .headerNav__item a {
    padding: 3vw 0;
  }
}

/* ====================================================
// firstView - ファーストビュー
==================================================== */
.firstView {
  position: relative;
}

.firstView__inner {
  margin: 0 auto;
  overflow: hidden;
}

/* ====================================================
// slideShow - スライドショー
==================================================== */
.slideShow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 12.3rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .slideShow {
    height: 23.25vw;
  }
}

.slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slide__content {
  width: 17.3rem;
  height: 12.3rem;
}

@media screen and (max-width: 767px) {
  .slide__content {
    width: 35.75vw;
    height: 23.25vw;
  }
}

.slide__content .img {
  position: relative;
  overflow: hidden;
  padding-top: 71.09%;
}

.slide__content .img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop-slide 50s infinite linear 1s both;
          animation: loop-slide 50s infinite linear 1s both;
}

@-webkit-keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

/* ====================================================
// qa - よくある質問
==================================================== */
.qa {
  background-image: linear-gradient(90deg, transparent 24px, #ffe3a7 0), linear-gradient(0deg, transparent 24px, #ffe3a7 0);
  background-size: 25px 100%, 100% 25px;
  background-position: left top;
  background-repeat: repeat-x, repeat-y;
}

@media screen and (max-width: 767px) {
  .qa {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(3vw, transparent), color-stop(0, #ffe3a7)), -webkit-gradient(linear, left bottom, left top, color-stop(3vw, transparent), color-stop(0, #ffe3a7));
    background-image: linear-gradient(90deg, transparent 3vw, #ffe3a7 0), linear-gradient(0deg, transparent 3vw, #ffe3a7 0);
    background-size: 3.2vw 100%, 100% 3.2vw;
  }
}

.qa__item:not(:last-child) {
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .qa__item:not(:last-child) {
    margin-bottom: 8vw;
  }
}

.qa__question {
  cursor: pointer;
  padding: 2rem 5rem 2rem 2rem;
  position: relative;
  font-weight: 500;
  background-color: #fff;
  border-radius: 2rem;
  border: .4rem solid #FF6D1D;
  -webkit-box-shadow: 0 0 1rem #acacac;
          box-shadow: 0 0 1rem #acacac;
}

@media screen and (max-width: 767px) {
  .qa__question {
    padding: 4vw 10vw 4vw 4vw;
  }
}

.qa__question::after {
  content: "";
  display: inline-block;
  background-image: url(../img/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 50%;
  right: 1.2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .qa__question::after {
    width: 4.6vw;
    height: 4.6vw;
    right: 3vw;
  }
}

.qa__question.is-active::after {
  background-image: url(../img/minus.svg);
  background-position: center;
}

.qa__question,
.qa__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
}

.qa__question .text,
.qa__answer .text {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.question,
.answer {
  -ms-flex-preferred-size: 7%;
      flex-basis: 7%;
  margin-top: -0.4rem;
}

@media screen and (max-width: 767px) {
  .question,
  .answer {
    margin-top: -.5vw;
  }
}

.qa__answer {
  padding: 2rem 0;
  display: none;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .qa__answer {
    padding: 4vw 0;
  }
}

/* ====================================================
// cta
==================================================== */
.cta {
  position: relative;
}

.cta__btn {
  width: 90%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 83rem;
}

@media screen and (max-width: 767px) {
  .cta__btn {
    bottom: 115vw;
  }
}

.cta__btn.-tel {
  bottom: 8rem;
}

@media screen and (max-width: 767px) {
  .cta__btn.-tel {
    bottom: 12vw;
  }
}

/* ====================================================
// access
==================================================== */
.access {
  background-color: #fcfcfc;
}

.map {
  width: 90%;
  margin: 0 auto 4rem;
}

@media screen and (max-width: 767px) {
  .map {
    margin-bottom: 8vw;
  }
}

.map__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 65%;
}

.map__wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.access__logo {
  width: 26%;
  margin: 0 auto 2rem;
}

@media screen and (max-width: 767px) {
  .access__logo {
    width: 30%;
    margin-bottom: 4vw;
  }
}

.access__info {
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .access__info {
    width: 80%;
  }
}

.access__info a {
  text-decoration: underline;
}

/* ====================================================
// float - フロートボタン
==================================================== */
.float {
  z-index: 99;
  display: none;
}

/* ====================================================
// footer - フッター
==================================================== */
.footer {
  background-color: #FF6D1D;
  padding: 4rem 0;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: .1rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .footer {
    font-size: 3.5vw;
    padding: 6vw 0;
  }
}

.footer__link {
  margin-bottom: 1rem;
}

.contact {
  margin-bottom: 1rem;
}

.contact a {
  display: inline-block;
  padding: .1rem;
  border-bottom: 1px solid #fff;
}
