@charset "UTF-8";
:root {
  --color-primary: #f09716;
  --color-tx: #595757;
}

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

body {
  font-family: "Kiwi Maru", serif;
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(1.6rem, 1.81vw, 2.5rem);
  line-height: 2.27;
  font-feature-settings: "palt";
  letter-spacing: 0.05rem;
  text-align: justify;
  line-break: strict;
  color: var(--color-tx);
  overflow-x: hidden;
  background: url(../img/back-img.jpg) top/cover;
}

main {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  display: block;
}

a:hover {
  transform: scale(1.03);
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
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;
  }
}
/* ボタン */
.bt {
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 100px;
  line-height: 2.2;
  font-size: clamp(1.4rem, 2.22vw, 3.2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  border: none;
}

.bt.bt-about {
  width: clamp(168px, 32.86vw, 460px);
  padding-left: 6.92%;
}
@media (max-width: 599px) {
  .bt.bt-about {
    margin: 0 auto 40px;
  }
}

.bt.bt-about::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;
  position: absolute;
  top: 52%;
  left: 18.91%;
  transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 599px) {
  .bt.bt-about::before {
    left: 10%;
  }
}

.bt.bt-inversion {
  width: clamp(140px, 18.19vw, 280px);
  background-color: #fff;
  color: var(--color-primary);
  line-height: 2;
  padding: 0 0 0.4vw 1.6vw;
  margin: 0 auto;
}

.bt.bt-inversion::before {
  content: "";
  width: clamp(10px, 1.25vw, 18px);
  height: clamp(10px, 1.25vw, 18px);
  border: solid 2px transparent;
  border-radius: 2px;
  border-color: transparent var(--color-primary) var(--color-primary) transparent;
  position: absolute;
  top: 52%;
  left: 21%;
  transform: translateY(-50%) rotate(-45deg);
}

.bt.bt-normal {
  width: clamp(120px, 18.19vw, 280px);
  margin-top: auto;
  line-height: 2;
  padding: 0 0 0.4vw 1.6vw;
}
@media (max-width: 599px) {
  .bt.bt-normal {
    margin: auto auto 0;
  }
}

.bt.bt-normal::before {
  content: "";
  width: clamp(10px, 1.25vw, 18px);
  height: clamp(10px, 1.25vw, 18px);
  border: solid 2px transparent;
  border-radius: 2px;
  border-color: transparent #fff #fff transparent;
  position: absolute;
  top: 52%;
  left: 21%;
  transform: translateY(-50%) rotate(-45deg);
}

/* ヘッダー */
.header-inner {
  max-width: 1440px;
  padding: 70px 70px 20px 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 599px) {
  .header-inner {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }
}
.header-inner .header-logo {
  width: clamp(176px, 20.9vw, 33.06vw);
  max-width: 476px;
}
.header-inner .header-nav {
  text-align: center;
}
@media (max-width: 599px) {
  .header-inner .header-nav {
    width: 90%;
  }
}
.header-inner .header-nav .header-nav__list {
  display: flex;
  justify-content: space-between;
  gap: 3.3vw;
}
.header-inner .header-nav .header-nav__list .header-nav_item a {
  color: var(--color-primary);
  display: block;
  width: 100%;
  font-size: clamp(1.6rem, 1.74vw, 2.5rem);
  line-height: 1.5;
}
.header-inner .header-nav .header-nav__list a {
  transition: all 0.3s;
}
.header-inner .header-nav .header-nav__list a:hover {
  opacity: 0.5;
}

/* メインコンテンツ */
.title {
  font-family: "shirokuma";
  font-weight: 500;
  font-size: clamp(2.6rem, 3.33vw, 4.8rem);
  line-height: 1.2;
  color: var(--color-primary);
  text-align: left;
  position: relative;
  margin: 2.2vw 0;
}
@media (max-width: 599px) {
  .title {
    text-align: center;
    margin: 4.2vw 0;
  }
}

.illust {
  position: absolute;
  content: "";
  display: block;
}

.section-inner {
  max-width: 1440px;
  padding: 0 20px;
  margin: 0 auto;
}

/* フッター */
.footer {
  text-align: center;
  padding: 70px 0;
  position: relative;
  background: #fff;
}
@media (max-width: 599px) {
  .footer {
    padding: 40px 0;
  }
}
.footer .footer_inner {
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}
.footer .footer_inner iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: 100%;
  margin-bottom: 70px;
}
.footer .footer-logo {
  width: 30.28vw;
  min-width: 183px;
  margin: 0 auto 30px;
}
.footer .footer-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: clamp(1.3rem, 1.44vw, 1.6rem);
  color: var(--color-primary);
  margin-bottom: 90px;
}
@media (max-width: 599px) {
  .footer .footer-nav {
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: center;
    margin-bottom: 60px;
  }
}
.footer .footer-nav li + li {
  border-left: 1px solid var(--color-primary);
}
@media (max-width: 599px) {
  .footer .footer-nav li + li {
    border: none;
    position: relative;
  }
}
@media (max-width: 599px) {
  .footer .footer-nav li + li:before {
    position: absolute;
    display: block;
    content: "";
    height: 1rem;
    top: 50%;
    transform: translateY(-50%);
    border-right: 1px solid var(--color-primary);
  }
}
.footer .footer-nav li + li:nth-child(4):before, .footer .footer-nav li + li:nth-child(7):before {
  display: none;
}
.footer .footer-nav__item {
  flex-grow: 1;
  text-align: center;
}
@media (max-width: 599px) {
  .footer .footer-nav__item {
    flex-grow: revert;
  }
}
.footer .footer-nav__item a {
  transition: all 0.3s;
  line-height: 1;
}
@media (max-width: 599px) {
  .footer .footer-nav__item a {
    padding: 6px;
  }
}

.footer-address {
  font-size: clamp(1.4rem, 1.53vw, 2.3rem);
  line-height: 1.7;
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .footer-address {
    font-size: 3.2vw;
  }
}
.footer-address a {
  display: inline-block;
}

.copyright {
  font-size: clamp(1rem, 0.97vw, 1.4rem);
  font-weight: 300;
  text-align: center;
}
@media (max-width: 599px) {
  .copyright {
    font-size: 2.2vw;
  }
}

#page-top {
  height: 60px;
  width: 60px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  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 */