@charset "UTF-8";
/* arguments inittial */
/* font style */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  text-size-adjust: 100%;
  counter-reset: number 0;
  color: #000;
  letter-spacing: 0.05em;
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  font-size: 14px;
  font-feature-settings: "palt";
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

img {
  max-width: 100%;
  vertical-align: top;
}

.ssp {
  display: block !important;
}

@media screen and (min-width: 360px) {
  .ssp {
    display: none !important;
  }
}

.sp {
  display: block !important;
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: none !important;
}

@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.btn {
  line-height: 16px;
  box-sizing: border-box;
  padding: 8px;
}

@media screen and (min-width: 1080px) {
  .btn {
    padding: 10px;
  }
}

.btn:link,
.btn:visited {
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  transition: all 0.5s;
  text-align: center;
}

.btn-white {
  color: #3a3732;
  background: #fff;
}

.btn-white:after {
  background: rgba(255, 255, 255, 0.7);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.7);
}

.btn-gold {
  background: #7fb2ad;
  color: #fff;
}

.btn-gold:after {
  background: #7fb2ad;
}

.btn-gold:hover {
  background: #0075c0;
  color: #fff;
}

.btn-orange {
  background: #d89265;
  color: #fff;
}

.btn-orange:after {
  background: #d89265;
}

.btn-orange:hover {
  background: #0075c0;
  color: #fff;
}

.btn-blue {
  background: #b8f0f2;
  color: #3a3732;
  border-radius: 8px;
}

.btn-blue:after {
  background: #f3fed8;
}

.btn-blue:hover {
  background: #0075c1;
  color: #fff;
}

.btn-underline {
  border-bottom: 2px dashed #3a3732;
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}

.btn-bottom-animation-1 {
  animation: comeFromBottom 1s ease-out 0.8s;
}

@keyframes comeFromBottom {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn::after {
  content: "";
  text-decoration: none;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  display: inline-block;
  z-index: -1;
  transition: all 0.5s;
}

.btn-animation-1:hover::after {
  transform: scaleX(1.2) scaleY(1.2);
  opacity: 0;
}

.fv {
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-color: #fff;
  height: calc(100vh - 100px);
  min-height: 550px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fv {
    height: calc(100vh - 100px);
  }
}

.pagetop {
  display: flex;
  position: fixed;
  bottom: 100px;
  right: -61px;
  z-index: 95;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.5s;
}

@media (min-width: 768px) {
  .pagetop {
    width: 60px;
    height: 60px;
    bottom: 10px;
  }
  .pagetop:hover {
    opacity: 0.5;
  }
}

@media print {
  .pagetop {
    display: none;
  }
}

.aozora {
  font-family: "あおぞら明朝 bold";
}

@media (min-width: 768px) {
  .cta {
    padding: 50px 15px 80px;
  }
}

.cta-ul {
  display: none;
}

@media (min-width: 768px) {
  .cta-ul {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
}

.cta-request, .cta-reserve {
  padding: 4px 8px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  border: solid 2px #fff;
  outline: solid 2px #fff;
  outline-offset: 1px;
  margin: 4px;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-request:hover, .cta-reserve:hover {
  outline-width: 4px;
}

.cta-request.bcta, .cta-reserve.bcta {
  padding: 12px 64px;
  font-size: 24px;
  line-height: 2.4;
}

.cta-request {
  background: #f04424;
  outline: solid 2px #f04424;
}

.cta-reserve {
  background: #f8c058;
  outline: solid 2px #f8c058;
}

.cta .btn {
  font-size: 26px;
  padding: 20px;
}

.marker {
  display: inline;
  position: relative;
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: all 0.5s ease-in-out;
}

.marker.inview {
  background-size: 100% 100%;
}

.notice {
  font-size: 10px;
  padding: 0 15px;
  color: #808080;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.caption {
  font-size: 10px;
  color: #4d4d4d;
  text-align: left;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  .caption {
    text-align: center;
  }
}

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

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

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

.sup {
  font-size: 10px;
  vertical-align: top;
  letter-spacing: 0;
}

.anchor {
  display: block;
  padding-top: 60px;
  margin-top: -60px;
}

@media (min-width: 768px) {
  .anchor {
    padding-top: 110px;
    margin-top: -110px;
  }
}

.underline-red {
  text-decoration: underline;
  text-decoration-color: #ef7f67;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

.roboto-bold {
  font-weight: 700;
}

.shippori {
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-feature-settings: "palt";
  font-weight: normal;
}

.shippori-bold {
  font-weight: 700;
}

.date .week {
  font-size: 0.8em;
}

.small {
  font-size: 0.8em;
}

.small-m {
  font-size: 0.7em;
}

.big {
  font-size: 1.2em;
}

.big-m {
  font-size: 1.5em;
}

.bold {
  font-weight: 700;
}

.text-lightblue {
  color: #b7e7ee;
}

.text-skyblue {
  color: #55cada;
}

/*========= フェードイン ===============*/
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 40px);
  transition: 0.4s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn {
  opacity: 0;
  transition: 0.4s;
}

.fadeIn.is-show {
  opacity: 1;
}

/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/*# sourceMappingURL=common.css.map */