@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Forum&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Zen+Old+Mincho:wght@400;500&display=swap");
/* mixins */
/* functions */
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

body {
  width: 100%;
  font-family: var(--font-forum-zen-kaku-gothic);
  color: #222;
  font-weight: 400;
  font-size: 4.2vw;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    width: 100%;
    position: relative;
  }
}

.forum {
  font-family: var(--font-forum);
}

.zen-old-mincho {
  font-family: var(--font-zen-old-mincho);
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-block {
    display: block;
  }
}
@media screen and (min-width: 1000px) {
  .tab-block {
    display: none;
  }
}

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

.pc-middle-block {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-block {
    display: block;
  }
}

.pc-middle02-block {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-block {
    display: block;
  }
}

.pc-large-block {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-block {
    display: block;
  }
}

.smp-inline {
  display: inline;
}
@media screen and (min-width: 768px) {
  .smp-inline {
    display: none;
  }
}

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

.tab-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-inline {
    display: inline;
  }
}
@media screen and (min-width: 1000px) {
  .tab-inline {
    display: none;
  }
}

.pc-middle-inline {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-inline {
    display: inline;
  }
}

.pc-middle02-inline {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-inline {
    display: inline;
  }
}

.pc-large-inline {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-inline {
    display: inline;
  }
}

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

a, button {
  color: var(--base-text-color);
  text-decoration: none;
  transition: all var(--base-transition-time);
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

span.inline-block {
  display: inline-block;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

:root {
  --base-width: 92%;
  --base-width-middle: 86%;
  --base-width-min: 80%;
  --base-width-sp: 90.6666666667vw;
  --base-width-sp-middle: 85.3333333333vw;
  --base-width-sp-min: 80vw;
  --base-wrapper-sp: 93.3333333333vw;
  --base-inline-sp: 10%;
  --base-header-sp: 24vw;
  --base-header: 0;
  --page-color: #46a24e;
  --primary-color: #46a24e;
  --secondary-color: #f18946;
  --tertiary-color: #ffe82a;
  --color-red: #eeecce;
  --base-font-size: 14px;
  --base-font-size-sp: 3.7333333333vw;
  --font-forum-zen-kaku-gothic: YakuHanJP, 'Zen Kaku Gothic New', sans-serif;
  --font-forum: "Forum", serif;
  --font-zen-old-mincho: "Zen Old Mincho", serif;
  --base-transition-time: 0.3s;
}

@keyframes buttonAnimation {
  0% {
    opacity: 0;
    scale: 0.8;
  }
  50% {
    opacity: 1;
    scale: 1.1;
  }
  100% {
    opacity: 0;
    scale: 1.35;
  }
}
/*======================================================================================*/
html {
  scroll-behavior: smooth;
}
html * {
  scroll-margin-top: var(--base-header-sp);
}
@media screen and (min-width: 768px) {
  html * {
    scroll-margin-top: 0;
  }
}

body {
  background-color: var(--primary-color);
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 10;
  padding: 4vw 4vw 4vw 2.6666666667vw;
  z-index: 105;
  background-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 15px 15px 15px 10px;
    background-color: transparent;
    backdrop-filter: blur(0px);
  }
}
.l-header .l-header-logo {
  position: relative;
  z-index: 5;
}
.l-header .l-header-logo img {
  width: 24vw;
}
@media screen and (min-width: 768px) {
  .l-header .l-header-logo img {
    width: 258px;
  }
}
.l-header .l-header-button {
  position: relative;
  z-index: 5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-header .l-header-button {
    display: none;
  }
}
.l-header .l-header-button .icon {
  position: relative;
  display: block;
  width: 8vw;
  height: 5.8666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-header .l-header-button .icon {
    width: 30px;
    height: 22px;
  }
}
.l-header .l-header-button .icon .border {
  position: absolute;
  top: calc(50% - 1px);
  display: block;
  width: 100%;
  border-bottom: 2px solid #fff;
  transition: 0.3s ease all;
}
.l-header .l-header-button .icon::before, .l-header .l-header-button .icon::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  border-bottom: 2px solid #fff;
  transition: 0.3s ease all;
}
.l-header .l-header-button .icon::before {
  top: 0;
}
.l-header .l-header-button .icon::after {
  bottom: 0;
}
.l-header .l-header-button .text {
  color: #fff;
  font-size: 3.2vw;
  font-weight: 500;
  transition: 0.3s ease all;
}
@media screen and (min-width: 768px) {
  .l-header .l-header-button .text {
    font-size: 12px;
  }
}
.l-header .l-header-button.is-active .icon .border {
  opacity: 0;
}
.l-header .l-header-button.is-active .icon::before {
  top: 45%;
  rotate: -45deg;
}
.l-header .l-header-button.is-active .icon::after {
  bottom: 45%;
  rotate: 45deg;
}
.l-header .l-header-button.is-active .text {
  opacity: 0;
}
.l-header .l-header-nav {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  max-height: 100dvh;
  overflow-y: auto;
  padding: 24vw 5.8666666667vw 16vw;
  background-color: var(--secondary-color);
  margin-inline: auto;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-header .l-header-nav {
    padding: 90px 22px 60px;
  }
}
.l-header .l-header-nav .l-header-menu {
  font-size: 4.2666666667vw;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-header .l-header-nav .l-header-menu {
    font-size: 16px;
  }
}
.l-header .l-header-nav .l-header-menu > li {
  padding-block: 0.6em;
  border-bottom: 1px solid #fff;
}
.l-header .l-header-nav .l-header-menu > li > a {
  position: relative;
  display: block;
}
.l-header .l-header-nav .l-header-menu > li > a::after {
  content: "";
  position: absolute;
  top: 0.15em;
  right: 0.5em;
  display: block;
  width: 3.2vw;
  height: 3.2vw;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  rotate: 45deg;
}
@media screen and (min-width: 768px) {
  .l-header .l-header-nav .l-header-menu > li > a::after {
    width: 12px;
    height: 12px;
  }
}
.l-header .l-header-nav .l-header-menu-sub {
  padding-left: 1em;
  font-size: 3.2vw;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .l-header .l-header-nav .l-header-menu-sub {
    font-size: 12px;
  }
}
.l-header .l-header-nav .l-header-menu-sub > li {
  padding-block: 0.6em;
}
.l-header .l-header-nav .l-header-nav-button {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .l-header .l-header-nav .l-header-nav-button {
    margin-top: 30px;
  }
}
.l-header .l-header-nav .l-header-nav-button .l-header-nav-button-link {
  display: block;
  width: 100%;
  padding: 0.4em;
  border: 1px solid var(--secondary-color);
  background-color: #fff;
  color: var(--secondary-color);
  font-size: 4.2666666667vw;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-header .l-header-nav .l-header-nav-button .l-header-nav-button-link {
    font-size: 16px;
  }
}
.l-header .l-header-nav .l-header-nav-button .l-header-nav-button-link > img {
  display: inline-block;
  width: 5.6vw;
  margin-right: 1.3333333333vw;
  vertical-align: -0.05em;
}
@media screen and (min-width: 768px) {
  .l-header .l-header-nav .l-header-nav-button .l-header-nav-button-link > img {
    width: 21px;
    margin-right: 5px;
  }
}
.l-header .l-header-nav .l-header-nav-button .l-header-nav-button-link + .l-header-nav-button-link {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .l-header .l-header-nav .l-header-nav-button .l-header-nav-button-link + .l-header-nav-button-link {
    margin-top: 10px;
  }
}

.l-footer {
  padding-block: 6.6666666667vw 9.3333333333vw;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .l-footer {
    max-width: 375px;
    margin-inline: auto;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.35);
    padding-block: 25px 35px;
  }
}
.l-footer .l-footer-sns {
  display: flex;
  justify-content: center;
  gap: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer-sns {
    gap: 25px;
  }
}
.l-footer .l-footer-sns .l-footer-sns-link {
  width: 8.8vw;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer-sns .l-footer-sns-link {
    width: 33px;
  }
}
.l-footer .l-footer-logo {
  display: block;
  margin-top: 6.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer-logo {
    margin-top: 25px;
  }
}
.l-footer .l-footer-logo img {
  width: 82.6666666667vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer-logo img {
    width: 310px;
  }
}
.l-footer .l-footer-cotact {
  margin-top: 5.3333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer-cotact {
    margin-top: 20px;
  }
}
.l-footer .l-footer-cotact > a img {
  width: 76vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer-cotact > a img {
    width: 285px;
  }
}
.l-footer .l-footer-cotact .small {
  font-size: 3.7333333333vw;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer-cotact .small {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .l-main {
    display: flex;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .l-main::before {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 165px;
    background-image: linear-gradient(0deg, rgb(70, 162, 78), rgba(255, 255, 255, 0));
    mix-blend-mode: multiply;
    pointer-events: none;
    opacity: 0.9;
  }
}

.l-main-left {
  display: none;
  z-index: 100;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-main-left {
    display: block;
    max-width: calc(50% - 187.5px);
    width: 100%;
  }
}
.l-main-left .main-left-slide-txt {
  position: fixed;
  top: 15%;
  left: 0;
  z-index: 0;
  width: 100%;
  max-width: calc(50% - 187.5px - 0px);
}
@media screen and (min-width: 1000px) {
  .l-main-left .main-left-slide-txt {
    max-width: calc(50% - 187.5px - 50px);
  }
}
.l-main-left .main-left-slide-txt img {
  width: min(80%, 70vh);
  margin: auto;
}
.l-main-left .main-left-slide-txt02 {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: min(200px, 20vh);
}
@media screen and (min-width: 1000px) {
  .l-main-left .main-left-slide-txt02 {
    width: min(230px, 30vh);
  }
}
.l-main-left .main-img {
  height: 100%;
  width: 100%;
}
.l-main-left .main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-main-left .btm-img {
  position: absolute;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  .l-main-left-slider {
    position: fixed;
    left: 0;
    top: 0;
    max-width: calc(50% - 187.5px);
    height: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .l-main-left-slider {
    padding-right: 50px;
  }
}

.l-main-center {
  position: relative;
  background-color: #fff;
  z-index: 100;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .l-main-center {
    width: 375px;
    margin-top: 45px;
    margin-inline: auto;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.35);
  }
}

.l-main-right {
  display: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .l-main-right {
    display: block;
    width: 100%;
    max-width: calc(50% - 187.5px);
  }
}

.fix-nav {
  position: fixed;
  right: 0;
  bottom: 5.3333333333vw;
  display: flex;
  flex-direction: column;
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
  border-left: 5px solid #fff;
  z-index: 10;
  transition: 0.4s ease all;
}
@media screen and (min-width: 768px) {
  .fix-nav {
    bottom: 40px;
    border: none;
    left: calc(50% + 187.5px + 20px);
    max-width: 265px;
  }
}
@media screen and (min-width: 1100px) {
  .fix-nav {
    left: calc(50% + 187.5px + 50px);
  }
}
.fix-nav .fix-nav-link {
  position: relative;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 3.2vw;
  letter-spacing: 0;
  line-height: 1.25;
  font-weight: 500;
  text-align: center;
  padding: 1em 2.2em 1em 1em;
}
@media screen and (min-width: 768px) {
  .fix-nav .fix-nav-link {
    text-align: left;
    font-size: 10px;
    border: 1px solid #fff;
  }
}
@media screen and (min-width: 1000px) {
  .fix-nav .fix-nav-link {
    font-size: 12px;
  }
}
.fix-nav .fix-nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  rotate: 45deg;
  translate: -70% -70%;
  transform: var(--base-transition-time) ease all;
}
@media screen and (min-width: 768px) {
  .fix-nav .fix-nav-link::after {
    width: 7px;
    height: 7px;
  }
}
.fix-nav .fix-nav-link + .fix-nav-link {
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .fix-nav .fix-nav-link + .fix-nav-link {
    margin-top: 10px;
  }
}
.fix-nav .fix-nav-link .fix-nav-link-icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .fix-nav .fix-nav-link .fix-nav-link-icon {
    display: inline-block;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(235deg) brightness(107%) contrast(101%);
    vertical-align: -0.1em;
  }
}
.fix-nav .fix-nav-link:hover {
  background-color: #fff;
  color: var(--secondary-color);
}
.fix-nav .fix-nav-link:hover .fix-nav-link-icon {
  filter: brightness(0) saturate(100%) invert(79%) sepia(23%) saturate(7155%) hue-rotate(328deg) brightness(98%) contrast(93%);
}
.fix-nav .fix-nav-link:hover::after {
  translate: -70% -50%;
  border-color: var(--secondary-color);
}
.fix-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.m-buttons {
  width: 80vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .m-buttons {
    width: 300px;
  }
}
.m-buttons .m-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4em;
  padding: 2.6666666667vw;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  letter-spacing: 0em;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .m-buttons .m-button {
    padding: 10px;
  }
}
.m-buttons .m-button::after {
  content: "";
  position: absolute;
  top: 0.5333333333vw;
  left: 0.5333333333vw;
  display: block;
  width: calc(100% - 1.6vw);
  height: calc(100% - 1.6vw);
  border: 1px solid #fff;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .m-buttons .m-button::after {
    top: 2px;
    left: 2px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
  }
}
.m-buttons .m-button .read {
  width: 88%;
}
.m-buttons .m-button .read.open {
  display: inline-block;
}
.m-buttons .m-button .read.close {
  display: none;
}
.m-buttons .m-button .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  border-radius: 50%;
  transition: var(--base-transition-time) ease all;
}
@media screen and (min-width: 768px) {
  .m-buttons .m-button .icon {
    width: 25px;
    height: 25px;
  }
}
.m-buttons .m-button .icon::before {
  content: "";
  display: inline-block;
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  border-right: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  rotate: 55deg;
  translate: 50% -30%;
  transform: skew(20deg);
  scale: 1 1;
  margin-right: 0.5em;
  transition: var(--base-transition-time) ease all;
}
@media screen and (min-width: 768px) {
  .m-buttons .m-button .icon::before {
    width: 8px;
    height: 8px;
  }
}
.m-buttons .m-button .icon.--right::before {
  rotate: -35deg;
  translate: 20% 0;
}
.m-buttons .m-button .icon.--up {
  scale: -1 -1;
  translate: 0% 0%;
}
.m-buttons .m-button.--white {
  background-color: #fff;
  color: var(--primary-color);
}
.m-buttons .m-button.--white::after {
  content: none;
}
.m-buttons .m-button.--white .icon {
  background-color: var(--primary-color);
}
.m-buttons .m-button.--white .icon::before {
  border-color: #fff;
}
.m-buttons .m-button.is-active .icon::before {
  scale: -1 -1;
  translate: 50% 30%;
}
.m-buttons .m-button.is-active .read.open {
  display: none;
}
.m-buttons .m-button.is-active .read.close {
  display: inline;
}
.m-buttons .m-button:hover {
  background-color: #fff;
  color: var(--primary-color);
}
.m-buttons .m-button:hover::after {
  border-color: var(--primary-color);
}
.m-buttons .m-button:hover .icon {
  background-color: var(--primary-color);
}
.m-buttons .m-button:hover .icon::before {
  border-color: #fff;
}
.m-buttons .m-button:hover.--white {
  border-color: #fff;
  background-color: var(--primary-color);
  color: #fff;
}
.m-buttons .m-button:hover.--white .icon {
  background-color: #fff;
}
.m-buttons .m-button:hover.--white .icon::before {
  border-color: var(--primary-color);
}

.main-logo {
  display: none;
}
@media screen and (min-width: 768px) {
  .main-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: block;
  }
}

.hero {
  position: relative;
}
.hero .hero__title {
  position: absolute;
  top: 33.3333333333vw;
  left: 7.2vw;
  color: #fff;
  font-size: 8vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .hero .hero__title {
    top: 125px;
    left: 27px;
    font-size: 30px;
  }
}
.hero .hero__title .num {
  font-size: 8.8vw;
}
@media screen and (min-width: 768px) {
  .hero .hero__title .num {
    font-size: 33px;
  }
}

.product {
  padding-block: 8vw 10.6666666667vw;
  background-color: var(--primary-color);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .product {
    padding-block: 30px 40px;
  }
}
.product .product-content {
  max-width: 86%;
  margin-inline: auto;
}
.product .product-heading {
  text-align: center;
}
.product .product-heading__lead {
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .product .product-heading__lead {
    font-size: 20px;
  }
}
.product .product-heading__title {
  margin-top: 0.6em;
  padding-top: 1.2em;
  border-top: 2px solid;
  -o-border-image: linear-gradient(90deg, rgba(255, 232, 42, 0), rgba(255, 232, 42, 0.52) 25%, rgb(255, 232, 42) 50%, rgba(255, 232, 42, 0.52) 75%, rgba(255, 232, 42, 0));
     border-image: linear-gradient(90deg, rgba(255, 232, 42, 0), rgba(255, 232, 42, 0.52) 25%, rgb(255, 232, 42) 50%, rgba(255, 232, 42, 0.52) 75%, rgba(255, 232, 42, 0));
  border-image-slice: 1;
  font-size: 3.2vw;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .product .product-heading__title {
    font-size: 12px;
  }
}
.product .product-heading-logo {
  width: 65%;
  margin-top: 5.3333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .product .product-heading-logo {
    margin-top: 20px;
  }
}
.product .product-heading-logo img {
  filter: brightness(0) saturate(100%) invert(98%) sepia(5%) saturate(386%) hue-rotate(261deg) brightness(116%) contrast(100%);
}
.product .product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .product .product-price {
    margin-top: 20px;
  }
}
.product .product-price-text {
  position: relative;
  margin-right: 2.6666666667vw;
  padding: 0.4em 0.6em;
  border: 1px solid var(--tertiary-color);
  background-image: linear-gradient(0deg, rgb(255, 232, 42), rgb(255, 255, 255));
  color: var(--primary-color);
  font-size: 3.7333333333vw;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .product .product-price-text {
    margin-right: 10px;
    font-size: 14px;
  }
}
.product .product-price-text::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 6px);
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
.product .product-price__num {
  position: relative;
  font-family: var(--font-forum);
  font-size: 21.8666666667vw;
  line-height: 1;
  background-image: linear-gradient(0deg, rgb(255, 232, 42), rgb(255, 255, 255));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .product .product-price__num {
    font-size: 82px;
  }
}
.product .product-price__num::after {
  content: "※";
  position: absolute;
  top: 1.2em;
  right: -0.5em;
  font-size: 2.6666666667vw;
  background-image: none;
  -webkit-text-fill-color: initial;
}
@media screen and (min-width: 768px) {
  .product .product-price__num::after {
    font-size: 10px;
  }
}
.product .product-price__yen {
  font-size: 5.3333333333vw;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .product .product-price__yen {
    font-size: 20px;
  }
}
.product .product-price__yen .tax {
  display: inline-block;
  margin-left: -0.2em;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .product .product-price__yen .tax {
    font-size: 12px;
  }
}
.product .product__note {
  margin-top: 4vw;
  font-size: 3.2vw;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .product .product__note {
    margin-top: 15px;
    font-size: 12px;
  }
}

.product-slide {
  overflow: hidden;
  margin-top: 12vw;
}
@media screen and (min-width: 768px) {
  .product-slide {
    margin-top: 45px;
  }
}
.product-slide .swiper-slide {
  width: 74.6666666667vw;
}
@media screen and (min-width: 768px) {
  .product-slide .swiper-slide {
    width: 280px;
  }
}
.product-slide .swiper-slide .product-slide-image {
  position: relative;
}
.product-slide .swiper-slide .product-slide-image .caption {
  position: absolute;
  left: 7%;
  bottom: 4vw;
  display: block;
  width: 86%;
  font-size: 3.7333333333vw;
  letter-spacing: 0.025em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .product-slide .swiper-slide .product-slide-image .caption {
    bottom: 15px;
    font-size: 14px;
  }
}
.product-slide .product-slide-controller {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.3333333333vw;
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .product-slide .product-slide-controller {
    gap: 20px;
    margin-top: 40px;
  }
}
.product-slide .product-slide-controller .slide-controller-prev .arrow,
.product-slide .product-slide-controller .slide-controller-next .arrow {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 1px;
  margin: 7px 0;
  border-radius: 9999px;
  background-color: var(--primary-color);
}
.product-slide .product-slide-controller .slide-controller-prev .arrow::before, .product-slide .product-slide-controller .slide-controller-prev .arrow::after,
.product-slide .product-slide-controller .slide-controller-next .arrow::before,
.product-slide .product-slide-controller .slide-controller-next .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 15px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--primary-color);
  transform-origin: calc(100% - 0.5px) 50%;
}
.product-slide .product-slide-controller .slide-controller-prev .arrow::before,
.product-slide .product-slide-controller .slide-controller-next .arrow::before {
  transform: rotate(30deg);
}
.product-slide .product-slide-controller .slide-controller-prev .arrow::after,
.product-slide .product-slide-controller .slide-controller-next .arrow::after {
  transform: rotate(-30deg);
}
.product-slide .product-slide-controller .slide-controller-prev {
  scale: -1 1;
}
.product-slide .product-slide-controller .slide-controller-state {
  position: relative;
  cursor: pointer;
  width: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .product-slide .product-slide-controller .slide-controller-state {
    width: 20px;
  }
}
.product-slide .product-slide-controller .slide-controller-state::after {
  content: "";
  display: block;
  width: 2.6666666667vw;
  height: 4vw;
  margin-inline: auto;
  border-right: 0.8vw solid var(--primary-color);
  border-left: 0.8vw solid var(--primary-color);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .product-slide .product-slide-controller .slide-controller-state::after {
    width: 12px;
    height: 22px;
    border-width: 3px;
  }
}
.product-slide .product-slide-controller .slide-controller-state.is-paused::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.4666666667vw 0px 1.4666666667vw 4vw;
  border-color: transparent transparent transparent var(--primary-color);
}
@media screen and (min-width: 768px) {
  .product-slide .product-slide-controller .slide-controller-state.is-paused::after {
    border-width: 5.5px 0px 5.5px 15px;
  }
}

.about {
  background-color: var(--primary-color);
  color: #fff;
}
.about .about-inner {
  width: 86%;
  margin-inline: auto;
  padding-block: 8vw 10.6666666667vw;
  border-top: 2px solid #fff;
}
@media screen and (min-width: 768px) {
  .about .about-inner {
    padding-block: 30px 40px;
  }
}

.about-head .about__title {
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-head .about__title {
    font-size: 14px;
  }
}

.about-content {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .about-content {
    margin-top: 20px;
  }
}
.about-content .about-content-copy {
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}
.about-content .about-content-copy .about-content-copy__en {
  font-size: 5.0666666667vw;
}
@media screen and (min-width: 768px) {
  .about-content .about-content-copy .about-content-copy__en {
    font-size: 19px;
  }
}
.about-content .about-content-copy .about-content-copy__en .txt {
  display: inline-block;
}
.about-content .about-content-copy .about-content-copy__en .txt:first-letter {
  color: var(--tertiary-color);
}
.about-content .about-content-copy .about-content-copy__jp {
  font-size: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .about-content .about-content-copy .about-content-copy__jp {
    font-size: 17px;
  }
}
.about-content .about-content__txt {
  margin-top: 2.6666666667vw;
  font-size: 3.7333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-content .about-content__txt {
    margin-top: 10px;
    font-size: 14px;
  }
}

.index {
  background-color: var(--primary-color);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .index {
    position: fixed;
    left: calc(50% + 187.5px + 20px);
    top: 0;
    width: 25%;
    max-width: 320px;
    height: calc(100dvh - 190px);
    background: transparent;
  }
}
@media screen and (min-width: 1100px) {
  .index {
    left: calc(50% + 187.5px + 50px);
  }
}
.index .index-inner {
  width: 86%;
  margin-inline: auto;
  padding-block: 8vw 16vw;
  border-top: 2px solid #fff;
}
@media screen and (min-width: 768px) {
  .index .index-inner {
    width: 100%;
    padding-block: 0;
    border-top: none;
    padding: 45px 0 0;
  }
}
.index .index__title {
  position: relative;
  margin-bottom: 10.6666666667vw;
  padding-bottom: 2.6666666667vw;
  font-family: var(--font-forum);
  font-size: 11.7333333333vw;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .index .index__title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 30px;
  }
}
.index .index__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 1.4em;
  height: 2px;
  background-color: #fff;
}
.index .index-nav {
  font-size: 4.2666666667vw;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .index .index-nav {
    max-height: calc(100dvh - 360px);
    overflow-y: auto;
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  .index .index-nav {
    font-size: 13px;
  }
}
@media screen and (min-width: 1280px) {
  .index .index-nav {
    font-size: 16px;
  }
}
.index .index-nav > li::before {
  content: "";
  display: inline-block;
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  border-right: 1px solid var(--tertiary-color);
  border-bottom: 1px solid var(--tertiary-color);
  rotate: 45deg;
  translate: 0 -50%;
  margin-right: 0.5em;
}
@media screen and (min-width: 768px) {
  .index .index-nav > li::before {
    width: 12px;
    height: 10px;
  }
}
.index .index-nav > li a {
  position: relative;
}
.index .index-nav > li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: var(--base-transition-time) ease all;
}
.index .index-nav > li a:hover::after {
  width: 100%;
}
.index .index-nav > li + li {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .index .index-nav > li + li {
    margin-top: 10px;
  }
}
.index .index-nav-sub {
  display: none;
  margin-top: 4vw;
  padding-left: 1.6em;
}
@media screen and (min-width: 768px) {
  .index .index-nav-sub {
    margin-top: 15px;
  }
}
.index .index-nav-sub > li + li {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .index .index-nav-sub > li + li {
    margin-top: 20px;
  }
}
.index .index-nav-sub > li .read {
  margin-top: 2.6666666667vw;
  padding-left: 1.6em;
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .index .index-nav-sub > li .read {
    margin-top: 10px;
    font-size: 14px;
  }
}
.index .index-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  margin-top: 6.6666666667vw;
  font-size: 4.2666666667vw;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .index .index-button {
    gap: 15px;
    margin-top: 25px;
    font-size: 13px;
  }
}
@media screen and (min-width: 1000px) {
  .index .index-button {
    font-size: 16px;
  }
}
.index .index-button .arrow {
  display: inline-block;
  width: 6.9333333333vw;
  height: 6.9333333333vw;
  background-color: var(--tertiary-color);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .index .index-button .arrow {
    width: 26px;
    height: 26px;
  }
}
.index .index-button .arrow::before {
  content: "";
  display: inline-block;
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  border-right: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  rotate: 55deg;
  translate: 100% -70%;
  transform: skew(20deg);
  scale: 1 1;
  margin-right: 0.5em;
  transition: 0.3s ease all;
}
@media screen and (min-width: 768px) {
  .index .index-button .arrow::before {
    width: 8px;
    height: 8px;
    translate: 100% -30%;
  }
}
@media screen and (min-width: 1000px) {
  .index .index-button .arrow::before {
    translate: 100% -70%;
  }
}
.index .index-button.is-active .arrow::before {
  scale: -1 -1;
  translate: 100% -5%;
}
@media screen and (min-width: 768px) {
  .index .index-button.is-active .arrow::before {
    translate: 100% 35%;
  }
}
@media screen and (min-width: 1000px) {
  .index .index-button.is-active .arrow::before {
    translate: 100% -5%;
  }
}

.concept {
  padding-block: 13.3333333333vw 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .concept {
    padding-block: 50px 55px;
  }
}

.concept-head .concept-head__title {
  position: relative;
  color: var(--primary-color);
  font-family: var(--font-forum);
  font-size: 11.7333333333vw;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept-head .concept-head__title {
    font-size: 44px;
  }
}
.concept-head .concept-head__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 1.4em;
  height: 2px;
  background-color: var(--primary-color);
}

.concept-text {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .concept-text {
    margin-top: 50px;
  }
}
.concept-text .concept-text__lead {
  font-size: 4.2666666667vw;
  line-height: 2.3em;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept-text .concept-text__lead {
    font-size: 16px;
  }
}

.benefit {
  position: relative;
  margin-bottom: -50%;
  padding: 12vw 5.3333333333vw 10.6666666667vw;
  border-radius: 50%;
  background-color: var(--secondary-color);
}
@media screen and (min-width: 768px) {
  .benefit {
    padding: 45px 20px 40px;
  }
}
.benefit::after {
  content: "";
  position: absolute;
  top: 1.0666666667vw;
  left: 1.0666666667vw;
  display: block;
  width: calc(100% - 2.6666666667vw);
  height: calc(100% - 2.6666666667vw);
  border-radius: 50%;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .benefit::after {
    top: 4px;
    left: 4px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
}
.benefit .benefit-head {
  border-bottom: 1px solid #fff;
  margin-bottom: 25px;
  padding-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .benefit .benefit-head {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}
.benefit .benefit-head .benefit-head__title {
  color: #fff;
  font-size: 7.4666666667vw;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .benefit .benefit-head .benefit-head__title {
    font-size: 28px;
  }
}
.benefit .benefit-head .benefit-head__title .num {
  font-size: 11.7333333333vw;
}
@media screen and (min-width: 768px) {
  .benefit .benefit-head .benefit-head__title .num {
    font-size: 44px;
  }
}
.benefit .benefit-text .benefit-text__lead {
  color: #fff;
  font-size: 5.3333333333vw;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .benefit .benefit-text .benefit-text__lead {
    font-size: 20px;
  }
}
.benefit .benefit-arrow {
  margin-top: 5.3333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .benefit .benefit-arrow {
    margin-top: 20px;
  }
}
.benefit .benefit-arrow::after {
  content: "";
  display: inline-block;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  rotate: 45deg;
}
@media screen and (min-width: 768px) {
  .benefit .benefit-arrow::after {
    width: 20px;
    height: 20px;
  }
}

.reason-wrap {
  padding-block: 112vw 40vw;
  background-color: var(--primary-color);
  overflow: clip;
}
@media screen and (min-width: 768px) {
  .reason-wrap {
    padding-block: 320px 150px;
  }
}

.sec-reason {
  position: relative;
  z-index: 1;
  background-color: #fff;
  scroll-margin-top: calc(var(--base-header-sp) + 74.6666666667vw);
}
@media screen and (min-width: 768px) {
  .sec-reason {
    scroll-margin-top: 280px;
  }
}
.sec-reason::before, .sec-reason::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50vw;
  display: block;
  width: 200vw;
  height: 100vw;
  background-color: #fff;
  border-radius: 50% 50% 0 0;
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .sec-reason::before, .sec-reason::after {
    width: 750px;
    height: 375px;
    left: -50%;
  }
}
.sec-reason::before {
  top: -48vw;
  border-radius: 100vw 100vw 0 0;
}
@media screen and (min-width: 768px) {
  .sec-reason::before {
    top: -180px;
    border-radius: 375px 375px 0 0;
  }
}
.sec-reason::after {
  top: auto;
  bottom: -26.6666666667vw;
  border-radius: 0 0 100vw 100vw;
}
@media screen and (min-width: 768px) {
  .sec-reason::after {
    bottom: -100px;
    border-radius: 0 0 375px 375px;
  }
}
.sec-reason:first-child {
  margin-top: 12vw;
}
.sec-reason + .sec-reason {
  margin-top: 101.3333333333vw;
}
@media screen and (min-width: 768px) {
  .sec-reason + .sec-reason {
    margin-top: 380px;
  }
}
.sec-reason .m-buttons {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .sec-reason .m-buttons {
    margin-top: 30px;
  }
}
.sec-reason .sec-reason-inner {
  width: var(--base-width-sp);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sec-reason .sec-reason-inner {
    max-width: 340px;
  }
}
.sec-reason .sec-reason__title {
  margin-bottom: -66.6666666667vw;
  translate: 0 -66.6666666667vw;
}
@media screen and (min-width: 768px) {
  .sec-reason .sec-reason__title {
    margin-bottom: -250px;
    translate: 0 -250px;
  }
}
.sec-reason .sec-reason__title img {
  margin-inline: auto;
}
.sec-reason .sec-reason__lead {
  margin-top: 1.3333333333vw;
  color: var(--primary-color);
  font-size: 5.3333333333vw;
  line-height: 2.3;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .sec-reason .sec-reason__lead {
    margin-top: 5px;
    font-size: 20px;
  }
}
.sec-reason .sec-reason__lead .line {
  display: inline-block;
  border-bottom: 1px solid var(--primary-color);
}
.sec-reason .sec-reason__lead .sup {
  font-size: 0.5em;
  vertical-align: super;
}
.sec-reason .sec-reason__description {
  margin-top: 6.6666666667vw;
  font-size: 4.2666666667vw;
  line-height: 1.9;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-reason .sec-reason__description {
    margin-top: 25px;
    font-size: 16px;
  }
}
.sec-reason .sec-reason-images {
  display: flex;
  justify-content: space-between;
  gap: 2.6666666667vw;
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .sec-reason .sec-reason-images {
    gap: 10px;
    margin-top: 25px;
  }
}
.sec-reason .sec-reason__note {
  width: 94%;
  margin-top: 5.3333333333vw;
  margin-inline: auto;
  font-size: 3.2vw;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .sec-reason .sec-reason__note {
    margin-top: 20px;
    font-size: 12px;
  }
}
.sec-reason .sec-reason__note.--large {
  width: 100%;
}
.sec-reason .product {
  padding: 0;
  background-color: transparent;
}
.sec-reason .product-price-text {
  border: 1px solid #fff;
  background-image: none;
  background-color: var(--secondary-color);
  color: #fff;
}
.sec-reason .product-price-text::after {
  border-color: #fff;
}
.sec-reason .product-price__num {
  background-image: none;
  color: var(--secondary-color);
  -webkit-text-fill-color: initial;
}
.sec-reason .product-price__num::after {
  color: #000;
}
.sec-reason .product-price__yen {
  color: var(--secondary-color);
}
.sec-reason .product-price__yen .tax {
  color: #000;
}

.aftercare-wrap {
  padding-bottom: 12vw;
  background-color: var(--primary-color);
}
@media screen and (min-width: 768px) {
  .aftercare-wrap {
    padding-bottom: 45px;
  }
}

.aftercare-main {
  color: #fff;
}
.aftercare-main .aftercare-main__title {
  margin-top: 12vw;
  font-size: 7.4666666667vw;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .aftercare-main .aftercare-main__title {
    margin-top: 45px;
    font-size: 28px;
  }
}
.aftercare-main .aftercare-main__title .--c-yellow {
  color: var(--tertiary-color);
}
.aftercare-main .aftercare-main__lead {
  margin-top: 12vw;
  font-size: 4.2666666667vw;
  letter-spacing: 0.05em;
  line-height: 1.9;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .aftercare-main .aftercare-main__lead {
    margin-top: 45px;
    font-size: 16px;
  }
}

.sec-aftercare-inner {
  width: var(--base-wrapper-sp);
  margin-top: 12vw;
  margin-inline: auto;
  padding: 8vw 5.3333333333vw;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-inner {
    max-width: 100%;
    margin-top: 45px;
    padding: 30px 25px;
  }
}
.sec-aftercare-inner .sec-aftercare__title {
  margin-bottom: 5.3333333333vw;
  padding-bottom: 5.3333333333vw;
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 6.4vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-inner .sec-aftercare__title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 24px;
  }
}
.sec-aftercare-inner .sec-aftercare__lead {
  font-size: 4.8vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-inner .sec-aftercare__lead {
    font-size: 16px;
  }
}
.sec-aftercare-inner .sec-aftercare__lead .sup {
  font-size: 0.7em;
  vertical-align: super;
}

.sec-aftercare-content {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-content {
    margin-top: 20px;
  }
}
.sec-aftercare-content .sec-aftercare-content-head .sec-aftercare-content__title {
  padding: 2.6666666667vw;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 4.8vw;
  letter-spacing: 0;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-content .sec-aftercare-content-head .sec-aftercare-content__title {
    padding: 10px;
    font-size: 18px;
  }
}
.sec-aftercare-content .sec-aftercare-content-head .sec-aftercare-content__title .sup {
  font-size: 0.55em;
  vertical-align: super;
}
.sec-aftercare-content .sec-aftercare-content-head .sec-aftercare-content__lead {
  margin-top: 5.3333333333vw;
  font-size: 4.5333333333vw;
  letter-spacing: 0em;
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-content .sec-aftercare-content-head .sec-aftercare-content__lead {
    margin-top: 20px;
    font-size: 17px;
  }
}
.sec-aftercare-content .sec-aftercare-content-image {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-content .sec-aftercare-content-image {
    margin-top: 20px;
  }
}
.sec-aftercare-content .aftercare-warranty-image {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-content .aftercare-warranty-image {
    margin-top: 20px;
  }
}
.sec-aftercare-content .aftercare-warranty__lead {
  margin-top: 5.3333333333vw;
  color: var(--secondary-color);
  font-size: 4vw;
  letter-spacing: 0.025em;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-content .aftercare-warranty__lead {
    margin-top: 20px;
    font-size: 15px;
  }
}
.sec-aftercare-content .aftercare-service {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-content .aftercare-service {
    margin-top: 40px;
  }
}
.sec-aftercare-content .aftercare-service-image {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-content .aftercare-service-image {
    margin-bottom: 20px;
  }
}
.sec-aftercare-content .aftercare-service-image.float {
  float: right;
  padding-left: 5.3333333333vw;
  padding-block: 1.3333333333vw 2.6666666667vw;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-content .aftercare-service-image.float {
    padding-left: 20px;
    padding-block: 5px 10px;
  }
}
.sec-aftercare-content .aftercare-service-image img {
  margin-inline: auto;
}
.sec-aftercare-content .aftercare-service__lead {
  font-size: 3.7333333333vw;
  line-height: 1.9;
  letter-spacing: 0;
  font-weight: 500;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-content .aftercare-service__lead {
    font-size: 14px;
  }
}
.sec-aftercare-content .aftercare-service__lead .sup {
  font-size: 0.7em;
  vertical-align: super;
}
.sec-aftercare-content .aftercare-service__summary {
  margin-block: 10.6666666667vw 5.3333333333vw;
  font-size: 4.8vw;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-aftercare-content .aftercare-service__summary {
    margin-block: 40px 20px;
    font-size: 18px;
  }
}

.sec-aftercare__note {
  display: block;
  margin-top: 5.3333333333vw;
  font-size: 3.2vw;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .sec-aftercare__note {
    margin-top: 20px;
    font-size: 12px;
  }
}

.sec-qa {
  padding-block: 10.6666666667vw 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .sec-qa {
    padding-block: 40px 80px;
  }
}

.sec-qa-inner {
  width: var(--base-width-sp-min);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sec-qa-inner {
    max-width: 350px;
  }
}
.sec-qa-inner .m-buttons {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .sec-qa-inner .m-buttons {
    margin-top: 40px;
  }
}

.sec-qa-logo img {
  margin-inline: auto;
}

.sec-qa-head {
  margin-top: 6.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-qa-head {
    margin-top: 25px;
  }
}
.sec-qa-head .sec-qa__title {
  position: relative;
  font-family: var(--font-forum);
  color: var(--primary-color);
  font-size: 11.7333333333vw;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .sec-qa-head .sec-qa__title {
    font-size: 44px;
  }
}
.sec-qa-head .sec-qa__title .small {
  font-size: 0.7em;
}
.sec-qa-head .sec-qa__title::after {
  content: "";
  position: absolute;
  bottom: -0.2em;
  left: calc(50% - 0.75em);
  width: 1.5em;
  height: 2px;
  background-color: var(--primary-color);
}

.sec-qa-container {
  margin-top: 17.3333333333vw;
}
@media screen and (min-width: 768px) {
  .sec-qa-container {
    margin-top: 65px;
  }
}

.sec-qa-content + .sec-qa-content {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .sec-qa-content + .sec-qa-content {
    margin-top: 50px;
  }
}
.sec-qa-content .sec-qa-content__head {
  width: 1.3em;
  flex-shrink: 0;
  font-size: 5.8666666667vw;
  line-height: 1.2;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-qa-content .sec-qa-content__head {
    font-size: 22px;
  }
}
.sec-qa-content .sec-qa-content-question,
.sec-qa-content .sec-qa-content-answer {
  display: flex;
  justify-content: space-between;
  gap: 4vw;
}
@media screen and (min-width: 768px) {
  .sec-qa-content .sec-qa-content-question,
  .sec-qa-content .sec-qa-content-answer {
    gap: 15px;
  }
}
.sec-qa-content .sec-qa-content-question .sec-qa-content__head {
  color: var(--primary-color);
}
.sec-qa-content .sec-qa-content-question__lead {
  font-size: 4vw;
  letter-spacing: 0;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .sec-qa-content .sec-qa-content-question__lead {
    font-size: 15px;
  }
}
.sec-qa-content .sec-qa-content-answer {
  margin-top: 5.3333333333vw;
  padding-top: 5.3333333333vw;
  background-image: radial-gradient(circle, #000000 0.5px, transparent 0.5px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 5px 1px;
}
@media screen and (min-width: 768px) {
  .sec-qa-content .sec-qa-content-answer {
    margin-top: 20px;
    padding-top: 20px;
  }
}
.sec-qa-content .sec-qa-content-answer .sec-qa-content__head {
  color: var(--secondary-color);
}
.sec-qa-content .sec-qa-content-answer__lead {
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .sec-qa-content .sec-qa-content-answer__lead {
    font-size: 14px;
  }
}

.sec-online {
  padding-block: 9.3333333333vw;
  background-color: var(--primary-color);
}
@media screen and (min-width: 768px) {
  .sec-online {
    padding-block: 35px;
  }
}
.sec-online .sec-online-inner {
  width: var(--base-width-sp-middle);
  margin-inline: auto;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .sec-online .sec-online-inner {
    max-width: 320px;
  }
}
.sec-online .sec-online-head {
  position: relative;
  display: flex;
  justify-content: flex-start;
}
.sec-online .sec-online-head .sec-online__title {
  flex-shrink: 0;
  font-size: 6.4vw;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-online .sec-online-head .sec-online__title {
    font-size: 24px;
  }
}
.sec-online .sec-online-head .sec-online-image {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: 35%;
}
.sec-online .sec-online-problem {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .sec-online .sec-online-problem {
    margin-top: 20px;
  }
}
.sec-online .sec-online__lead {
  margin-top: 5.3333333333vw;
  font-size: 4.8vw;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec-online .sec-online__lead {
    margin-top: 20px;
    font-size: 18px;
  }
}
.sec-online .m-buttons {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .sec-online .m-buttons {
    margin-top: 20px;
  }
}

.reason-box {
  margin-top: 12vw;
}
@media screen and (min-width: 768px) {
  .reason-box {
    margin-top: 45px;
  }
}

.reason-box-inner {
  width: var(--base-width-sp);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .reason-box-inner {
    max-width: 340px;
  }
}

.reason-box-content + .reason-box-content {
  margin-top: 12vw;
}
@media screen and (min-width: 768px) {
  .reason-box-content + .reason-box-content {
    margin-top: 45px;
  }
}

.reason-box-head .reason-box__title {
  width: 81.3333333333vw;
  margin-inline: auto;
  padding-block: 0.3em 0.5em;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 5.3333333333vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  clip-path: polygon(100% 0, 100% calc(100% - 2.4vw), 50% 100%, 0 calc(100% - 2.4vw), 0 0);
}
@media screen and (min-width: 768px) {
  .reason-box-head .reason-box__title {
    max-width: 305px;
    font-size: 20px;
    clip-path: polygon(100% 0, 100% calc(100% - 9px), 50% 100%, 0 calc(100% - 9px), 0 0);
  }
}
.reason-box-head .reason-box__lead {
  margin-top: 5.3333333333vw;
  font-size: 4.2666666667vw;
  letter-spacing: 0.025em;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason-box-head .reason-box__lead {
    margin-top: 20px;
    font-size: 16px;
  }
}
.reason-box-head .reason-box__lead .sup {
  font-size: 0.6em;
  vertical-align: super;
}
.reason-box-head .reason-box__summary {
  margin-top: 5.3333333333vw;
  font-size: 3.7333333333vw;
  line-height: 1.9;
  letter-spacing: 0;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason-box-head .reason-box__summary {
    margin-top: 20px;
    font-size: 14px;
  }
}

.reason-box-images {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .reason-box-images {
    margin-top: 20px;
  }
}
.reason-box-images .reason-box-image__lead {
  margin-top: 1.3333333333vw;
  font-size: 3.7333333333vw;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .reason-box-images .reason-box-image__lead {
    margin-top: 5px;
    font-size: 14px;
  }
}
.reason-box-images .reason-box-image__lead .sup {
  font-size: 0.7em;
  vertical-align: super;
}
.reason-box-images .reason-box-image__lead.--center {
  text-align: center;
}
.reason-box-images .reason-box-image__lead.--small {
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .reason-box-images .reason-box-image__lead.--small {
    font-size: 12px;
  }
}
.reason-box-images.--col2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 4vw;
}
@media screen and (min-width: 768px) {
  .reason-box-images.--col2 {
    row-gap: 15px;
  }
}
.reason-box-images.--col2 .reason-box-image {
  width: 48%;
}

.equipment-container {
  margin-top: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment-container {
    margin-top: 35px;
  }
}

.equipment-content + .equipment-content {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment-content + .equipment-content {
    margin-top: 20px;
  }
}

.equipment-content-head .equipment-content__title {
  padding-block: 0.4em;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 3.7333333333vw;
  letter-spacing: 0.05em;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .equipment-content-head .equipment-content__title {
    font-size: 14px;
  }
}

.equipment-content-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 5.3333333333vw;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment-content-inner {
    row-gap: 20px;
    margin-top: 20px;
  }
}

.equipment-content-item {
  width: 49%;
  cursor: pointer;
}
.equipment-content-item .equipment-content-image {
  position: relative;
}
.equipment-content-item .equipment-content-image::after {
  content: "";
  position: absolute;
  bottom: 2.6666666667vw;
  left: 2.6666666667vw;
  display: block;
  width: 8vw;
  height: 8vw;
  background-image: url(../myimg/icon-plus.svg);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .equipment-content-item .equipment-content-image::after {
    bottom: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
  }
}
.equipment-content-item .equipment-content-image.no-link::after {
  content: none;
}
.equipment-content-item .equipment-content__name {
  margin-top: 1.3333333333vw;
  font-size: 3.7333333333vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .equipment-content-item .equipment-content__name {
    margin-top: 5px;
    font-size: 14px;
  }
}
.equipment-content-item .equipment-content__summary {
  margin-top: 0vw;
  font-size: 3.2vw;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .equipment-content-item .equipment-content__summary {
    margin-top: 0px;
    font-size: 12px;
  }
}
.equipment-content-item .equipment-content__note {
  margin-top: 1.8666666667vw;
  font-size: 3.2vw;
  letter-spacing: 0;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .equipment-content-item .equipment-content__note {
    margin-top: 7px;
    font-size: 12px;
  }
}

.plan-bg {
  margin-top: 12vw;
  background-color: #fff7b9;
  padding-block: 16vw 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-bg {
    margin-top: 45px;
    padding-block: 60px 40px;
  }
}
.plan-bg .plan-map-button.plan01-button01 {
  top: 17%;
  left: 57%;
}
.plan-bg .plan-map-button.plan01-button02 {
  top: 44%;
  left: 84%;
}
.plan-bg .plan-map-button.plan01-button03 {
  top: 11%;
  left: 20%;
}
.plan-bg .plan-map-button.plan01-button04 {
  top: 1%;
  left: 64.4%;
}
.plan-bg .plan-map-button.plan01-button05 {
  top: 62%;
  left: 71%;
}

.plan-service {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-service {
    margin-top: 40px;
  }
}

.plan-service-inner {
  width: var(--base-width-sp);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .plan-service-inner {
    max-width: 340px;
  }
}

.plan-service__note {
  display: block;
  margin-top: 2.6666666667vw;
  font-size: 3.2vw;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .plan-service__note {
    margin-top: 10px;
    font-size: 12px;
  }
}

.reason-ehime {
  margin-bottom: 9.3333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reason-ehime {
    margin-bottom: 35px;
  }
}
.reason-ehime .reason-ehime__title {
  display: inline-block;
  padding-bottom: 0.4em;
  color: #405b57;
  font-size: 4.2666666667vw;
  letter-spacing: 0.05em;
  line-height: 1;
  border-bottom: 1px solid;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .reason-ehime .reason-ehime__title {
    font-size: 16px;
  }
}
.reason-ehime .reason-ehime__lead {
  margin-top: 6.6666666667vw;
  font-size: 4.2666666667vw;
  letter-spacing: 0.05em;
  line-height: 1.9;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .reason-ehime .reason-ehime__lead {
    margin-top: 25px;
    font-size: 16px;
  }
}

.livability-content {
  margin-top: 7.2vw;
  padding-top: 7.2vw;
  border-top: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .livability-content {
    margin-top: 27px;
    padding-top: 27px;
  }
}
.livability-content .livability__title {
  font-size: 4.2666666667vw;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .livability-content .livability__title {
    font-size: 16px;
  }
}
.livability-content .livability-images {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .livability-content .livability-images {
    margin-top: 20px;
  }
}
.livability-content .livability__description {
  margin-top: 5.3333333333vw;
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.9;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .livability-content .livability__description {
    margin-top: 20px;
    font-size: 14px;
  }
}
.livability-content .livability__description .sup {
  font-size: 0.7em;
  vertical-align: super;
}

.weather-content {
  margin-top: 12vw;
}
@media screen and (min-width: 768px) {
  .weather-content {
    margin-top: 45px;
  }
}
.weather-content .weather-content-head {
  padding-left: 0.3em;
  border-left: 4px solid #649644;
}
.weather-content .weather-content-head .weather-content__title {
  font-size: 4.2666666667vw;
  letter-spacing: 0;
  line-height: 1.5;
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .weather-content .weather-content-head .weather-content__title {
    font-size: 16px;
  }
}
.weather-content .weather-content-head .weather-content__lead {
  display: block;
  margin-top: 0.4em;
  font-size: 3.4666666667vw;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .weather-content .weather-content-head .weather-content__lead {
    font-size: 13px;
  }
}
.weather-content .weather-content-table {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .weather-content .weather-content-table {
    margin-top: 15px;
  }
}

.weather-example {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .weather-example {
    margin-top: 30px;
  }
}
.weather-example .weather-example-head .weather-example__title {
  padding-block: 0.3em;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 4.5333333333vw;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .weather-example .weather-example-head .weather-example__title {
    font-size: 17px;
  }
}
.weather-example .weather-example-images {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .weather-example .weather-example-images {
    margin-top: 15px;
  }
}

.plan-inner {
  width: var(--base-wrapper-sp);
  margin-inline: auto;
  border: 1px solid var(--secondary-color);
  background-color: #fff;
  padding: 0 4vw 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .plan-inner {
    max-width: 350px;
    padding: 0 15px 25px;
  }
}

.plan-label {
  width: 66.6666666667vw;
  translate: 0 -50%;
  margin-inline: auto;
  padding: 2.6666666667vw;
  background-color: var(--secondary-color);
  font-family: var(--font-forum);
  color: #fff;
  font-size: 9.8666666667vw;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, calc(100% - 4vw) 50%, 100% 100%, 0 100%, 4vw 50%);
}
@media screen and (min-width: 768px) {
  .plan-label {
    max-width: 250px;
    padding: 10px;
    font-size: 37px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 50%, 100% 100%, 0 100%, 15px 50%);
  }
}

.plan-tag {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6%;
}
.plan-tag > li {
  width: 32%;
  padding: 0.6em;
  background-color: var(--secondary-color);
  border-radius: 5px;
  color: #fff;
  font-size: 4.2666666667vw;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan-tag > li {
    font-size: 16px;
  }
}

.plan-head {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .plan-head {
    margin-top: 30px;
  }
}
.plan-head .plan-head__title {
  padding-bottom: 6.6666666667vw;
  font-size: 5.3333333333vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan-head .plan-head__title {
    padding-bottom: 25px;
    font-size: 20px;
  }
}
.plan-head .plan-head__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6.6666666667vw;
  background-image: radial-gradient(circle, #000000 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 7px 2px;
}
@media screen and (min-width: 768px) {
  .plan-head .plan-head__title::after {
    margin-top: 25px;
  }
}
.plan-head .plan-head__description {
  font-size: 3.4666666667vw;
  letter-spacing: 0.025em;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan-head .plan-head__description {
    font-size: 13px;
  }
}

.plan-map {
  position: relative;
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .plan-map {
    margin-top: 30px;
  }
}

.plan-option {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .plan-option {
    margin-top: 20px;
  }
}
.plan-option .plan-option-list > li {
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .plan-option .plan-option-list > li {
    font-size: 14px;
  }
}

.plan-images {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .plan-images {
    margin-top: 15px;
  }
}
.plan-images .plan-image__note {
  display: block;
  margin-top: 2.6666666667vw;
  font-size: 3.2vw;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 300;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .plan-images .plan-image__note {
    margin-top: 10px;
    font-size: 12px;
  }
}

.plan-map-button {
  position: absolute;
  display: inline-block;
  width: 6.1333333333vw;
  height: 6.1333333333vw;
  background-color: color-mix(in srgb, var(--primary-color) 75%, transparent);
  color: #fff;
  font-size: 4vw;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .plan-map-button {
    width: 23px;
    height: 23px;
    font-size: 15px;
  }
}
.plan-map-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 65%;
  height: 65%;
  border: 1.0666666667vw solid color-mix(in srgb, var(--primary-color) 75%, transparent);
  animation: buttonAnimation infinite 2s linear;
}
@media screen and (min-width: 768px) {
  .plan-map-button::after {
    border-width: 4px;
  }
}

.modal-box {
  display: none;
}

.modaal-content-container {
  padding: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .modaal-content-container {
    padding: 20px;
  }
}

.modaal-container {
  position: relative;
}
@media screen and (min-width: 768px) {
  .modaal-container {
    max-width: 375px;
  }
}
.modaal-container .modaal-close {
  position: absolute;
  top: 4vw;
  right: 4vw;
  width: 9.3333333333vw;
  height: 9.3333333333vw;
  background-color: var(--primary-color);
}
@media screen and (min-width: 768px) {
  .modaal-container .modaal-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }
}
.modaal-container .modaal-close::before, .modaal-container .modaal-close::after {
  top: 50%;
  left: 50%;
  translate: -40% -45%;
}
@media screen and (min-width: 768px) {
  .modaal-container .modaal-close::before, .modaal-container .modaal-close::after {
    translate: -50% -50%;
  }
}
.modaal-container .modaal-close::after {
  top: 50%;
  left: 50%;
}
.modaal-container .modaal-close:hover {
  opacity: 0.85;
}
.modaal-container .modaal-close:hover::before, .modaal-container .modaal-close:hover::after {
  background-color: #fff;
}

.popup-modal .popup-modal-num {
  display: inline-block;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 8.5333333333vw;
  line-height: 1.4;
  text-align: center;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .popup-modal .popup-modal-num {
    width: 50px;
    height: 50px;
    font-size: 32px;
  }
}
.popup-modal .popup-modal-head {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .popup-modal .popup-modal-head {
    margin-top: 15px;
  }
}
.popup-modal .popup-modal-head .popup-modal-head__title {
  margin-bottom: 5.3333333333vw;
  padding-bottom: 5.3333333333vw;
  font-size: 5.6vw;
  letter-spacing: 0;
  line-height: 1.4;
  font-weight: 500;
  border-bottom: 1px dotted #000;
}
@media screen and (min-width: 768px) {
  .popup-modal .popup-modal-head .popup-modal-head__title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 21px;
  }
}
.popup-modal .popup-modal-content .popup-modal-content__description {
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.9;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .popup-modal .popup-modal-content .popup-modal-content__description {
    font-size: 14px;
  }
}

.equipment-modal .equipment-modal-head {
  margin-top: 4vw;
  margin-bottom: 4.8vw;
  padding-bottom: 4.8vw;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-head {
    margin-top: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
}
.equipment-modal .equipment-modal-head .equipment-modal-head__title {
  font-size: 4.2666666667vw;
  letter-spacing: 0;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-head .equipment-modal-head__title {
    font-size: 16px;
  }
}
.equipment-modal .equipment-modal-head .equipment-modal-head__title::first-letter {
  color: var(--primary-color);
}
.equipment-modal .equipment-modal-head .equipment-modal-head__title .sup {
  font-size: 0.65em;
  vertical-align: super;
}
.equipment-modal .equipment-modal-head .equipment-modal-head__sub {
  margin-top: 2.6666666667vw;
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-head .equipment-modal-head__sub {
    margin-top: 10px;
    font-size: 14px;
  }
}
.equipment-modal .equipment-modal-head .equipment-modal-head__note {
  margin-top: 1.3333333333vw;
  font-size: 3.2vw;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-head .equipment-modal-head__note {
    margin-top: 5px;
    font-size: 12px;
  }
}
.equipment-modal .equipment-modal-content .equipment-modal-content__description {
  font-size: 3.7333333333vw;
  line-height: 1.9;
  letter-spacing: 0;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-content .equipment-modal-content__description {
    font-size: 14px;
  }
}
.equipment-modal .equipment-modal-content .equipment-modal-content__description .sup {
  font-size: 0.7em;
  vertical-align: super;
}
.equipment-modal .equipment-modal-content .equipment-modal-content__note {
  margin-top: 4vw;
  font-size: 3.2vw;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-content .equipment-modal-content__note {
    margin-top: 15px;
    font-size: 12px;
  }
}
.equipment-modal .equipment-modal-content .equipment-modal-content__note .sup {
  font-size: 0.85em;
  vertical-align: super;
}
.equipment-modal .equipment-modal-content + .equipment-modal-content {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-content + .equipment-modal-content {
    margin-top: 20px;
  }
}
.equipment-modal .equipment-modal-images-wrap {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-images-wrap {
    margin-top: 30px;
  }
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images__title {
  margin-bottom: 2.6666666667vw;
  padding: 0.4em 0.6em;
  background-color: #efefe1;
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-images-wrap .equipment-modal-images__title {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images__title .sup {
  font-size: 0.7em;
  vertical-align: super;
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images__title.--t-left {
  text-align: left;
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images .equipment-modal-image__color {
  margin-bottom: 2.6666666667vw;
  padding: 0.2em;
  background-color: #efefe1;
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-images-wrap .equipment-modal-images .equipment-modal-image__color {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images .equipment-modal-image.--harf {
  width: 65%;
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images .equipment-modal-image + .equipment-modal-image {
  margin-top: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-images-wrap .equipment-modal-images .equipment-modal-image + .equipment-modal-image {
    margin-top: 5px;
  }
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images .equipment-modal-image__lead {
  font-size: 3.4666666667vw;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-images-wrap .equipment-modal-images .equipment-modal-image__lead {
    font-size: 13px;
  }
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images .equipment-modal-image__lead .sup {
  font-size: 0.8em;
  vertical-align: super;
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images.--col2 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4%;
  row-gap: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-images-wrap .equipment-modal-images.--col2 {
    row-gap: 20px;
  }
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images.--col2 .equipment-modal-image {
  width: 48%;
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images.--col2 .equipment-modal-image + .equipment-modal-image {
  margin-top: 0vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-images-wrap .equipment-modal-images.--col2 .equipment-modal-image + .equipment-modal-image {
    margin-top: 0px;
  }
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images.--col3 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3%;
  row-gap: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-images-wrap .equipment-modal-images.--col3 {
    row-gap: 20px;
  }
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images.--col3 .equipment-modal-image {
  width: 31%;
}
.equipment-modal .equipment-modal-images-wrap .equipment-modal-images.--col3 .equipment-modal-image + .equipment-modal-image {
  margin-top: 0vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .equipment-modal-images-wrap .equipment-modal-images.--col3 .equipment-modal-image + .equipment-modal-image {
    margin-top: 0px;
  }
}
.equipment-modal .button-close {
  display: block;
  width: 5em;
  margin-top: 12vw;
  margin-inline: auto;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .equipment-modal .button-close {
    margin-top: 45px;
  }
}
.equipment-modal .button-close .icon {
  display: inline-block;
  position: relative;
  width: 4.8vw;
  height: 4.8vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .button-close .icon {
    width: 18px;
    height: 18px;
  }
}
.equipment-modal .button-close .icon::before, .equipment-modal .button-close .icon::after {
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  translate: 50% 0;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #000;
  transition: background 0.2s ease-in-out;
}
.equipment-modal .button-close .icon::before {
  transform: rotate(-45deg);
}
.equipment-modal .button-close .icon::after {
  transform: rotate(45deg);
}
.equipment-modal .sub-content {
  --target-color: var(--page-color);
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .sub-content {
    margin-top: 25px;
  }
}
.equipment-modal .sub-content.--orange {
  --target-color: var(--secondary-color);
}
.equipment-modal .sub-content.--green {
  --target-color: var(--primary-color);
}
.equipment-modal .sub-content .sub-content__title {
  padding: 0 1.3333333333vw 2.6666666667vw;
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .equipment-modal .sub-content .sub-content__title {
    padding: 0 5px 10px;
    font-size: 14px;
  }
}
.equipment-modal .sub-content .sub-content-inner {
  padding: 5.3333333333vw;
  border: 1px solid;
  border-color: var(--target-color);
}
@media screen and (min-width: 768px) {
  .equipment-modal .sub-content .sub-content-inner {
    padding: 20px;
  }
}
.equipment-modal .sub-content .equipment-modal-images-wrap {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .sub-content .equipment-modal-images-wrap {
    margin-top: 10px;
  }
}
.equipment-modal .sub-content .sub-content-type01 .sub-content-type01-box + .sub-content-type01-box {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .sub-content .sub-content-type01 .sub-content-type01-box + .sub-content-type01-box {
    margin-top: 20px;
  }
}
.equipment-modal .sub-content .sub-content-type01 .sub-content-type01__title {
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .equipment-modal .sub-content .sub-content-type01 .sub-content-type01__title {
    font-size: 14px;
  }
}
.equipment-modal .sub-content .sub-content-type01 .sub-content-type01__title::first-letter {
  color: var(--target-color);
}
.equipment-modal .sub-content .sub-content-type01 .sub-content-type01__title .sup {
  font-size: 0.7em;
}
.equipment-modal .sub-content .sub-content-type01 .sub-content-type01__lead {
  margin-top: 2.6666666667vw;
  font-size: 3.2vw;
  letter-spacing: 0;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .equipment-modal .sub-content .sub-content-type01 .sub-content-type01__lead {
    margin-top: 10px;
    font-size: 12px;
  }
}
.equipment-modal .sub-content .sub-content-type02__title {
  margin-bottom: 4vw;
  padding: 0.3em;
  background-color: var(--target-color);
  color: #fff;
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .equipment-modal .sub-content .sub-content-type02__title {
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.equipment-modal .sub-content .sub-content-type02__lead {
  margin-bottom: 1.3333333333vw;
  font-size: 3.2vw;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .equipment-modal .sub-content .sub-content-type02__lead {
    margin-bottom: 5px;
    font-size: 12px;
  }
}
.equipment-modal .sub-content .sub-content-type02__lead img {
  display: inline-block;
}
.equipment-modal .sub-content .sub-content-type02__lead.--t-center {
  text-align: center;
}
.equipment-modal .sub-content .sub-content-type02-inner {
  display: flex;
  justify-content: space-between;
  gap: 2.6666666667vw;
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .sub-content .sub-content-type02-inner {
    gap: 10px;
    margin-top: 15px;
  }
}
.equipment-modal .sub-content .sub-content-type02-inner .sub-content-type02-image {
  width: 60%;
  flex-shrink: 0;
}
.equipment-modal .sub-content .sub-content-type02-inner .sub-content-type02-image.--harf {
  width: 49%;
}
.equipment-modal .smart-heim {
  margin-top: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .smart-heim {
    margin-top: 35px;
  }
}
.equipment-modal .smart-heim .smart-heim-caption {
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .equipment-modal .smart-heim .smart-heim-caption {
    font-size: 14px;
  }
}
.equipment-modal .smart-heim .smart-heim-image {
  width: 100%;
  margin-top: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .smart-heim .smart-heim-image {
    margin-top: 5px;
  }
}
.equipment-modal .smart-heim .smart-heim-image img {
  width: 100%;
  transition: width 0.4s ease;
  max-width: none;
}
.equipment-modal .smart-heim .smart-heim-image.is-active img {
  width: 200%;
  max-width: none;
}
.equipment-modal .smart-heim .smart-heim-zoom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.6666666667vw;
  width: 5.5em;
  margin-inline: auto;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .smart-heim .smart-heim-zoom {
    gap: 10px;
    margin-top: 20px;
  }
}
.equipment-modal .smart-heim .smart-heim-zoom .icon {
  display: inline-block;
  width: 8vw;
  height: 8vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .smart-heim .smart-heim-zoom .icon {
    width: 30px;
    height: 30px;
  }
}
.equipment-modal .smart-heim .smart-heim-zoom .icon svg .cls-1 {
  fill: none;
  stroke: #231815;
  stroke-miterlimit: 10;
}
.equipment-modal .smart-heim .smart-heim-zoom .icon svg .cls-2 {
  fill: #fff;
}
.equipment-modal .feature-content {
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .feature-content {
    margin-top: 25px;
  }
}
.equipment-modal .feature-content .feature-content-head .feature-content-head__title {
  background-color: #efefe1;
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .equipment-modal .feature-content .feature-content-head .feature-content-head__title {
    font-size: 14px;
  }
}
.equipment-modal .feature-content .feature-content-inner {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .feature-content .feature-content-inner {
    margin-top: 10px;
  }
}
.equipment-modal .feature-content .feature-content-inner .feature-content__lead {
  padding-inline: 0.5em;
  font-size: 3.7333333333vw;
  line-height: 1.7;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .equipment-modal .feature-content .feature-content-inner .feature-content__lead {
    font-size: 14px;
  }
}
.equipment-modal .t-sas {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .t-sas {
    margin-top: 40px;
  }
}
.equipment-modal .t-sas .t-sas__description {
  font-size: 4.8vw;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .equipment-modal .t-sas .t-sas__description {
    font-size: 18px;
  }
}
.equipment-modal .t-sas .t-sas-contain {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .t-sas .t-sas-contain {
    margin-top: 20px;
  }
}
.equipment-modal .t-sas .t-sas-content {
  text-align: center;
}
.equipment-modal .t-sas .t-sas-content .t-sas-content__title {
  background-color: #efefe1;
  font-size: 4.2666666667vw;
  letter-spacing: 0;
  line-height: 1.7;
  padding: 0.3em;
}
@media screen and (min-width: 768px) {
  .equipment-modal .t-sas .t-sas-content .t-sas-content__title {
    font-size: 16px;
  }
}
.equipment-modal .t-sas .t-sas-content .t-sas-content__title .accent {
  color: var(--primary-color);
}
.equipment-modal .t-sas .t-sas-content .t-sas-content__lead {
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.9;
  padding: 0.3em;
}
@media screen and (min-width: 768px) {
  .equipment-modal .t-sas .t-sas-content .t-sas-content__lead {
    font-size: 14px;
  }
}
.equipment-modal .t-sas .t-sas-content + .t-sas-content {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .equipment-modal .t-sas .t-sas-content + .t-sas-content {
    margin-top: 10px;
  }
}

.js-toggle {
  display: none;
}/*# sourceMappingURL=style.css.map */