@charset "utf-8";
/* レイアウト */
body {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  background-color: var(--cl-white);

  font-family: zen-kaku-gothic-new, sans-serif !important;
  font-style: normal;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background: url(../images/main_background.png) center center / cover no-repeat;
  width: 100%;
  height: 100%;
}
h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body p {
  font-family: zen-kaku-gothic-new, sans-serif !important;
  font-style: normal;
  font-weight: 500;
  color: var(--cl-text);
}
header {
  position: fixed;
  top: 0;
  left: max(calc((100% - 1600px) / 2), 0px);
  width: calc((100% - 600px) / 2);
  height: 100vh;
  max-width: calc((1600px - 600px) / 2);
  background-color: transparent;
  padding: 0 40px;
  padding-top: 85px;
  overflow-y: auto;
  z-index: 999;
}
header img {
  display: block;
  width: 280px;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 0.75;
  margin: 0 auto;
}
header .nav-link {
  margin-top: 30px;
}
header .nav-link li a {
  display: block;
  font-size: var(--fs-ttl-s);
  font-weight: normal;
  font-family: postea-variable, sans-serif !important;
  color: var(--cl-text);
  padding: 0.5em 0;
}
header .nav-sns {
  margin-top: 60px;
  display: flex;
  gap: 40px;
}
header .nav-sns li a {
  display: block;
  width: 40px;
  height: 40px;
  text-indent: -99999px;
}
header .nav-sns li a.sns-instagram {
  background: url(../images/icon_instagram.svg) center center / contain
    no-repeat;
}
header .nav-sns li a.sns-facebook {
  background: url(../images/icon_facebook.svg) center center / contain no-repeat;
}
header .nav-sns li a.sns-line {
  background: url(../images/icon_line.svg) center center / contain no-repeat;
}
header .nav-guide {
  margin-top: 30px;
}
header .nav-guide li a {
  position: relative;
  display: block;
  font-weight: 500;
  color: var(--cl-text);
  font-size: var(--fs-lead);
  padding: 0.3em 0;
  padding-left: 25px;
}
header .nav-guide li a::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--cl-text);
  border-radius: 99px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-height: 900px) {
  header {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  header img {
    width: 200px;
  }
  header .nav-link li a {
    padding: 0.3em 0;
  }
  header .nav-link {
    margin-top: 20px;
  }
  header .nav-sns {
    margin-top: 30px;
  }
  header .nav-guide {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1100px) {
  header {
    display: none;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 100%;
    max-width: 600px;
    padding: 40px 3%;
  }
  header .nav-link li a {
    text-align: center;
  }
  header .nav-sns {
    justify-content: center;
  }
  header .nav-guide,
  header .nav-guide li,
  header .nav-guide li a {
    width: fit-content;
  }
  header .nav-guide {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ハンバーガーボタン */
.btn-hamburger-wrap {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 40px;
  right: 30px;
}
.btn-hamburger {
  position: relative;
  width: 80px;
  height: 80px;
  background: var(--cl-main);
  border-radius: 9999px;
  transition: all 0.4s;
  border: 1px solid var(--cl-main);
}
.btn-hamburger span {
  background-color: var(--cl-white);
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  left: calc(50%);
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 50% 50%;
  transition: all 0.4s;
}
.btn-hamburger span:before,
.btn-hamburger span:after {
  background-color: var(--cl-white);
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  transition: all 0.4s;
}
.btn-hamburger span:before {
  top: 10px;
  width: 60%;
}
.btn-hamburger span:after {
  top: -10px;
}
.btn-hamburger.is-active {
  background-color: var(--cl-white);
}
.btn-hamburger.is-active span {
  background-color: transparent;
}
.btn-hamburger.is-active span:before {
  top: 0;
  transform: rotate(45deg);
  width: 100%;
  background-color: var(--cl-main);
}
.btn-hamburger.is-active span:after {
  top: 0;
  transform: rotate(-45deg);
  background-color: var(--cl-main);
}
header.is-open {
  display: block;
}
@media only screen and (max-width: 1100px) {
  .btn-hamburger-wrap {
    display: block;
  }
}
@media only screen and (max-width: 500px) {
  .btn-hamburger-wrap {
    top: 20px;
    right: 20px;
  }
  .btn-hamburger {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (max-width: 400px) {
  .btn-hamburger {
    width: 60px;
    height: 60px;
  }
}
.content-wrap {
  width: 100%;
  max-width: 600px;
  position: relative;
}
.top-hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 0.618 / 1;
  background: url(../images/main-img.jpg) center center / cover no-repeat;
}
.top-hero-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-indent: -99999px;
  background: url(../images/main-title.svg) center center / contain no-repeat;
  width: 60%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 0.642;
}
@media only screen and (max-width: 1100px) {
  .top-hero::after {
    content: "";
    position: absolute;
    width: 33.3333%;
    top: 3.0612%;
    left: 5%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 0.75;
    background: url(../images/logo_tate_white.svg) center center / cover
      no-repeat;
  }
}

.introduce {
  background-color: var(--cl-base02);
  padding-left: 3%;
  padding-right: 3%;
}
.introduce-ttl {
  font-size: var(--fs-ttl-ll);
  font-weight: 700;
}
.introduce-ttl span {
  font-size: var(--fs-ttl-s);
  font-weight: normal;
  font-family: postea-variable, sans-serif !important;
  display: block;
  letter-spacing: -0.03em !important;
}
.introduce img {
  border-radius: var(--box-br);
}
.situation .situation-ttl {
  font-size: var(--fs-ttl-m);
  font-weight: 700;
}
.situation {
  background-color: var(--cl-base04);
}
.situation-container {
  display: flex;
  flex-direction: column-reverse;
}
.situation-lead {
  width: 100%;
  padding-left: 3%;
}
.situation-img {
  border-radius: var(--box-br) 0 0 var(--box-br);
  margin-left: auto;
  width: 83.333333%;
  display: block;
}
.situation-txt * {
  padding-right: 3%;
  width: 83.333333%;
  margin-left: auto;
}
.situation-container.reverse .situation-txt * {
  margin-left: 0;
  margin-right: auto;
  padding-left: 3%;
}
.situation-container.reverse .situation-lead {
  width: 100%;
  padding-left: 0;
  padding-right: 3%;
}
.situation-container.reverse .situation-img {
  border-radius: 0 var(--box-br) var(--box-br) 0;
  margin-left: 0;
  margin-right: auto;
  width: 83.333333%;
  display: block;
}
@media only screen and (max-width: 350px) {
  .situation-txt > * {
    padding-right: 3%;
    padding-left: 3%;
    width: 100%;
  }
}
.products {
  background-color: var(--cl-white);
}
.products .splide__arrow {
  width: 60px;
  height: 60px;
  opacity: 1;
  background: url(../images/left_arrow.svg) center center / contain no-repeat;
  transition: 0.3s ease-in-out;
}
.products .splide__arrow.splide__arrow--next {
  background: url(../images/right_arrow.svg) center center / contain no-repeat;
}
.products .splide__arrow.splide__arrow--next:hover {
  opacity: 0.7;
}
.products .splide__pagination {
  position: relative;
  display: grid!important;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  bottom: 0;
  width: 70%;
  padding: 0;
  gap: 5px;
  grid-template-columns:  repeat(auto-fit, minmax(0, 1fr));
}
.products .splide__pagination__page {
  border-radius: 0;
  opacity: 1;
  width: 100%;
  background-color: var(--cl-gray);
}
.products .splide__pagination__page.is-active {
  position: relative;
  transform: none;
  z-index: 1;
  background-color: var(--cl-main);
}

.products .splide__slide {
  background-color: var(--cl-base03);
  border-radius: var(--box-br);
  padding: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products .splide__slide img {
  width: 240px;
  height: auto;
  aspect-ratio: 1 / 1;
}
.products .splide__slide h3 {
  font-size: var(--fs-ttl-l);
  font-weight: 700;
  color: var(--cl-text);
  text-align: center;
}
.products .splide__slide p {
  font-size: var(--fs-lead);
}
.products .products-price {
  text-align: center;
  margin-top: 5px;
  color: var(--cl-text);
  display: block;
  font-weight: 500;
  font-size: var(--fs-lead);
}
.products .products-price-note {
  color: var(--cl-text);
  font-weight: 500;
  font-size: 12px;
}
.products .products-btn {
  font-weight: 700;
  font-size: var(--fs-ttl-xs);
  background-color: var(--cl-main);
  display: block;
  width: 100%;
  border-radius: 999px;
  text-align: center;
  color: var(--cl-white);
  padding: 2rem;
}
.products .products-btn-all{
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
  justify-content: center;
}
.products .products-btn-all a{
  font-weight: 700;
  font-size: var(--fs-ttl-xs);
  color: var(--cl-main);
  background-color: var(--cl-white);
  border: 1px solid var(--cl-main);
  display: block;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  text-align: center;
  padding: 1em 2.5em;
}
@media only screen and (max-width: 500px) {
  .products .splide__slide img {
    width: 200px;
  }
  .products .splide__slide {
    padding: 2rem;
  }
  .products .splide__arrow {
    width: 40px;
    height: 40px;
  }
  .products .splide__arrow--prev {
    left: 0.5em;
  }
  .products .splide__arrow--next {
    right: 0.5em;
  }
}
.products-chart {
  padding: 0 3%;
}
footer {
  background-color: var(--cl-white);
  border: none;
  padding-top: var(--wrap-pd);
}
footer .footer-wrap {
  position: relative;
  width: 100%;
  display: flex;
  padding-top: 50px;
  background: linear-gradient(to bottom, transparent 50%, #f0b1b1 50%);
}
footer .footer-wrap::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/footer.svg) top center / contain no-repeat;
}
footer .footer-content {
  position: relative;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 20px;
  width: 100%;
}
footer img {
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 1 / 0.26;
}
footer p {
  color: var(--cl-white);
  font-size: 12px;
  text-align: center;
}
@media only screen and (max-width: 599px) {
  footer .footer-wrap {
    height: auto;
  }
}