@charset "UTF-8";
:root {
  --color-primary: #66585e;
  --color-secondary: #8a2128;
  --color-point: #4086be;
  --color-background: #f5f2e8;
}

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

body {
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(1.5rem, 1.25vw, 2.4rem);
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.05rem;
  line-break: strict;
  color: var(--color-primary);
  background-color: var(--color-background);
  overflow-x: hidden;
}

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

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* メインコンテンツ */
.section-inner {
  max-width: 1440px;
  padding: 4.48vw 20px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .section-inner {
    overflow-x: clip;
  }
}

.maintext {
  text-align: left;
  font-size: clamp(1.4rem, 1.56vw, 3rem);
}
@media (max-width: 599px) {
  .maintext {
    text-align: center;
  }
}

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

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

.title {
  color: var(--color-primary);
  font-size: clamp(2.3rem, 3.23vw, 6.1rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 1.47rem;
  text-transform: uppercase;
  position: relative;
}
.title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--color-primary);
  top: 50%;
  right: 0;
  position: absolute;
}
@media (max-width: 599px) {
  .title::after {
    width: 20px;
    height: 1px;
    top: 81%;
    right: 50%;
    translate: 50%;
  }
}
@media (max-width: 599px) {
  .title {
    width: 100%;
    letter-spacing: 0.3em;
    text-align: center;
  }
}

.sp {
  display: none;
}

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

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

@media (max-width: 599px) {
  .pc {
    display: none;
  }
}
/* ボタン */
.bt {
  color: #fff;
  font-size: clamp(1.5rem, 1.82vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  border: none;
}
@media (max-width: 599px) {
  .bt {
    margin: 0 auto;
  }
}

.bt.bt-primary {
  width: clamp(170px, 24.27vw, 466px);
  background-color: var(--color-secondary);
  position: relative;
}
.bt.bt-primary::after {
  content: "";
  display: block;
  width: clamp(24px, 3.39vw, 65px);
  aspect-ratio: 13/9;
  background: url(../img/bt-arrow.svg) center/contain no-repeat;
  filter: brightness(0) invert(1);
  position: absolute;
  right: 3%;
}
.bt.bt-primary:hover {
  background-color: #5f161b;
  color: #fff;
}

/* ヘッダー */
header {
  position: relative;
}
header .header-nav {
  background-color: var(--color-background);
  height: 186px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 599px) {
  header .header-nav {
    width: 100%;
    height: auto;
    padding: 4% 0 26%;
  }
}
header .header-nav .header-nav__list {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: min(57.29vw, 1100px);
  margin: 0 auto;
}
@media (max-width: 599px) {
  header .header-nav .header-nav__list {
    width: max(73%, 320px);
    flex-wrap: wrap;
    -moz-column-gap: 16%;
         column-gap: 16%;
    row-gap: 6px;
    justify-content: center;
    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: var(--color-primary);
}
header .hero {
  margin-bottom: 80px;
}
header .hero .swiper {
  width: 64.58vw;
  aspect-ratio: 31/21;
  margin: 0 0 0 auto;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 599px) {
  header .hero .swiper {
    width: 100%;
    aspect-ratio: 375/398;
    border-radius: unset;
  }
}
header .hero .swiper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
header .hero .main-logo {
  position: absolute;
  width: clamp(274px, 38.7vw, 743px);
  top: 35.02%;
  left: 13.8%;
  z-index: 1;
}
@media (max-width: 599px) {
  header .hero .main-logo {
    top: 18.02%;
  }
}
header .hero .lead {
  position: absolute;
  top: 46.86%;
  left: 19.58%;
  z-index: 1;
  font-size: clamp(1.6rem, 2.66vw, 5.1rem);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3rem;
}
@media (max-width: 599px) {
  header .hero .lead {
    writing-mode: vertical-rl;
    text-align: left;
    line-height: 2;
    left: 7%;
    top: 36%;
  }
}
header .hero .lead span {
  display: block;
}

/* フッター*/
.footer {
  background-color: #fff;
}
.footer .footer-upper {
  background: var(--color-secondary);
  margin-bottom: 6%;
}
.footer .footer-upper .footer-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 12%;
  padding: 2% 0.5%;
  width: min(83%, 1440px);
  margin: 0 auto;
}
@media (max-width: 599px) {
  .footer .footer-upper .footer-nav {
    width: 86%;
    padding: 2% 2%;
  }
}
.footer .footer-upper .footer-nav .footer-nav__item {
  margin-bottom: 1.04vw;
}
.footer .footer-upper .footer-nav .footer-nav__item a {
  font-size: clamp(1.2rem, 1.46vw, 2.8rem);
  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(265px, 46.04vw, 884px);
  margin: 0 auto max(80px, 11.98vw);
}
.footer .footer-address {
  text-align: center;
  font-size: clamp(1.2rem, 1.72vw, 3.3rem);
  line-height: 2.6;
  margin-bottom: 5vw;
}
.footer .footer-address span {
  display: block;
}
.footer .footer-address span a {
  display: inline-block;
}
.footer .sns {
  width: clamp(33px, 4.58vw, 88px);
  margin: 0 auto;
  margin-bottom: 5vw;
}
.footer .copyright {
  display: block;
  text-align: center;
  font-size: clamp(0.7rem, 1.11vw, 1.6rem);
  color: #040000;
  padding-bottom: 2vw;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.d-none {
  opacity: 0;
}

#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-primary);
  border-right: 1px solid var(--color-primary);
  transform: translateY(20%) rotate(-45deg);
}

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