@import url("https://cdn.jsdelivr.net/npm/destyle.css@4.0.0/destyle.min.css");
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.site-header {
  width: 100%;
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 21px 50px 22px;
}
@media (max-width: 768px) {
  .header-inner {
    padding: 13px 20px;
  }
}

.header-logo {
  display: inline-block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header-logo:hover {
  opacity: 0.7;
}
.header-logo--pc {
  display: inline-block;
}
@media (max-width: 768px) {
  .header-logo--pc {
    display: none;
  }
}
.header-logo--sp {
  display: none;
}
@media (max-width: 768px) {
  .header-logo--sp {
    display: inline-block;
  }
}

.header-logo__img {
  width: 220px;
  height: 37px;
}
@media (max-width: 768px) {
  .header-logo__img {
    width: 152px;
    height: 26px;
  }
}

.mv {
  position: relative;
  width: 100%;
  height: 670px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mv {
    height: 550px;
  }
}

.mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mv__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.mv__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .mv__content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 30px;
  }
}

.mv__text {
  display: block;
  text-align: center;
}

.mv__text-img {
  max-width: 910px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .mv__text-img {
    max-width: none;
    width: 100%;
  }
}

.product-overview {
  background-color: #fffae2;
  padding: 70px 20px 80px;
}
@media (max-width: 768px) {
  .product-overview {
    padding: 50px 20px;
  }
}

.product-overview__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.product-overview__header {
  width: 100%;
  height: 80px;
  background: #3b8928;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  cursor: pointer;
}
.product-overview__header.is-open {
  border-radius: 10px 10px 0 0;
}
@media (max-width: 768px) {
  .product-overview__header {
    height: 60px;
  }
}

.product-overview__title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .product-overview__title {
    font-size: 30px;
  }
}

.product-overview__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-overview__icon::before, .product-overview__icon::after {
  content: "";
  position: absolute;
  background: #3b8928;
  border-radius: 2px;
  top: 50%;
  left: 50%;
}
.product-overview__icon::before {
  width: 20px;
  height: 3px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.product-overview__icon::after {
  width: 3px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.product-overview__header.is-open .product-overview__icon::after {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
@media (max-width: 768px) {
  .product-overview__icon {
    width: 32px;
    height: 32px;
    right: 15px;
  }
  .product-overview__icon::before {
    width: 16px;
    height: 2px;
  }
  .product-overview__icon::after {
    width: 2px;
    height: 16px;
  }
}

.product-overview__body {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.4s ease;
  transition: grid-template-rows 0.4s ease;
  transition: grid-template-rows 0.4s ease, -ms-grid-rows 0.4s ease;
}
.product-overview__body.is-open {
  grid-template-rows: 1fr;
}

.product-overview__body-inner {
  overflow: hidden;
  min-height: 0;
  padding-top: 40px;
}
@media (max-width: 768px) {
  .product-overview__body-inner {
    padding-top: 30px;
  }
}

.product-tabs__nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.product-tabs__nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #3b8928;
  z-index: 1;
}
@media (max-width: 768px) {
  .product-tabs__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    gap: 10px;
  }
  .product-tabs__nav::after {
    height: 3px;
  }
}

.product-tabs__tab {
  width: 300px;
  height: 70px;
  border-radius: 10px 10px 0 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  cursor: pointer;
  background: #e0e0e0;
  color: #777;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-tabs__tab.is-active {
  background: white;
  color: #3b8928;
  border-top: 4px solid #3b8928;
  border-left: 4px solid #3b8928;
  border-right: 4px solid #3b8928;
  z-index: 3;
}
@media (max-width: 768px) {
  .product-tabs__tab {
    width: 170px;
    height: 60px;
    font-size: 24px;
  }
  .product-tabs__tab.is-active {
    border-top-width: 3px;
    border-left-width: 3px;
    border-right-width: 3px;
  }
}

.product-table {
  display: none;
  border-left: 4px solid #3b8928;
  border-right: 4px solid #3b8928;
  border-bottom: 4px solid #3b8928;
}
.product-table.is-active {
  display: block;
}
@media (max-width: 768px) {
  .product-table {
    border-left: 3px solid #3b8928;
    border-right: 3px solid #3b8928;
    border-bottom: 3px solid #3b8928;
  }
}

.product-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background: white;
}
.product-row--gray {
  background: #f3f3f3;
}
@media (max-width: 768px) {
  .product-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.product-row__label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 256px;
  padding: 30px 20px 30px 30px;
  font-size: 20px;
  font-weight: 700;
  color: #3b8928;
  letter-spacing: 0.1em;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .product-row__label {
    width: 100%;
    padding: 20px 20px 0;
    font-size: 16px;
    display: block;
  }
}

.product-row__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 30px 30px 30px 0;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.product-row__content p {
  margin: 0;
}
@media (max-width: 768px) {
  .product-row__content {
    padding: 12px 20px 20px;
    font-size: 16px;
  }
}

.product-list {
  list-style: disc;
  padding-left: 1.5em;
}

.stamp-table-wrap {
  margin-top: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.stamp-table {
  border-collapse: collapse;
  white-space: nowrap;
}
.stamp-table th,
.stamp-table td {
  border: 1px solid #d5d5d5;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding: 0 8px;
  min-width: 100px;
}
.stamp-table thead th {
  background: #fffae2;
  font-weight: 400;
  height: 40px;
}
.stamp-table thead th:first-child {
  font-weight: 700;
}
.stamp-table tbody td {
  background: white;
  height: 46px;
}
.stamp-table tbody td:first-child {
  font-weight: 700;
}

.text-red {
  color: #de0000;
}

.text-link {
  color: #0044cc;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.text-link--pc {
  display: inline;
}
@media (max-width: 768px) {
  .text-link--pc {
    display: none;
  }
}
.text-link--sp {
  display: none;
}
@media (max-width: 768px) {
  .text-link--sp {
    display: inline;
  }
}

.merit {
  background-color: #fffae2;
  padding: 100px 20px 0;
}
@media (max-width: 768px) {
  .merit {
    padding: 60px 12.5px 0;
  }
}

.merit__inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.merit__title {
  font-size: 36px;
  font-weight: 700;
  color: #3b8928;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .merit__title {
    font-size: 28px;
    line-height: 1.6;
  }
}

.merit__title-line {
  display: inline;
}
@media (max-width: 768px) {
  .merit__title-line {
    display: block;
  }
}

.merit__underline {
  width: 50px;
  height: 5px;
  background-color: #e7aa02;
  margin: 20px auto 55px;
}
@media (max-width: 768px) {
  .merit__underline {
    margin: 15px auto 35px;
  }
}

.merit__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .merit__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.merit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.merit__badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #21B24B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .merit__badge {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
  }
}

.merit__badge-label {
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .merit__badge-label {
    font-size: 16px;
  }
}

.merit__badge-number {
  font-size: 30px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .merit__badge-number {
    font-size: 32px;
    letter-spacing: 0.1em;
  }
}

.merit__item-title {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .merit__item-title {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}

.merit__item-title-line {
  display: inline;
}
@media (max-width: 768px) {
  .merit__item-title-line {
    display: block;
  }
}

.merit__item-image {
  width: 100%;
  aspect-ratio: 530/290;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .merit__item-image {
    aspect-ratio: 350/190;
  }
}
.merit__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.merit__item-desc {
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.1em;
  width: 100%;
}
@media (max-width: 768px) {
  .merit__item-desc {
    font-size: 16px;
  }
}

.application__title {
  background: #3b8928;
  color: white;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  padding: 20px;
}
@media (max-width: 768px) {
  .application__title {
    font-size: 30px;
  }
}
.application__docs {
  background: #f0f7e8;
  padding: 40px 20px 50px;
}
@media (max-width: 768px) {
  .application__docs {
    padding: 30px 20px 40px;
  }
}
.application__docs-title {
  font-size: 30px;
  font-weight: 700;
  color: #3b8928;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .application__docs-title {
    font-size: 26px;
    line-height: 1.6;
  }
}
.application__docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1080px;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  .application__docs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }
}
.application__doc-card {
  background: white;
  border: 2px solid #3b8928;
  border-radius: 10px;
  height: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.application__doc-img {
  display: block;
  max-width: 100%;
  max-height: 110px;
}
.application__doc-name {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
.application__doc-desc {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 12px;
}
.application__docs-note {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.1em;
  max-width: 1080px;
  margin: 40px auto 0;
}
.application__flow {
  padding: 50px 20px 60px;
}
@media (max-width: 768px) {
  .application__flow {
    padding: 40px 20px 50px;
  }
}
.application__flow-title {
  font-size: 30px;
  font-weight: 700;
  color: #3b8928;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .application__flow-title {
    font-size: 26px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
}
.application__flow-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1139px) {
  .application__flow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .application__flow-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.application__flow-step {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 245px;
          flex: 0 0 245px;
}
@media (max-width: 1139px) {
  .application__flow-step {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
@media (max-width: 768px) {
  .application__flow-step {
    width: 100%;
  }
}
.application__flow-arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.application__flow-arrow::before {
  content: "";
  display: block;
  width: 25px;
  height: 35px;
  background: #3b8928;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (max-width: 1139px) {
  .application__flow-arrow {
    display: none;
  }
}
.application__flow-card {
  position: relative;
  background: white;
  border: 2px solid #3b8928;
  border-radius: 10px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.application__flow-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #3b8928;
  color: white;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
.application__flow-img {
  max-height: 130px;
  max-width: 80%;
  width: auto;
  height: auto;
}
.application__flow-img--wide {
  max-width: 150px;
  max-height: 94px;
}
.application__flow-name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .application__flow-name {
    text-align: left;
  }
}
.application__flow-desc {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.application__passbook {
  padding: 0 20px 50px;
}
@media (max-width: 768px) {
  .application__passbook {
    padding: 0;
  }
}
.application__passbook-box {
  max-width: 1100px;
  margin: 0 auto;
  background: #fffae2;
  border-radius: 10px;
  padding: 40px 20px 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .application__passbook-box {
    border-radius: 0;
    padding: 50px 20px 50px;
  }
}
.application__passbook-title {
  font-size: 30px;
  font-weight: 700;
  color: #3b8928;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .application__passbook-title {
    font-size: 26px;
    line-height: 1.6;
  }
}
.application__passbook-title-br {
  display: none;
}
@media (max-width: 768px) {
  .application__passbook-title-br {
    display: block;
  }
}
.application__passbook-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .application__passbook-subtitle-br {
    display: none;
  }
}
.application__passbook-desc {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
.application__passbook-banner {
  max-width: 960px;
  margin: 30px auto 0;
}
.application__passbook-banner img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .application__passbook-banner {
    max-width: none;
    margin-top: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
.application__passbook-banner-link {
  display: block;
}
.application__passbook-banner-link--pc {
  display: block;
}
@media (max-width: 768px) {
  .application__passbook-banner-link--pc {
    display: none;
  }
}
.application__passbook-banner-link--sp {
  display: none;
}
@media (max-width: 768px) {
  .application__passbook-banner-link--sp {
    display: block;
  }
}
.application__passbook-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 320px;
  height: 60px;
  background: #3b8928;
  border-radius: 999px;
  color: white;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 30px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  gap: 10px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.application__passbook-btn:hover {
  opacity: 0.8;
}
.application__passbook-btn--pc {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 768px) {
  .application__passbook-btn--pc {
    display: none;
  }
}
.application__passbook-btn--sp {
  display: none;
}
@media (max-width: 768px) {
  .application__passbook-btn--sp {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.application__passbook-btn-arrow {
  display: inline-block;
  width: 10px;
  height: 16px;
  background: white;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact {
  padding: 0 20px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .contact {
    padding: 0;
    margin-top: 50px;
  }
}
.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #f0f7e8;
  border-radius: 10px;
  padding: 40px 55px 50px;
}
@media (max-width: 768px) {
  .contact__inner {
    border-radius: 0;
    padding: 50px 20px 50px;
  }
}
.contact__title {
  font-size: 26px;
  font-weight: 700;
  color: #3b8928;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .contact__title {
    font-size: 22px;
    text-align: left;
  }
}
.contact__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .contact__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.contact__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: white;
  border-radius: 10px;
  padding: 20px 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__card--store {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #3b8928;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contact__card-title {
    font-size: 20px;
  }
}
.contact__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.contact__phone-icon {
  width: 68px;
  height: 39px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .contact__phone-icon {
    width: 35px;
    height: 20px;
  }
}
.contact__phone-number {
  font-size: 45px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #de0000;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (max-width: 768px) {
  .contact__phone-number {
    font-size: 35px;
  }
}
.contact__phone-info {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 14px;
  width: 100%;
}
.contact__phone-info p {
  margin: 0;
}
@media (max-width: 768px) {
  .contact__phone-info {
    font-size: 14px;
  }
}
.contact__store-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 30px;
  width: 320px;
  height: 80px;
  background: #0096a3;
  border-radius: 999px;
  color: white;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.contact__store-btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .contact__store-btn {
    width: 270px;
    height: 60px;
    font-size: 20px;
  }
}
.contact__store-btn--pc {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 768px) {
  .contact__store-btn--pc {
    display: none;
  }
}
.contact__store-btn--sp {
  display: none;
}
@media (max-width: 768px) {
  .contact__store-btn--sp {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.contact__store-btn-arrow {
  display: inline-block;
  width: 10px;
  height: 16px;
  background: white;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq {
  background: #f0f7e8;
  padding: 70px 20px 80px;
}
@media (max-width: 768px) {
  .faq {
    padding: 50px 20px 60px;
  }
}
.faq__heading {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .faq__heading {
    margin-bottom: 30px;
  }
}
.faq__heading-en {
  font-size: 60px;
  font-weight: 700;
  color: #3b8928;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 8px;
}
.faq__heading-ja {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .faq__heading-ja {
    font-size: 30px;
  }
}
.faq__list {
  max-width: 990px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background: #3b8928;
  padding: 0 20px;
  min-height: 50px;
  text-align: left;
  cursor: pointer;
  gap: 12px;
  border: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.faq__question:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .faq__question {
    min-height: 72px;
    padding: 14px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.faq__question-text {
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1.6;
  letter-spacing: 0.1em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faq__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  position: relative;
}
.faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 2px;
  background: #3b8928;
}
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2px;
  height: 14px;
  background: #3b8928;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__item.is-open .faq__icon::after {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease;
  transition: grid-template-rows 0.3s ease, -ms-grid-rows 0.3s ease;
  background: white;
}
.faq__answer-inner {
  overflow: hidden;
}
.faq__answer-inner p {
  padding: 20px 21px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .faq__answer-inner p {
    padding: 20px;
  }
}

.company {
  padding: 70px 20px;
}
@media (max-width: 768px) {
  .company {
    padding: 50px 20px;
  }
}
.company__inner {
  max-width: 610px;
  margin: 0 auto;
}
.company__title {
  font-size: 36px;
  font-weight: 700;
  color: #3b8928;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .company__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 10px;
  border-bottom: 1px dashed #e0e0e0;
}
.company__row:first-child {
  border-top: 1px dashed #e0e0e0;
}
@media (max-width: 768px) {
  .company__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 0;
  }
}
.company__label {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.1em;
  line-height: 1.6;
  min-width: 135px;
}
@media (max-width: 768px) {
  .company__label {
    min-width: auto;
  }
}
.company__value {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .company__value {
    margin-top: 10px;
  }
}
.company__link {
  color: #0066cc;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.company__link--pc {
  display: inline;
}
@media (max-width: 768px) {
  .company__link--pc {
    display: none;
  }
}
.company__link--sp {
  display: none;
}
@media (max-width: 768px) {
  .company__link--sp {
    display: inline;
  }
}

.footer {
  background: #3b8928;
  padding: 14px 20px;
  text-align: center;
}
.footer__copy {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .footer__copy {
    font-size: 12px;
  }
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: white;
  padding: 16px 20px 20px;
  -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.12);
          box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 768px) {
  .sticky-cta {
    padding: 12px 0 0;
  }
}
.sticky-cta.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.sticky-cta__note {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .sticky-cta__note {
    font-size: 13px;
    margin-bottom: 10px;
    padding: 0 20px;
  }
}
.sticky-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .sticky-cta__buttons {
    gap: 0;
  }
}
.sticky-cta__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 360px;
  height: 90px;
  border-radius: 999px;
  font-size: 26px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  letter-spacing: 0.1em;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.sticky-cta__btn:hover {
  opacity: 0.85;
}
@media (max-width: 768px) {
  .sticky-cta__btn {
    width: 50%;
    height: 60px;
    border-radius: 0;
    font-size: 16px;
    gap: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.sticky-cta__btn--web {
  background: #de0000;
}
.sticky-cta__btn--store {
  background: #f9a61a;
}
.sticky-cta__btn-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
  text-align: center;
}
.sticky-cta__btn-sub {
  display: block;
}
.sticky-cta__btn-arrow {
  display: inline-block;
  width: 10px;
  height: 16px;
  background: white;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .sticky-cta__btn-arrow {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */