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

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

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

.red {
  color: #A62525;
}

.yellow {
  color: #FAFF00;
}

.orange {
  color: #F1A022;
}

.blue {
  color: #0BA7FF;
}

.mintyo {
  font-size: 18px;
  font-size: 1.125rem;
  color: #111;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}

.dashed {
  border-bottom: dashed #595959 1px;
  border-bottom: dashed #595959 0.0625rem;
}

/* 文字の上に点 */
.dots {
  background-image: radial-gradient(circle at center, #A62525 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.34em; /* 点の間隔とサイズ調整 */
  padding-top: 2px;
  padding-top: 0.125rem;
}
@media screen and (min-width: 430px) {
  .dots {
    padding-top: 0.3125rem; /* 縦方向の位置調整 */
  }
}

.marker-bold {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #FAFF00));
  background: linear-gradient(transparent 70%, #FAFF00 30%);
}

.marker-all {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #FAFF00));
  background: linear-gradient(transparent 0%, #FAFF00 0%);
}

.fz30 {
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (min-width: 430px) {
  .fz30 {
    font-size: 1.875rem;
  }
}

.fz28 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (min-width: 430px) {
  .fz28 {
    font-size: 2.5rem;
  }
}

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

/* pcの電話番号発信対応 */
@media screen and (min-width: 430px) {
  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: 430px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* フォームリセット */
textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.card__list {
  background: #E5E5D6;
  padding-top: 44px;
  padding-top: 2.75rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 430px) {
  .card__list {
    padding-top: 3.8125rem;
    padding-bottom: 5.3125rem;
  }
}

.card__items {
  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;
  gap: 16px;
  gap: 1rem;
}
@media screen and (min-width: 430px) {
  .card__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.125rem;
  }
}

.card {
  background: #fff;
  border: 5px solid #0C4E73;
  border: 0.3125rem solid #0C4E73;
  padding: 18px 30px 10px;
  padding: 1.125rem 1.875rem 0.625rem;
  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;
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 430px) {
  .card {
    width: 50%;
    padding: 1.125rem 1.0625rem 2.1875rem;
  }
}

.card__title {
  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: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 430px) {
  .card__title {
    font-size: 1.75rem;
    gap: 0.9375rem;
  }
}

@media screen and (min-width: 430px) {
  .card__title1 {
    margin-top: 1.5625rem;
  }
}

.card__title-content p {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 430px) {
  .card__title-content p {
    font-size: 1.75rem;
  }
}

.card__title-tag {
  display: inline-block;
  width: 33px;
  width: 2.0625rem;
}

.card__border {
  width: 100%;
  max-width: 285px;
  max-width: 17.8125rem;
  padding-top: 25px;
  padding-top: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0;
}
@media screen and (min-width: 430px) {
  .card__border {
    padding-top: 1.3125rem;
  }
}

.card__body p {
  text-align: center;
  padding-top: 20px;
  padding-top: 1.25rem;
}

.card__body-img1 {
  width: 100%;
  max-width: 178px;
  max-width: 11.125rem;
  margin: auto;
  margin-top: 20px;
  margin-top: 1.25rem;
  aspect-ratio: 178/140;
}
@media screen and (min-width: 430px) {
  .card__body-img1 {
    max-width: 13.375rem;
    margin-top: 2.1875rem;
    aspect-ratio: 214/169;
  }
}

.card__body-img2 {
  width: 100%;
  max-width: 224px;
  max-width: 14rem;
  margin: auto;
}
@media screen and (min-width: 430px) {
  .card__body-img2 {
    max-width: 21.6875rem;
  }
}

.example {
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  background: #FBEEDB;
}
@media screen and (min-width: 430px) {
  .example {
    margin-top: 6.25rem;
    padding-bottom: 3.75rem;
  }
}

.example__title {
  background: url(../../img/lp/example-bg.jpg);
  padding-top: 15px;
  padding-top: 0.9375rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 430px) {
  .example__title {
    padding-top: 2.5625rem;
    padding-bottom: 3.3125rem;
  }
}

.example__title p {
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
}
@media screen and (min-width: 430px) {
  .example__title p {
    font-size: 2.25rem;
  }
}

.example__title span {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 430px) {
  .example__title span {
    font-size: inherit;
  }
}

.example__list {
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (min-width: 430px) {
  .example__list {
    padding-top: 3.75rem;
  }
}

.example__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
}

.example__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 430px) {
  .example__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.example__item-campany {
  width: 100%;
  max-width: 100%;
  border: 2px solid #111;
  border: 0.125rem solid #111;
  background: #fff;
}
@media screen and (min-width: 430px) {
  .example__item-campany {
    max-width: 17.5rem;
  }
}

.example__item-campany:after {
  width: 0;
  height: 0;
  border-top: solid 15px transparent;
  border-right: solid 15px transparent;
  border-bottom: solid 15px transparent;
  border-left: solid 15px #697b91;
}

.example__item-campany__body {
  padding: 10px 10px 20px;
  padding: 0.625rem 0.625rem 1.25rem;
}
@media screen and (min-width: 430px) {
  .example__item-campany__body {
    padding: 2.25rem 1.875rem 1.4375rem;
  }
}

.example__item-campany__body img {
  width: 100%;
  max-width: 320px;
  max-width: 20rem;
  aspect-ratio: 320/139;
}
@media screen and (min-width: 430px) {
  .example__item-campany__body img {
    aspect-ratio: 280/139;
    max-width: 100%;
    height: auto;
  }
}

.example__item-campany__body h3 {
  text-align: center;
}

.example__item-campany__body p:first-child {
  padding-top: 9px;
  padding-top: 0.5625rem;
}

.example__item-campany__text {
  color: #595959;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
}

@media screen and (min-width: 430px) {
  .example__item-triangle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.example__item-triangle img {
  width: 100%;
  max-width: 44px;
  max-width: 2.75rem;
  margin: auto;
}
@media screen and (min-width: 430px) {
  .example__item-triangle img {
    max-width: 2.5rem;
    width: 100%;
  }
}

.example__item-problem {
  width: 100%;
  max-width: 100%;
  background: #fff;
  border: 2px solid #111;
  border: 0.125rem solid #111;
  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;
  gap: 10px;
  gap: 0.625rem;
  padding: 20px 20px 30px;
  padding: 1.25rem 1.25rem 1.875rem;
}
@media screen and (min-width: 430px) {
  .example__item-problem {
    padding: 0.625rem 1.875rem;
    gap: 1.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.example__item-problem__body {
  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;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (min-width: 430px) {
  .example__item-problem__body {
    gap: 0.5625rem;
  }
}

.example__item-problem__body img {
  width: 100%;
  max-width: 43px;
  max-width: 2.6875rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 430px) {
  .example__item-problem__body img {
    max-width: 4.8125rem;
  }
}

.example__item-img {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 430px) {
  .example__item-img {
    max-width: 18.9375rem;
  }
}

.example__item-problem-text h4 {
  color: #fff;
  background: #0BA7FF;
  text-align: center;
  border-radius: 0.25rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 430px) {
  .example__item-problem-text h4 {
    font-size: 1.25rem;
  }
}

.example__item-problem-text p {
  padding-top: 7px;
  padding-top: 0.4375rem;
  text-align: left;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 430px) {
  .example__item-problem-text p {
    padding-top: 0.9375rem;
    text-align: center;
    font-size: 1.125rem;
  }
}

.example__item-problem-text--orange h4 {
  color: #FAFF00;
  background: #F1A022;
}

.example__item-problem-text--orange p {
  font-weight: 700;
}

.example__slider-title {
  padding-top: 50px;
  padding-top: 3.125rem;
  max-width: 316px;
  max-width: 19.75rem;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 430px) {
  .example__slider-title {
    max-width: 45.8125rem;
  }
}

.example__slider {
  background: #fff;
  margin-top: 14px;
  margin-top: 0.875rem;
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 430px) {
  .example__slider {
    margin-top: 2.0625rem;
    padding-top: 1.420625rem;
    padding-bottom: 1.25rem;
  }
}

.flow {
  padding-top: 41px;
  padding-top: 2.5625rem;
}
@media screen and (min-width: 430px) {
  .flow {
    padding-top: 6.25rem;
  }
}

.flow__title {
  width: 100%;
  max-width: 277px;
  max-width: 17.3125rem;
  margin: auto;
}
@media screen and (min-width: 430px) {
  .flow__title {
    max-width: 26.25rem;
  }
}

.flow__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
  gap: 2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
}
@media screen and (min-width: 430px) {
  .flow__block {
    padding-top: 4.5rem;
    gap: 4.125rem;
  }
}

.flow__content {
  position: relative;
  background: #E5F5F9;
  width: 100%;
  border-radius: 0.25rem;
  padding: 35px 20px 30px;
  padding: 2.1875rem 1.25rem 1.875rem;
}
@media screen and (min-width: 430px) {
  .flow__content {
    margin: auto;
    max-width: 61.25rem;
    padding: 2.0625rem 1.125rem 1.875rem 4.6875rem;
  }
}

.flow__content-tag {
  position: absolute;
  top: -25px;
  top: -1.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50px;
  width: 3.125rem;
}
@media screen and (min-width: 430px) {
  .flow__content-tag {
    width: 6.8125rem;
    top: 50%;
    left: -3.375rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.flow__content-title {
  color: #595959;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 430px) {
  .flow__content-title {
    font-size: 1.875rem;
    text-align: left;
  }
}

.flow__content-title img {
  display: inline-block;
  width: 22px;
  width: 1.375rem;
  vertical-align: baseline;
}
@media screen and (min-width: 430px) {
  .flow__content-title img {
    width: 2.1875rem;
  }
}

.flow__content-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media screen and (min-width: 430px) {
  .flow__content-text {
    margin-top: 0.625rem;
    font-size: 1rem;
    line-height: 1.9;
  }
}

.flow__content-text span {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 430px) {
  .flow__content-text span {
    font-size: 1.125rem;
  }
}

.flow__content-caution {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #696969;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-left:1em;
  text-indent:-1em;
}
@media screen and (min-width: 430px) {
  .flow__content-caution {
    font-size: 0.875rem;
    padding-top: 0;
  }
}

.footer {
  background: #2F2725;
  color: #fff;
}

.footer__copyright {
  display: block;
  text-align: center;
  font-weight: 500;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 430px) {
  .footer__copyright {
    font-size: 0.875rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.header-sub {
  width: 100%;
  max-width: 100%;
  height: 80px;
  height: 5rem;
  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;
  -webkit-box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, .15);
          box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, .15);
  border-bottom: 2px solid #F1A022;
  border-bottom: 0.125rem solid #F1A022;
  background: #fff;
  z-index: 100;
}
@media screen and (min-width: 430px) {
  .header-sub {
    height: 7.5rem;
  }
}

.header-sub img {
  width: 100%;
  max-width: 120px;
  max-width: 7.5rem;
  aspect-ratio: 120/33;
}
@media screen and (min-width: 430px) {
  .header-sub img {
    max-width: 18.125rem;
    aspect-ratio: 290/82;
  }
}

.header {
  width: 100%;
  max-width: 100%;
  position: fixed;
  height: 64px;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, .15);
          box-shadow: 0rem 0.25rem 0.25rem 0rem rgba(0, 0, 0, .15);
  border-bottom: 2px solid #F1A022;
  border-bottom: 0.125rem solid #F1A022;
  background: #fff;
  z-index: 100;
}
@media screen and (min-width: 430px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  width: 100%;
  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;
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}
@media screen and (min-width: 430px) {
  .header__inner {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.header__logo {
  width: 120px;
  width: 7.5rem;
}
@media screen and (min-width: 430px) {
  .header__logo {
    width: 12.375rem;
  }
}

.header__btn {
  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;
}

.header__btn-tag {
  width: 100%;
  max-width: 127px;
  max-width: 7.9375rem;
  aspect-ratio: 127/46;
}
@media screen and (min-width: 430px) {
  .header__btn-tag {
    margin-right: 0.25rem;
  }
}

.header__btn-link {
  width: 100%;
  max-width: 213px;
  max-width: 13.3125rem;
  aspect-ratio: 213/44;
}
@media screen and (min-width: 430px) {
  .header__btn-link {
    max-width: 18.75rem;
    aspect-ratio: 300/54;
  }
}

.inner {
  width: 100%;
  max-width: 340px;
  max-width: 21.25rem;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 430px) {
  .inner {
    max-width: 1130px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.merit {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (min-width: 430px) {
  .merit {
    padding-top: 5rem;
  }
}

.merit__title {
  width: 100%;
  max-width: 320px;
  max-width: 20rem;
  margin: auto;
}
@media screen and (min-width: 430px) {
  .merit__title {
    max-width: 45.75rem;
  }
}

.merit__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
  padding-top: 14.95px;
  padding-top: 0.934375rem;
}
@media screen and (min-width: 430px) {
  .merit__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 3.1875rem;
  }
}

.merit__block-item {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #111;
  border-bottom: 0.0625rem solid #111;
}
@media screen and (min-width: 430px) {
  .merit__block-item {
    padding-bottom: 0;
    padding-right: 1.875rem;
    border-bottom: none;
    border-right: solid 0.0625rem #111;
  }
}

.merit__block-item:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  padding-bottom: 0rem;
}
@media screen and (min-width: 430px) {
  .merit__block-item:last-child {
    padding-right: 0;
    border-right: none;
  }
}

.merit__block-item h3 {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}

.merit__block-item p {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  padding-top: 18px;
  padding-top: 1.125rem;
  line-height: 1.875;
}

.merit__point-block {
  width: 100%;
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (min-width: 430px) {
  .merit__point-block {
    padding-top: 5.0625rem;
  }
}

.merit__point-title {
  width: 100%;
  max-width: 248px;
  max-width: 15.5rem;
  margin: auto;
}
@media screen and (min-width: 430px) {
  .merit__point-title {
    max-width: 20rem;
  }
}

.merit__point-list {
  padding-top: 43.5px;
  padding-top: 2.71875rem;
  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;
  gap: 41px;
  gap: 2.5625rem;
}
@media screen and (min-width: 430px) {
  .merit__point-list {
    padding-top: 3.675rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.875rem;
  }
}

.merit__point-item {
  background: #E4F4F9;
  border-radius: 0.625rem;
  position: relative;
  height: inherit;
  width: 100%;
}

.merit__point-item-title {
  position: absolute;
  top: -20px;
  top: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 180px;
  max-width: 11.25rem;
  margin: auto;
}

.merit__point-item-body {
  height: inherit;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  padding: 30px 10px 18px;
  padding: 1.875rem 0.625rem 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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 23px;
  gap: 1.4375rem;
}
@media screen and (min-width: 430px) {
  .merit__point-item-body {
    font-size: 1.25rem;
    padding: 3.125rem 1.3125rem 1.6875rem;
  }
}

.merit__point-item-body img {
  width: 100%;
  max-width: 150.56px;
  max-width: 9.41rem;
  margin: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 430px) {
  .merit__point-item-body img {
    max-width: 11.25rem;
  }
}

.problem__content {
  background: #E5EEF2;
}

.problem__content-title {
  width: 100%;
  max-width: 271px;
  max-width: 16.9375rem;
  margin: auto;
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (min-width: 430px) {
  .problem__content-title {
    max-width: 41.6875rem;
    padding-top: 3.75rem;
  }
}

.problem__inner {
  max-width: 1078px;
  max-width: 67.375rem;
  width: 100%;
  margin: auto;
}

.problem__items {
  padding-top: 36px;
  padding-top: 2.25rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  gap: 0.8125rem;
}
@media screen and (min-width: 430px) {
  .problem__items {
    padding-top: 3.1875rem;
    padding-bottom: 5rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.625rem;
  }
}

.problem__item {
  width: 100%;
  max-width: 100%;
  background: #fff;
}
@media screen and (min-width: 430px) {
  .problem__item {
    max-width: 15.625rem;
  }
}

.problem__arrow {
  margin: auto;
  margin-top: -5px;
  margin-top: -0.3125rem;
  width: 100%;
  max-width: 101px;
  max-width: 6.3125rem;
}
@media screen and (min-width: 430px) {
  .problem__arrow {
    max-width: 16.9375rem;
  }
}

.problem__btn {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 430px) {
  .problem__btn {
    margin-top: 2.6875rem;
    margin-bottom: 2rem;
  }
}

.problem__btn-tag1 {
  width: 100%;
  max-width: 316px;
  max-width: 19.75rem;
  margin: auto;
}
@media screen and (min-width: 430px) {
  .problem__btn-tag1 {
    max-width: 53.25rem;
  }
}

.problem__btn-tag2 {
  width: 100%;
  margin: auto;
  max-width: 195px;
  max-width: 12.1875rem;
  padding-top: 11px;
  padding-top: 0.6875rem;
}
@media screen and (min-width: 430px) {
  .problem__btn-tag2 {
    max-width: 28.625rem;
    padding-top: 2.6875rem;
  }
}

.problem__btn-block img {
  width: 100%;
  max-width: 291px;
  max-width: 18.1875rem;
  margin: auto;
  margin-top: 4px;
  margin-top: 0.25rem;
  aspect-ratio: 291/60;
}
@media screen and (min-width: 430px) {
  .problem__btn-block img {
    margin-top: 1.25rem;
    max-width: 28.3125rem;
  }
}

.question {
  margin-top: 50px;
  margin-top: 3.125rem;
  width: 100%;
  max-width: 980px;
  max-width: 61.25rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 430px) {
  .question {
    margin-top: 7.5rem;
  }
}

.question__title {
  width: 100%;
  max-width: 450px;
  max-width: 28.125rem;
  margin: auto;
}
@media screen and (min-width: 430px) {
  .question__title {
    max-width: 47.1875rem;
  }
}

.question__content {
  margin-top: 20px;
  margin-top: 1.25rem;
  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: 19px;
  gap: 1.1875rem;
}
@media screen and (min-width: 430px) {
  .question__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.4375rem;
    margin-top: 3.125rem;
  }
}

.question__content-img {
  width: 100%;
  max-width: 180px;
  max-width: 11.25rem;
}
@media screen and (min-width: 430px) {
  .question__content-img {
    max-width: 27.625rem;
    aspect-ratio: 441/363;
  }
}

.question__content-text1 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: dashed #595959 1px;
  border-bottom: dashed #595959 0.0625rem;
}
@media screen and (min-width: 430px) {
  .question__content-text1 {
    font-size: 1.875rem;
  }
}

.question__content-text2 {
  padding-top: 19px;
  padding-top: 1.1875rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.957;
}
@media screen and (min-width: 430px) {
  .question__content-text2 {
    padding-top: 2.5rem;
    font-size: 1.30625rem;
  }
}

.question__content-text3 {
  font-size: 24px;
  font-size: 1.5rem;
}

.question__content-bold {
  padding-top: 19px;
  padding-top: 1.1875rem;
  font-weight: 700;
}
@media screen and (min-width: 430px) {
  .question__content-bold {
    font-size: 1.5rem;
  }
}

.question__content-text3 p + p {
  padding-top: 30px;
  padding-top: 1.875rem;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (min-width: 430px) {
  .question__content-text3 p + p {
    padding-top: 0rem;
    font-size: 1.125rem;
  }
}

.question__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (min-width: 430px) {
  .question__btn {
    margin-top: 4.125rem;
    margin-bottom: 6.8125rem;
  }
}

.question__btn img + img {
  width: 100%;
  max-width: 195px;
  max-width: 12.1875rem;
  margin: auto;
  padding-top: 5px;
  padding-top: 0.3125rem;
}

.question__btn-tag {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 430px) {
  .question__btn-tag {
    max-width: 51.375rem;
  }
}

.question__btn-pick {
  width: 100%;
  max-width: 195px;
  max-width: 12.1875rem;
  margin: auto;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 430px) {
  .question__btn-pick {
    max-width: 34.375rem;
    padding-top: 1.8125rem;
  }
}

.question__btn-link {
  display: block;
  max-width: 291px;
  max-width: 18.1875rem;
  width: 100%;
  margin: auto;
  margin-top: 5px;
  margin-top: 0.3125rem;
  aspect-ratio: 291/60;
}
@media screen and (min-width: 430px) {
  .question__btn-link {
    padding-top: 1.25rem;
    max-width: 28.625rem;
  }
}

.swiper {
  height: 38px;
  height: 2.375rem;
}
@media screen and (min-width: 430px) {
  .swiper {
    height: 6.625rem;
  }
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.swiper-slide {
  text-align: center;
  line-height: 1;
  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;
  height: 100%;
  width: 100%;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 430px) {
  .swiper-slide {
    gap: 0rem;
  }
}

.swiper-img img {
  -ms-flex-item-align: center;
      align-self: center;
  width: 60px;
  width: 3.75rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 430px) {
  .swiper-img img {
    width: 100%;
  }
}

.top {
  background: url(../../img/lp/top-bg-pc.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1078px;
  max-width: 67.375rem;
  width: 100%;
}
@media screen and (min-width: 430px) {
  .top__inner {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.top__block {
  position: relative;
  padding-top: 81px;
  padding-top: 5.0625rem;
}
@media screen and (min-width: 430px) {
  .top__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.8125rem;
    padding-top: 7.5rem;
  }
}

.top__title-img {
  width: 22.5rem;
  max-width: 100%;
  margin-left: auto;
}
@media screen and (min-width: 430px) {
  .top__title-img {
    position: static;
    width: 100%;
  }
}

.top__link {
  display: block;
  position: absolute;
  top: 78%;
  left: 12%;
  aspect-ratio: 291/60;
  width: 291px;
  width: 18.1875rem;
  padding-top: 16px;
  padding-top: 1rem;
  margin: auto;
}
@media screen and (min-width: 430px) {
  .top__link {
    position: static;
    width: 28.625rem;
  }
}

.top__img-sp {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  width: 171px;
  width: 10.6875rem;
}

@media screen and (min-width: 430px) {
  .top__img {
    padding-top: 1.875rem;
  }
}

.contact {
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (min-width: 430px) {
  .contact {
    padding-top: 3rem;
  }
}

.contact__inner {
  width: 100%;
  max-width: 750px;
  max-width: 46.875rem;
  margin: auto;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 430px) {
  .contact__inner {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 5rem;
  }
}

.contact-bg {
  background: #FBEEDB;
}

.contact__title {
  position: relative;
  width: 100%;
  margin: auto;
  z-index: 5;
}
@media screen and (min-width: 430px) {
  .contact__title {
    max-width: 38.8125rem;
  }
}

.contact__title img {
  max-width: 301px;
  max-width: 18.8125rem;
  margin: auto;
  margin-top: auto;
  z-index: 1;
}
@media screen and (min-width: 430px) {
  .contact__title img {
    max-width: 38.8125rem;
  }
}

.contact__content {
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: 1.25rem;
  padding: 20px 20px 30px;
  padding: 1.25rem 1.25rem 1.875rem;
}
@media screen and (min-width: 430px) {
  .contact__content {
    padding: 2.5625rem 5.9375rem 3.125rem;
  }
}

.contact__content-2 {
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: 1.25rem;
  padding: 20px 20px 146px;
  padding: 1.25rem 1.25rem 9.125rem;
}
@media screen and (min-width: 430px) {
  .contact__content-2 {
    padding: 2.5625rem 5.9375rem 17.375rem;
  }
}

.contact__content-3 {
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: 1.25rem;
  padding: 20px 20px 129px;
  padding: 1.25rem 1.25rem 8.0625rem;
}
@media screen and (min-width: 430px) {
  .contact__content-3 {
    padding: 2.5625rem 5.9375rem 12.625rem;
  }
}

.contact__content-4 {
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: 1.25rem;
  padding: 20px 20px 129px;
  padding: 1.25rem 1.25rem 8.0625rem;
}
@media screen and (min-width: 430px) {
  .contact__content-4 {
    padding: 2.5625rem 5.9375rem 12.625rem;
  }
}

.contact__content-number {
  width: 100%;
  max-width: 260px;
  max-width: 16.25rem;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  gap: 0.25rem;
}
@media screen and (min-width: 430px) {
  .contact__content-number {
    max-width: 32rem;
  }
}

.contact__content-number-btn {
  width: 100%;
  max-width: 40px;
  max-width: 2.5rem;
  background: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 1rem;
  border: #111 solid 1px;
  border: #111 solid 0.0625rem;
}
@media screen and (min-width: 430px) {
  .contact__content-number-btn {
    font-size: 1.5625rem;
    max-width: 4.8125rem;
    border-radius: 1.875rem;
  }
}

.contact__line {
  padding-top: 11px;
  padding-top: 0.6875rem;
}
@media screen and (min-width: 430px) {
  .contact__line {
    padding-top: 2.5rem;
  }
}

.contact__question {
  padding-top: 14px;
  padding-top: 0.875rem;
}
@media screen and (min-width: 430px) {
  .contact__question {
    padding-top: 1.875rem;
  }
}

.contact__question-text {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  color: #0C4E73;
}
@media screen and (min-width: 430px) {
  .contact__question-text {
    font-size: 1.5rem;
  }
}

.contact__question-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.3125rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (min-width: 430px) {
  .contact__question-list {
    padding-top: 2rem;
  }
}

.contact__question-item button {
  width: 100%;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  border: none;
  border-radius: 3.125rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 6px 8px 6px;
  padding: 0.375rem 0.5rem 0.375rem;
}
@media screen and (min-width: 430px) {
  .contact__question-item button {
    padding: 0.8125rem 0.625rem 1rem;
    font-size: 1.25rem;
  }
}

/* ボタンをマウスホバーしたとき、ボタンを薄くする */
.contact__question-item button:hover {
  opacity: 0.7;
}

/* ボタンをクリックしたとき、ボタン上部に余白を作る */
.contact__question-item button:active {
  margin-top: 0.2em;
}

/* 赤ボタンのスタイル */
.contact__question-item button {
  color: #fff;
  background-color: #F1A022;
  -webkit-box-shadow: 0 0.25rem 0 #FFD088;
          box-shadow: 0 0.25rem 0 #FFD088;
}

.contact__question-item button:active {
  -webkit-box-shadow: 0 0.125rem 0 #FFD088;
          box-shadow: 0 0.125rem 0 #FFD088;
}

.contact__form {
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: 1.25rem;
  padding-top: 14px;
  padding-top: 0.875rem;
}
@media screen and (min-width: 430px) {
  .contact__form {
    padding-top: 0.9375rem;
  }
}

.contact__form-text {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 430px) {
  .contact__form-text {
    font-size: 1.5rem;
  }
}

.contact__form-text p + p {
  font-size: 17px;
  font-size: 1.0625rem;
  padding-top: 23px;
  padding-top: 1.4375rem;
  color: #0C4E73;
}
@media screen and (min-width: 430px) {
  .contact__form-text p + p {
    font-size: 1.625rem;
    padding-top: 2.5625rem;
  }
}

.contact__form-text p + p + p {
  font-size: 13px;
  font-size: 0.8125rem;
  padding-top: 7px;
  padding-top: 0.4375rem;
  color: #111;
  text-align: center;
}
@media screen and (min-width: 430px) {
  .contact__form-text p + p + p {
    font-size: 0.875rem;
    padding-top: 0.25rem;
  }
}

.contact__form-block {
  padding-top: 22px;
  padding-top: 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;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 430px) {
  .contact__form-block {
    gap: 1.5625rem;
  }
}

label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  font-weight: 700;
}
@media screen and (min-width: 430px) {
  label {
    font-size: 1.125rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

span.required {
  width: 100%;
  max-width: 36px;
  max-width: 2.25rem;
}
@media screen and (min-width: 430px) {
  span.required {
    max-width: 2.75rem;
  }
}

.contact__form-item--checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
  font-size: 0.8125rem;
}

.contact__form-item--checkbox label {
  gap: 0;
  font-weight: 400;
}

.contact__form-item--checkbox a {
  color: #1892A3;
  text-decoration: underline;
  font-weight: 400;
}

input[type=text],
input[type=email],
input[type=tel] {
  margin-top: 8px;
  margin-top: 0.5rem;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
  background: #F2F2F2;
  width: 100%;
  border: 1px solid #A7A7A7;
  border: 0.0625rem solid #A7A7A7;
  border-radius: 0.125rem;
  font-size: 15px;
  font-size: 0.9375rem;
}

input[type=checkbox] {
  border: 1px solid #111;
  border: 0.0625rem solid #111;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  border-radius: 0.125rem;
  margin-right: 14px;
  margin-right: 0.875rem;
}

.contact__form-btn {
  width: 100%;
  max-width: 265px;
  max-width: 16.5625rem;
  margin: auto;
}
@media screen and (min-width: 430px) {
  .contact__form-btn {
    max-width: 16rem;
  }
}

.contact__form-btn input {
  width: 100%;
  max-width: 265px;
  max-width: 16.5625rem;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 700;
  border: none;
  border-radius: 3.125rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 6px 8px 6px;
  padding: 0.375rem 0.5rem 0.375rem;
  background: #A62525;
  color: #fff;
}
@media screen and (min-width: 430px) {
  .contact__form-btn input {
    padding: 0.8125rem 0.625rem 1rem;
    font-size: 1.25rem;
  }
}

/* ボタンをマウスホバーしたとき、ボタンを薄くする */
.contact__form-btn input:hover {
  opacity: 0.7;
}

/* ボタンをクリックしたとき、ボタン上部に余白を作る */
.contact__form-btn input:active {
  margin-top: 0.2em;
}

/* 赤ボタンのスタイル */
.contact__form-btn input {
  color: #fff;
  background-color: #A62525;
  -webkit-box-shadow: 0 0.25rem 0 #E46565;
          box-shadow: 0 0.25rem 0 #E46565;
}

.contact__form-btn input:active {
  -webkit-box-shadow: 0 0.125rem 0 #E46565;
          box-shadow: 0 0.125rem 0 #E46565;
}

.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.contact__footer {
  margin-top: auto;
}
/*# sourceMappingURL=styles.css.map */
