@charset "UTF-8";
:root {
  --color-primary: #fccf00;
  --color-secondary: #0b7c3e;
  --color-tx: #221714;
}

/* 基本のスタイル */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(1.5rem, 1.35vw, 2.6rem);
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.05rem;
  text-align: center;
  line-break: strict;
  color: var(--color-tx);
  overflow-x: hidden;
}

main {
  background-image: url(../img/bg-img.jpg);
  background-attachment: fixed;
  background-size: cover;
}

a {
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.maintext {
  text-align: center;
  font-size: clamp(1.4rem, 1.81vw, 2.6rem);
  line-height: 1.86;
}

.notion {
  font-size: clamp(1.3rem, 1.46vw, 2.1rem);
  font-weight: 300;
  border: solid 1px bl;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 599px) {
  .sp {
    display: block;
  }
}
.pc {
  display: block;
}

@media (max-width: 599px) {
  .pc {
    display: none;
  }
}
/* swiper */
.mainSwiper .swiper {
  width: 100%;
  height: 100%;
}
.mainSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mainSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 599px) {
  .mainSwiper .swiper-slide img {
    aspect-ratio: 66/59;
  }
}
.mainSwiper .swiper-pagination-bullet {
  background-color: #fff;
  margin: 0 8px !important;
}

/* ボタン */
.bt {
  color: var(--color-tx);
  border-radius: 100px;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-size: clamp(1.6rem, 1.93vw, 3.7rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  border: none;
  margin: 0 auto;
  padding-bottom: 0.51vw;
}

.bt.bt-primary {
  width: clamp(170px, 19.79vw, 380px);
  background-color: var(--color-primary);
}
.bt.bt-primary:hover {
  background-color: #f98200;
  color: #fff;
}
.bt.bt-primary:hover::after {
  border-color: transparent #fff #fff transparent;
}

.bt.bt-primary::after,
.bt.bt-secondary::after {
  content: "";
  width: clamp(12px, 1.25vw, 18px);
  height: clamp(12px, 1.25vw, 18px);
  border: solid 2px transparent;
  border-radius: 2px;
  border-color: transparent var(--color-tx) var(--color-tx) transparent;
  position: absolute;
  top: 52%;
  right: 7.51%;
  transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 599px) {
  .bt.bt-primary::after,
  .bt.bt-secondary::after {
    right: 10%;
  }
}

.bt.bt-secondary {
  width: clamp(168px, 32.86vw, 380px);
  color: #fff;
  background-color: var(--color-secondary);
  margin: auto auto 20px;
}

/* ヘッダー */
header {
  position: relative;
}
header .header-inner {
  position: absolute;
  top: 50px;
  z-index: 10;
  width: min(57.29vw, 1100px);
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 599px) {
  header .header-inner {
    position: relative;
    top: 0;
    width: 100%;
    background-color: var(--color-primary);
    padding: 4% 0;
  }
}
header .header-nav .header-nav__list {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
@media (max-width: 599px) {
  header .header-nav .header-nav__list {
    width: 73%;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 6px;
    justify-content: unset;
    margin: 0 auto;
  }
}
header .header-nav .header-nav__list-item a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  font-size: clamp(1.4rem, 1.56vw, 3rem);
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5), 0 0 6px rgba(0, 0, 0, 0.5), 0 0 6px rgba(0, 0, 0, 0.5);
}
@media (max-width: 599px) {
  header .header-nav .header-nav__list-item a {
    color: var(--color-tx);
    text-shadow: none;
  }
}
@media (max-width: 599px) {
  header .header-nav .header-nav__list-item a::before {
    content: "";
    width: clamp(12px, 1.25vw, 18px);
    height: clamp(12px, 1.25vw, 18px);
    border: solid 2px transparent;
    border-radius: 2px;
    border-color: transparent var(--color-tx) var(--color-tx) transparent;
    transform: rotate(-45deg);
  }
}

/* フッター*/
.footer {
  background: url(../img/bg-img.jpg) top/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
}
.footer .footer-upper {
  background-color: var(--color-secondary);
}
.footer .footer-upper .footer-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: min(1.61vw, 20px) min(60px, 3.4vw);
  padding: 2% 0.5%;
  max-width: 1440px;
  margin: 0 auto clamp(24px, 4.86vw, 70px);
}
@media (max-width: 599px) {
  .footer .footer-upper .footer-nav {
    width: 86%;
    padding: 2% 2%;
  }
}
.footer .footer-upper .footer-nav .footer-nav__item a {
  font-size: clamp(1.2rem, 1.72vw, 3rem);
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .footer-upper .footer-nav .footer-nav__item a::before {
  content: "";
  width: clamp(12px, 1.25vw, 18px);
  height: clamp(12px, 1.25vw, 18px);
  border: solid 2px transparent;
  border-radius: 2px;
  border-color: transparent #fff #fff transparent;
  transform: rotate(-45deg);
}
.footer .footer-logo {
  width: clamp(110px, 17.29vw, 332px);
  margin: 0 auto min(80px, 5.56vw);
}
.footer .footer-address {
  font-size: clamp(1.2rem, 1.82vw, 3.5rem);
  margin-bottom: 5vw;
}
.footer .footer-address span {
  display: block;
}
.footer .footer-address span a {
  display: inline-block;
}
.footer .copyright {
  display: block;
  font-size: clamp(0.7rem, 1.11vw, 1.6rem);
  padding-bottom: 2vw;
}

/* メインコンテンツ */
.deco {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}

.section-inner {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .section-inner {
    overflow-x: clip;
  }
}

#page-top {
  height: 60px;
  width: 60px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: all 0.4s ease;
  opacity: 0;
}

.pagetop__arrow {
  height: 18px;
  width: 18px;
  border-top: 1px solid var(--color-tx);
  border-right: 1px solid var(--color-tx);
  transform: translateY(20%) rotate(-45deg);
}

/*# sourceMappingURL=common.css.map */