/* ========================================
   変数定義
   ======================================== */
:root {
  /* カラー */
  --color-primary: #00944a;
  --color-primary-dark: #006738;
  --color-secondary: #e03e36;
  --color-background: #f0f5f3;
  --color-border: #e0e0e0;

  /* フォント */
  /* --font-family: "Hiragino Kaku Gothic Std", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic",
    "Meiryo", sans-serif; */
  --font-family: "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
}

/* ========================================
   リセットCSS
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

picture {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

ul,
ol {
  list-style: none;
}

/* ========================================
   共通コンポーネント
   ======================================== */

/* タイトル */
.c-title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 1280px) {
  .c-title {
    font-size: 42px;
  }
}

/* カード */
.c-card {
  box-shadow: 0 0 8px rgb(0 0 0 / 0.16);
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .c-card {
    border-radius: 10px;
  }
}

/* グラデーションボーダー */
.c-wrapper {
  border: 4px solid;
  border-image: linear-gradient(45deg, #a3c940, #007a62) 1;
}

/* ボタン */
.c-btn {
  display: inline-block;
  padding: 12px 24px;
  width: 100%;
  max-width: 383px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 20px;
  letter-spacing: 0.05em;
  background: linear-gradient(93.34deg, #85c040 6.07%, #00944a 53.79%, #006738 96.3%);
  border: 4px solid #00944a;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.16), inset 0px -4px 16px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
}

.c-btn--primary {
  background-color: var(--color-primary);
  color: white;
}

.c-btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.c-btn--contact {
  background-color: var(--color-primary);
  color: white;
  padding: 8px 16px;
  font-size: var(--font-size-xs);
  background: linear-gradient(93.34deg, #85c040 6.07%, #00944a 53.79%, #006738 96.3%);
  border-radius: 50px;
}

.c-btn--contact:hover {
  background-color: var(--color-primary-dark);
}

.c-btn--common {
  margin-top: -6px;
  background: linear-gradient(93.34deg, #40b7c0 6.07%, #007694 53.79%, #004667 96.3%);
  border: 4px solid #007694;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.16), inset 0px -4px 16px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.c-btn--common:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.c-btn--market {
  margin-top: -3px;
  background-color: var(--color-secondary);
  background: linear-gradient(93.34deg, #ff7f00 6.07%, #f34900 53.79%, #e43d00 96.3%);
  border: 4px solid #f34900;
}

.c-btn--market:hover {
  background-color: var(--color-secondary-dark);
  transform: translateY(-2px);
}

@media screen and (min-width: 768px) {
  .c-btn--common {
    margin-top: 0;
  }
}

@media screen and (min-width: 1280px) {
  .c-btn {
    font-size: 26px;
    letter-spacing: 0.1em;
  }

  .c-btn--common {
    margin-top: 0;
  }

  .c-btn--market {
    margin-top: 0;
  }
}

/* ========================================
   Common Components
   ======================================== */
.c-inner {
  max-width: 375px;
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 768px) {
  .c-inner {
    max-width: 700px;
  }
}

@media screen and (min-width: 1280px) {
  .c-inner {
    max-width: 900px;
  }
}

@media screen and (min-width: 1280px) {
  .c-inner {
    max-width: 1140px;
  }
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px 0;
  background-color: #fff;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 20px;
}

.header__logo {
  display: block;
  width: 104px;
}

.header__btn {
  display: inline-block;
  width: 114px;
  padding: 8px 0;
  background: linear-gradient(93.34deg, #85c040 6.07%, #00944a 53.79%, #006738 96.3%);
  border-radius: 50px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1280px) {
  .header {
    padding: 24px 0;
  }

  .header__logo {
    width: 175px;
  }

  .header__btn {
    width: 177px;
    font-size: 16px;
  }
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero {
  padding-top: 80px;
}

.hero__content {
  position: relative;
  /* padding-bottom: 80px; */
}

.hero__title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: calc(70 / 30);
}

.hero__title span {
  position: relative;
  display: inline-block;
}

.hero__title span::before,
.hero__title span::after {
  position: absolute;
  content: "";
  display: inline-block;
  left: 0;
  width: 98.6%;
  height: 7px;
  background-image: url(../images/squareline-1-sp.svg);
}

.hero__title span::before {
  top: 0;
}

.hero__title span::after {
  bottom: 0;
}

.hero__mv {
  position: relative;
  text-align: center;
  z-index: 3;
}

.hero__options {
  margin-top: 40px;
}

.hero__options--pc {
  display: none;
}

.hero__option {
  position: relative;
}

.hero__option--second {
  margin-top: 40px;
  margin-left: -10px;
}

.hero__option-text {
  position: relative;
  margin-left: 40px;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.04em;
}

.hero__option-text--second {
  text-align: left;
}

.hero__option-text > span {
  position: relative;
  padding: 12px 24px;
  margin-right: 10px;
}

.hero__option-text > span::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  background-image: url(../images/bubble-left-1-sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.hero__option-text--second > span {
  margin-right: 10px;
}

.hero__option-text--second > span::after {
  background-image: url(../images/bubble-right-1-sp.svg);
}

.hero__option-image {
  position: absolute;
  top: -12px;
  left: 40px;
  width: 56px;
}

.hero__option-image--second {
  top: 40px;
  left: initial;
  right: 42px;
  z-index: 1;
}

.hero__bg-image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 400px;
}

.hero__cta {
  position: relative;
  padding-bottom: 20px;
  background-color: #e7f4f8;
  z-index: 3;
  margin-top: -3px;
}

.hero__cta-inner {
  position: relative;
  top: 7px;
}

.hero__cta-content {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__cta-content::before,
.hero__cta-content::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero__cta-content::before {
  background-image: url(../images/double_line_left.svg);
}

.hero__cta-content::after {
  background-image: url(../images/double_line_right.svg);
}

.hero__cta-text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.hero__cta-text > span {
  font-size: 22px;
  font-weight: 800;
  margin-inline: 5px;
  color: var(--color-secondary);
}

.hero__cta-btn {
  margin-top: 10px;
  text-align: center;
}

.hero__cta-btn > .c-btn {
  font-size: 26px;
}

.hero__stats {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 120px;
  }

  .hero__title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .hero__title > br {
    display: none;
  }

  .hero__options {
    display: none;
  }

  .hero__options--sp {
    display: none;
  }

  .hero__options--pc {
    display: flex;
    justify-content: center;
  }

  .hero__option--second {
    margin-top: 0;
  }

  .hero__option-text {
    margin-left: 20px;
  }

  .hero__option-image {
    width: 65px;
    top: 15px;
    left: -58px;
  }

  .hero__option-image--second {
    top: 20px;
    left: initial;
    right: -64px;
  }

  .hero__people {
    flex-direction: row;
    gap: 40px;
  }

  .hero__bg-image {
    max-width: 750px;
    bottom: -7px;
    z-index: 2;
  }

  .hero__cta {
    margin-top: 0;
    padding-top: 20px;
    z-index: 1;
  }

  .hero__cta-content {
    justify-content: center;
    margin-left: 0;
  }

  .hero__cta-text > br {
    display: none;
  }
}

@media (min-width: 1280px) {
  .hero {
    padding-top: 140px;
  }

  .hero__mv {
    z-index: 5;
  }

  .hero__title {
    font-size: 62px;
    text-align: left;
    letter-spacing: 0.18em;
  }

  .hero__title span::before,
  .hero__title span::after {
    left: -5px;
    width: 100.6%;
    height: 11px;
    background-image: url(../images/squareline-1.svg);
  }

  .hero__title span::before {
    top: 9px;
  }

  .hero__title span::after {
    bottom: 10px;
  }

  .hero__options--pc {
    margin-top: 60px;
  }

  .hero__option-text {
    font-size: 32px;
    letter-spacing: 0.25em;
  }

  .hero__option-text > span {
    padding: 20px 24px;
  }

  .hero__option-text > span::after {
    width: 100%;
    height: 100px;
    left: -4px;
    background-image: url(../images/bubble-left-1-pc.svg);
  }

  .hero__option-text--second > span {
    margin-right: 10px;
  }

  .hero__option-text--second > span::after {
    background-image: url(../images/bubble-right-1-pc.svg);
  }

  .hero__option-image {
    width: 120px;
    top: 40px;
    left: -148px;
    z-index: 5;
  }

  .hero__option-image--second {
    top: 43px;
    right: -158px;
    width: 125px;
    left: initial;
  }

  .hero__bg-image {
    max-width: 1500px;
    bottom: -14px;
    z-index: 4;
  }

  .hero__cta {
    padding-top: 15px;
    padding-bottom: 30px;
    z-index: 3;
  }

  .hero__cta-inner {
    top: 0;
  }

  .hero__cta-text {
    font-size: 20px;
    padding-inline: 10px;
    letter-spacing: 0.1em;
  }

  .hero__cta-text > span {
    font-size: 33px;
  }

  .hero__cta-content {
    align-items: baseline;
  }

  .hero__cta-content::before,
  .hero__cta-content::after {
    width: 32px;
    height: 20px;
  }

  .hero__cta-btn {
    margin-top: 15px;
  }

  .hero__cta-btn > .c-btn {
    max-width: 320px;
  }
}

/* ========================================
   問題提起セクション
   ======================================== */
.problems {
  padding-top: 18px;
}

.problems__title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.problems__title-sub {
  letter-spacing: 0.2em;
}

.problems__title-main {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.problems__title-main > ruby > rt {
  font-size: 20px;
}

.problems__title-sub > span {
  color: var(--color-secondary);
}

.problems__list {
  position: relative;
  margin-top: 10px;
  padding-top: 20px;
  background-color: var(--color-background);
}

.problems__arrow {
  position: absolute;
  content: "";
  display: inline-block;
  top: -5px;
  left: 50%;
  transform: translate(-50%, 0);
}

.problems__wrapper {
  position: relative;
  padding-bottom: 24px;
}

.problems__image {
  margin-left: 10px;
}

.problems__image--02 {
  margin-top: 10px;
  text-align: right;
  margin-right: 20px;
}

.problems__text {
  position: relative;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
  z-index: 1;
}

.problems__text > span {
  color: var(--color-secondary);
}

.problems__text::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.problems__text--01 {
  padding: 8px 20px 10px 30px;
}

.problems__text--01::after {
  top: -2px;
  background-image: url(../images/problems_bubble01_sp.svg);
}

.problems__text--02 {
  padding: 10px 20px 10px 30px;
}

.problems__text--02::after {
  background-image: url(../images/problems_bubble02_sp.svg);
}

.problems__text--03 {
  margin-left: auto;
  padding: 8px 30px 10px 20px;
  line-height: 1.4;
}

.problems__text--03::after {
  height: 61px;
  top: 0;
  background-image: url(../images/problems_bubble03_sp.svg);
}

.problems__text--04 {
  margin-left: auto;
  padding: 10px 30px 10px 20px;
  text-align: right;
}

.problems__text--04::after {
  background-image: url(../images/problems_bubble04_sp.svg);
}

.problems__text--05 {
  margin-left: auto;
  padding: 10px 30px 10px 20px;
  text-align: right;
}

.problems__text--05::after {
  background-image: url(../images/problems_bubble05_sp.svg);
}

@media (min-width: 768px) {
  .problems__title-main > br {
    display: none;
  }

  .problems__wrapper {
    margin-top: 10px;
    margin-inline: auto;
  }

  .problems__image {
    position: absolute;
    content: "";
    display: inline-block;
    width: 100px;
    left: -120px;
  }

  .problems__image--02 {
    left: initial;
    right: -140px;
  }

  .problems__text {
    margin-top: 8px;
  }
}

@media screen and (min-width: 1280px) {
  .problems {
    padding-top: 55px;
  }

  .problems__title {
    font-size: 26px;
  }

  .problems__title-main {
    margin-top: 12px;
    font-size: 42px;
  }

  .problems__title-main > ruby > rt {
    font-size: 30px;
  }

  .problems__list {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .problems__arrow {
    top: -15px;
  }

  .problems__arrow > img {
    width: 38px;
  }

  .problems__wrapper {
    margin-top: 15px;
  }

  .problems__text {
    margin-top: 33px;
    font-size: 26px;
  }

  .problems__text--01 {
    margin-top: 8px;
    padding: 24px 20px 10px 54px;
  }

  .problems__text::after {
    height: 86px;
  }

  .problems__text--01::after {
    width: 340px;
    background-image: url(../images/problems_bubble01_pc.svg);
  }

  .problems__text--02 {
    padding: 20px 20px 10px 56px;
  }

  .problems__text--02::after {
    top: 0;
    width: 522px;
    background-image: url(../images/problems_bubble02_pc.svg);
  }

  .problems__text--03 {
    margin-left: auto;
    padding: 24px 42px 10px 20px;
  }

  .problems__text--03 > span > br {
    display: none;
  }

  .problems__text--03::after {
    width: 650px;
    height: 86px;
    top: 0;
    left: -10px;
    background-image: url(../images/problems_bubble03_pc.svg);
  }

  .problems__text--04 {
    margin-left: auto;
    padding: 20px 42px 10px 20px;
    text-align: right;
  }

  .problems__text--04::after {
    width: 344px;
    left: -10px;

    background-image: url(../images/problems_bubble04_pc.svg);
  }

  .problems__text--05 {
    margin-left: auto;
    padding: 22px 40px 10px 20px;
    text-align: right;
  }

  .problems__text--05::after {
    width: 240px;
    left: -10px;

    background-image: url(../images/problems_bubble05_pc.svg);
  }

  .problems__image {
    width: 165px;
    left: -195px;
  }

  .problems__image--02 {
    left: initial;
    right: -220px;
  }
}

/* ========================================
   ソリューションセクション
   ======================================== */
.solution {
  overflow: hidden;
}

.solution__title {
  position: relative;
  padding-block: 50px 20px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  background-color: var(--color-primary-dark);
  text-align: center;
  letter-spacing: 0.2em;
}

.solution__title::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 30px;
  background-image: url(../images/solution_title.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.solution__text {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
}

.solution__text > br {
  display: none;
}

.solution__text > span {
  background: linear-gradient(to bottom, transparent 60%, #f3e06e 60%);
}

.solution__image-wrapper {
  position: relative;
  text-align: center;
}

.solution__bg-image {
  position: absolute;
  bottom: 0;
  content: "";
  display: inline-block;
  margin: 0 calc(50% - 50vw);
  left: 0;
  z-index: -1;
}

.solution__video {
  display: block;
  margin: auto;
  width: 335px;
  height: 188.44px;
  margin-top: 30px;
  background-color: #ccc;
 }

@media screen and (min-width: 768px) {
  .solution__title > br {
    display: none;
  }

  .solution__text {
    width: fit-content;
    margin-inline: auto;
  }

  .solution__text > br {
    display: block;
  }

  .solution__bg-image {
    bottom: -15px;
  }
}

@media screen and (min-width: 1280px) {
  .solution__title {
    padding-block: 80px 40px;
    font-size: 42px;
  }

  .solution__title::before {
    top: 40px;
  }

  .solution__text {
    margin-top: 46px;
    font-size: 34px;
    line-height: 1.5;
  }

  .solution__image {
    margin-top: -28px;
    width: 778px;
  }

  .solution__bg-image {
    margin: 0;
    width: 110%;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
  }

  .solution__video {
    display: block;
    margin: auto;
    width: 787px;
    margin-top: 50px;
    height: 442.69px;
  }
}

/* ========================================
   比較表セクション
   ======================================== */
.comparison__title {
  margin-top: 30px;
}

.comparison__title > span {
  color: var(--color-secondary);
}

.comparison__wrapper {
  margin-top: 50px;
  padding-block: 50px 20px;
  background-color: var(--color-background);
}

.comparison__list {
  display: grid;
  gap: 4px;
  margin-top: -90px;
}

.comparison__dl {
  display: grid;
  grid-template-columns: 24% auto 31%;
  gap: 4px;
}

.comparison__dl--first > dt {
  visibility: hidden;
}

.comparison__dl--first > dd {
  min-height: 44px;
  color: #fff;
  background-color: var(--color-primary-dark);
  font-size: 18px;
}

.comparison__dl--first > dd:last-of-type {
  margin-top: 20px;
  background-color: gray;
  font-size: 12px;
}

.comparison__dt {
  display: grid;
  place-content: center;
  min-height: 44px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  line-height: 1.4;
}

.comparison__dd {
  display: grid;
  place-content: center;
  background-color: #fff;
  border: 2px solid var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  padding: 5px 0;
  line-height: 1.4;
}

.comparison__dd > span {
  font-size: 9px;
  font-weight: 400;
}

.comparison__dd--title {
  border: 2px solid transparent;
}

.comparison__dd--title > img {
  width: 85px;
  margin-left: -5px;
}

.comparison__dd--popular {
  border: 2px solid transparent;
}

.comparison__dd:last-of-type {
  background-color: #f4f4f4;
  border: 1px solid #6a7570;
  font-size: 10px;
}

.comparison__note {
  display: block;
  text-align: right;
  font-size: 10px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .comparison__title > br {
    display: none;
  }

  .comparison__dl {
    grid-template-columns: 21% 1fr 1fr;
  }

  .comparison__dl--first > .comparison__dd > br {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .comparison__title {
    margin-top: 90px;
  }

  .comparison__wrapper {
    margin-top: 100px;
  }

  .comparison__list {
    gap: 10px;
    margin-top: -120px;
  }

  .comparison__dl {
    gap: 10px;
  }

  .comparison__dl > .comparison__dd--title {
    font-size: 43px;
    padding-block: 34px 20px;
  }

  .comparison__dt {
    height: 100px;
    font-size: 20px;
    border-radius: 5px;
  }

  .comparison__dd {
    font-size: 20px;
    border-radius: 5px;
  }

  .comparison__dd > span {
    font-size: 14px;
  }

  .comparison__dd > .sp-only {
    display: none;
  }

  .comparison__dd--title > img {
    width: 197px;
    margin-top: -15px;
    margin-left: -10px;
  }

  .comparison__dl--first > dd:last-of-type {
    margin-top: 30px;
    font-size: 24px;
  }

  .comparison__dd:last-of-type {
    font-size: 20px;
  }

  .comparison__note {
    margin-top: 5px;
    font-size: 18px;
  }
}

/* ========================================
   SAMPALとはセクション
   ======================================== */

.about {
  padding-top: 30px;
}

.about__wrapper {
  padding: 24px 20px 30px;
}

.about__title {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.about__title::after {
  position: absolute;
  content: "";
  display: inline-block;
  bottom: -20px;
  left: 0;
  width: 101%;
  height: 7px;
  background-image: url(../images/squareline-1-sp.svg);
}

.about__content-wrapper {
  display: grid;
  gap: 25px;
  margin-top: 48px;
}

.about__content-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.about__content-title > img {
  margin-right: 5px;
}

.about__content-title > span {
  font-size: 18px;
  font-weight: 800;
}

.about__content-text {
  margin-top: 18px;
  padding-top: 8px;
  font-weight: normal;
  border-top: 5px dotted var(--color-primary);
}
@media (min-width: 768px) {
  .about__content-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__content {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
  }

  .about__content-title {
    font-weight: 600;
  }
}

@media screen and (min-width: 1280px) {
  .about {
    padding-top: 62px;
  }

  .about__wrapper {
    padding: 62px 75px 55px;
  }

  .about__title::after {
    bottom: -18px;
    left: -10px;
    width: 104%;
    height: 11px;
    background-image: url(../images/squareline-1.svg);
  }

  .about__content-wrapper {
    margin-top: 75px;
    gap: 25px 35px;
  }

  .about__content-title {
    font-size: 23px;
  }

  .about__content-title > span {
    margin-left: 12px;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 0.2em;
  }

  .about__content-title--common {
    justify-content: flex-start;
  }

  .about__content-title--market {
    justify-content: space-between;
  }

  .about__content-title--market > img {
    margin-right: 14px;
  }

  .about__content-title--market > span {
    margin-left: 0;
    letter-spacing: 0.1em;
  }

  .about__content-text {
    font-size: 20px;
    padding-top: 16px;
  }
}

/* ========================================
   SAMPALの強みセクション
   ======================================== */
.strengths {
  padding-top: 50px;
}

.strengths__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-top: 10px;
}

.strengths__card {
  display: grid;
  place-content: center;
  padding: 20px 16px;
}

.strengths__card-image {
  padding-inline: 10px;
}

.strengths__card-text {
  width: fit-content;
  margin-top: 10px;
  margin-inline: auto;
  font-size: 13px;
  font-weight: 600;
  line-height: calc(18 / 13);
}

@media (min-width: 768px) {
  .strengths__wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
  }
}

@media screen and (min-width: 1280px) {
  .strengths {
    padding-top: 75px;
  }

  .strengths__wrapper {
    gap: 20px;
    margin-top: 40px;
  }

  .strengths__card {
    padding: 50px 16px 40px;
  }

  .strengths__card-text {
    margin-top: 26px;
    font-size: 24px;
  }
}

/* ========================================
   CTAセクション
   ======================================== */
.cta {
  padding-top: 35px;
}

.cta--secondary {
  padding-top: 18px;
}

.cta--02 {
  padding-top: 25px;
}

.cta__wrapper {
  padding: 35px 18px 40px;
}

.cta__title {
  position: relative;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  border-bottom: 5px dotted var(--color-primary);
}

.cta__content-wrapper {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.cta__content-wrapper--reverse {
  justify-content: flex-start;
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: 20px;
}

.cta__content-image {
  width: 62px;
}

.cta__content {
  margin-top: 12px;
  margin-left: 6px;
}

.cta__content--last {
  margin-right: 14px;
  margin-top: 32px;
}

.cta__btn-wrapper {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .cta__title {
    width: fit-content;
    margin-inline: auto;
  }

  .cta__title::before,
  .cta__title::after {
    position: absolute;
    content: "";
    display: inline-block;
    top: -10px;
    width: 50px;
    height: 60px;
    background-image: url();
    background-repeat: no-repeat;
    background-size: contain;
  }

  .cta__title::before {
    background-image: url(../images/hero_person01.png);
    left: -50px;
  }
  .cta__title::after {
    background-image: url(../images/hero_person02.png);
    right: -60px;
  }

  .cta__title > br {
    display: none;
  }

  .cta__content-image {
    display: none;
  }

  .cta__content {
    margin-top: 0;
    margin-left: 0;
    margin-inline: auto;
  }

  .cta__content--last {
    margin-top: 0;
    margin-right: 0;
    margin-inline: auto;
  }

  .cta__content-wrapper {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .cta__content-wrapper--reverse {
    margin-right: 0;
  }

  .cta__btn-content {
    text-align: center;
  }

  .cta__btn-wrapper {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1280px) {
  .cta {
    padding-top: 40px;
  }

  .cta--02 {
    padding-top: 90px;
  }

  .cta__wrapper {
    padding: 60px 70px 50px;
  }

  .cta__title {
    padding-bottom: 14px;
    font-size: 36px;
    border-bottom: 6px dotted var(--color-primary);
  }

  .cta__title::before {
    width: 75px;
    height: 110px;
    background-image: url(../images/hero_person01.png);
    top: -20px;
    left: -100px;
  }
  .cta__title::after {
    width: 75px;
    height: 110px;
    background-image: url(../images/hero_person02.png);
    top: -20px;
    right: -100px;
  }

  .cta__btn-wrapper {
    margin-top: 50px;
  }

  .cta__content-wrapper {
    margin-bottom: 25px;
  }
}

/* ========================================
   登録・利用方法セクション
   ======================================== */
.usage {
  padding-top: 40px;
}

.usage__title {
}

.usage__card {
  padding: 20px 30px;
}

.usage__card-title-number {
  display: grid;
  place-content: center;
  margin-inline: auto;
  width: 38px;
  background-color: var(--color-primary-dark);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  border-radius: 50%;
  aspect-ratio: 1;
}

.usage__card-title-main {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.usage__card-text {
  margin-top: 10px;
  text-align: justify;
}

.usage__wrapper {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .usage__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .usage__card {
    padding: 20px 20px;
  }

  .usage__card-title-main {
    font-size: 14px;
  }
}

@media screen and (min-width: 1280px) {
  .usage {
    padding-top: 85px;
  }

  .usage__wrapper {
    margin-top: 40px;
    gap: 28px;
  }

  .usage__card {
    padding: 30px 28px;
  }

  .usage__card-title-main {
    margin-top: 16px;
    font-size: 24px;
  }

  .usage__card-title-number {
    width: 54px;
    font-size: 28px;
  }

  .usage__card-text {
    margin-top: 18px;
    font-size: 20px;
  }
}

/* ========================================
   サービス事例セクション
   ======================================== */
.service {
  padding-top: 40px;
  padding-bottom: 5px;
  overflow: hidden;
}

.service__title {
  position: relative;
  width: fit-content;
  margin-inline: auto;
  font-size: 24px;
}

.service__title::after {
  position: absolute;
  content: "";
  display: inline-block;
  bottom: -16px;
  left: -3px;
  width: 103.3%;
  height: 7px;
  background-image: url(../images/squareline-2-sp.svg);
}

.service__sub-section {
  margin-top: 45px;
}

.service__sub-title {
  margin-inline: calc(50% - 50vw);
  text-align: center;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.service__sub-title > span {
  padding-inline: 1em;
}

.service__sub-title::before,
.service__sub-title::after {
  content: "";
  flex-grow: 1;
  height: 2px;
  background-color: #40b7c0;
}

.service__sub-title--market::before,
.service__sub-title--market::after {
  background-color: #ff7f00;
}

.service__wrapper {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.service__card {
  padding: 25px 40px;
}

.service__card--market {
  padding: 25px 40px 25px;
}

.service__card-photo {
  padding-inline: 26px;
}

.service__card-title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.service__card-title--market {
  margin-top: 0;
}

.service__card--first > div > .service__card-title--market {
  margin-top: 28px;
}

.service__card-price {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
}

.service__card-text {
  margin-top: 6px;
}

.service__card-text--market {
  text-align: center;
}

@media (min-width: 768px) {
  .service__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .service__card {
    padding: 20px 20px;
  }

  .service__card--market {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
  }

  .service__card-title {
    font-size: 14px;
  }
}

@media screen and (min-width: 1280px) {
  .service {
    padding-top: 65px;
  }

  .service__title {
    font-size: 42px;
    padding-inline: 30px;
  }

  .service__title::after {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 101.2%;
    height: 11px;
    background-image: url(../images/squareline-2.svg);
  }

  .service__sub-section {
    margin-top: 75px;
  }

  .service__sub-title {
    font-size: 32px;
  }

  .service__sub-title {
    letter-spacing: 0.2em;
  }

  .service__sub-title::before,
  .service__sub-title::after {
    height: 4px;
  }

  .service__wrapper {
    margin-top: 25px;
    gap: 28px;
  }

  .service__card-title {
    margin-top: 18px;
    font-size: 20px;
  }

  .service__card--first > div > .service__card-title--market {
    margin-top: 0;
  }

  .service__card-text {
    width: fit-content;
    margin-inline: auto;
    padding-inline: 20px;
    font-size: 20px;
    text-align: left;
  }

  .service__card-price {
    margin-top: 0;
    font-size: 35px;
  }

  .service__card--market {
    padding: 36px 12px 18px;
  }

  .service__card-title--market {
    margin-top: 0;
  }
}

/* ========================================
   FAQセクション
   ======================================== */
.faq {
  padding-top: 44px;
}

.faq__wrapper {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.faq__question,
.faq__answer {
  display: grid;
  grid-template-columns: 10% auto;
}

.faq__question {
  padding: 12px 2px 12px 14px;
  color: #fff;
  background: linear-gradient(93.34deg, #85c040 6.07%, #00944a 53.79%, #006738 96.3%);
  border-radius: 8px;
}

.faq__question-dt,
.faq__question-dd,
.faq__answer-dt {
  font-size: 18px;
  font-weight: 800;
}

.faq__question-dd {
  font-size: 18px;
  letter-spacing: 0.2em;
}

.faq__answer {
  padding: 8px 2px 12px 14px;
}

.faq__answer-dd {
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .faq__question,
  .faq__answer {
    grid-template-columns: 5% auto;
  }

  .faq__question {
    padding: 12px 30px 12px 30px;
  }

  .faq__answer {
    padding: 8px 30px 12px 30px;
  }
}

@media screen and (min-width: 1280px) {
  .faq {
    padding-top: 68px;
  }

  .faq__wrapper {
    margin-top: 30px;
    gap: 38px;
  }

  .faq__question {
    padding: 12px 30px 12px 40px;
  }

  .faq__question-dt {
    font-size: 23px;
  }

  .faq__question-dd {
    font-size: 23px;
  }

  .faq__answer {
    align-items: anchor-center;
    padding: 12px 30px 12px 40px;
  }

  .faq__answer--2line {
    align-items: baseline;
  }

  .faq__answer-dt {
    font-size: 23px;
  }

  .faq__answer-dd {
    font-size: 18px;
  }
}

/* ========================================
   フッター
   ======================================== */
.footer {
  margin-top: 36px;
}

.footer__link {
  display: flex;
  justify-content: space-between;
  padding: 24px 32px 22px 40px;
  font-size: 14px;
  font-weight: 600;
  border-top: 2px solid #000;
  line-height: 1;
}

.footer__link:last-of-type {
  border-bottom: 2px solid #000;
}

.footer__copyright {
  padding-block: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__links {
    display: flex;
    justify-content: center;
  }

  .footer__link {
    border-top: none;
  }

  .footer__link:last-of-type {
    border-bottom: none;
  }

  .footer__link > span {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .footer {
    margin-top: 80px;
  }

  .footer__links {
    margin-left: -40px;
    gap: 55px;
  }

  .footer__link {
    padding: 0;
    font-size: 20px;
  }

  .footer__copyright {
    padding-block: 34px;
    font-size: 17px;
  }
}
