@charset "UTF-8";
/* ----------------------------------------------------
 common
 ---------------------------------------------------- */
body {
  background-color: #141414;
}

/* ----------------------------------------------------
 First View
 ---------------------------------------------------- */
#fv-left-contents {
  display: none;
  background: url("../../assets/img/mv-bg.png") no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  #fv-left-contents {
    position: fixed;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 120px;
    width: calc(100% - 440px);
    height: 100%;
    padding-top: 200px;
    transition: opacity 0.5s ease;
  }
}
@media screen and (min-width: 1024px) {
  #fv-left-contents {
    width: calc(100% - 440px - clamp(280px, 23vw, 330px));
  }
}
@media screen and (min-width: 1440px) {
  #fv-left-contents {
    width: calc(100% - 500px - 400px);
  }
}
#fv-left-contents .fv-copy {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
#fv-left-contents .fv-copy.is-visible {
  opacity: 1;
}

#fv-right-contents {
  display: none;
}
@media screen and (min-width: 1024px) {
  #fv-right-contents {
    position: fixed;
    top: 0;
    right: 0;
    width: clamp(260px, 23vw, 330px);
    height: 100%;
    background: var(--color-grad);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 10vh;
  }
}
@media screen and (min-width: 1440px) {
  #fv-right-contents {
    width: 500px;
  }
}
#fv-right-contents::before {
  content: "";
  position: absolute;
  top: 100px;
  right: 0;
  z-index: 1;
  background: url("../../assets/img/line-top.svg") no-repeat center center;
  background-size: contain;
  width: 83px;
  height: 94px;
}
#fv-right-contents::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: url("../../assets/img/line-btm.svg") no-repeat center center;
  background-size: contain;
  width: 117px;
  height: 125px;
}
#fv-right-contents .contents-container {
  position: static;
  width: 100%;
  max-width: 400px;
  padding: 0 20px;
}
#fv-right-contents .fv-ankhor-list-item {
  cursor: pointer;
  width: fit-content;
}
#fv-right-contents .fv-ankhor-list-item + .fv-ankhor-list-item {
  margin-top: 4px;
}
#fv-right-contents .fv-ankhor-list-item > a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 3px 10px;
  transition: color 0.3s ease-in-out;
}
#fv-right-contents .fv-ankhor-list-item > a:hover {
  color: #5eb74f;
}
#fv-right-contents .fv-ankhor-list-item > a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  margin-right: 10px;
  transition: transform 0.3s ease-in-out;
}
#fv-right-contents .fv-ankhor-list-item > a:hover::before {
  border-top: solid 1px #5eb74f;
  border-right: solid 1px #5eb74f;
  transform: rotate(45deg) translate(4px, -4px);
}
#fv-right-contents .inner-cv-buttons {
  position: relative;
  z-index: 2;
  padding-left: 0;
  padding-right: 0;
}
#fv-right-contents .inner-cv-buttons .cv-button__txt.small {
  /* 変化量を大きく（1024pxで8px → 1440pxで14px）狭い幅で改行しにくく */
  font-size: clamp(8px, 8px + 6 * (100vw - 1024px) / 416, 14px);
}
#fv-right-contents .inner-cv-buttons .cv-button__txt.large {
  /* 変化量を大きく（1024pxで14px → 1440pxで20px） */
  font-size: clamp(14px, 14px + 6 * (100vw - 1024px) / 416, 20px);
}

/* ----------------------------------------------------
 Footer
 ---------------------------------------------------- */
@media screen and (min-width: 768px) {
  .l-footerTop .l-footerWrap {
    padding: 15px 30px 0;
  }
}
.l-footerTop .l-footerWrap > div {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.l-footerTop .l-footerNav {
  flex-wrap: nowrap;
  gap: 0;
}
.l-footerTop .l-footerSns {
  position: static;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: auto;
  margin-top: 15px;
}

/* ----------------------------------------------------
 main contents
 ---------------------------------------------------- */
.page-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .page-wrapper {
    margin-top: 100px;
  }
}
.page-wrapper .main-contents {
  background: #fff;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-shadow: none !important;
  padding: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-wrapper .main-contents {
    max-width: 440px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .page-wrapper .main-contents {
    margin-right: clamp(260px, 23vw, 330px);
  }
}
@media screen and (min-width: 1440px) {
  .page-wrapper .main-contents {
    margin-right: 500px;
  }
}
.page-wrapper .main-contents img {
  width: 100%;
  height: auto;
}

/* ----------------------------------------------------
 cv buttons design
 ---------------------------------------------------- */
a.cv-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  color: #fff;
  width: 100%;
  border-radius: 60px;
  padding: 8px 40px;
  transition: all 0.4s ease-in-out;
}
a.cv-button.green {
  background-color: #03C13D;
}
a.cv-button.green:hover {
  color: #03C13D;
  background-color: #fff;
}
a.cv-button.green:hover::after {
  border-color: #03C13D;
}
a.cv-button.black {
  background-color: #141414;
  border: 1px solid #fff;
}
a.cv-button.black:hover {
  color: #141414;
  background-color: #fff;
}
a.cv-button.black:hover::after {
  border-color: #141414;
}
a.cv-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.4s ease-in-out;
}

.cv-button__txt {
  display: block;
  font-weight: 700;
}
.cv-button__txt.small {
  font-size: 14px;
}
.cv-button__txt.large {
  font-size: 20px;
}

/* ----------------------------------------------------
 Attention
 ---------------------------------------------------- */
.attention {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.attention li {
  display: table;
  font-size: 10px;
}
.attention li::before {
  content: "※";
  display: table-cell;
  padding-right: 6px;
}
.attention li a {
  text-decoration: underline;
}

/* ----------------------------------------------------
 Hero
 ---------------------------------------------------- */
.hero {
  width: 100%;
  background-color: #141414;
}

.inner-cv-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 36px 30px 24px;
}

/* ----------------------------------------------------
 Problem
 ---------------------------------------------------- */
.problem {
  width: 100%;
  margin: -1px 0 -140px;
}

/* ----------------------------------------------------
 Compare
 ---------------------------------------------------- */
.compare {
  background-color: #5EB74F;
  padding: 100px 0 30px 30px;
}
.compare img {
  position: relative;
  z-index: 2;
}

/* ----------------------------------------------------
 About
 ---------------------------------------------------- */
.about {
  background-color: #F5F5F5;
  border-top: 3px solid #141414;
}
.about__content {
  position: relative;
  padding: 0 20px 40px;
  margin-top: -30px;
}
.about__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 18px;
  }
}
.about__title span {
  display: inline-block;
  background-color: #141414;
  padding: 0 10px;
  margin-bottom: 6px;
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #141414;
  font-size: 14px;
}
.about__text ul li {
  position: relative;
  font-weight: 700;
  padding-left: 16px;
}
.about__text ul li + li {
  margin-top: 5px;
}
.about__text ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #141414;
  border-radius: 50%;
}

/* ----------------------------------------------------
 CV
 ---------------------------------------------------- */
.cv {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #F5F5F5;
  border-top: 3px solid #141414;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .cv {
    padding: 30px 40px;
  }
}
.cv .cv-button__txt.large {
  font-size: clamp(14px, 14px + 6 * (100vw - 1024px) / 416, 18px);
}

/* ----------------------------------------------------
Feature
---------------------------------------------------- */
.feature {
  background-color: #fff;
}
.feature03 {
  padding-bottom: 20px;
}
.feature__hero {
  position: relative;
  min-height: 160px;
}
.feature__hero-01::after {
  content: "";
  position: absolute;
  bottom: -58px;
  right: 30px;
  z-index: 1;
  width: 116px;
  height: 116px;
  background: url("../../assets/img/feature01-icon.svg") no-repeat center center;
  background-size: contain;
}
.feature__content {
  padding: 30px 30px 60px;
}
.feature__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 30px;
}
.feature__title span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  background-color: #141414;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .feature__title span {
    font-size: 18px;
  }
}
.feature__text:not(:last-child) {
  margin-bottom: 30px;
}
.feature__text h3 {
  color: #141414;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}
.feature__text h3 span {
  border-bottom: 3px solid #5CB74F;
}
.feature__text p {
  font-size: 14px;
  letter-spacing: -0.6px;
}
.feature__text p + * {
  margin-top: 20px;
}
.feature__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.feature__list-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature__list-item.mt {
  margin-top: -12px;
}
.feature__list-item img {
  width: 100%;
  height: auto;
}
.feature__list-item h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
.feature__list-item p {
  font-size: 14px;
}

/* ----------------------------------------------------
Feature(Tabs)
---------------------------------------------------- */
.tabs-container .tabs-header {
  display: flex;
  justify-content: center;
  gap: 3px;
  position: relative;
  height: 47px;
  border-bottom: 3px solid #5EB74F;
  margin-bottom: 10px;
}
.tabs-container .tabs-header .tab {
  position: relative;
  background: #E6E6E6;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
  z-index: 1;
  /* 平行四辺形の形状 */
  width: 100px;
  height: 44px;
  transform: skewX(-15deg);
  transform-origin: bottom left;
}
.tabs-container .tabs-header .tab:hover {
  background: #e0e0e0;
  z-index: 2;
}
.tabs-container .tabs-header .tab.active {
  background: #5EB74F;
  z-index: 3;
}
.tabs-container .tabs-header {
  /* テキストは元に戻す（skewを打ち消す） */
}
.tabs-container .tabs-header .tab-text {
  display: inline-block;
  color: #5EB74F;
  font-size: 28px;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  transform: skewX(15deg);
}
.tabs-container .tabs-header .tab-text small {
  font-size: 18px;
  margin-right: 4px;
}
.tabs-container .tabs-header .tab.active .tab-text {
  color: #fff;
}
.tabs-container {
  /* コンテンツエリア */
}
.tabs-container .tabs-content {
  position: relative;
  z-index: 0;
  background: #5EB74F;
}
.tabs-container .tabs-content .tab-panel {
  display: none;
}
.tabs-container .tabs-content .tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.tabs-container .tabs-content .tab-panel__text {
  padding: 30px 30px 40px;
}
.tabs-container .tabs-content .tab-panel__text h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.1px;
  margin-bottom: 20px;
}
.tabs-container .tabs-content .tab-panel__text p {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.7px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ----------------------------------------------------
 Price
 ---------------------------------------------------- */
.price {
  padding-bottom: 40px;
}
.price__hero {
  min-height: 160px;
}
.price__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 30px 30px;
}
.price__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.9px;
  text-align: center;
}
.price__title span {
  border-bottom: 3px solid #5CB74F;
}
.price__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ----------------------------------------------------
Voice
---------------------------------------------------- */
.voice {
  background-color: #5EB74F;
  border-top: 3px solid #141414;
}
.voice__hero {
  min-height: 140px;
}
.voice__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 30px 40px 16px;
}
.voice__list-item {
  display: flex;
  flex-direction: column;
}
.voice__list-item p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.7px;
  text-align: center;
  padding: 10px 0 5px;
  margin-right: -20px;
}

/* ----------------------------------------------------
 Store
 ---------------------------------------------------- */
.store__hero {
  position: relative;
  z-index: 1;
}
.store__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 30px 50px;
}
.store__content-item:first-child {
  background-color: #fff;
  padding: 10px;
  margin-top: -40px;
}
.store .gps-map-area {
  width: 100%;
  height: 420px;
}
.store .gps-map-area > #map-gps {
  width: 100%;
  height: 100%;
}
.store .gps-map-area_err_message {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}
.store .l-shopListArea .l-shopListArea_item .l-shopListTitle {
  background-color: #E6E6E6;
}
.store .l-shopListArea .l-shopListArea_item .l-shopListTitle .c-circlePlus {
  width: 24px;
  height: 24px;
}
.store .l-shopListArea .l-shopListArea_item .l-shopListTitle .c-circlePlus::before {
  height: 1px;
}
.store .l-shopListArea .l-shopListArea_item .l-shopListTitle .c-circlePlus::after {
  width: 1px;
}
.store .l-shopListArea .l-shopListArea_item .l-shopListCont {
  padding: 20px 0;
}
.store .l-shopListArea .l-shopListArea_item .l-shopListCont .l-shopListBox .shoName a {
  color: #141414;
  font-weight: 700;
  font-size: 14px;
  padding-left: 16px;
  margin-bottom: 10px;
}
.store .l-shopListArea .l-shopListArea_item .l-shopListCont .l-shopListBox .shoName a::before {
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: transparent;
  border-radius: 0;
  border-right: 2px solid #141414;
  border-bottom: 2px solid #141414;
  transform: rotate(-45deg);
}
.store .l-shopListArea .l-shopListArea_item .l-shopListCont .l-shopListBox .shoName a .combi {
  background-color: #141414;
}
.store__text {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.7px;
  text-align: right;
  margin-top: 30px;
}
.store__text span {
  display: inline-block;
  color: #fff;
  background-color: #141414;
  padding: 0 4px;
}

/* ----------------------------------------------------
 Trial
 ---------------------------------------------------- */
.trial {
  position: relative;
  padding-right: 30px;
}
.trial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #141414;
  clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
}
.trial::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 166px;
  height: 142px;
  background: url("../../assets/img/trial-line.svg") no-repeat center;
  background-size: contain;
}
.trial__hero {
  position: relative;
  z-index: 2;
}
.trial__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 0 30px 30px;
}
.trial__content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.trial__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trial__text h2 {
  color: #5EB74F;
  font-size: 22px;
  font-weight: 700;
}
.trial__text p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

/* ----------------------------------------------------
 CV Buttons
 ---------------------------------------------------- */
.cv-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  gap: 4px;
  background-color: #fff;
  border-top: 3px solid #141414;
  width: 100%;
  padding: 15px 5px;
}
@media screen and (min-width: 768px) {
  .cv-buttons {
    display: none;
  }
}
.cv-buttons .shopDetailBtn {
  padding: 10px 20px;
}
.cv-buttons .shopDetailBtn.is_green {
  background-color: #03C13D;
}
.cv-buttons .shopDetailBtn.is_green:hover {
  background-color: #fff;
  color: #03C13D;
}
.cv-buttons .shopDetailBtn_txt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
@media screen and (min-width: 768px) {
  .cv-buttons .shopDetailBtn_txt {
    font-size: 14px;
  }
}

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