@charset "UTF-8";
body {
  font-family: "Noto sans JP", sans-serif;
  color: #383838;
}

.body-wrap {
  overflow: hidden;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

.u-header-spacer {
  width: 100%;
  height: 52px;
  height: 3.25rem;
}
@media screen and (min-width: 768px) {
  .u-header-spacer {
    height: 3.75rem;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.7391304348vw;
  }
}
@media (min-width: 920px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

._pc {
  display: none;
}
@media screen and (min-width: 768px) {
  ._pc {
    display: block;
  }
}

._sp {
  display: block;
}
@media screen and (min-width: 768px) {
  ._sp {
    display: none;
  }
}

*,
*::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;
}

/* Set core root 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]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* 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]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -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;
}

.button {
  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;
}
.button span {
  -webkit-box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-size: 0.75rem;
  color: #003692;
  font-weight: 700;
  padding: 3px 20px;
  padding: 0.1875rem 1.25rem;
  border-radius: 0.9375rem;
  background-color: #fff;
  color: #003692;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .button span {
    font-size: 1rem;
    padding: 0.1875rem 1.875rem;
  }
}
.button a {
  -webkit-box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
  margin-top: -13px;
  margin-top: -0.8125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 35px;
  padding: 1.25rem 2.1875rem;
  background: -webkit-gradient(linear, left top, right top, from(#EFC800), to(#DB4D00));
  background: linear-gradient(90deg, #EFC800, #DB4D00);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.625rem;
  border: 2px solid #fff;
  color: #fff;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .button a {
    padding: 1.5625rem 5.625rem;
    font-size: 1.25rem;
  }
}

.company {
  background-color: #DBF2EC;
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .company {
    padding: 5rem 0 6.25rem;
  }
}

.company__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .company__inner {
    max-width: 840px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.company__box {
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 25px 20px;
  padding: 1.5625rem 1.25rem;
  background-color: #fff;
  border-radius: 7px;
  color: #003692;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .company__box {
    padding: 2.5rem 3.75rem;
    margin-top: 3.375rem;
    border-radius: 10px;
    font-size: 1rem;
  }
}

.company__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2;
}
.company__data dt {
  width: 100px;
  width: 6.25rem;
  margin-right: 20px;
  margin-right: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .company__data dt {
    width: 8.125rem;
    margin-right: 1.875rem;
  }
}
.company__data:nth-child(n+2) {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.comparison {
  background-color: #DBF2EC;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  position: relative;
}
.comparison::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 80%;
  height: 500px;
  height: 31.25rem;
  background-image: url(../images/common/green-dot-1.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .comparison::before {
    width: 50%;
  }
}

.comparison__box {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
  padding-top: 25px;
  padding-top: 1.5625rem;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  padding-left: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .comparison__box {
    max-width: 970px;
    padding-right: 25px;
    padding-left: 25px;
    margin-top: 3.125rem;
    margin-inline: auto;
    padding: 3.625rem 4.375rem;
    border-radius: 0.625rem;
  }
}

.comparison__wrapper {
  background-color: #fff;
  width: 100%;
  position: relative;
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .comparison__wrapper {
    margin-inline: auto;
    min-width: auto;
    max-width: 48.75rem;
  }
}

.comparison__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 112px;
  left: 7rem;
  width: 157px;
  width: 9.8125rem;
  height: 100%;
  border: 3px solid #00AA7F;
  border: 0.1875rem solid #00AA7F;
  border-radius: 0.625rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .comparison__wrapper::before {
    left: 9.375rem;
    width: 13.125rem;
  }
}

table.comparison__table {
  border-collapse: separate;
  border-spacing: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  min-width: 593px;
  min-width: 37.0625rem;
}
@media screen and (min-width: 768px) {
  table.comparison__table {
    padding-right: 0;
    padding-right: initial;
  }
}

table.comparison__table th,
table.comparison__table td {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 50px;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  table.comparison__table th,
  table.comparison__table td {
    font-size: 1rem;
  }
}

table.comparison__table th.test-col-width-1 {
  width: 112px;
  width: 7rem;
}
@media screen and (min-width: 768px) {
  table.comparison__table th.test-col-width-1 {
    width: 9.375rem;
  }
}

table.comparison__table th.test-col-width-2 {
  width: 157px;
  width: 9.8125rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  table.comparison__table th.test-col-width-2 {
    width: 13.125rem;
    font-size: 1.25rem;
  }
}

/* ヘッダー */
table.comparison__table thead th {
  color: #003692;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  table.comparison__table thead th {
    font-size: 1rem;
  }
}

/* 空の１列目ヘッダーは消す */
table.comparison__table thead th:first-child {
  visibility: hidden;
  padding: 0;
  border: none;
}

/* 「弊社」ヘッダー */
table.comparison__table thead th:nth-child(2) {
  background-color: #00AA7F;
  color: #fff;
  border-radius: 0.75rem 0.75rem 0 0;
  border-bottom: 5px solid #fff;
  border-bottom: 0.3125rem solid #fff;
}

/* ───────────────────── */
/* １列目：カテゴリラベルを常にライトグリーン＆左上下だけ角丸 */
table.comparison__table tbody th {
  background-color: #fff;
  border-radius: 0.5rem 0 0 0.5rem;
  font-weight: 400;
}

table.comparison__table tbody th.green {
  background-color: #99DCCB;
  border-radius: 0.5rem 0 0 0.5rem;
  font-weight: 400;
}

/* ───────────────────── */
/* ２列目（弊社）：ゼブラ柄 */
table.comparison__table tbody tr:nth-child(odd) td:nth-child(2) {
  background-color: #DBF2EC;
  font-weight: 700;
}

table.comparison__table tbody tr:nth-child(even) td:nth-child(2) {
  background-color: #fff;
  font-weight: 700;
}

/* ３・４列目（A社・B社）：ゼブラ柄 */
table.comparison__table tbody tr:nth-child(odd) td:nth-child(3),
table.comparison__table tbody tr:nth-child(odd) td:nth-child(4) {
  background-color: #F5F5F5;
}

table.comparison__table tbody tr:nth-child(even) td:nth-child(3),
table.comparison__table tbody tr:nth-child(even) td:nth-child(4) {
  background-color: #fff;
}

table.comparison__table tbody tr:nth-child(odd) td:nth-child(4) {
  border-radius: 0 0.75rem 0.75rem 0;
}

table.comparison__table tbody td.colspan {
  border-radius: 0 0.75rem 0.75rem 0;
}

.comparison__scroll-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .comparison__scroll-text {
    display: none;
  }
}
.comparison__scroll-text p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-right: 10px;
  margin-right: 0.625rem;
  color: #003692;
}
.comparison__scroll-text span {
  width: 12px;
  width: 0.75rem;
}

.faq {
  background-color: #fff;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
  }
}

.faq__qas {
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .faq__qas {
    max-width: 53.75rem;
  }
}

.faq__qa {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.faq__qa:last-of-type {
  margin-bottom: 0;
}

.faq__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 14px 12px 14px 14px;
  padding: 0.875rem 0.75rem 0.875rem 0.875rem;
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  border-radius: 0.5rem;
  background-color: #DBF2EC;
  color: #003692;
  position: relative;
  font-weight: 700;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .1);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .faq__q {
    padding: 1.5625rem 1.25rem 1.5625rem 2.1875rem;
    border-radius: 0.625rem;
    font-size: 1rem;
  }
}

.faq__q-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 10px;
  margin-right: 0.625rem;
}

.faq__q-top {
  font-family: "Akshar", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  margin-right: 7px;
  margin-right: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .faq__q-top {
    font-size: 2rem;
    margin-right: 2.5rem;
  }
}

.faq__a {
  display: none;
  padding: 6px 0 5px 12px;
  padding: 0.375rem 0 0.3125rem 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #383838;
}
@media screen and (min-width: 768px) {
  .faq__a {
    font-size: 1rem;
  }
}
.faq__a a {
  border-bottom: 1px solid #333;
}

.faq__q-arrow {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background-image: url("../images/common/faq-arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .faq__q-arrow {
    width: 1.25rem;
  }
}
.faq__q-arrow.is-open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.faq__tab {
  background-color: #fff;
  color: #003692;
  text-align: center;
  padding: 0.5em 0;
  width: calc(50% - 0.5rem);
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  border-right: #003692 3px solid;
  padding: 20px 0;
  padding: 1.25rem 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .faq__tab {
    width: 25%;
    font-size: 1.25rem;
    position: relative;
    overflow: hidden;
  }
  .faq__tab::after {
    content: "";
    position: absolute;
    bottom: 0.75rem;
    left: 15%;
    width: 70%;
    height: 2px;
    background-color: #00AA7F;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .faq__tab:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.faq__tab.js-faqtab {
  color: #003692;
  background-color: #DBF2EC;
}
.faq__tab:nth-child(n+3) {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .faq__tab:nth-child(n+3) {
    margin-top: 0;
    margin-top: initial;
  }
}
.faq__tab:nth-child(odd) {
  border-left: #003692 3px solid;
}
@media screen and (min-width: 768px) {
  .faq__tab:nth-child(odd) {
    border-left: 0;
    border-left: initial;
  }
}
@media screen and (min-width: 768px) {
  .faq__tab:nth-child(1) {
    border-left: #003692 3px solid;
  }
}

.faq__one-kind {
  display: none;
}
.faq__one-kind.js-faq-kind {
  display: block;
}

.flow {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .flow {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.flow__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .flow__inner {
    max-width: 1090px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.flow__cards {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 0;
  gap: 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .flow__cards {
    margin-top: 4.375rem;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .flow__card {
    height: 100%;
  }
}

.flow__card-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-radius: 0.4375rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .flow__card-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    border-radius: 0.625rem;
    height: 100%;
  }
}

.flow__card-body {
  width: 50%;
  background-color: #00AA7F;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .flow__card-body {
    width: 100%;
  }
}

.flow__card-step {
  padding: 6px 11px;
  padding: 0.375rem 0.6875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-family: "Akshar", sans-serif;
  color: #fff;
  background-color: #003692;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 0 0 7px 7px;
}
@media screen and (min-width: 768px) {
  .flow__card-step {
    padding: 0.5rem 1.125rem;
    font-size: 1.25rem;
    border-radius: 0 0 10px 10px;
  }
}

.flow__card-title {
  margin-top: 8px;
  margin-top: 0.5rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .flow__card-title {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.flow__card-icon {
  margin-inline: auto;
  width: 74px;
  width: 4.625rem;
}
@media screen and (min-width: 768px) {
  .flow__card-icon {
    margin-top: 0.5rem;
    width: 7.75rem;
  }
}

.flow__card-foot {
  padding: 0 16px;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #99ddcc;
  width: 50%;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
@media screen and (min-width: 768px) {
  .flow__card-foot {
    width: 100%;
    font-size: 1rem;
    padding: 1.25rem;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.footer {
  padding: 20px 25px;
  padding: 1.25rem 1.5625rem;
  background-color: #003692;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 1.5625rem 3.125rem;
  }
}
.footer::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 150px;
  width: 9.375rem;
  height: 100%;
  background-image: url(../images/common/foot-bg-sp.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .footer::before {
    background-image: url(../images/common/foot-bg-pc.webp);
    width: 28.75rem;
  }
}

.footer__inner {
  max-width: 1440px;
  max-width: 90rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo {
  display: block;
  width: 165px;
  width: 10.3125rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 17.1875rem;
  }
}

.footer__privacy {
  margin-left: 10px;
  margin-left: 0.625rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  border-left: 1px solid rgba(255, 255, 255, .6);
  font-size: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .6);
  line-height: 30px;
  line-height: 1.875rem;
}
@media screen and (min-width: 768px) {
  .footer__privacy {
    margin-left: 1.875rem;
    padding-left: 1.875rem;
    font-size: 1rem;
  }
}

.hamburger-menu {
  position: relative;
  overflow: hidden;
  height: inherit;
}

.hamburger-menu__button {
  display: block;
  height: inherit;
  width: 52px;
  background-color: #f2f2f2;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.hamburger-menu__button span {
  background-color: #0c244c;
  width: 20px;
  width: 1.25rem;
  height: 2px;
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.hamburger-menu__button span:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% - 6px));
          transform: translate(-50%, calc(-50% - 6px));
}
.hamburger-menu__button span:nth-child(3) {
  -webkit-transform: translate(-50%, calc(-50% + 6px));
          transform: translate(-50%, calc(-50% + 6px));
}
.hamburger-menu__button span:nth-child(4) {
  opacity: 0;
}
.hamburger-menu__button span:nth-child(5) {
  opacity: 0;
}

#hamburger-menu-button:checked + .hamburger-menu__button {
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
#hamburger-menu-button:checked + .hamburger-menu__button span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#hamburger-menu-button:checked + .hamburger-menu__button span:nth-child(1) {
  opacity: 0;
}
#hamburger-menu-button:checked + .hamburger-menu__button span:nth-child(2) {
  opacity: 0;
}
#hamburger-menu-button:checked + .hamburger-menu__button span:nth-child(3) {
  opacity: 0;
}
#hamburger-menu-button:checked + .hamburger-menu__button span:nth-child(4) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-transition: -webkit-transform 0.5s 0.15s ease;
  transition: -webkit-transform 0.5s 0.15s ease;
  transition: transform 0.5s 0.15s ease;
  transition: transform 0.5s 0.15s ease, -webkit-transform 0.5s 0.15s ease;
}
#hamburger-menu-button:checked + .hamburger-menu__button span:nth-child(5) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-transition: -webkit-transform 0.5s 0.15s ease;
  transition: -webkit-transform 0.5s 0.15s ease;
  transition: transform 0.5s 0.15s ease;
  transition: transform 0.5s 0.15s ease, -webkit-transform 0.5s 0.15s ease;
}

.hamburger-menu__toggle {
  position: fixed;
  left: 200%;
  top: 0;
  display: block;
  width: 90%;
  height: calc(100vh - 3.25rem);
  z-index: 10;
  margin-top: 52px;
  margin-top: 3.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  padding: 16px 25px 0 25px;
  padding: 1rem 1.5625rem 0 1.5625rem;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.hamburger-menu__toggle::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  height: 0.625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .05)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, .05), rgba(0, 0, 0, 0));
}

#hamburger-menu-button:checked ~ .hamburger-menu__toggle {
  left: 100%;
  top: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

html:has(#hamburger-menu-button:checked) {
  overflow: hidden;
}

.hamburger-menu__nav-item a {
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px 0px;
  padding: 0.9375rem 0rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
.hamburger-menu__nav-item a img {
  display: inline-block;
  width: 17px;
  margin-bottom: -4px;
}

.hamburger-menu__cta {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.hamburger-menu__contact {
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .hamburger-menu__contact {
    margin-top: 2.0625rem;
  }
}

.hamburger-menu__contact-text {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .hamburger-menu__contact-text {
    font-size: 1rem;
  }
}

.hamburger-menu__contact-tel {
  margin-top: 5px;
  margin-top: 0.3125rem;
  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;
}
.hamburger-menu__contact-tel img {
  width: 27px;
  width: 1.6875rem;
  height: 27px;
  height: 1.6875rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .hamburger-menu__contact-tel img {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.hamburger-menu__contact-tel a {
  padding-top: 5px;
  padding-top: 0.3125rem;
  font-family: "Akshar", sans-serif;
  color: #003692;
  font-weight: 700;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .hamburger-menu__contact-tel a {
    font-size: 2.5rem;
  }
}

.hamburger-menu__contact-time {
  text-align: center;
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .hamburger-menu__contact-time {
    font-size: 1rem;
  }
}

.header {
  height: 54px;
  height: 3.375rem;
  z-index: 501;
  position: fixed;
  width: 100%;
  background-color: #fff;
  border-top: 2px solid #00AA7F;
  border-top: 0.125rem solid #00AA7F;
}
@media screen and (min-width: 768px) {
  .header {
    height: 4.875rem;
    border-top: 0.375rem solid #00AA7F;
    -webkit-box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
            box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
  }
}

.header__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 52px;
  height: 3.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__container {
    height: 4.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 92.5rem;
    margin: 0 auto;
  }
}

.header__logo {
  display: block;
  height: 100%;
}
.header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  padding-left: 0.625rem;
  height: 100%;
  width: 153px;
  width: 9.5625rem;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    padding-left: 0;
    padding-left: initial;
    width: 14.375rem;
  }
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__pc-nav {
  height: inherit;
}
@media screen and (min-width: 1100px) {
  .header__pc-nav {
    margin-right: 5rem;
  }
}
.header__pc-nav ul,
.header__pc-nav li,
.header__pc-nav a {
  height: inherit;
}
.header__pc-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 435px;
  width: 27.1875rem;
}

.header__cta {
  display: none;
}
@media screen and (min-width: 1100px) {
  .header__cta {
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: -webkit-gradient(linear, left top, right top, from(#EFC800), to(#DB4D00));
    background: linear-gradient(90deg, #EFC800, #DB4D00);
    padding: 0 1.25rem;
    font-weight: 700;
    height: 3.4375rem;
    color: #fff;
    border-radius: 0.625rem;
  }
}
.header__cta span {
  margin-right: 5px;
  margin-right: 0.3125rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #003692;
  padding: 0 5px;
  padding: 0 0.3125rem;
  border-radius: 1.25rem;
  background-color: #fff;
}

.header__nav-item {
  display: inline-block;
  height: inherit;
  vertical-align: top;
  position: relative;
}
.header__nav-item::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
  bottom: 1.25rem;
  width: 0;
  height: 2px;
  background-color: #00AA7F;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.header__nav-item:hover::after {
  width: 100%;
}
.header__nav-item a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 2px transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 700;
}
.header__nav-item a img {
  height: auto;
  display: inline-block;
  width: 16px;
  width: 1rem;
  margin-left: 6px;
  margin-left: 0.375rem;
}
.header__nav-item a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}
.header__nav-item:last-of-type {
  margin-right: 0;
}

.header__nav-item--have-sub {
  padding-right: 20px;
  padding-right: 1.25rem;
  position: relative;
}
.header__nav-item--have-sub:hover ul.header__nav-sub-items {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  pointer-events: all;
}
.header__nav-item--have-sub::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  right: 0;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.header__sp-nav {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 118px;
  max-width: 7.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__sp-nav {
    display: none;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 970px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.issue {
  background-color: #cddfdb;
}

.issue__body {
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  background-image: url(../images/issue/bg-img-sp.webp);
  background-position: center top;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .issue__body {
    padding-bottom: 6.25rem;
    background-image: url(../images/issue/bg-img-pc.webp);
  }
}

.issue__body-inner {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .issue__body-inner {
    max-width: 880px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.issue__title {
  padding-top: 35px;
  padding-top: 2.1875rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  border-left: 2px solid #003692;
}
@media screen and (min-width: 768px) {
  .issue__title {
    padding-top: 4.6875rem;
    padding-left: 1.25rem;
    font-size: 1.875rem;
  }
}
.issue__title span {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .issue__title span {
    font-size: 2.5rem;
  }
}

.issue__box {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  background-color: rgba(255, 255, 255, .8);
  padding: 30px 35px;
  padding: 1.875rem 2.1875rem;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  color: #003692;
  border-radius: 0.4375rem;
  max-width: 500px;
  max-width: 31.25rem;
  margin-inline: auto;
  position: relative;
}
.issue__box::before {
  position: absolute;
  content: "";
  top: -15px;
  top: -0.9375rem;
  left: 0;
  width: 25px;
  width: 1.5625rem;
  height: 30px;
  height: 1.875rem;
  background-image: url(../images/common/double-quotation.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .issue__box::before {
    top: -1.5625rem;
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
.issue__box::after {
  position: absolute;
  content: "";
  top: -15px;
  top: -0.9375rem;
  right: 0;
  width: 25px;
  width: 1.5625rem;
  height: 30px;
  height: 1.875rem;
  background-image: url(../images/common/double-quotation-right.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .issue__box::after {
    top: -1.5625rem;
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .issue__box {
    margin-top: 4.0625rem;
    padding: 1.875rem 3.125rem;
    font-size: 1.25rem;
    border-radius: 0.625rem;
    max-width: 100%;
  }
}
.issue__box p + p {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .issue__box p + p {
    margin-top: 1.25rem;
  }
}

.issue__foot {
  padding-top: 80px;
  padding-top: 5rem;
  background-image: url(../images/issue/bg-blue-sp.webp);
  background-position: center top;
  background-size: cover;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .issue__foot {
    margin-top: -9.375rem;
    padding-top: 13.75rem;
    background-image: url(../images/issue/bg-blue-pc.webp);
  }
}
.issue__foot p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .issue__foot p {
    font-size: 1.25rem;
    width: 100%;
  }
}
.issue__foot span {
  font-size: 18px;
  font-size: 1.125rem;
  border-bottom: 2px solid #00AA7F;
}
@media screen and (min-width: 768px) {
  .issue__foot span {
    border-bottom: 4px solid #00AA7F;
    font-size: 2rem;
  }
}

.issue__foot-inner {
  padding: 0 20px 80px;
  padding: 0 1.25rem 5rem;
  max-width: 420px;
  max-width: 26.25rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .issue__foot-inner {
    max-width: 51.875rem;
  }
}
.issue__foot-inner::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 110px;
  width: 6.875rem;
  height: 105px;
  height: 6.5625rem;
  background-image: url(../images/issue/woman-sp.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .issue__foot-inner::after {
    background-image: url(../images/issue/woman-pc.webp);
    width: 14.375rem;
    height: 16.875rem;
  }
}

.merit {
  padding: 50px 0 50px;
  padding: 3.125rem 0 3.125rem;
  background-image: url(../images/merit/bg-sp.webp);
  background-position: bottom left;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .merit {
    background-image: url(../images/merit/bg-pc.webp);
    padding: 4.375rem 0 10rem;
  }
}
.merit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 310px;
  height: 19.375rem;
  background-image: url(../images/merit/bg-people-sp.webp);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .merit::before {
    height: 25rem;
    background-image: url(../images/merit/bg-people.webp);
  }
}

.merit__sub-title {
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
  z-index: 2;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #003692;
  border-left: 3px solid #00AA7F;
}
@media screen and (min-width: 768px) {
  .merit__sub-title {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }
}

.merit__title h2 {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-size: 1.5rem;
  color: #003692;
  font-weight: 700;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: #fff;
  border-radius: 0.4375rem;
  padding: 0 5px;
  padding: 0 0.3125rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .merit__title h2 {
    font-size: 2.5rem;
    border-radius: 0.625rem;
  }
}

.merit__body {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .merit__body {
    margin-top: 3.3125rem;
  }
}

.merit__card {
  margin-inline: auto;
  padding: 14px 18px;
  padding: 0.875rem 1.125rem;
  background-color: #fff;
  border-radius: 0.4375rem;
  max-width: 400px;
  max-width: 25rem;
  position: relative;
  -webkit-box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .merit__card {
    border-radius: 0.625rem;
    width: 84%;
    max-width: 48.75rem;
    margin-inline: initial;
  }
}
.merit__card:nth-child(n+2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .merit__card:nth-child(n+2) {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .merit__card:nth-child(even) {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .merit__card:nth-child(even)::after {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(255, 255, 255, 0);
    border-top-width: 0.625rem;
    border-bottom-width: 0.625rem;
    border-left-width: 1.625rem;
    border-right-width: 1.625rem;
    margin-top: -0.625rem;
    border-right-color: #ffffff;
    right: 100%;
    top: 26%;
  }
}
@media screen and (min-width: 768px) {
  .merit__card:nth-child(odd)::after {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(255, 255, 255, 0);
    border-top-width: 0.625rem;
    border-bottom-width: 0.625rem;
    border-left-width: 1.625rem;
    border-right-width: 1.625rem;
    margin-top: -0.625rem;
    border-left-color: #ffffff;
    left: 100%;
    top: 26%;
  }
}
.merit__card::before {
  position: absolute;
  content: "";
  top: 10px;
  top: 0.625rem;
  right: 10px;
  right: 0.625rem;
  width: 70px;
  width: 4.375rem;
  height: 70px;
  height: 4.375rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .merit__card::before {
    width: 6.875rem;
    height: 6.875rem;
  }
}

.merit__card--1::before {
  background-image: url(../images/merit/person-1.webp);
}
@media screen and (min-width: 768px) {
  .merit__card--1::before {
    top: 0;
    right: -8.75rem;
  }
}
.merit__card--2::before {
  background-image: url(../images/merit/person-2.webp);
}
@media screen and (min-width: 768px) {
  .merit__card--2::before {
    top: 0;
    left: -8.75rem;
  }
}
.merit__card--3::before {
  background-image: url(../images/merit/person-3.webp);
}
@media screen and (min-width: 768px) {
  .merit__card--3::before {
    top: 0;
    right: -8.75rem;
  }
}
.merit__card--4::before {
  background-image: url(../images/merit/person-4.webp);
}
@media screen and (min-width: 768px) {
  .merit__card--4::before {
    top: 0;
    left: -8.75rem;
  }
}
.merit__card--5::before {
  background-image: url(../images/merit/person-5.webp);
}
@media screen and (min-width: 768px) {
  .merit__card--5::before {
    top: 0;
    right: -8.75rem;
  }
}

.merit__card-title {
  width: 220px;
  width: 13.75rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #003692;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .merit__card-title {
    font-size: 1.4375rem;
    width: 100%;
  }
}
.merit__card-title span {
  font-family: "Akshar", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .merit__card-title span {
    font-size: 2rem;
  }
}

.merit__card-sub-title {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #00AA7F;
  position: relative;
}
@media screen and (min-width: 768px) {
  .merit__card-sub-title {
    font-size: 1rem;
  }
}
.merit__card-sub-title::before {
  position: absolute;
  content: "";
  top: -30px;
  top: -1.875rem;
  left: 0;
  width: 26px;
  width: 1.625rem;
  height: 30px;
  height: 1.875rem;
  background-image: url(../images/common/double-quotation.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.merit__card-sub-title span {
  font-family: "Akshar", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .merit__card-sub-title span {
    font-size: 1.5rem;
  }
}

.merit__card-text {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.merit__card-text p {
  position: relative;
  padding-left: 34px;
  padding-left: 2.125rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .merit__card-text p {
    font-size: 1rem;
  }
}
.merit__card-text p + p {
  margin-top: 6px;
  margin-top: 0.375rem;
}
.merit__card-text p:last-child {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .merit__card-text p:last-child {
    padding-bottom: 0;
  }
}
.merit__card-text p::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem;
  background-image: url(../images/common/green-check-circle.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.merit__card-more {
  display: none;
}
@media screen and (min-width: 768px) {
  .merit__card-more {
    display: block;
  }
}

.merit__card-read-more {
  background-color: #fff;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .merit__card-read-more {
    display: none;
  }
}
.merit__card-read-more::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -30px;
  top: -1.875rem;
  left: 0;
  width: 100%;
  height: 30px;
  height: 1.875rem; /* グラデーションの高さ */
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(90%, rgba(255, 255, 255, .95)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .95) 90%);
}

.merit__card-read-more a {
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #003692;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .merit__card-read-more a {
    display: none;
  }
}
.merit__card-read-more a img {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
}

.merit__card.active a img {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}

.mv {
  margin-top: 52px;
  margin-top: 3.25rem;
  background-image: url(../images/mv/bg-sp.webp);
  background-position: 39% top;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .mv {
    position: relative;
    margin-top: 4.875rem;
    background-image: url(../images/mv/bg-pc.webp);
    background-position: center center;
  }
}

@media screen and (min-width: 768px) {
  .mv__inner {
    position: relative;
    margin-inline: auto;
    max-width: 90rem;
    padding-right: 1.5625rem;
    padding-left: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .mv__content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.mv__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv__content-top {
    background: -webkit-gradient(linear, left top, right top, from(#00aa7f), to(rgba(0, 170, 127, .3)));
    background: linear-gradient(to right, #00aa7f, rgba(0, 170, 127, .3));
    padding-top: 0.5625rem;
    padding-left: 2.3125rem;
    padding-right: 5rem;
    padding-bottom: 0.3125rem;
  }
}
.mv__content-top::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 80%;
  background: -webkit-gradient(linear, left top, right top, from(#00aa7f), to(rgba(0, 170, 127, .3)));
  background: linear-gradient(to right, #00aa7f, rgba(0, 170, 127, .3));
}
@media screen and (min-width: 768px) {
  .mv__content-top::before {
    content: none;
  }
}

.mv__content-top-circle {
  position: relative;
  width: 99px;
  width: 6.1875rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .mv__content-top-circle {
    width: 8.125rem;
    top: 1.5625rem;
  }
}

.mv__content-top-texts {
  position: relative;
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
}
@media screen and (min-width: 768px) {
  .mv__content-top-texts {
    top: 1.25rem;
  }
}
.mv__content-top-texts p {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .mv__content-top-texts p {
    font-size: 2rem;
  }
}
.mv__content-top-texts p + p {
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .mv__content-top-texts p + p {
    font-size: 1.25rem;
  }
}

.mv__content-price {
  margin-top: 150px;
  margin-top: 9.375rem;
  padding: 20px 0;
  padding: 1.25rem 0;
  background-color: rgba(255, 255, 255, .7);
}
@media screen and (min-width: 768px) {
  .mv__content-price {
    margin-top: 0;
    margin-top: initial;
    padding: 2.6875rem 0 1.25rem;
  }
}

.mv__content-price-img {
  margin-inline: auto;
  width: 95%;
  max-width: 400px;
  max-width: 25rem;
}
@media screen and (min-width: 768px) {
  .mv__content-price-img {
    max-width: 32.5rem;
  }
}

.mv__content-price-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-inline: auto;
  text-align: center;
  background-color: #003692;
  width: 95%;
  max-width: 400px;
  max-width: 25rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .mv__content-price-text {
    font-size: 1.25rem;
    max-width: 30rem;
  }
}
.mv__content-price-text span {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Akshar", sans-serif;
}
@media screen and (min-width: 768px) {
  .mv__content-price-text span {
    font-size: 2rem;
  }
}

.mv__content-body {
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(0, 170, 127, .6)), to(rgba(0, 170, 127, .3)));
  background: linear-gradient(to right, rgba(0, 170, 127, .6) 50%, rgba(0, 170, 127, .3));
}
@media screen and (min-width: 768px) {
  .mv__content-body {
    padding-top: 1.25rem;
    padding-bottom: 1.5625rem;
  }
}

.mv__content-body-inner {
  margin-inline: auto;
  max-width: 440px;
  max-width: 27.5rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .mv__content-body-inner {
    padding: 0 1.5625rem;
    max-width: 30.9375rem;
  }
}

.mv__content-body-box {
  padding: 10px 10px 54px;
  padding: 0.625rem 0.625rem 3.375rem;
  border-radius: 0.4375rem;
  background-color: rgba(11, 13, 108, .2);
}
@media screen and (min-width: 768px) {
  .mv__content-body-box {
    border-radius: 0.625rem;
    padding: 0.8125rem 1.5625rem 4.5rem;
  }
}
.mv__content-body-box li {
  padding-left: 25px;
  padding-left: 1.5625rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv__content-body-box li {
    padding-left: 2.375rem;
    font-size: 1rem;
    line-height: 2;
  }
}
.mv__content-body-box li span {
  font-family: "Akshar", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .mv__content-body-box li span {
    font-size: 1.5rem;
  }
}
.mv__content-body-box li:last-child {
  margin-top: 3px;
  margin-top: 0.1875rem;
}
.mv__content-body-box li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19px;
  width: 1.1875rem;
  height: 19px;
  height: 1.1875rem;
  background-image: url(../images/common/blue-check-circle.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .mv__content-body-box li::before {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.mv__content-body-circles {
  margin-top: -40px;
  margin-top: -2.5rem;
  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: 768px) {
  .mv__content-body-circles {
    margin-top: -3.75rem;
  }
}

.mv__content-body-circle {
  position: relative;
  display: inline-block;
  width: 97px;
  width: 6.0625rem;
  height: 97px;
  height: 6.0625rem;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .mv__content-body-circle {
    width: 8.125rem;
    height: 8.125rem;
  }
}
.mv__content-body-circle:not(:last-child) {
  margin-right: 12px;
  margin-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .mv__content-body-circle:not(:last-child) {
    margin-right: 1rem;
  }
}

.mv__content-body-circle-br {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 97px;
  width: 6.0625rem;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #003692;
}
@media screen and (min-width: 768px) {
  .mv__content-body-circle-br {
    font-size: 1.125rem;
    width: 8.125rem;
  }
}
.mv__content-body-circle-br .en {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Akshar", sans-serif;
}
@media screen and (min-width: 768px) {
  .mv__content-body-circle-br .en {
    font-size: 1.6875rem;
  }
}

.mv__content-body-memo {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 10px;
  font-size: 0.625rem;
  color: rgba(0, 0, 0, .5);
}
@media screen and (min-width: 768px) {
  .mv__content-body-memo {
    margin-top: 1.125rem;
  }
}

.mv__content-body-button {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .mv__content-body-button {
    padding: 0 1.25rem;
  }
  .mv__content-body-button a {
    padding: 1.25rem 1.875rem;
  }
}
@media screen and (min-width: 1100px) {
  .mv__content-body-button {
    display: none;
  }
}

.section-title {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #003692;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.service {
  padding: 50px 0 40px;
  padding: 3.125rem 0 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service {
    padding: 5rem 0;
  }
}
.service::before {
  position: absolute;
  z-index: 1;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background-image: url(../images/service/bg-dots-sp.webp);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .service::before {
    background-position: top center;
    height: 40%;
    background-image: url(../images/service/bg-dots-pc.webp);
  }
}

.service__inner {
  position: relative;
  z-index: 2;
}

.service__body {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .service__body {
    margin-top: 4.625rem;
  }
}

.service__body-box {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
          box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, .1);
}
@media screen and (min-width: 768px) {
  .service__body-box {
    max-width: 705px;
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (min-width: 768px) {
  .service__body-box {
    padding: 0;
  }
}

.service__body-box-title {
  text-align: center;
  padding: 30px 10px;
  padding: 1.875rem 0.625rem;
  background-color: #dbf3ec;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  color: #003692;
  border-radius: 0.4375rem 0.4375rem 0 0;
}
@media screen and (min-width: 768px) {
  .service__body-box-title {
    padding: 2.5rem 0 1.875rem;
    font-size: 1.5rem;
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
.service__body-box-title span {
  font-size: 34px;
  font-size: 2.125rem;
  font-family: "Akshar", sans-serif;
}
@media screen and (min-width: 768px) {
  .service__body-box-title span {
    font-size: 2.8125rem;
  }
}

.service__body-box-body {
  background-color: #f1faf7;
  padding: 25px 16px;
  padding: 1.5625rem 1rem;
  border-radius: 0 0 0.4375rem 0.4375rem;
}
@media screen and (min-width: 768px) {
  .service__body-box-body {
    padding: 1.875rem 2.5rem;
    border-radius: 0 0 0.625rem 0.625rem;
  }
}

.service__body-box-body-item {
  position: relative;
  padding-left: 27px;
  padding-left: 1.6875rem;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  color: #00AA7F;
}
@media screen and (min-width: 768px) {
  .service__body-box-body-item {
    font-size: 1rem;
  }
}
.service__body-box-body-item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background-image: url(../images/common/green-check-circle.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.service__body-box-body-item:nth-child(n+2) {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .service__body-box-body-item:nth-child(n+2) {
    margin-top: 0.625rem;
  }
}

.service__body-box-body-items2 {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .service__body-box-body-items2 {
    margin-top: 1.4375rem;
  }
}

.service__body-box-body-item2 {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .service__body-box-body-item2 {
    font-size: 1rem;
  }
}
.service__body-box-body-item2:nth-child(n+2) {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .service__body-box-body-item2:nth-child(n+2) {
    margin-top: 0.5rem;
  }
}

.service__body-text {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
.service__body-text .underline {
  border-bottom: 2px solid #00AA7F;
}
@media screen and (min-width: 768px) {
  .service__body-text .underline {
    border-bottom: 4px solid #00AA7F;
  }
}
.service__body-text .service__body-text-top {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  color: #003692;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .service__body-text .service__body-text-top {
    font-size: 1.25rem;
  }
}
.service__body-text .service__body-text-bottom {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.service__body-text .service__body-text-bottom p {
  font-size: 16px;
  font-size: 1rem;
  color: #003692;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .service__body-text .service__body-text-bottom p {
    font-size: 1.25rem;
  }
}
.service__body-text .service__body-text-bottom p .jp-small {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .service__body-text .service__body-text-bottom p .jp-small {
    font-size: 1.25rem;
  }
}
.service__body-text .service__body-text-bottom p .en {
  font-size: 32px;
  font-size: 2rem;
  font-family: "Akshar", sans-serif;
}
@media screen and (min-width: 768px) {
  .service__body-text .service__body-text-bottom p .en {
    font-size: 3.125rem;
  }
}
.service__body-text .service__body-text-bottom p .jp {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .service__body-text .service__body-text-bottom p .jp {
    font-size: 2.5rem;
  }
}

.service__body-foot {
  margin-top: 35px;
  margin-top: 2.1875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  padding: 1.25rem;
  background-image: url(../images/service/button-bg-sp.webp);
  background-position: left bottom;
  background-size: cover;
  border-radius: 0.4375rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service__body-foot {
    margin-top: 3.75rem;
    width: 100%;
    padding: 2.125rem 0 2.125rem 4.0625rem;
    background-image: url(../images/service/button-bg-pc.webp);
    border-radius: 0.625rem;
  }
}

.service__body-foot-circle {
  margin-right: 10px;
  margin-right: 0.625rem;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  color: #003692;
  display: inline-block;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  line-height: 60px;
  line-height: 3.75rem;
  border-radius: 50%;
  background: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service__body-foot-circle {
    margin-right: 3.125rem;
    font-size: 1.5rem;
    width: 7.5rem;
    height: 7.5rem;
    line-height: 7.5rem;
  }
}

.service__body-foot-text {
  font-weight: 700;
  line-height: 1.2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .service__body-foot-text {
    font-size: 1.5rem;
  }
}
.service__body-foot-text .underline {
  font-size: 24px;
  font-size: 1.5rem;
  color: #FFFD87;
  border-bottom: 2px solid #003692;
}
@media screen and (min-width: 768px) {
  .service__body-foot-text .underline {
    font-size: 2rem;
    border-bottom: 4px solid #003692;
  }
}
.service__body-foot-text .underline .en {
  font-size: 45px;
  font-size: 2.8125rem;
  font-family: "Akshar", sans-serif;
}
@media screen and (min-width: 768px) {
  .service__body-foot-text .underline .en {
    font-size: 3.75rem;
  }
}

.service__button {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .service__button {
    margin-top: 4.375rem;
  }
}

/* シミュレーションボックス */
.simulation-box {
  display: none;
}
@media screen and (min-width: 1350px) {
  .simulation-box {
    display: block;
    position: absolute;
    top: 0;
    right: 0.625rem;
    z-index: 502; /* ヘッダーより前面に */
    padding: 1.875rem 1.875rem 1.25rem;
    background: #F2F2F2;
    border-radius: 0 0 0.625rem 0.625rem;
    margin: -4.875rem auto 0; /* ヘッダーにかぶせる */
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
            box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
  }
}
@media screen and (min-width: 1440px) {
  .simulation-box {
    right: 0;
  }
}

.simulation-box__head {
  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;
}
.simulation-box__head span {
  margin-right: 8px;
  margin-right: 0.5rem;
  padding: 0 13px;
  padding: 0 0.8125rem;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  height: 24px;
  height: 1.5rem;
  line-height: 24px;
  line-height: 1.5rem;
  background-color: #00AA7F;
  border-radius: 0.75rem;
}
.simulation-box__head p {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #003692;
}

.simulation-box__form {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.simulation-box__contact {
  margin-top: -20px;
  margin-top: -1.25rem;
}

@media screen and (min-width: 768px) {
  .simulation-box__contact-text {
    text-align: center;
    font-size: 0.875rem;
  }
}

.simulation-box__contact-tel-wrapper {
  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;
}

.simulation-box__contact-tel {
  margin-top: 5px;
  margin-top: 0.3125rem;
  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;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
.simulation-box__contact-tel img {
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
.simulation-box__contact-tel a {
  padding-top: 5px;
  padding-top: 0.3125rem;
  font-family: "Akshar", sans-serif;
  color: #003692;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}

.simulation-box__contact-time {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}

.simulation {
  background-image: url(../images/simulation/simulation-bg.webp);
  background-position: center center;
  background-size: cover;
}

.simulation__inner {
  padding-top: 34px;
  padding-top: 2.125rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .simulation__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .simulation__inner {
    max-width: 830px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.simulation__head-main {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .simulation__head-main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.simulation__head-main .small {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #fff;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .simulation__head-main .small {
    font-size: 1.625rem;
  }
}
.simulation__head-main .large {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  font-size: 1.5rem;
  color: #FFFD87;
  border-bottom: #00AA7F solid 2px;
}
@media screen and (min-width: 768px) {
  .simulation__head-main .large {
    font-size: 2.1875rem;
    border-bottom: #00AA7F solid 4px;
  }
}

.simulation__head-sub {
  text-align: center;
  margin-top: 7px;
  margin-top: 0.4375rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .simulation__head-sub {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.simulation__box {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 25px 20px 0;
  padding: 1.5625rem 1.25rem 0;
  width: 100%;
  background-color: #003692;
  border-radius: 0.4375rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .simulation__box {
    border-radius: 0.625rem;
    padding: 2.1875rem 6.25rem 0;
  }
}
.simulation__box::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 90%;
  height: 500px;
  height: 31.25rem;
  background-image: url(../images/common/green-dot-2.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .simulation__box::after {
    width: 60%;
  }
}

.simulation__bubbles {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
  max-width: 320px;
  max-width: 20rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .simulation__bubbles {
    max-width: 100%;
    width: 100%;
  }
}

.simulation__bubble {
  background-color: #DBF2EC;
  width: 145px;
  width: 9.0625rem;
  padding: 20px 0;
  padding: 1.25rem 0;
  border-radius: 4.6875rem;
  position: relative;
}
.simulation__bubble::before {
  position: absolute;
  content: "";
  bottom: -16px;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
  width: 1.25rem;
  height: 17px;
  height: 1.0625rem;
  background-image: url(../images/simulation/simulation-tip-svg.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
.simulation__bubble::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 2px;
  right: 0.125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  width: 1.875rem;
  height: 50px;
  height: 3.125rem;
  background-image: url(../images/simulation/simulation-q.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.simulation__bubble--last {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .simulation__bubble--last {
    margin: 0;
  }
}
.simulation__bubble p {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  color: #003692;
  font-weight: 700;
  line-height: 1.3571428571;
}

.simulation__box-bottom {
  margin-top: 30px;
  margin-top: 1.875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .simulation__box-bottom {
    margin-top: 2.5rem;
    padding-bottom: 3.125rem;
  }
}
.simulation__box-bottom::before {
  position: absolute;
  content: "";
  bottom: -10px;
  bottom: -0.625rem;
  right: -50px;
  right: -3.125rem;
  width: 110px;
  width: 6.875rem;
  height: 140px;
  height: 8.75rem;
  background-image: url(../images/simulation/simulation-woman.webp);
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .simulation__box-bottom::before {
    bottom: 0;
    right: -8.75rem;
    width: 11.625rem;
    height: 14.375rem;
  }
}

.simulation__button-head {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 20px;
  padding: 0.1875rem 1.25rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 0.9375rem;
  background-color: #fff;
  color: #003692;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .simulation__button-head {
    font-size: 1rem;
  }
}

.simulation__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: -13px;
  margin-top: -0.8125rem;
}
.simulation__button a {
  display: block;
  padding: 20px 35px;
  padding: 1.25rem 2.1875rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#EFC800), to(#DB4D00));
  background-image: linear-gradient(90deg, #EFC800, #DB4D00);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.625rem;
  border: 2px solid #fff;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .simulation__button a {
    font-size: 1.25rem;
  }
}

.simulation__contact {
  margin-top: 26px;
  margin-top: 1.625rem;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .simulation__contact {
    margin-top: 2.0625rem;
  }
}

.simulation__contact-text {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .simulation__contact-text {
    font-size: 1rem;
  }
}

.simulation__contact-tel {
  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;
}
.simulation__contact-tel img {
  width: 27px;
  width: 1.6875rem;
  height: 27px;
  height: 1.6875rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .simulation__contact-tel img {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.simulation__contact-tel a {
  padding-top: 5px;
  padding-top: 0.3125rem;
  font-family: "Akshar", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .simulation__contact-tel a {
    font-size: 2.5rem;
  }
}

.simulation__contact-time {
  margin-top: 5px;
  margin-top: 0.3125rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .simulation__contact-time {
    font-size: 1rem;
  }
}

.steps {
  background-color: #99dccb;
  padding: 50px 0 40px;
  padding: 3.125rem 0 2.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .steps {
    padding: 5rem 0;
  }
}
.steps::before {
  z-index: 1;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-image: url(../images/steps/bg-sp.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .steps::before {
    background-image: url(../images/steps/bg-pc.webp);
    height: 45%;
  }
}

.steps__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .steps__inner {
    max-width: 57.125rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.steps__body {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .steps__body {
    margin-top: 2.5rem;
  }
}

.steps__body-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.steps__body-step:nth-child(n+2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.steps__body-step:not(:last-child) {
  position: relative;
}
.steps__body-step:not(:last-child)::before {
  position: absolute;
  content: "";
  top: 100px;
  top: 6.25rem;
  left: 45px;
  left: 2.8125rem;
  width: 4px;
  width: 0.25rem;
  height: 100%;
  background-color: #003692;
}
@media screen and (min-width: 768px) {
  .steps__body-step:not(:last-child)::before {
    top: 6.25rem;
    left: 4.1875rem;
    width: 0.375rem;
  }
}

.steps__body-step-circle {
  position: relative;
  left: 10px;
  left: 0.625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  width: 75px;
  width: 4.6875rem;
  height: 75px;
  height: 4.6875rem;
  line-height: 75px;
  line-height: 4.6875rem;
  font-family: "Akshar", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: #003692;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .steps__body-step-circle {
    left: 1.25rem;
    font-size: 1.25rem;
    width: 6.25rem;
    height: 6.25rem;
    line-height: 6.25rem;
  }
}

.steps__body-step-box {
  padding: 18px 18px 18px 30px;
  padding: 1.125rem 1.125rem 1.125rem 1.875rem;
  background-color: #fff;
  border-radius: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .steps__body-step-box {
    padding: 1.5rem 1.25rem 1.5rem 3.125rem;
    border-radius: 0.625rem;
  }
}

.steps__body-step-title {
  color: #003692;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .steps__body-step-title {
    font-size: 1.5rem;
  }
}

.steps__body-step-text {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .steps__body-step-text {
    margin-top: 1.125rem;
    font-size: 1rem;
  }
}

.steps__button {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .steps__button {
    margin-top: 3.75rem;
  }
}

.support {
  background-color: #DBF2EC;
  padding: 40px 0;
  padding: 2.5rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .support {
    padding: 5rem 0 0;
  }
}
.support::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 80%;
  height: 40%;
  background-image: url(../images/support/map-sp.webp);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .support::before {
    height: 50%;
    width: 50%;
    background-image: url(../images/support/map-pc.webp);
  }
}
.support::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 80%;
  height: 30%;
  background-image: url(../images/support/dots-bg-sp.webp);
  background-position: bottom left;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .support::after {
    background-image: url(../images/support/dots-bg-pc.webp);
    background-position: bottom right;
    right: 0;
    left: auto;
    left: initial;
    height: 50%;
    width: 50%;
  }
}

.support__sub-title {
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
  z-index: 2;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #003692;
  border-left: 3px solid #00AA7F;
}
@media screen and (min-width: 768px) {
  .support__sub-title {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }
}
.support__sub-title .en {
  font-family: "Akshar", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .support__sub-title .en {
    font-size: 2rem;
  }
}
.support__sub-title .jp {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .support__sub-title .jp {
    font-size: 1.5rem;
  }
}

.support__title h2 {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-size: 1.5rem;
  color: #003692;
  font-weight: 700;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: #fff;
  border-radius: 0.4375rem;
  padding: 0 5px;
  padding: 0 0.3125rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .support__title h2 {
    font-size: 2.5rem;
    border-radius: 0.625rem;
  }
}

.support__cards {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow-x: auto; /* 横スクロールの指定 */
  white-space: nowrap; /* 横スクロールの指定 */
  overflow-scrolling: touch; /* スクロールを滑らかにする */
  -webkit-overflow-scrolling: touch; /* スクロールを滑らかにする */
}
@media screen and (min-width: 768px) {
  .support__cards {
    padding-left: 0;
    padding-left: initial;
    padding-right: 0;
    padding-right: initial;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: visible;
    overflow-x: initial;
    white-space: normal;
    white-space: initial;
  }
}

.support__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 261px;
  width: 16.3125rem;
}
@media screen and (min-width: 768px) {
  .support__card {
    width: 18.125rem;
  }
}
.support__card:not(:last-child) {
  margin-right: 12px;
  margin-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .support__card:not(:last-child) {
    margin-right: 1.5rem;
  }
}
.support__card::before {
  position: absolute;
  content: "";
  top: -20px;
  top: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  background-image: url(../images/common/blue-check-circle.svg);
  background-position: center center;
  background-size: contain;
}

.support__card-texts {
  text-align: center;
  background-color: #00AA7F;
  padding: 40px 12px 15px;
  padding: 2.5rem 0.75rem 0.9375rem;
  border-radius: 0.5625rem 0.5625rem 0 0;
  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-flex: 1;
      -ms-flex: 1 auto;
          flex: 1 auto;
}

.support__card-head {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFD87;
}
@media screen and (min-width: 768px) {
  .support__card-head {
    font-size: 1.125rem;
  }
}

.support__card-text {
  white-space: normal;
  white-space: initial;
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .support__card-text {
    font-size: 1rem;
  }
}

.support__card-img {
  border-radius: 0 0 0.5625rem 0.5625rem;
  overflow: hidden;
}

.support__bottom {
  margin-top: -100px;
  margin-top: -6.25rem;
  background-color: #99dccb;
  padding: 130px 0 30px;
  padding: 8.125rem 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .support__bottom {
    margin-top: -4.375rem;
    padding: 5.625rem 0 1.875rem;
  }
}

.support__bottom-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.support__bottom-inner p {
  color: #003692;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .support__bottom-inner p {
    font-size: 1.5625rem;
  }
}
.support__bottom-inner p span {
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Akshar", sans-serif;
}
@media screen and (min-width: 768px) {
  .support__bottom-inner p span {
    font-size: 2.375rem;
  }
}

.support__note {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .support__note {
    margin-top: 1.25rem;
    padding-bottom: 5rem;
  }
  .support__note::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 25%;
    height: 300%;
    background-image: url(../images/support/dots-bg-sp.webp);
    background-position: bottom left;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.support__note-list li {
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .support__note-list li {
    font-size: 0.75rem;
  }
}

.voices {
  background-color: #dbf3ec;
  position: relative;
}
.voices::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 170px;
  width: 10.625rem;
  height: 100%;
  background-image: url(../images/voices/true-partners.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .voices::before {
    width: 14.375rem;
  }
}

.voices__wrapper {
  position: relative;
  padding: 40px 0;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .voices__wrapper {
    padding: 5rem 0;
  }
}
.voices__wrapper::before {
  position: absolute;
  z-index: 1;
  content: "";
  bottom: 0;
  left: 0;
  width: 60%;
  height: 250px;
  height: 15.625rem;
  background-image: url(../images/voices/dots-bg-left.webp);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .voices__wrapper::before {
    width: 30%;
    height: 26.25rem;
  }
}
@media screen and (min-width: 768px) {
  .voices__wrapper::after {
    position: absolute;
    z-index: 1;
    content: "";
    bottom: 0;
    right: 0;
    width: 40%;
    height: 36.875rem;
    background-image: url(../images/voices/dots-bg-right.webp);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
  }
}

.voices__cards {
  margin-top: 40px;
  margin-top: 2.5rem;
  width: 350px;
  width: 21.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .voices__cards {
    margin-top: 4.375rem;
    width: 100%;
  }
}

.voices__card {
  padding-top: 194px;
  padding-top: 12.125rem;
  position: relative;
  background-color: #fff;
  border-radius: 0.4375rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .voices__card {
    padding: 1.25rem 1.875rem 1.25rem;
    border-radius: 0.625rem;
  }
}
.voices__card:nth-child(n+2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .voices__card:nth-child(n+2) {
    margin-top: 1.875rem;
  }
}
.voices__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 350px;
  width: 21.875rem;
  height: 434px;
  height: 27.125rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .voices__card::before {
    width: 60%;
    height: 100%;
  }
}
.voices__card:nth-child(1)::before {
  background-image: url(../images/voices/voice-1-sp.webp);
}
@media screen and (min-width: 768px) {
  .voices__card:nth-child(1)::before {
    background-image: url(../images/voices/voice-1-pc.webp);
  }
}
.voices__card:nth-child(2)::before {
  background-image: url(../images/voices/voice-2-sp.webp);
}
@media screen and (min-width: 768px) {
  .voices__card:nth-child(2)::before {
    background-image: url(../images/voices/voice-2-pc.webp);
    left: auto;
    left: initial;
    right: 0;
  }
}
.voices__card:nth-child(3)::before {
  background-image: url(../images/voices/voice-3-sp.webp);
}
@media screen and (min-width: 768px) {
  .voices__card:nth-child(3)::before {
    background-image: url(../images/voices/voice-3-pc.webp);
  }
}

.voices__card-texts {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, .8);
  padding: 16px;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .voices__card-texts {
    margin-left: auto;
    width: 37.5rem;
  }
}

@media screen and (min-width: 768px) {
  .voices__card:nth-child(2) .voices__card-texts {
    margin-left: 0;
    margin-left: initial;
  }
}

.voices__card-num {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Akshar", sans-serif;
  font-weight: 700;
  color: #003692;
}
@media screen and (min-width: 768px) {
  .voices__card-num {
    font-size: 1.25rem;
  }
}

.voices__card-head {
  padding-left: 15px;
  padding-left: 0.9375rem;
  border-left: 2px solid #003692;
}

.voices__card-title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .voices__card-title {
    font-size: 1.5rem;
  }
}
.voices__card-title span {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Akshar", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .voices__card-title span {
    font-size: 2rem;
  }
}

.voices__card-name {
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #7D7D7D;
}

.voices__card-text {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
@media screen and (min-width: 768px) {
  .voices__card-text {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.voices__foot {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #003692;
}
@media screen and (min-width: 768px) {
  .voices__foot {
    font-size: 1.8125rem;
  }
}
.voices__foot .en {
  font-size: 40px;
  font-size: 2.5rem;
  font-family: "Akshar", sans-serif;
}
@media screen and (min-width: 768px) {
  .voices__foot .en {
    font-size: 3.375rem;
  }
}
.voices__foot .jp {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .voices__foot .jp {
    font-size: 2.25rem;
  }
}

.voices__card-more {
  display: none;
}
@media screen and (min-width: 768px) {
  .voices__card-more {
    display: inline;
  }
}

.voices__card-read-more {
  background-color: #fff;
  text-align: center;
  position: relative;
  padding: 5px 0;
  padding: 0.3125rem 0;
}
@media screen and (min-width: 768px) {
  .voices__card-read-more {
    display: none;
  }
}
.voices__card-read-more::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -30px;
  top: -1.875rem;
  left: 0;
  width: 100%;
  height: 30px;
  height: 1.875rem; /* グラデーションの高さ */
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(90%, rgba(255, 255, 255, .95)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .95) 90%);
}

.voices__card-read-more a {
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #003692;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .voices__card-read-more a {
    display: none;
  }
}
.voices__card-read-more a img {
  position: absolute;
  top: 50%;
  left: calc(100% + 15px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
}

.voices__card.active a img {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}
.voices__card.active .voices__card-read-more::before {
  content: none;
}
/*# sourceMappingURL=styles.css.map */
