@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
/* 数値計算関連の関数を使うために必要 (math.divなど)*/
body {
  color: #000000;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション（タッチデバイス除く） */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.7582417582vw;
  }
}
@media (min-width: 910px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
  max-width: 37.5rem;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 960px;
    padding-inline: 25px;
  }
}

.section-title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.header {
  height: 7.6875rem;
  padding-block: 1rem;
  background: #FFF;
}

.header__inner,
.header__logo-area,
.header__logo,
.header__menu,
.header__info,
.header__nav,
.header__cart {
  height: inherit;
}

.header__inner {
  max-width: 81.25rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  padding-inline: 1rem;
}

.header__logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.header__logo img {
  display: block;
  height: auto;
}

.header__menu {
  width: 100%;
}
@media screen and (min-width: 780px) {
  .header__menu {
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.5rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}

.header__info {
  display: none;
}

@media screen and (min-width: 780px) {
  .header__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 0.25rem;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
.header__info-link {
  font-size: 0.875rem;
  color: #000000;
  text-decoration: none;
}

.header__nav {
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 780px) {
  .header__nav {
    width: auto;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 780px) {
  .header__nav-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
  }
}

.header__nav-item a {
  font-size: 0.875rem;
  color: #000000;
  text-decoration: none;
}

.header__cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #FFF;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  font-size: 0.875rem;
}

.header__cart-text {
  display: none;
}
@media screen and (min-width: 780px) {
  .header__cart-text {
    display: inline;
  }
}

.fv {
  overflow-x: clip;
    margin-top: 60px;
}
@media screen and (min-width: 780px) {
  .fv {
    padding-block: 6.5625rem 10.6875rem;
    height: auto;
    background-image: url(../images/fv-pc@2x.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
      margin-top: 60px;
  }
}
@media screen and (min-width: 960px) {
  .fv {
      margin-top: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .fv {
      margin-top: 120px;
  }
}

@media screen and (min-width: 780px) {
  .inner.fv__inner {
    max-width: 71.875rem;
  }
}

.fv__image {
  margin-inline: calc(50% - 50vi);
  width: 100vi;
}

.fv__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 780px) {
  .fv__text-block {
    position: relative;
    background: #FFF;
    padding: clamp(1.875rem, 4vw, 3.125rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.4375rem);
    max-width: clamp(25rem, 40vw, 31.25rem);
    margin-inline: initial;
    border-radius: 15px;
  }
}

.fv__text-block::before,
.fv__text-block::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (min-width: 780px) {
  .fv__text-block::before {
            background-image: url(../images/fv-badge.svg);
        background-size: 100%;
        top: -14.3302180685%;
        right: -18.2509505703%;
        max-width: clamp(6.25rem, 12vw, 9.3125rem);
        width: 150px;
        height: 150px;
  }
}

@media screen and (min-width: 780px) {
  .fv__text-block::after {
    background-image: url(../images/fv-1@2x.webp);
    bottom: -45.1713395639%;
    top: auto;
    right: clamp(-46%, -15vw, -46%);
    max-width: clamp(12.5rem, 20vw, 17rem);
    width: clamp(40%, 20vw, 54.4%);
    height: 99.6884735202%;
  }
}

.fv__lead {
  font-size: clamp(1rem, 2.4615384615vw, 2.1rem);
  font-weight: 500;
  line-height: 1.1621621622;
        font-weight: 500;
    font-family: "Zen Maru Gothic", sans-serif;
}

.fv__sub {
  margin-top: 0.9375rem;
  font-size: clamp(1rem, 2.1538461538vw, 1.75rem);
  color: #357D54;
  line-height: 1.5;
    font-weight: 600;
    font-family: "Zen Maru Gothic", sans-serif;
}

.fv__logo {
  margin-top: 0.75rem;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .fv__logo {
    width: clamp(18.75rem, 32vw, 25.875rem);
    max-width: 100%;
  }
}

.voice {
  background: #FFF;
  padding-block: 3rem;
}
@media screen and (min-width: 780px) {
  .voice {
    padding-block: 4.75rem 4.375rem;
  }
}

@media screen and (min-width: 780px) {
  .inner.voice__inner {
    max-width: 71.875rem;
  }
}

.voice__container {
  background: #f2f8f6;
  border-radius: 1.25rem;
  padding-block: 3.75rem;
  position: relative;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .voice__container {
    padding-block: 4.75rem 4.3125rem;
    max-width: 60rem;
    padding-inline: 1.5625rem;
  }
}

.voice__title {
  position: absolute;
  top: -1.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.2;
  color: #FFF;
  background: #357D54;
  text-align: center;
  border-radius: 30px;
  width: 100%;
  padding: 1.1875rem 1rem;
}
@media screen and (min-width: 780px) {
  .voice__title {
    padding: 1.1875rem 3.125rem;
    line-height: 1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.voice__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media screen and (min-width: 780px) {
  .voice__items {
    -ms-grid-columns: 1fr 2.375rem 1fr 2.375rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.375rem;
    max-width: 56.875rem;
    margin-inline: auto;
  }
}

.voice__item {
  position: relative;
  background: #FFF;
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.6;
  display: -ms-grid;
  display: grid;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  gap: 0.625rem;
}
@media screen and (min-width: 780px) {
  .voice__item {
    padding: 2.125rem 1.75rem 1.625rem;
    min-height: 10.25rem;
  }
}

.voice__item::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-box-shadow: 4px 4px 0px 0px rgb(61, 140, 75);
          box-shadow: 4px 4px 0px 0px rgb(61, 140, 75);
  mix-blend-mode: multiply;
  opacity: 0.33;
  pointer-events: none;
  border-radius: 10px;
}

.voice__from {
  text-align: right;
  margin-top: auto;
}

.voice__message {
  text-align: center;
  margin-top: 2.5rem;
}

.voice__logo-text {
  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: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.voice__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6875rem;
  margin-top: 2.875rem;
}

.voice__logo img {
  width: 17.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .voice__logo img {
    width: 20.875rem;
  }
}

.voice__logo span {
  font-size: 1.625rem;
  color: #000000;
    font-weight: 600;
}
@media screen and (min-width: 780px) {
  .voice__logo span {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.voice__desc {
  font-size: 1.25rem;
  line-height: 1.4615384615;
  margin-top: 0.8125rem;
            font-weight: 600;
}
@media screen and (min-width: 780px) {
  .voice__desc {
    font-size: 1.625rem;
  }
}

/* 使いやすさのひみつ */
.point__head {
  background-color: #357D54;
  text-align: center;
  position: relative;
  padding-block: 1.75rem;
}
@media screen and (min-width: 780px) {
  .point__head {
    padding-block: 3.5625rem;
  }
}

.point__head::after {
  content: "";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 2rem solid transparent;
  border-right: 2rem solid transparent;
  border-top: 1.25rem solid #357D54;
}

.point__title {
  color: #FFF;
  font-size: clamp(1.5rem, 2.7692307692vw, 2.25rem);
  font-weight: 400;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .point__lead {
    font-size: 20px;
  }
}
.inner.point__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.75rem;
  margin-top: 3rem;
}
@media screen and (min-width: 780px) {
  .inner.point__inner {
    max-width: 60rem;
    margin-top: 4.25rem;
    gap: 5.125rem;
  }
}

.point__title-wrap {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "number title";
  -ms-grid-columns: 3.4375rem 0.5rem 1fr;
  grid-template-columns: 3.4375rem 1fr;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  row-gap: 0.3125rem;
}
@media screen and (min-width: 780px) {
  .point__title-wrap {
    -ms-grid-columns: 5.125rem 1.625rem 1fr;
    grid-template-columns: 5.125rem 1fr;
    -webkit-column-gap: 1.625rem;
       -moz-column-gap: 1.625rem;
            column-gap: 1.625rem;
    row-gap: 0.75rem;
        grid-template-areas: "number title";
  }
}

.point__title-wrap:has(.point__title-sub) {
      grid-template-areas: "number title" "sub sub";
}
@media screen and (min-width: 780px) {
  .point__title-wrap:has(.point__title-sub) {
        grid-template-areas: "number title" "number sub";
  }
}

.point__number {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  font-size: clamp(1.25rem, 2.7692307692vw, 2.25rem);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFF;
  background: #357D54;
  border-radius: 50%;
  width: 3.4375rem;
  height: 3.4375rem;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  grid-area: number;
}

.point__title-wrap:has(.point__title-sub) > .point__number {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
@media screen and (min-width: 780px) {
  .point__number {
    width: 5.125rem;
    height: 5.125rem;
  }
}

.point__title-main {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4184615385vw, 1.965rem);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #357D54;
  grid-area: title;
  -ms-grid-row-align: center;
      align-self: center;
}

.point__title-wrap:has(.point__title-sub) > .point__title-main {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media screen and (min-width: 780px) {
  .point__title-main {
    line-height: 1;
  }
}

.point__title-sub {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  font-size: clamp(0.875rem, 1.2307692308vw, 1rem);
  font-weight: 500;
  line-height: 1.1428571429;
  letter-spacing: 0.8px;
  grid-area: sub;
  -ms-grid-row-align: start;
      align-self: start;
}

@media screen and (min-width: 780px){
  .point__number {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .point__title-wrap:has(.point__title-sub) > .point__number {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .point__title-main {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .point__title-wrap:has(.point__title-sub) > .point__title-main {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .point__title-sub {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
}
@media screen and (min-width: 780px) {
  .point__title-sub {
    line-height: 1;
  }
}

.info {
  background: #eef6f2;
  padding-block: 3.75rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .info {
    padding-block: 5rem;
    margin-top: 3.75rem;
  }
}

.info__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 780px) {
  .info__cards {
    -ms-grid-columns: 20.6875rem 2rem 1fr;
    grid-template-columns: 20.6875rem 1fr;
    gap: 2rem;
  }
}

.info__card {
  background: #FFF;
  border-radius: 1rem;
  padding-block: 0.4375rem 1.5rem;
}
@media screen and (min-width: 780px) {
  .info__card {
    padding-block: 0.4375rem 1.5rem;
  }
}

@media screen and (min-width: 780px) {
  .info__card:first-child {
    max-width: 20.6875rem;
  }
}

.info__image {
  border-radius: 0.75rem;
  overflow: hidden;
  width: 100%;
  margin-inline: auto;
}

.info__card:first-child .info__image {
  max-width: 17.125rem;
}

.info__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.info__card:first-child .info__image img {
  aspect-ratio: 274/365;
}

.info__card:nth-child(2) .info__image img {
  aspect-ratio: 525/415;
}

.info__image-caption {
  font-size: 1rem;
  line-height: 1.5;
  color: #357D54;
  font-weight: 500;
  margin-top: 1.0625rem;
}

.trial {
  padding-block: 3rem;
}

@media screen and (min-width: 780px) {
  .inner.trial__inner {
    max-width: 53.125rem;
  }
}

.trial__lead {
  text-align: center;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.125rem, 1.8461538462vw, 1.5rem);
  line-height: 1.2916666667;
}

.trial__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.75rem;
}
@media screen and (min-width: 780px) {
  .trial__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
    margin-top: 1.6875rem;
  }
}

.trial__button {
  display: inline-block;
  text-align: center;
  width: min(100%, 22.1875rem);
  padding: 0.875rem 1.125rem;
  border-radius: 62.4375rem;
  color: #FFF;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.5384615385vw, 1.25rem);
  position: relative;
}
@media screen and (min-width: 780px) {
  .trial__button {
    padding: 1.125rem 2rem;
  }
}

.trial__button::after {
  content: "";
  position: absolute;
  background-image: url(../images/btn_arrow@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 0.625rem;
  height: 1.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1rem;
}
@media screen and (min-width: 780px) {
  .trial__button::after {
    right: 2rem;
  }
}

.trial__button--free {
  background: #ff7690;
}

.trial__button--buy {
  background: #21aa9c;
}

.trial__banner {
  background: #14aae8;
  border-radius: 15px;
  padding: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  position: relative;
  margin-top: 2rem;
}
@media screen and (min-width: 780px) {
  .trial__banner {
    margin-top: 3.1875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2.1875rem 2rem 1.4375rem;
    gap: 0;
  }
}

.trial__banner::after {
  background-image: url(../images/trial__badge.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 22.3880597015%;
  height: 22.3880597015%;
  content: "";
  position: absolute;
  top: 10.9375rem;
  right: 0.625rem;
}
@media screen and (min-width: 780px) {
  .trial__banner::after {
    top: -1rem;
    right: -1rem;
    width: 6.6875rem;
    height: 6.6875rem;
  }
}

.trial__banner-left {
  color: #FFF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 780px) {
  .trial__banner-left {
    display: block;
    max-width: 28.75rem;
    width: 68%;
  }
}

.trial__banner-small {
  font-size: 1.125rem;
}
@media screen and (min-width: 780px) {
  .trial__banner-small {
    font-size: 1.125rem;
  }
}

.trial__banner-mid {
  font-size: 1.25rem;
  margin-top: 0.9375rem;
  color: #FFFD35;
}
@media screen and (min-width: 780px) {
  .trial__banner-mid {
    font-size: 1.5rem;
  }
}

.trial__banner-main {
  font-size: 1.75rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .trial__banner-main {
    font-size: 2.875rem;
  }
}

.trial__banner-note {
  font-size: 0.875rem;
  margin-top: 1.25rem;
}

.trial__banner-right {
  width: 70%;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .trial__banner-right {
    width: 32%;
    max-width: 16rem;
    margin-inline: initial;
  }
}

.trial__text {
  margin-top: 1.125rem;
}

.trial__desc {
  font-size: clamp(0.875rem, 1.2307692308vw, 1rem);
  line-height: 1.5;
  font-weight: 500;
}

.trial__links {
  margin-top: 1.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
}

.trial__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  color: #1b76c7;
  font-weight: 500;
  font-size: clamp(0.875rem, 1.2307692308vw, 1rem);
}

.trial__link-icon {
  width: 0.875rem;
  height: 0.875rem;
  fill: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 780px) {
  .trial__link-icon {
    width: 1.0625rem;
    height: 1.0625rem;
  }
}

.faq {
  padding-top: 3rem;
}
@media screen and (min-width: 780px) {
  .faq {
    padding-top: 5rem;
  }
}

@media screen and (min-width: 780px) {
  .faq__inner.inner {
    max-width: 65.625rem;
  }
}

.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
  margin-top: 3rem;
}
@media screen and (min-width: 780px) {
  .faq__list {
    margin-top: 4rem;
    max-width: 56.875rem;
    margin-inline: auto;
  }
}

.faq__item {
  background: #FFF;
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq__question {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.75rem 0.75rem 1fr 0.75rem 1.75rem;
  grid-template-columns: 1.75rem 1fr 1.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 1rem;
  background: #f4f6f8;
  cursor: pointer;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__q {
  font-weight: 700;
  color: #1b76c7;
  font-size: clamp(1.5rem, 2.3076923077vw, 1.875rem);
}

.faq__question-text {
  font-weight: 700;
  color: #1b76c7;
  font-size: clamp(1rem, 1.5384615385vw, 1.25rem);
  line-height: 1.6;
}

.faq__icon {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  border: 1px solid #8bb6de;
  position: relative;
}

.faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 1px;
  background: #1b76c7;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 0.625rem;
  background: #1b76c7;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.faq__item[open] .faq__icon::after {
  opacity: 0;
}

.faq__answer {
  padding: 0 1rem;
  background: #f9f9f9;
}
@media screen and (min-width: 780px) {
  .faq__answer {
    padding: 0 1.3125rem 0.625rem;
  }
}

.faq__answer-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.75rem 0.75rem 1fr;
  grid-template-columns: 1.75rem 1fr;
  gap: 0.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  background: #FFF;
  padding: 1rem;
}
@media screen and (min-width: 780px) {
  .faq__answer-row {
    padding: 1.25rem 0.625rem;
  }
}

.faq__a {
  font-weight: 700;
  color: #f28c2b;
  font-size: clamp(1.5rem, 2.3076923077vw, 1.875rem);
}

.faq__answer-body {
  color: #f28c2b;
  font-size: clamp(1rem, 1.8461538462vw, 1.25rem);
  line-height: 1.6;
}

.contact {
  margin-top: 4rem;
}
@media screen and (min-width: 780px) {
  .contact {
    margin-top: 5.8125rem;
  }
}

.contact__inner {
  border-bottom: 1px solid #e6e6e6;
}

.contact__web {
  padding-block: 1.75rem;
  text-align: center;
}

.contact__title {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6153846154vw, 2.125rem);
}

.contact__button {
  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: min(100%, 22.5rem);
  padding: 0.875rem 1rem;
  background: #396AAC;
  color: #FFF;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.8461538462vw, 1.75rem);
  margin-top: 1.75rem;
}
@media screen and (min-width: 780px) {
  .contact__button {
    margin-top: 2.25rem;
  }
}

.contact__tel {
  border: 1px solid #e6e6e6;
  padding-block: 1.375rem;
  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;
  gap: 0.625rem;
}
@media screen and (min-width: 780px) {
  .contact__tel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem;
  }
}

.contact__tel-label {
  margin: 0;
  font-weight: 700;
  font-size: 0.875rem;
}

.contact__tel-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.contact__tel-icon {
  width: 1.375rem;
  height: 1.375rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 0.25rem;
}

.contact__tel-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: #357D54;
  display: block;
}

.contact__tel-number {
  font-weight: 700;
  font-size: 1.375rem;
}
@media screen and (min-width: 780px) {
  .contact__tel-number {
    font-size: 1.625rem;
  }
}

.tel {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin: 1em 0 3em;
}

.tel .tel-flex {
  width: 85%;
  max-width: 20rem;
  margin: 1em auto;
  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;
  gap: 0rem;
}
@media screen and (min-width: 780px) {
  .tel .tel-flex {
    width: 90%;
    max-width: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
}

.tel .tel-flex .text-box {
  width: 100%;
  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;
}
@media screen and (min-width: 780px) {
  .tel .tel-flex .text-box {
    width: 40%;
    padding: 1rem;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

.tel .tel-flex .text-box .text {
  font-weight: bold;
  font-size: 130% !important;
  text-align: center;
  margin: 0;
}

.tel .tel-flex .num-box {
  width: 100%;
  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;
}
@media screen and (min-width: 780px) {
  .tel .tel-flex .num-box {
    width: 45%;
    padding: 1rem;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

.tel .tel-flex .num-box .num {
  position: relative;
  font-size: 190% !important;
  font-weight: bold;
  padding-left: 3.25rem;
  margin: 0;
  white-space: nowrap;
}
@media screen and (min-width: 780px) {
  .tel .tel-flex .num-box .num {
    padding-left: 15%;
  }
}

.tel .tel-flex .num-box .num::before {
  content: "";
  background-image: url(../images/tel_icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 41px;
  height: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.footer {
  color: #FFF;
}

.footer__top {
  background: #1b4f9c;
  padding-block: 2rem;
}
@media screen and (min-width: 780px) {
  .footer__top {
    padding-block: 2.75rem;
  }
}

.footer__logo {
  margin: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin-bottom: 1.375rem;
}
@media screen and (min-width: 780px) {
  .footer__logo {
    margin-bottom: 1.75rem;
  }
}

.footer__logo picture {
  display: block;
}

.footer__logo img {
  width: 7rem;
  height: auto;
  display: block;
}
@media screen and (min-width: 780px) {
  .footer__logo img {
    width: 9rem;
  }
}

.footer__main {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.125rem;
}
@media screen and (min-width: 780px) {
  .footer__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.75rem;
    padding-top: 1.375rem;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
}
@media screen and (min-width: 780px) {
  .footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
  }
}

.footer__nav-list,
.footer__nav-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem 1.125rem;
}
@media screen and (min-width: 780px) {
  .footer__nav-list,
  .footer__nav-sub {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.footer__nav-link {
  color: #FFF;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
}

.footer__nav-link:hover {
  text-decoration: underline;
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
}
@media screen and (min-width: 780px) {
  .footer__sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 0.75rem;
    min-width: 10rem;
  }
}

.footer__sns-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.footer__sns-link {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.footer__sns-icon {
  width: 1.125rem;
  height: 1.125rem;
  fill: #FFF;
  display: block;
}

.footer__sns-official {
  color: #FFF;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
}

.footer__sns-official:hover {
  text-decoration: underline;
}

.footer__sns-official-icon {
  font-size: 0.75rem;
  line-height: 1;
}

.footer__bottom {
  background: #FFF;
  color: #1b4f9c;
  padding-block: 1.125rem;
}

.footer__bottom .footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.375rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer__company {
  margin: 0;
  font-weight: 700;
  font-size: 0.75rem;
}

.footer__copy {
  margin: 0;
  font-size: 0.625rem;
}

.type-item {
  position: relative;
  background-color: #f0f7f7;
  padding: 1rem;
}
@media screen and (min-width: 780px) {
  .type-item {
    padding: 3.6875rem 2.4375rem 2.25rem;
  }
}

.type-item__head {
  text-align: center;
}

.type-item__image {
  aspect-ratio: 360/241;
  -o-object-fit: contain;
     object-fit: contain;
}

.type-item__label {
  position: absolute;
  top: -2.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Zen Maru Gothic", sans-serif;
  background: #FFF;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.3076923077vw, 1.875rem);
  border: 3px solid #357D54;
  color: #357D54;
  border-radius: 1.6875rem;
  padding: 0.25rem 0.75rem;
  position: relative;
  text-align: center;
  padding-block: 0.625rem;
    padding-left: 15%;
  line-height: 1;
}
@media screen and (min-width: 780px) {
  .type-item__label {
    max-width: 25.3125rem;
    width: 100%;
    top: -2.125rem;
       padding-left: 10%;
  }
}

.type-item__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4.625rem;
  height: 4.625rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.type-item__label.type-item__label--smart::before {
  background-image: url(../images/point1-smart-title@2x.webp);
}

.type-item__label.type-item__label--wide::before {
  background-image: url(../images/point1-wide-title@2x.webp);
}

.type-item__body {
  background-color: #FFF;
  border-radius: 10px;
  margin-top: -1rem;
  padding: 1rem;
}
@media screen and (min-width: 780px) {
  .type-item__body {
    padding: 1.0625rem 1.1875rem 1.5625rem;
  }
}

.type-item__recommend {
  font-size: clamp(1rem, 1.3846153846vw, 1.125rem);
  font-weight: 500;
}

.type-item__list {
  font-size: clamp(0.875rem, 1.3076923077vw, 1.0625rem);
  line-height: 2;
  font-weight: 500;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 780px) {
  .type-item__list {
    margin-top: 0.5rem;
  }
}

.type-item__caption {
  font-size: clamp(0.875rem, 1.3846153846vw, 1.125rem);
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (min-width: 780px) {
  .type-item__caption {
    margin-top: 1rem;
  }
}

.type-item__caption-image {
  margin-top: 0.625rem;
}

.type-item__caption-image img {
  height: auto;
  aspect-ratio: 360/241;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Point 1：シーンに合わせてサイズ調整可能 画像 */
.point-first__images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  position: relative;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .point-first__images {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    margin-top: 0;
  }
}

.point-first__images::after {
  content: "";
  position: absolute;
  top: 48%;
  left: 56%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(../images/point1-1-pop@2x.webp) no-repeat center center/contain;
  width: 10rem;
  height: 4.5625rem;
}
@media screen and (min-width: 780px) {
  .point-first__images::after {
    top: 50%;
    left: 50%;
    width: 10rem;
    height: 4.5625rem;
  }
}

.point-first__image {
  display: -ms-grid;
  display: grid;
  -ms-grid-column-align: center;
      justify-self: center;
}

.point-first__image.point-first__image--smart {
  width: clamp(10rem, 15.5384615385vw, 12.625rem);
}

.point-first__image.point-first__image--wide {
  width: clamp(11.25rem, 17.0769230769vw, 13.875rem);
  padding-top: 8.125rem;
}
@media screen and (min-width: 780px) {
  .point-first__image.point-first__image--wide {
    padding-top: 0;
  }
}

/* 左: スマートタイプ / 右: ワイドタイプ */
.point-first__types {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 780px) {
  .point-first__types {
    margin-top: 1.75rem;
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

/* 自分好みにカスタマイズ */
.point-second__images {
  margin-top: 0.5625rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .point-second__images {
    max-width: 41.125rem;
    aspect-ratio: 658/520;
  }
}

/* 収納に便利なポケットが豊富 */
.point-third__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .point-third__items {
    -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    row-gap: 1rem;
    max-width: 100%;
  }
}

.point-third__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.5384615385vw, 1.25rem);
  line-height: 1.2;
  color: #357D54;
  font-weight: bold;
  margin-top: 0.25rem;
}

.point-third__item-text {
  font-weight: 500;
  font-size: clamp(0.875rem, 1.2307692308vw, 1rem);
  line-height: 1.5;
  margin-top: 0.25rem;
}
@media screen and (min-width: 780px) {
  .point-third__item-text {
    margin-top: 0.625rem;
  }
}

.marker {
  position: relative;
  padding-left: 1.25rem;
}

.marker::before {
  content: "●";
  position: absolute;
  left: 0;
  top: -0.05lh;
  color: #53AC24;
  margin-right: 0.375rem;
  width: 0.9375rem;
  height: 0.9375rem;
}

.point-card__lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
    
}
@media screen and (min-width: 780px) {
  .point-card__lists {
    -ms-grid-columns: 1fr 1.0625rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.0625rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 2rem;
  }
}

/* 左: 3D肩ベルト + 2ステップで身体にフィット（縦並び） */
.point-card__list.point-card__list--left {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 780px) {
  .point-card__list.point-card__list--left {
    gap: 2.5rem;
  }
}

/* Point 4: カード・タイトル・本文・画像 */
.point-card__card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 0.8125rem;
}

.point-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  color: #357D54;
  font-size: clamp(1.25rem, 1.8461538462vw, 1.5rem);
  line-height: 1.3;
  white-space: nowrap;
}

.point-card__dot {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: #53AC24;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 780px) {
  .point-card__dot {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.point-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
@media screen and (min-width: 780px) {
  .point-card__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.point-card__desc {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

.point-card__image {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 780px) {
  .point-card__image {
    width: 10.625rem;
  }
}
.point-card__steps .point-card__image {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 780px) {
  .point-card__steps .point-card__image {
    width: 10.625rem;
  }
}

.point-six__image{
    width: 100%;
    }
@media screen and (min-width: 780px) {
  .point-six__image {
    width: 10.625rem;
  }
}

.point-card__image.point-card__image--wide {
  width: 100%;
}
@media screen and (min-width: 780px) {
  .point-card__image.point-card__image--wide {
    width: 27.75rem;
  }
}

.point-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.point-card__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  gap: 0.625rem;
}
@media screen and (min-width: 780px) {
  .point-card__steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.0625rem;
  }
}

@media screen and (min-width: 780px) {
  .point-card__step {
    max-width: 10.625rem;
  }
}

.point-card__step-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 24px;
  letter-spacing: 0.8px;
  text-align: left;
  margin-top: 0.75rem;
}

.point-card__list-dot li {
  position: relative;
  padding-left: 1rem;
  font-weight: 500;
}

.point-card__list-dot li::before {
  content: "○";
  position: absolute;
  left: 0;
  top: -0.05lh;
  color: #000000;
  font-size: 1rem;
}

.point-six__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.8125rem;
    
}
@media screen and (min-width: 780px) {
  .point-six__items {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-grid-columns: 1fr 2.5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.point-six__item:has(.point-six__content) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1rem;
    -ms-grid-columns: 10.625rem 1.5625rem 1fr;
    grid-template-columns: 10.625rem 1fr;
    gap: 1.5625rem;
}
@media screen and (min-width: 780px) {
  .point-six__item:has(.point-six__content) {
    -ms-grid-columns: 10.625rem 1.5625rem 1fr;
    grid-template-columns: 10.625rem 1fr;
    gap: 1.5625rem;
  }
}

.point-six__content {
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
}

.point-six__logo {
  width: 100%;
}
@media screen and (min-width: 780px) {
  .point-six__logo {
    max-width: 11.25rem;
  }
    .point-six__content {
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
}
}

.point-six__note {
  font-size: clamp(0.75rem, 1.0769230769vw, 0.875rem);
  line-height: 1.4285714286;
  color: #231815;
  font-weight: 400;
}

.point-six__text {
  font-size: clamp(0.875rem, 1.2307692308vw, 1rem);
  line-height: 1.5;
  font-weight: 500;
}

.point-six__bubbles {
  max-width: 25.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .point-six__bubbles {
    width: 90.1098901099%;
  }
}

.title-style {
  text-align: center;
  border-bottom: 2px solid #e6e6e6;
}

.title-style__title {
  font-weight: bold;
  position: relative;
}

.title-style__title.blue::after {
  background-color: #0071bc;
}

.title-style__title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  visibility: visible;
}

.title-style__text {
  text-align: center;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
}

