@charset "UTF-8";
/*
    リセットCSS等の基本設定
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "Meiryo UI", "Meiryo", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2a2a2a;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
a, p, span,
blockquote, code,
ol, ul, li, dl, dt, dd,
div, section, article, main, aside,
nav, header, footer,
img, figure, figcaption,
address, time, audio, video,
iframe, fieldset,
form, label, table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

article, aside, footer, header, nav, section, main {
  display: block;
}

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

li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #2a2a2a;
}

th, td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #2a2a2a;
}

input, textarea {
  padding: 8px;
  border: 1px solid #2a2a2a;
  border-radius: 0;
  background-image: none;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
}
input:focus, textarea:focus {
  outline: 1px solid #3b82f6;
  border: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

textarea {
  resize: none;
}

input[type=submit] {
  cursor: pointer;
  border: none;
}
input[type=submit]:hover, input[type=submit]:focus {
  outline: none;
  border: none;
}
input[type=submit] ::-moz-focus-inner {
  padding: 0;
  border: none;
}
input[type=radio] {
  display: none;
}
input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0.2em 0;
  cursor: pointer;
}
input[type=radio] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  display: block;
}
input[type=radio] + span::after {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
input[type=radio] + span:focus, input[type=radio] + span:checked {
  outline: none;
  border: 1px solid #fff;
  box-shadow: none;
  background: #2a2a2a;
}
input[type=radio]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.2em;
  transform: translateY(-50%);
  background: #2a2a2a;
  border-radius: 50%;
  width: 0.6em;
  height: 0.6em;
  display: block;
  opacity: 1;
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0.2em 0;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
input[type=checkbox] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  width: 1em;
  height: 1em;
  display: block;
}
input[type=checkbox] + span::after {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  margin-top: -0.2em;
  display: block;
  border-left: 3px solid #eb1d35;
  border-bottom: 3px solid #eb1d35;
  opacity: 1;
}

select {
  width: 100%;
  padding: 8px 24px 8px 8px;
  border-radius: 0;
  background-image: none;
  border: 1px solid #2a2a2a;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select:focus {
  outline: none;
  border: 1px solid #2a2a2a;
  box-shadow: none;
}

.hidden {
  display: none;
}

.wrapper {
  overflow: hidden;
}

.inner--large {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  z-index: 0;
}

.inner--small {
  position: relative;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.btn-container {
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
}

.primary-btn {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 8px;
  color: #fff;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(270deg, #A9CE54 0%, #1FB43E 100%);
  border-radius: 48px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
}
.primary-btn:hover {
  opacity: 0.7;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .primary-btn {
    padding: 12px 24px;
  }
}
.primary-btn .primary-btn-text {
  text-align: center;
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 768px) {
  .primary-btn .primary-btn-text {
    font-size: 14px;
  }
}
.primary-btn img {
  display: block;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .card-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.card {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 600px;
}
@media (max-width: 992px) {
  .card {
    width: 100%;
  }
}

.card-number {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: bold;
  font-family: "Caveat";
  color: #A4E1B1;
}
@media (max-width: 768px) {
  .card-number {
    font-size: 56px;
  }
}

.section-deco-text {
  font-size: 88px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #e6f8ea;
  text-align: right;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 992px) {
  .section-deco-text {
    font-size: 64px;
  }
}
@media (max-width: 768px) {
  .section-deco-text {
    font-size: 36px;
  }
}

.section-label {
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: #1eab3c;
  line-height: 1;
}
@media (max-width: 768px) {
  .section-label {
    font-size: 20px;
  }
}

.section-ttl {
  font-size: 40px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 12px;
  max-width: 620px;
}
@media (max-width: 992px) {
  .section-ttl {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .section-ttl {
    font-size: 24px;
  }
}

.section-desc {
  font-size: 16px;
  max-width: 600px;
  letter-spacing: 0.02em;
  line-height: 2;
  font-weight: 400;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .section-desc {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .section-desc {
    font-size: 14px;
  }
}

.section-ttl--border {
  font-size: 32px;
  padding-bottom: 24px;
  padding-left: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #fff;
}
@media (max-width: 992px) {
  .section-ttl--border {
    font-size: 24px;
    padding-bottom: 12px;
  }
}

.section-ttl--border02 {
  font-size: 24px;
  padding-bottom: 16px;
  padding-left: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #0f3c3b;
}
@media (max-width: 992px) {
  .section-ttl--border02 {
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
}

.btn-primary--small {
  max-width: 240px;
  width: 100%;
  padding: 16px 24px;
  text-align: center;
  display: block;
  background: linear-gradient(270deg, #009B4A 0%, #005F3C 100%);
  border-radius: 40px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  line-height: 1;
}
.btn-primary--small:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  background: linear-gradient(270deg, #007A3D 0%, #00452A 100%);
}
.btn-primary--small:active {
  box-shadow: none;
  transform: translateY(1px);
  background: linear-gradient(270deg, #009B4A 0%, #005F3C 100%);
}
@media (max-width: 768px) {
  .btn-primary--small {
    max-width: 100%;
    padding: 16px;
    font-size: 16px;
  }
}

.btn-secondary--small {
  max-width: 240px;
  width: 100%;
  padding: 16px 24px;
  text-align: center;
  display: block;
  background: #fff;
  border-radius: 40px;
  border: 1px solid #009b4a;
  color: #009b4a;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  line-height: 1;
}
.btn-secondary--small:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  background-color: #f0f0f0;
}
.btn-secondary--small:active {
  box-shadow: none;
  transform: translateY(1px);
  background-color: #fff;
}
@media (max-width: 768px) {
  .btn-secondary--small {
    max-width: 100%;
    padding: 16px;
    font-size: 16px;
  }
}

.btn-primary--large {
  max-width: 320px;
  width: 100%;
  padding: 24px;
  text-align: center;
  display: block;
  background: linear-gradient(270deg, #009B4A 0%, #005F3C 100%);
  border-radius: 40px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  line-height: 1;
}
.btn-primary--large:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  background: linear-gradient(270deg, #007A3D 0%, #00452A 100%);
}
.btn-primary--large:active {
  box-shadow: none;
  transform: translateY(1px);
  background: linear-gradient(270deg, #009B4A 0%, #005F3C 100%);
}
@media (max-width: 768px) {
  .btn-primary--large {
    max-width: 100%;
    padding: 16px;
    font-size: 16px;
  }
}

.btn-secondary--large {
  max-width: 320px;
  width: 100%;
  padding: 24px;
  text-align: center;
  display: block;
  background: #fff;
  border-radius: 40px;
  border: 1px solid #009b4a;
  color: #009b4a;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  line-height: 1;
}
.btn-secondary--large:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  background-color: #f0f0f0;
}
.btn-secondary--large:active {
  box-shadow: none;
  transform: translateY(1px);
  background-color: #fff;
}
@media (max-width: 768px) {
  .btn-secondary--large {
    max-width: 100%;
    padding: 16px;
    font-size: 16px;
  }
}

.mainvisual {
  background-image: url(../images/EH_MV.webp);
  background-size: cover;
  background-position: left top;
  color: #fff;
}
@media (max-width: 768px) {
  .mainvisual {
    background-position: 60% top;
  }
}

.mv__inner-mask {
  padding: 500px 40px 120px;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0.24%, rgba(102, 102, 102, 0.1) 99.34%);
}
@media (max-width: 768px) {
  .mv__inner-mask {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0.24%, rgba(36, 36, 36, 0.4) 99.34%);
    padding: 400px 20px 64px;
  }
}

.mv__ttl {
  font-size: 56px;
  line-height: 1.25;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .mv__ttl {
    font-size: 32px;
  }
}

.mv__caption {
  max-width: 640px;
  font-size: 20px;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .mv__caption {
    font-size: 16px;
  }
}

.mv__btn {
  display: flex;
  gap: 24px;
}
@media (max-width: 768px) {
  .mv__btn {
    gap: 24px;
    flex-wrap: wrap;
  }
}

.about {
  padding: 40px 40px;
  background-color: #fcfffd;
  color: #2a2a2a;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .about {
    padding: 40px 20px 64px;
  }
}
.about .inner--large {
  position: relative;
}

.about__card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: block;
}
@media (max-width: 768px) {
  .about__card-icon {
    width: 48px;
    height: 48px;
  }
}

.about__card-ttl {
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
  text-align: center;
}

.about__card-caption {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .about__card-caption {
    margin-bottom: 8px;
    font-size: 14px;
  }
}

.about__card-list li {
  font-size: 16px;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .about__card-list li {
    font-size: 14px;
  }
}
.about__card-list li img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 4px;
}

.sell {
  position: relative;
  padding: 40px 40px 64px;
  background-color: #fcfffd;
  z-index: 0;
}
@media (max-width: 768px) {
  .sell {
    padding: 20px 20px;
  }
}
.sell .inner--large {
  position: relative;
}

.sell__half-circle {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 360px;
  height: 360px;
  background-color: #e6f8ea;
  border-radius: 100% 0 0 0;
  z-index: -2;
}
@media (max-width: 768px) {
  .sell__half-circle {
    width: 240px;
    height: 240px;
  }
}

.sell__list {
  margin-bottom: 40px;
}
.sell__list li {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}
.sell__list li img {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .sell__list li img {
    width: 24px;
    height: 24px;
  }
}
.sell__list li span {
  font-size: 20px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .sell__list li span {
    font-size: 16px;
  }
}

.purchase {
  padding: 40px 40px 64px;
  background-color: #fcfffd;
  z-index: 0;
  position: relative;
}
@media (max-width: 768px) {
  .purchase {
    padding: 20px 20px 40px;
  }
}
.purchase .inner--large {
  position: relative;
}

.purc__card-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .purc__card-cont {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-bottom: 24px;
  }
}

.purc__card-ttl {
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .purc__card-ttl {
    font-size: 16px;
  }
}

.purc__card-list {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .purc__card-list {
    margin-bottom: 8px;
  }
}
.purc__card-list li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .purc__card-list li {
    font-size: 14px;
  }
}
.purc__card-list li img {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .purc__card-list li img {
    width: 24px;
    height: 24px;
  }
}

.purc__card-subttl {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .purc__card-subttl {
    font-size: 16px;
  }
}
.purc__card-subttl img {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .purc__card-subttl img {
    width: 24px;
    height: 24px;
  }
}

.purc__card-caption {
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .purc__card-caption {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.purc__square-circle01 {
  position: absolute;
  top: 0px;
  right: 0;
  width: 360px;
  height: 360px;
  background-color: #e6f8ea;
  border-radius: 0 0 0 100%;
  z-index: -2;
}
@media (max-width: 768px) {
  .purc__square-circle01 {
    width: 240px;
    height: 240px;
  }
}

.purc__square-circle02 {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 280px;
  height: 280px;
  background-color: #e6f8ea;
  border-radius: 0 100% 0 0;
  z-index: -2;
}
@media (max-width: 768px) {
  .purc__square-circle02 {
    width: 200px;
    height: 200px;
  }
}

.mission {
  padding: 40px 40px 64px;
  background-color: #fcfffd;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .mission {
    padding: 40px 20px;
  }
}
.mission .inner--large {
  position: relative;
}

.miss__cont {
  display: flex;
  margin-bottom: 24px;
  gap: 40px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .miss__cont {
    flex-wrap: wrap;
  }
}

.miss__number {
  font-family: "Caveat";
  font-size: 48px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #1eab3c;
}

.miss__cont-img {
  max-width: calc(30% - 20px);
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  transform: rotate(8deg);
}
@media (max-width: 768px) {
  .miss__cont-img {
    max-width: 80%;
    margin: 0 auto;
  }
}

.miss__cont-text {
  max-width: 640px;
  width: calc(70% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .miss__cont-text {
    width: 100%;
  }
}

.miss__cont-ttl {
  font-size: 32px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .miss__cont-ttl {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.miss__cont-ttl img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .miss__cont-ttl img {
    width: 24px;
    height: 24px;
  }
}

.miss__cont-caption {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media (max-width: 768px) {
  .miss__cont-caption {
    font-size: 14px;
  }
}

.miss__square-circle {
  position: absolute;
  bottom: 0px;
  left: 100px;
  width: 400px;
  height: 240px;
  background-color: #e6f8ea;
  border-radius: 0 100vh 0 0;
  z-index: -2;
}
@media (max-width: 768px) {
  .miss__square-circle {
    width: 300px;
    height: 300px;
    left: 0;
  }
}

.question {
  padding: 40px 40px 64px;
  background-color: #fcfffd;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .question {
    padding: 40px 20px;
  }
}
.question .inner--large {
  position: relative;
}

.ques__square-circle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 100%;
  background-color: #e6f8ea;
  border-radius: 100% 0 0 0;
  z-index: -2;
}

.ques__card {
  background-color: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  margin-bottom: 24px;
  padding: 20px;
  max-width: 880px;
  margin: 0 auto 24px;
  position: relative;
}
@media (max-width: 768px) {
  .ques__card {
    padding: 16px;
  }
}
.ques__card:last-child {
  margin-bottom: 0;
}

.ques__card-row {
  position: relative;
}

.ques__card-ttl {
  font-size: 16px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .ques__card-ttl {
    font-size: 14px;
  }
}

.capital {
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: bold;
  color: #1eab3c;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .capital {
    font-size: 20px;
  }
}

.ques__card-caption {
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 2;
  font-weight: 400;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .ques__card-caption {
    font-size: 14px;
  }
}

.ques__card-btn {
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background-color: #1eab3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  position: absolute;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: none;
}
.ques__card-btn::before,
.ques__card-btn::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.ques__card-btn::before {
  width: 60%;
  height: 3px;
  top: 21px;
  left: 9px;
}

.ques__card-btn::after {
  width: 3px;
  height: 60%;
  top: 9px;
  left: 21px;
}

.turn.ques__card-btn::before,
.turn.ques__card-btn::after {
  transform: translateY(0) rotate(135deg);
}

.information {
  background-color: #fcfffd;
  padding: 40px 40px 64px;
  z-index: 0;
  position: relative;
  padding: 40px 20px;
}
.information .inner--large {
  position: relative;
}

.info__cont {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .info__cont {
    flex-wrap: wrap;
    gap: 24px;
  }
}

.info__map {
  width: calc(50% - 20px);
  height: 350px;
}
@media (max-width: 768px) {
  .info__map {
    width: 100%;
    height: 300px;
  }
}

.info__list {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  .info__list {
    width: 100%;
  }
}

.info__list-row {
  display: grid;
  grid-template-columns: 3fr 7fr;
  margin-bottom: 16px;
}

.info__list-ttl {
  font-size: 16px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .info__list-ttl {
    font-size: 14px;
  }
}

.info__list-detail {
  font-size: 16px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .info__list-detail {
    font-size: 14px;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-in-out;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease-in-out;
}

.scroll-fadein.show {
  opacity: 1;
  transform: translateY(0);
}

.mb0 {
  margin-bottom: 0;
}

.mb24 {
  margin-bottom: 24px;
}

.mb40 {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .mb40 {
    margin-bottom: 24px;
  }
}

.mb48 {
  margin-bottom: 48px;
}

.mb64 {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .mb64 {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .order1 {
    order: 1;
  }
}

@media (max-width: 768px) {
  .order2 {
    order: 2;
  }
}

/*
    header
*/
.header {
  padding: 16px 40px;
  background: transparent;
  color: #2a2a2a;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 992px) {
  .header {
    padding: 16px 20px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .header__inner {
    align-items: flex-start;
  }
}

.header__logo {
  display: block;
  width: 229px;
  height: auto;
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.16);
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.header__logo:hover {
  background-color: rgb(255, 255, 255);
  border: 2px solid #1eab3c;
}
@media (max-width: 992px) {
  .header__logo {
    border: none;
    padding: 8px 12px;
    width: 158px;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .header__logo img {
    width: 134px;
  }
}

.menu-toggle {
  display: none;
}
@media (max-width: 992px) {
  .menu-toggle {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.16);
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 48px;
    width: 48px;
    padding: 0;
    z-index: 100;
  }
}

.menu-icon {
  background-color: #1eab3c;
  height: 3px;
  width: 28px;
  border-radius: 8px;
  transition: all 0.4s ease-in-out 0s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.menu-icon:nth-child(1) {
  top: 12px;
}
.menu-icon:nth-child(2) {
  top: 22px;
}
.menu-icon:nth-child(3) {
  top: 32px;
}

.menu-label {
  font-size: 14px;
  color: #fff;
  padding: 0 4px;
  transition: all 0.3s ease-in-out 0s;
  position: absolute;
  top: 34px;
}

@media (max-width: 992px) {
  .header__nav {
    height: 48px;
  }
}

.header__nav-links {
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px 16px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.16);
}
@media (max-width: 992px) {
  .header__nav-links {
    opacity: 0;
    transform: scale(0);
    transform-origin: top right;
    pointer-events: none;
  }
}
.header__nav-links li {
  list-style: none;
}
@media (max-width: 992px) {
  .header__nav-links li {
    width: 100%;
  }
}
.header__nav-links li a {
  color: #2a2a2a;
  font-size: 16px;
  letter-spacing: 0.02em;
  font-weight: 700;
  padding: 12px;
  transition: all 0.3s ease-in-out;
}
.header__nav-links li a:hover {
  color: #1eab3c;
}
@media (max-width: 992px) {
  .header__nav-links li a {
    font-size: 16px;
    transform: rotate(0.05deg);
  }
}

@media (max-width: 992px) {
  .active .menu-toggle .menu-icon:nth-child(1) {
    transform: translateY(0) rotate(225deg);
    top: 22px;
    left: 10px;
  }
  .active .menu-toggle .menu-icon:nth-child(2) {
    transform: translateY(0) rotate(-225deg);
    left: 10px;
    top: 22px;
  }
  .active .menu-toggle .menu-icon:nth-child(3) {
    display: none;
  }
}
@media (max-width: 992px) {
  .active .header__nav-links {
    border-radius: 0;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    position: absolute;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    top: 0;
    width: 100%;
    left: 0;
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: all 0.3s ease-out;
  }
}
@media (max-width: 992px) {
  .active li a {
    position: relative;
    display: block;
    padding: 24px;
    color: #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
  }
  .active li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%) rotate(-45deg);
    display: inline-block;
    margin-left: 0.4em;
    width: 0.4em;
    height: 0.4em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
  }
}

/*
    header end
*/
/*
    footer
*/
.footer {
  background-color: #06240d;
  padding: 40px 40px 64px;
  color: #fff;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }
}

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

@media (max-width: 768px) {
  .footer__info {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer__info-logo {
    width: 170px;
  }
}
.footer__info-logo img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.footer__nav-list li {
  margin-bottom: 16px;
}
.footer__nav-list li a {
  color: #fff;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
  padding: 12px 0;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.footer__nav-list li a:hover {
  border-bottom: 1px solid #fff;
}

.footer__copy {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.selling {
  padding: 140px 40px 40px;
  background-color: #fcfffd;
  color: #2a2a2a;
}
@media (max-width: 768px) {
  .selling {
    padding: 100px 20px 40px;
  }
}
.selling .inner--large {
  position: relative;
}

.selling__head3 {
  font-size: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .selling__head3 {
    font-size: 20px;
  }
}

.selling__cate-item {
  display: flex;
  margin-bottom: 48px;
  justify-content: space-between;
  position: relative;
  gap: 40px;
}
@media (max-width: 768px) {
  .selling__cate-item {
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
    gap: 20px;
  }
}
.selling__cate-item:last-child {
  margin-bottom: 0;
}

.selling__cate-box {
  width: 280px;
  height: 280px;
  transform: rotate(8deg);
  background-color: #e6f8ea;
  border-radius: 12px;
  position: absolute;
  top: 0;
  z-index: 0;
}
@media (max-width: 992px) {
  .selling__cate-box {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 768px) {
  .selling__cate-box {
    bottom: 0;
    top: auto;
  }
}

.selling__cate-img {
  max-width: 280px;
  width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .selling__cate-img {
    max-width: 240px;
  }
}
.selling__cate-img img {
  position: relative;
  width: 100%;
  height: auto;
  box-shadow: 0 6px 10px 4px rgba(0, 0, 0, 0.15), 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  display: block;
  transform: rotate(-8deg);
  z-index: 1;
}

.selling__cate-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  width: 100%;
}

.selling__cate-label {
  font-family: "Caveat";
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 12px;
  color: #1eab3c;
}
@media (max-width: 768px) {
  .selling__cate-label {
    font-size: 20px;
    margin-bottom: 8px;
  }
}

.selling__cate-ttl {
  font-size: 24px;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .selling__cate-ttl {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .selling__cate-ttl {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.selling__cate-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  letter-spacing: 0.02em;
  gap: 8px;
}
@media (max-width: 768px) {
  .selling__cate-list li {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.selling__cate-list li img {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .selling__cate-list li img {
    width: 24px;
    height: 24px;
  }
}

.reason {
  padding: 20px 40px 64px;
  background-color: #fcfffd;
  color: #2a2a2a;
  position: relative;
}
@media (max-width: 768px) {
  .reason {
    padding: 40px 20px;
  }
}
.reason .inner--large {
  position: relative;
}

.reason__list {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .reason__list {
    margin-bottom: 20px;
  }
}
.reason__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  letter-spacing: 0.08em;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .reason__list li {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.reason__list li img {
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .reason__list li img {
    width: 24px;
    height: 24px;
  }
}

.reason__caption {
  font-size: 16px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .reason__caption {
    font-size: 14px;
  }
}

.reason__btn {
  margin: 0 auto;
}

.reason__square-circle {
  position: absolute;
  bottom: 0px;
  right: 100px;
  width: 400px;
  height: 200px;
  background-color: #e6f8ea;
  border-radius: 100vh 100vh 0 0;
  z-index: 0;
}

.purchasing {
  padding: 140px 40px 20px;
  background-color: #fcfffd;
  color: #2a2a2a;
}
@media (max-width: 768px) {
  .purchasing {
    padding: 100px 20px 20px;
  }
}
.purchasing .inner--large {
  position: relative;
}

.purchasing__target {
  padding: 40px 40px 64px;
  background-color: #fcfffd;
  color: #2a2a2a;
  position: relative;
}
.purchasing__target .inner--large {
  position: relative;
}
@media (max-width: 768px) {
  .purchasing__target {
    padding: 20px;
  }
}

.purchasing__head3 {
  font-size: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .purchasing__head3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.purchasing__item-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .purchasing__item-cont {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.purchasing__item-label {
  display: block;
  font-family: "Caveat";
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #1eab3c;
  font-weight: bold;
  margin-bottom: 8px;
}

.purchasing__item-ttl {
  font-size: 20px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .purchasing__item-ttl {
    font-size: 16px;
  }
}

.purchasing__item-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.purchasing__item-list li img {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .purchasing__item-list li img {
    width: 24px;
    height: 24px;
  }
}

.purchasing__guide-text {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .purchasing__guide-text {
    font-size: 14px;
  }
}
.purchasing__guide-text img {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  .purchasing__guide-text img {
    width: 24px;
    height: 24px;
  }
}

.purchasing__target-guide .primary-btn {
  margin: 0 auto;
}

.purchasing__circle01 {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 360px;
  height: 360px;
  background-color: #e6f8ea;
  border-radius: 100% 0 0 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .purchasing__circle01 {
    width: 240px;
    height: 240px;
  }
}

.purchasing__process {
  padding: 40px 40px;
  background-color: #fcfffd;
  z-index: 0;
}
.purchasing__process .inner--large {
  position: relative;
}
@media (max-width: 768px) {
  .purchasing__process {
    padding: 20px;
  }
}

.purchasing__process-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .purchasing__process-cont {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .purchasing__process-cont {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.purchasing__process-number {
  color: #1eab3c;
  letter-spacing: 0.08em;
  font-size: 20px;
  line-height: 1;
}

.purchasing__process-ttl {
  font-size: 20px;
  margin-bottom: 8px;
}

.purchasing__process-caption {
  font-weight: 400;
  margin-bottom: 8px;
}

.purchasing__process-list li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .purchasing__process-list li {
    font-size: 14px;
  }
}
.purchasing__process-list li img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .purchasing__process-list li img {
    width: 24px;
    height: 24px;
  }
}
.purchasing__process-list li span {
  font-weight: 400;
}

.recruit {
  padding: 108px 5% 64px;
  background-color: #f5ffea;
  color: #0f3c3b;
}

.recruit__card-cont {
  margin-bottom: 48px;
}

.recruit__card {
  width: 45%;
}
@media (max-width: 992px) {
  .recruit__card {
    width: 100%;
  }
}

.recruit__card-ttl {
  font-size: 20px;
  margin-bottom: 16px;
}
.recruit__card-ttl img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 8px;
}

.recruit__card-list li {
  margin-bottom: 8px;
}

.recruit__flow-list {
  padding-left: 24px;
  padding-right: 24px;
}
.recruit__flow-list li {
  margin-bottom: 16px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .recruit__flow-list li {
    font-size: 16px;
  }
}
.recruit__flow-list li span {
  color: #009b4a;
  font-size: 24px;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .recruit__flow-list li span {
    font-size: 20px;
  }
}

.commingsoon {
  padding: 200px 5% 200px;
  background-color: #fcfffd;
  color: #2a2a2a;
}

.comm__ttl {
  font-size: 40px;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 992px) {
  .comm__ttl {
    font-size: 32px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .comm__ttl {
    font-size: 20px;
  }
}
.comm__ttl img {
  width: 80px;
  height: 80px;
  margin-right: 8px;
  vertical-align: top;
}
@media (max-width: 992px) {
  .comm__ttl img {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 768px) {
  .comm__ttl img {
    width: 48px;
    height: 48px;
  }
}

.comm__caption {
  font-size: 20px;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 992px) {
  .comm__caption {
    font-size: 16px;
  }
}

.comm__btn {
  margin: 0 auto;
}

.contact {
  padding: 140px 40px 64px;
  background-color: #fff;
  color: #0f3c3b;
}
@media (max-width: 768px) {
  .contact {
    padding: 100px 20px 0px;
  }
}

.contact__inner {
  max-width: 800px;
  margin: 0 auto 40px;
}

.contact-form {
  color: #0f3c3b;
  max-width: 800px;
  margin: 0 auto 32px;
}

.form-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
  }
}

.form-row.full {
  flex-direction: column;
  align-items: flex-start;
}
.form-row.full button {
  margin: 0 auto;
}

label {
  width: 200px;
  font-weight: normal;
  padding-top: 10px;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #0f3c3b;
}
@media (max-width: 768px) {
  label {
    font-size: 14px;
    width: 100%;
  }
}

.required {
  color: #eb1d35;
  font-size: 14px;
  margin-left: 4px;
}
@media (max-width: 768px) {
  .required {
    font-size: 12px;
  }
}

input[type=text],
input[type=email],
textarea {
  flex: 1;
  padding: 16px;
  font-size: 16px;
  background: #f7f7f7;
  border: none;
  border-radius: 8px;
  resize: vertical;
  color: #0f3c3b;
}
@media (max-width: 768px) {
  input[type=text],
  input[type=email],
  textarea {
    font-size: 16px;
    width: 100%;
  }
}

textarea {
  min-height: 200px;
}

.consent {
  font-size: 14px;
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}
.consent span {
  margin-left: 24px;
}

.consent a {
  color: #3b82f6;
  text-decoration: underline;
}

button {
  background: #009b4a;
  color: white;
  padding: 14px 24px;
  font-size: 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1.5;
}

.mb0 {
  margin-bottom: 0;
}

.mb24 {
  margin-bottom: 24px;
}

.mb40 {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .mb40 {
    margin-bottom: 20px;
  }
}

.mb48 {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .mb48 {
    margin-bottom: 24px;
  }
}

.mb64 {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .mb64 {
    margin-bottom: 40px;
  }
}/*# sourceMappingURL=style.css.map */