@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&display=swap');
/*
font-family: "Noto Sans JP", serif;
font-optical-sizing: auto;

font-family: "M PLUS Rounded 1c", serif;
*/

:root{
  --font-round:"M PLUS Rounded 1c", sans-serif;
}

body {
  font-family: var(--font-round), "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: hsl(26, 54%, 25%);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  font-optical-sizing: auto;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.inner {
  max-width: min(1200px, 96%);
  margin-inline: auto;
}

.inner__small {
  max-width: min(900px, 96%);
  margin-inline: auto;
}

.inner__mid {
  max-width: min(1280px, 96%);
  margin-inline: auto;
}

.inner__large {
  max-width: min(1440px, 96%);
  margin-inline: auto;
}

.tab-link {
  cursor: pointer;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.sun-page {
  background: url("../img/cmn/bg.svg") no-repeat center bottom, hsl(194, 100%, 95%);
  background-size: contain;
  background-blend-mode: multiply;
  padding-block-start: 3rem;
  padding-block-end: min(576px, 30vw);
}

.ttl__h2 {
  color: hsl(26, 54%, 25%);
  font-size: clamp(2rem, 1.06rem + 4vw, 4.0625rem);
  letter-spacing: 0.05em;
  margin-block-end: mi(4rem, 2.0833333333vw);
  line-height: normal;
}
.ttl__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-block-end: clamp(2.5rem, 0.23rem + 9.7vw, 5rem);
}
@media screen and (max-width: 768px) {
  .ttl__flex {
    flex-direction: column;
  }
}

.swiper {
  position: relative;
}
.swiper-pagination {
  margin-block-start: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  width: 100%;
  height: 0.9375rem;
}
.swiper-pagination span {
  cursor: pointer;
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: #cccccc;
}
.swiper-pagination span[class*=active] {
  background-color: hsl(26, 54%, 25%);
}

div[class*=button] {
  cursor: pointer;
  width: 30px;
  height: 40px;
  background-color: hsl(26, 54%, 25%);
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 99;
}
div[class*=button][class*=next] {
  left: auto;
  right: 0;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.page-top {
  position: fixed;
  z-index: 999;
  right: 1rem;
  bottom: 1rem;
  width: clamp(1.25rem, -1.023rem + 11.36vw, 7.5rem);
}
@media screen and (max-width: 768px) {
  .page-top {
    width: 70px;
  }
}
.page-top a {
  display: block;
}