@charset "UTF-8";
body {
  color: #030000;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

/* ルートフォント（rem対応）
------------------------------------------ */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 1.6vw;
  }
}
@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

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

a {
  text-decoration: none;
}

body.is-fixed {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
}

.br {
  display: inline-block;
}

.footer-fixed {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  .footer-fixed {
    margin-bottom: 24%;
  }
}
.footer-fixed__content {
  flex: 1 1 auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 300;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Set core body defaults */
body {
  line-height: 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  color: inherit;
}

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

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=url],
input[type=number],
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=url]:focus,
input[type=number]:focus,
textarea:focus {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  outline: none;
}

textarea {
  resize: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

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

/* ボタン
------------------------------------------ */
.btn {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  height: 100%;
  justify-content: center;
  max-width: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn--blue {
  background-color: #0d4389;
  box-shadow: 0 5px 0 #000034;
  padding: 0.9375rem 3.125vw 1.1875rem;
}
@media screen and (max-width: 767px) {
  .btn--blue {
    box-shadow: 0 3px 0 #000034;
    padding: 0.4375rem 0.6875rem 0.3125rem;
  }
}
.btn--red {
  background-color: #e60012;
  box-shadow: 0 5px 0 #810012;
  padding: 1.0625rem 3.64583333vw 1.1875rem;
}
@media screen and (max-width: 767px) {
  .btn--red {
    box-shadow: 0 3px 0 #810012;
    padding: 0.4375rem 1rem 0.3125rem;
  }
}
.btn--red-large {
  background-color: #e60012;
  border-radius: 7px;
  box-shadow: 0 8px 0 #810012;
  padding: 1.6875rem 8.75rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .btn--red-large {
    border-radius: 9px;
    box-shadow: 0 4px 0 #810012;
    padding: 1.5625rem 6.25rem 1.25rem;
  }
}
@media (hover: hover) {
  .btn--red-large:hover {
    transform: translateY(8px);
  }
}
@media screen and (hover: hover) and (max-width: 767px) {
  .btn--red-large:hover {
    transform: translateY(4px);
  }
}
.btn--fixed-red {
  background-color: #e60012;
  box-shadow: 0 5px 0 #810012;
  min-height: 3.25rem;
  padding: 0.3125rem 1rem;
  width: 100%;
}
@media screen and (hover: none) and (max-width: 767px) {
  .btn--fixed-red:active {
    transform: translateY(5px);
  }
}
.btn--fixed-blue {
  background-color: #0d4389;
  box-shadow: 0 5px 0 #000034;
  min-height: 3.25rem;
  padding: 0.3125rem 1rem;
  width: 100%;
}
@media (hover: hover) {
  .btn:hover {
    box-shadow: none;
    transform: translateY(5px);
  }
}
@media screen and (hover: hover) and (max-width: 767px) {
  .btn:hover {
    transform: translateY(3px);
  }
}

.fixed-sp {
  background-color: #ffe900;
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 15;
}

.fixed-sp__inner {
  padding: 0.4375rem 0.625rem 0.5625rem;
}

.fixed-sp__title {
  margin-inline: auto;
  width: 70.666667vw;
}

.fixed-sp__btns {
  display: flex;
  margin-top: 0.3125rem;
}

.fixed-sp__btn {
  width: 40%;
}
.fixed-sp__btn:not(:first-child) {
  margin-left: 0.5rem;
  width: 60%;
}

.footer {
  background-color: #0d4389;
  padding-block: 0.5rem 0.4375rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 0.25rem 0.1875rem;
  }
}

.footer__copy {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 0.625rem;
    line-height: 2.1;
  }
}

/* フォームパーツ
------------------------------------------ */
.form {
  font-size: 1.1875rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .form {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .form__content {
    max-height: 26.5625rem;
    overflow: scroll;
    padding-inline: 0.75rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .form__content {
    padding-inline: 0.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .form__content::-webkit-scrollbar {
    width: 5px;
  }
}
@media screen and (max-width: 767px) {
  .form__content::-webkit-scrollbar-track {
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .form__content::-webkit-scrollbar-thumb {
    background-color: #898989;
    border-radius: 2px;
  }
}

.form__wrap:not(:first-child) {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .form__wrap:not(:first-child) {
    margin-top: 0.75rem;
  }
}

.form__label {
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
  padding-left: 1.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__label {
    font-size: 0.9375rem;
    padding-left: 1.125rem;
  }
}
.form__label::before {
  background-color: #0d4389;
  border-radius: 2px;
  content: "";
  display: block;
  height: 1.25rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__label::before {
    height: 0.75rem;
    width: 0.75rem;
  }
}



/* ラジオボタン関連
------------------------------------------ */
.form__radio-lists {
  display: flex;
  gap: 3.4375rem;
  margin-block: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form__radio-lists {
    flex-wrap: wrap;
    gap: 1.5625rem 1.0625rem;
  }
}

/* ラジオボタンリセット
------------------------------------------ */
input[type=radio] {
  opacity: 0;
  position: absolute;
}

/* ラジオボタン
------------------------------------------ */
input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  line-height: 1;
  padding: 0em 0em 0em 2.5em;
  position: relative;
  vertical-align: middle;
}
input[type=radio] + span:before {
  background: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  content: "";
  height: 2em;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
}

/*ラジオボタンチェック印（未選択）*/
input[type=radio] + span:after {
  content: "";
  display: none;
}

/*ラジオボタンチェック印（選択）*/
input[type=radio]:checked + span:after {
  background: #e60012;
  border-radius: 50%;
  display: block;
  height: 1.35em;
  left: 0.34em;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.35em;
}

/* セレクトボックス関連
------------------------------------------ */
.form__select-lists {
  display: flex;
  margin-top: 0.3125rem;
}

.form__select-list:not(:first-child) {
  margin-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .form__select-list:not(:first-child) {
    margin-left: 0.5rem;
  }
}
.form__select-list--sub:not(:first-child) {
  margin-left: 1.3125rem;
  padding-left: 2.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form__select-list--sub:not(:first-child) {
    margin-left: 0.8125rem;
    padding-left: 1.6875rem;
  }
}
.form__select-list--sub:not(:first-child)::before {
  content: "〜";
  font-size: 1.5rem;
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .form__select-list--sub:not(:first-child)::before {
    font-size: 0.9375rem;
  }
}

/* セレクトボックス
------------------------------------------ */
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent url(../img/serach-selectbox-arrow.svg) no-repeat center right 27px/11px 6px;
  border: 1px solid #000;
  border-radius: 4px;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  max-width: 100%;
  padding: 1.25rem 2.875rem 1.25rem 1.875rem;
}
@media screen and (max-width: 767px) {
  select {
    background: transparent url(../img/serach-selectbox-arrow.svg) no-repeat center right 15px/11px 6px;
    padding: 0.875rem 0.625rem;
  }
}
select.small {
  width: 20.0625rem;
}
@media screen and (max-width: 767px) {
  select.small {
    max-width: 100%;
    width: 33.3vw;
  }
}
select.medium {
  width: 22.75rem;
}
@media screen and (max-width: 767px) {
  select.medium {
    max-width: 100%;
    width: 33.3333333vw;
  }
}
select.large {
  width: 27.75rem;
}
@media screen and (max-width: 767px) {
  select.large {
    max-width: 100%;
    width: 41.5vw;
  }
}

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

/* ボタン
------------------------------------------ */
.form__btn {
  margin-top: 1.25rem;
  text-align: center;
}
.form__btn img {
  margin-right: 0.9375rem;
  width: 9.375rem;
}

/* チェックボックス
------------------------------------------ */
input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

/* チェックボックス
------------------------------------------ */
input[type=checkbox] + span {
  align-items: center;
  cursor: pointer;
  display: flex;
  line-height: 1;
  position: relative;
  vertical-align: middle;
}

input[type=checkbox] + span:before {
  background: #fff;
  border: 1px solid #000;
  content: "";
  height: 1.5em;
  line-height: 1;
  margin-right: 0.5em;
  vertical-align: middle;
  width: 1.5em;
}

/*チェックボックス未チェック時*/
input[type=checkbox] + span:after {
  content: "";
  display: none;
}

/*チェックボックスチェック時*/
input[type=checkbox]:checked + span:after {
  border-bottom: 4px solid #e60012;
  border-right: 4px solid #e60012;
  content: "";
  display: block;
  height: 1.2em;
  left: 0.4em;
  position: absolute;
  top: 0.05em;
  transform: rotate(45deg);
  width: 0.7em;
}

.header {
  background: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  height: 5.625rem;
  left: 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    filter: none;
    height: 3.625rem;
    position: relative;
  }
}
.header__inner {
  display: flex;
  height: inherit;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1590px;
  padding-inline: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__inner {
    max-width: 600px;
    padding-inline: 10px;
  }
}
.header__logo {
  height: 100%;
  max-width: 13.625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 117px;
  }
}
.header__logo a {
  align-items: center;
  display: flex;
  height: 100%;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .header__logo a:hover {
    opacity: 0.6;
  }
}
.header__btns {
  align-items: center;
  display: flex;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 1025px) {
  .header__btns {
    margin-left: 1.25rem;
  }
}
.header__btn:not(:first-child) {
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .header__btn:not(:first-child) {
    margin-left: 0.3125rem;
  }
}

.inner {
  margin-inline: auto;
  max-width: 1050px;
  padding-inline: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 600px;
    padding-inline: 10px;
  }
}
.inner--sub {
  max-width: 950px;
}
@media screen and (max-width: 767px) {
  .inner--sub {
    max-width: 500px;
    padding-inline: 10px;
  }
}

/* SP時のフォームのモーダル
------------------------------------------ */
.modal {
  display: block;
}
@media screen and (max-width: 767px) {
  .modal {
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.4s, visibility 0.4s;
    visibility: hidden;
    width: 100%;
    z-index: 9999;
  }
}

@media screen and (max-width: 767px) {
  .modal__bg {
    background-color: rgba(35, 24, 21, 0.7);
    height: 100%;
    width: 100%;
    z-index: 99999;
  }
}

.modal__close {
  display: none;
}
@media screen and (max-width: 767px) {
  .modal__close {
    cursor: pointer;
    display: block;
    position: absolute;
    right: 0.9375rem;
    top: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .is-show {
    opacity: 1;
    visibility: visible;
  }
}

/* 全体共通
------------------------------------------ */
.section {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .section {
    padding-block: 2.8125rem;
  }
}

/* サイズ選び、収納の目安
------------------------------------------ */
.select__swiper01,
.select__swiper02 {
  overflow: visible !important;
}

.select__swiper01 .select__swiper-slide,
.select__swiper01 .select__swiper-slide-content__tag,
.select__swiper01 .select__swiper-slide-content__list::before {
  background-color: #e60012;
}

.select__swiper02 {
  margin-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .select__swiper02 {
    margin-top: 0.75rem;
  }
}
.select__swiper02 .select__swiper-slide,
.select__swiper02 .select__swiper-slide-content__tag,
.select__swiper02 .select__swiper-slide-content__list::before {
  background-color: #0d4389;
}

.select__swiper-slide {
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  height: auto;
  opacity: 0.7;
  padding: 2.0625rem 1.1875rem 1.0625rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide {
    border-radius: 12px;
    padding: 0.875rem 0.625rem 0.625rem;
  }
}

.swiper-slide-active {
  opacity: 1;
}

.select__swiper-slide__head {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide__head {
    padding-inline: 1.0625rem;
  }
}

.select__swiper-slide__title {
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding-bottom: 0.3125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide__title {
    font-size: 1.125rem;
    line-height: 1.7222222222;
  }
}

.select__swiper-slide__text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3333333333;
  margin-top: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide__text {
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
  }
}

.select__swiper-slide-content {
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
  margin-top: 1.25rem;
  padding: 1.25rem 1.25rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide-content {
    flex-direction: column-reverse;
    justify-content: flex-end;
    margin-top: 0.9375rem;
    padding: 1.125rem 0.9375rem 17.3333vw;
  }
}

.select__swiper-slide-content__block {
  margin-left: 2.286902%;
  width: 46.049896%;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide-content__block {
    margin-left: 0;
    width: 100%;
  }
}

.select__swiper-slide-content__title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5833333333;
  margin-top: -0.5rem;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide-content__title {
    font-size: 1.125rem;
    line-height: 1.3333333333;
    margin-top: 1rem;
    text-align: center;
  }
}

.select__swiper-slide-content__tag {
  color: #fff;
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.1428571429;
  margin-top: 0.8125rem;
  padding-block: 0.1875rem 0.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide-content__tag {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.select__swiper-slide-content__lists {
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide-content__lists {
    margin-top: 0.6875rem;
  }
}
.select__swiper-slide-content__lists--sub .select__swiper-slide-content__list {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide-content__lists--sub .select__swiper-slide-content__list {
    font-size: 0.875rem;
  }
}

.select__swiper-slide-content__list {
  font-feature-settings: "palt";
  align-items: flex-start;
  display: flex;
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2380952381;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide-content__list {
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}
.select__swiper-slide-content__list:not(:first-child) {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide-content__list:not(:first-child) {
    margin-top: 0.5rem;
  }
}
.select__swiper-slide-content__list::before {
  -webkit-mask: url(../img/service-table-block-icon.svg) no-repeat center center/contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 0.875rem;
  margin: 0.3125rem 0.75rem 0 0.0625rem;
  mask: url(../img/service-table-block-icon.svg) no-repeat center center/contain;
  width: 0.875rem;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide-content__list::before {
    height: 0.5rem;
    margin: 0.1875rem 0.25rem 0 0.0625rem;
    width: 0.5rem;
  }
}
.select__swiper-slide-content__list--not-icon::before {
  display: none;
}
.select__swiper-slide-content__list span {
  margin-left: auto;
}

.select__swiper-slide-content__img {
  max-width: 497px;
  width: 57%;
}
@media screen and (max-width: 767px) {
  .select__swiper-slide-content__img {
    max-width: 100%;
    width: 100%;
  }
}

/* スライダー 矢印
------------------------------------------ */
.swiper-button-prev,
.swiper-button-next {
  -webkit-mask: url(../img/select-slider-arrow-red.svg) no-repeat center center/contain;
  height: 6rem;
  mask: url(../img/select-slider-arrow-red.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  width: 3rem;
  z-index: 0 !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    height: 4.1875rem;
    top: 57%;
    transform: translateY(-41%) scale(-1, 1);
    width: 2.0625rem;
    z-index: 1 !important;
  }
}
.swiper-button-prev--red,
.swiper-button-next--red {
  background-color: #e60012;
}
.swiper-button-prev--blue,
.swiper-button-next--blue {
  background-color: #0d4389;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  -webkit-mask: url(../img/user-slider-arrow-triangle.svg) no-repeat center center/contain;
  background-color: #fff;
  content: "";
  display: block;
  height: 1.625rem;
  left: 0;
  mask: url(../img/user-slider-arrow-triangle.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev::before,
  .swiper-button-next::before {
    height: 1.125rem;
    transform: translateY(-50%) scale(-1, 1);
    width: 0.875rem;
  }
}

.swiper-button-prev {
  left: -3rem;
  transform: translateY(-50%) scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: 0.625rem;
    transform: translateY(-50%);
  }
}

.swiper-button-next {
  right: -3rem;
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: 0.625rem;
  }
}

/* ページネーション
------------------------------------------ */
.select__swiper01 .swiper-pagination {
  bottom: 30px !important;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .select__swiper01 .swiper-pagination {
    bottom: 25px !important;
  }
}

.select__swiper02 .swiper-pagination {
  bottom: 30px !important;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .select__swiper02 .swiper-pagination {
    bottom: 25px !important;
  }
}

.swiper-pagination--red .swiper-pagination-bullet {
  border: 1px solid #e60012 !important;
}
.swiper-pagination--red .swiper-pagination-bullet-active {
  background-color: #e60012 !important;
}
.swiper-pagination--blue .swiper-pagination-bullet {
  border: 1px solid #0d4389 !important;
}
.swiper-pagination--blue .swiper-pagination-bullet-active {
  background-color: #0d4389 !important;
}

.swiper-pagination-bullet {
  background-color: #fff !important;
  border-radius: 2px !important;
  height: 0.875rem !important;
  opacity: 1 !important;
  width: 0.875rem !important;
}

/* ご利用者の声
------------------------------------------ */
.user__swiper {
  overflow: visible !important;
}

.user__swiper-slide {
  border-radius: 15px;
  height: auto;
  min-height: 37.5rem;
  opacity: 0.7;
  padding: 1.5rem 2.1875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .user__swiper-slide {
    border-radius: 10px;
    min-height: 22.1875rem;
    padding: 1.25rem 1.6875rem 2rem;
  }
}
.user__swiper-slide.odd-slide {
  border: 4px solid #e60012;
}
.user__swiper-slide.even-slide {
  border: 4px solid #0d4389;
}

.swiper-slide-active {
  opacity: 1;
}

.user__swiper-slide__thumbnail {
  margin-top: 1.1875rem;
}

.user__swiper-slide__text {
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.8095238095;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .user__swiper-slide__text {
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 1rem;
  }
}

.swiper-pagination-user {
  bottom: 20px !important;
}

.changeColor-red .swiper-pagination-bullet {
  border: 1px solid #e60012 !important;
}
.changeColor-red .swiper-pagination-bullet-active {
  background-color: #e60012 !important;
}

.changeColor-blue .swiper-pagination-bullet {
  border: 1px solid #0d4389 !important;
}
.changeColor-blue .swiper-pagination-bullet-active {
  background-color: #0d4389 !important;
}

.swiper-button-prev-user,
.swiper-button-next-user {
  -webkit-mask: url(../img/user-slider-arrow-bg.svg) no-repeat center center/contain;
  background-color: #0d4389;
  height: 6rem;
  mask: url(../img/user-slider-arrow-bg.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  transition: 0.15s;
  width: 3rem;
  z-index: 1 !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev-user,
  .swiper-button-next-user {
    height: 4.1875rem;
    transform: translateY(-50%) scale(-1, 1);
    width: 2.0625rem;
    z-index: 1 !important;
  }
}
.swiper-button-prev-user::after,
.swiper-button-next-user::after {
  display: none !important;
}
.swiper-button-prev-user::before,
.swiper-button-next-user::before {
  -webkit-mask: url(../img/user-slider-arrow-triangle.svg) no-repeat center center/contain;
  background-color: #fff;
  content: "";
  display: block;
  height: 1.625rem;
  left: 0;
  mask: url(../img/user-slider-arrow-triangle.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev-user::before,
  .swiper-button-next-user::before {
    height: 1.125rem;
    transform: translateY(-50%) scale(-1, 1);
    width: 0.875rem;
  }
}

.swiper-button-prev-user {
  left: -2.9375rem !important;
  transform: translateY(-40%) scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .swiper-button-prev-user {
    left: 0.25rem !important;
    transform: translateY(-50%);
  }
}

.swiper-button-next-user {
  right: -2.9375rem !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-next-user {
    right: 0.25rem !important;
  }
}

.chart {
  background: url(../img/chart-bg.png) no-repeat center center/cover;
  padding-block: 3.875rem 5rem;
}
@media screen and (max-width: 767px) {
  .chart {
    background: url(../img/chart-bg-spldpi.png) no-repeat center center/100% 100%;
    margin-top: 2.8125rem;
    padding-block: 3.875rem 2.5rem;
  }
}

.chart__title {
  margin-inline: auto;
  max-width: 696px;
  width: 36.25vw;
}
@media screen and (max-width: 767px) {
  .chart__title {
    margin-top: -6.25rem;
    max-width: 335px;
    width: 100%;
  }
}

.chart__flow {
  margin-top: 3.3125rem;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .chart__flow {
    margin-top: 1.625rem;
  }
}

.chart__text {
  display: flex;
  font-size: 1rem;
  font-weight: 400;
  justify-content: center;
  line-height: 1.3125;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .chart__text {
    font-size: 0.6875rem;
    line-height: 1.5;
    margin-top: 0.9375rem;
    padding-left: 1em;
    text-indent: -1em;
  }
}

.company {
  padding-block: 5rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding-block: 2.8125rem;
  }
}

.company__inner {
  margin-inline: auto;
  max-width: 950px;
  padding-inline: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company__inner {
    max-width: 400px;
    padding-inline: 10px;
  }
}

.company__media {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .company__media {
    display: block;
    margin-top: 1.875rem;
  }
}

.company__block {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .company__block {
    width: 100%;
  }
}

.company__title {
  color: #0d4389;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company__title {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .company__list {
    padding-inline: 0.625rem;
  }
}

.company-list__wrap {
  display: flex;
  padding: 0.9375rem 0rem 0.9375rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company-list__wrap {
    padding: 0.75rem 0;
  }
}
.company-list__wrap:first-child {
  padding-top: 0;
}
.company-list__wrap:last-child {
  padding-bottom: 0;
}

.company-list__title {
  color: #0d4389;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5833333333;
  width: 33%;
}
@media screen and (max-width: 767px) {
  .company-list__title {
    font-size: 1rem;
    line-height: 1.75;
    width: 27%;
  }
}

.company-list__content {
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1.8095238095;
  width: 67%;
}
@media screen and (max-width: 767px) {
  .company-list__content {
    font-size: 0.875rem;
    line-height: 2;
    width: 73%;
  }
}

.company__map {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .company__map {
    margin-top: 2.25rem;
    width: 100%;
  }
}

.company__google-map {
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company__google-map {
    aspect-ratio: 355/250;
  }
}

.mv {
  background: url(../img/mv-bg-pc.png) no-repeat center center/cover;
  padding-block: 9.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv {
    background: url(../img/mv-bg-sp.png) no-repeat center center/cover;
    padding-block: 9.6875rem;
  }
}

.mv__title {
  margin-inline: auto;
  max-width: 842px;
  width: 43.875vw;
}
@media screen and (max-width: 767px) {
  .mv__title {
    width: 93.6vw;
  }
}

.mv__block {
  display: flex;
  flex-direction: column;
  left: 0;
  position: absolute;
  top: 4.59375rem;
}
@media screen and (max-width: 767px) {
  .mv__block {
    top: 4vw;
  }
}

.mv__text {
  -webkit-clip-path: polygon(0 0, 100% 0%, 93% 100%, 0% 100%);
  background-color: #0d4389;
  clip-path: polygon(0 0, 100% 0%, 93% 100%, 0% 100%);
  color: #fff;
  display: block;
  font-size: clamp(18px, 1.875vw, 36px);
  font-weight: 800;
  padding: 0.75rem 4.375rem 0.75rem 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .mv__text {
    -webkit-clip-path: polygon(0 0, 100% 0%, 97% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 97% 100%, 0% 100%);
    font-size: 1.375rem;
    padding: 0.1875rem 1.25rem 0.3125rem 0.6875rem;
  }
}
.mv__text--sub {
  -webkit-clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%);
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .mv__text--sub {
    -webkit-clip-path: polygon(0 0, 100% 0%, 96% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 96% 100%, 0% 100%);
    margin-top: 0.625rem;
  }
}

.point {
  background: url(../img/point-bg.png) no-repeat center center/cover;
}

.point__inner {
  margin-inline: auto;
  max-width: 1050px;
  padding-inline: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .point__inner {
    max-width: 450px;
    padding-inline: 10px;
  }
}

.point__title {
  margin-inline: auto;
  max-width: 920px;
  width: 47.91666666vw;
}
@media screen and (max-width: 767px) {
  .point__title {
    max-width: 303px;
    width: 100%;
  }
}

.point__lists {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .point__lists {
    margin-top: 2rem;
  }
}

.point-list:not(:first-child) {
  margin-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .point-list:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.point-list__head {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3928571429;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point-list__head {
    font-size: 1.3125rem;
    line-height: 1.3333333333;
  }
}
@media screen and (max-width: 767px) {
  .point-list__head::after {
    background: url(../img/point-sp-accordion-triangle.svg) no-repeat center center/contain;
    content: "";
    display: block;
    height: 0.4375rem;
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.6s ease-out;
    width: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .point-list__head.is-open::after {
    transform: translateY(-50%) rotate(180deg);
  }
}
.point-list__head--red {
  color: #e60012;
  letter-spacing: 0.05em;
}
.point-list__head--small {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .point-list__head--small {
    font-size: 0.875rem;
  }
}

.point-list__head--red::after,
.point-list__head--small::after {
  display: none;
}

.point-list__title {
  padding-left: 12.8125rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .point-list__title {
    padding-left: 10rem;
  }
}
@media screen and (max-width: 600px) {
  .point-list__title {
    padding-left: 36vw;
  }
}

.point-list__text {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.8095238095;
  margin-top: 1.25rem;
  padding-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .point-list__text {
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 0.9375rem;
    padding-left: 0;
  }
}
.point-list__text span {
  color: #e60012;
  font-weight: 600;
}

.point-list-table {
  margin-top: 0.75rem;
}

.point-list-table__title {
  align-items: center;
  display: flex;
  font-size: 1.3125rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
  margin-left: -1.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point-list-table__title {
    display: block;
    margin-inline: auto;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.point-list-table__title span {
  display: block;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .point-list-table__title span {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .point-list-table__title {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.point-list-table__title::before, .point-list-table__title::after {
  background: url(../img/point-list-under-triangle.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 0.875rem;
  width: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .point-list-table__title::before, .point-list-table__title::after {
    height: 0.625rem;
    position: absolute;
    top: 18%;
    width: 0.75rem;
  }
}
.point-list-table__title::before {
  margin-right: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .point-list-table__title::before {
    left: -1.25rem;
  }
}
.point-list-table__title::after {
  margin-left: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .point-list-table__title::after {
    right: -1.25rem;
  }
}

.point-list-table__content {
  margin-inline: auto;
  margin-top: 1.125rem;
  max-width: 441px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .point-list-table__content {
    max-width: 100%;
  }
}

.point-list-table__text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.9285714286;
  margin-top: 0.3125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point-list-table__text {
    font-size: 0.6875rem;
  }
}

.point-list__items {
  display: grid;
  font-size: 1.3125rem;
  font-weight: 400;
  gap: 6.5625rem;
  grid-template-columns: repeat(2, 1fr);
  letter-spacing: 0.01em;
  line-height: 1.8095238095;
  margin-top: 1.0625rem;
  padding-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .point-list__items {
    font-size: 1rem;
    gap: 2.8125rem;
    grid-template-columns: repeat(1, 1fr);
    line-height: 1.75;
    margin-top: 1.75rem;
    padding-left: 0;
  }
}

.point-list__item {
  padding-left: 1.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point-list__item {
    padding-left: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .point-list__item:not(:first-child) {
    margin-top: 2.5rem;
  }
}
.point-list__item::before {
  background-color: #0d4389;
  border-radius: 2px;
  content: "";
  display: inline-block;
  height: 1.4375rem;
  left: 0;
  position: absolute;
  top: 0.5rem;
  width: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .point-list__item::before {
    height: 1rem;
    top: 0.4375rem;
    width: 1rem;
  }
}

.point-list-item__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .point-list-item__title {
    font-size: 1.125rem;
    line-height: 1.7222222222;
  }
}

.point-list-item__text span {
  color: #e60012;
  font-weight: 600;
}

.point-list-item__subitem {
  align-items: center;
  display: flex;
}
.point-list-item__subitem:not(:first-child) {
  margin-top: 0.125rem;
}
.point-list-item__subitem::before {
  background-color: #e60012;
  border-radius: 2px;
  content: "";
  display: inline-block;
  height: 1.0625rem;
  margin-right: 0.8125rem;
  width: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .point-list-item__subitem::before {
    height: 0.75rem;
    margin-right: 0.625rem;
    width: 0.75rem;
  }
}
.point-list-item__subitem span {
  color: #e60012;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 2.0625rem;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .point-list-item__subitem span {
    font-size: 1.5rem;
    margin-left: 1.125rem;
  }
}

.point-list-item__subtext {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .point-list-item__subtext {
    font-size: 0.6875rem;
    line-height: 1.9090909091;
  }
}

.point-list__media {
  display: flex;
  margin-top: 0.5rem;
  padding-left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .point-list__media {
    display: block;
    padding-left: 0;
  }
}

.point-list-block {
  flex-shrink: 0;
  padding-left: 2.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point-list-block {
    padding-left: 2.125rem;
  }
}
.point-list-block::before {
  background: url(../img/point-list04-icon.svg) no-repeat center center/contain;
  border-radius: 2px;
  content: "";
  display: block;
  height: 2.375rem;
  left: 0;
  margin-right: 0.4375rem;
  position: absolute;
  top: 0;
  width: 2.375rem;
}
@media screen and (max-width: 767px) {
  .point-list-block::before {
    height: 1.75rem;
    margin-right: 0.375rem;
    width: 1.75rem;
  }
}

.point-list-block__title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 2.1111111111;
}
@media screen and (max-width: 767px) {
  .point-list-block__title {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.point-list-block__text {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 2.1111111111;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .point-list-block__text {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.point-list-block__img {
  margin-left: 7.368421052%;
  max-width: 505px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .point-list-block__img {
    margin-left: 0;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .point-list__accordion-content {
    display: none;
  }
}

.qa {
  background-color: #FFFBCC;
}

.qa__title {
  margin-inline: auto;
  max-width: 372px;
  width: 19.375vw;
}
@media screen and (max-width: 767px) {
  .qa__title {
    max-width: 208px;
    width: 100%;
  }
}

.qa__list {
  margin-top: 4.125rem;
}
@media screen and (max-width: 767px) {
  .qa__list {
    margin-top: 2.0625rem;
  }
}

.qa-list__wrap {
  background-color: #fff;
  border-radius: 15px;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .qa-list__wrap {
    border-radius: 9px;
    padding-inline: 0.5rem;
  }
}
.qa-list__wrap:not(:first-child) {
  margin-top: 1.1875rem;
}

.qa-list__title {
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 1.5rem 0 1.5rem 3.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa-list__title {
    font-size: 1rem;
    line-height: 1.5625;
    padding: 0.75rem 0 0.75rem 3.375rem;
  }
}
.qa-list__title::before {
  background: url(../img/qa-q-icon.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 1.9375rem;
  left: 0.3125rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.9375rem;
}
.qa-list__title span::before,
.qa-list__title span::after {
  background-color: #231815;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 13px;
}
@media screen and (max-width: 767px) {
  .qa-list__title span::before,
  .qa-list__title span::after {
    right: 8px;
  }
}
.qa-list__title span::after {
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.qa-list__title.is-open span::after {
  transform: rotate(0);
}

.qa-list__content {
  border-top: 1px solid #0d4389;
  display: none;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7777777778;
  padding: 1.375rem 0 1.875rem 3.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa-list__content {
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 0.75rem 0 0.75rem 3.375rem;
  }
}
.qa-list__content::before {
  background: url(../img/qa-a-icon.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 1.9375rem;
  left: 0.3125rem;
  position: absolute;
  top: 1.4375rem;
  width: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .qa-list__content::before {
    top: 0.75rem;
  }
}
.qa-list__content a {
  color: #0000EE;
  text-decoration: underline;
}
@media (hover: hover) {
  .qa-list__content a:hover {
    text-decoration: none;
  }
}

.qa-list__subtext {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .qa-list__subtext {
    font-size: 0.75rem;
    line-height: 1.5833333333;
  }
}

.qa-list__items {
  display: flex;
}
@media screen and (max-width: 767px) {
  .qa-list__items {
    display: block;
  }
}

.qa-list__item {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7777777778;
  padding-left: 1.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa-list__item {
    font-size: 0.875rem;
    line-height: 1.2857142857;
    padding-left: 0.75rem;
  }
}
.qa-list__item:not(:first-child) {
  margin-left: 4.375rem;
}
@media screen and (max-width: 767px) {
  .qa-list__item:not(:first-child) {
    margin-left: 0;
  }
}
.qa-list__item::before {
  border-radius: 2px;
  content: "";
  display: inline-block;
  height: 0.75rem;
  left: 0;
  position: absolute;
  top: 0.625rem;
  width: 0.75rem;
}
@media screen and (max-width: 767px) {
  .qa-list__item::before {
    border-radius: 1px;
    height: 0.4375rem;
    top: 0.25rem;
    width: 0.4375rem;
  }
}
.qa-list__item--icon-red::before {
  background-color: #e60012;
}
.qa-list__item--icon-blue::before {
  background-color: #0d4389;
}

.select {
  overflow: hidden;
}

.select__title {
  margin-inline: auto;
  max-width: 376px;
  width: 19.5833333vw;
}
@media screen and (max-width: 767px) {
  .select__title {
    max-width: 210px;
    width: 100%;
  }
}

.select__container {
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .select__container {
    margin-top: 2.5rem;
  }
}

.serach {
  background: url(../img/serch-bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .serach {
    background: url(../img/serch-bg-sp.png) no-repeat center center/cover;
    left: 50%;
    padding-block: 3.75rem 1.25rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 94.6666666%;
    z-index: 999999;
  }
}

.serach__inner {
  margin-inline: auto;
  max-width: 950px;
  padding-inline: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .serach__inner {
    padding-inline: 10px;
  }
}

.serach__title {
  margin-inline: auto;
  max-width: 530px;
  width: 27.604167vw;
}
@media screen and (max-width: 767px) {
  .serach__title {
    max-width: 281px;
    width: 100%;
  }
}

.serach__content {
  background-color: #fff;
  border-radius: 15px;
  margin-top: 1.6875rem;
  padding: 1.875rem 2.125rem 2.3125rem;
}
@media screen and (max-width: 767px) {
  .serach__content {
    padding: 1.125rem 0.5rem;
  }
}

.service__title {
  margin-inline: auto;
  max-width: 864px;
  width: 45vw;
}
@media screen and (max-width: 767px) {
  .service__title {
    max-width: 287px;
    width: 100%;
  }
}

.service__text {
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 1.8125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__text {
    font-size: 1rem;
    margin-top: 1.75rem;
  }
}
.service__text--red, .service__text--blue {
  border-radius: 3px;
  color: #fff;
  margin-inline: 0.375rem;
  padding: 0.4375rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .service__text--red, .service__text--blue {
    padding: 0.25rem 0.3125rem;
  }
}
.service__text--red {
  background-color: #e60012;
}
.service__text--blue {
  background-color: #0d4389;
}

.service-table {
  border: none;
  border-spacing: 0;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .service-table {
    margin-top: 0.8125rem;
  }
}
.service-table tr {
  border: 0;
}
.service-table tr:first-child th:first-child {
  background-color: transparent;
  border: 0;
  width: 16%;
}
@media screen and (max-width: 767px) {
  .service-table tr:first-child th:first-child {
    width: 7%;
  }
}
.service-table tr:nth-child(2) th {
  border-radius: 15px 0 0 0;
  border-top: 2px solid #231815;
}
@media screen and (max-width: 767px) {
  .service-table tr:nth-child(2) th {
    border-radius: 6px 0 0 0;
    border-top: 1px solid #231815;
  }
}
.service-table tr:last-child th {
  border-bottom: 2px solid #231815;
  border-radius: 0 0 0 15px;
}
@media screen and (max-width: 767px) {
  .service-table tr:last-child th {
    border-bottom: 1px solid #231815;
    border-radius: 0 0 0 6px;
  }
}
.service-table tr:last-child td:last-child {
  border-radius: 0 0 15px 0;
}
@media screen and (max-width: 767px) {
  .service-table tr:last-child td:last-child {
    border-radius: 0 0 6px 0;
  }
}
.service-table tr:nth-child(odd) td:nth-child(2) {
  background-color: #FCE5E7;
}
.service-table tr:nth-child(odd) td:nth-child(3) {
  background-color: #E7ECF3;
}
.service-table th,
.service-table td {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .service-table tr {
    writing-mode: vertical-rl;
  }
}
.service-table th:first-child {
  background-color: #595757;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #231815;
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4736842105;
  padding-block: 1.25rem;
}
@media screen and (max-width: 767px) {
  .service-table th:first-child {
    border-bottom: 1px solid #fff;
    border-left: 1px solid #231815;
    font-size: 0.75rem;
    letter-spacing: 0.025em;
    line-height: 1.2;
    min-height: 160px;
    padding-block: 0.3125rem;
    padding-inline: 0;
  }
}
.service-table th:first-child span {
  display: block;
}
@media screen and (max-width: 767px) {
  .service-table th:first-child span {
    display: inline-block;
    line-height: 2;
    writing-mode: vertical-rl;
  }
}
.service-table td {
  border-bottom: 2px solid #231815;
  border-right: 2px solid #231815;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5555555556;
  padding: 1.25rem;
  width: 42%;
}
@media screen and (max-width: 767px) {
  .service-table td {
    border-bottom: 1px solid #231815;
    border-right: 1px solid #231815;
    font-size: 0.75rem;
    line-height: 1.3333333333;
    padding: 0.625rem;
    width: 46.5%;
  }
}
.service-table .service-table__main-header {
  border-left: none;
  border-radius: 15px 15px 0 0;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  padding-block: 1.25rem;
}
@media screen and (max-width: 767px) {
  .service-table .service-table__main-header {
    border-radius: 13px 13px 0 0;
    font-size: 0.9375rem;
    padding-block: 1.125rem 0.8125rem;
  }
}
.service-table .service-table__main-header--red {
  background-color: #e60012;
}
.service-table .service-table__main-header--blue {
  background-color: #0d4389;
}
.service-table .service-table__main-header .service-table__strong {
  display: inline-block;
  font-size: 2.1875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .service-table .service-table__main-header .service-table__strong {
    font-size: 1.5625rem;
  }
}
.service-table .service-table__text-yellow {
  color: #ffe900;
}
.service-table .service-table__text-red {
  color: #e60012;
}
.service-table .service-table__text-blue {
  color: #0d4389;
}

.service-table__text-mt-adjust {
  display: inline-block;
  margin-top: 10px;
}

.service-table__lists {
  display: grid;
  gap: 1.5625rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .service-table__lists {
    gap: 0.625rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.service-table__lists--red .service-table__list::before {
  background-color: #e60012;
}
.service-table__lists--blue .service-table__list::before {
  background-color: #0d4389;
}

.service-table__list {
  padding-left: 1.375rem;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .service-table__list {
    padding-left: 0.9375rem;
  }
}
.service-table__list::before {
  -webkit-mask: url(../img/service-table-block-icon.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 0.875rem;
  left: 0;
  mask: url(../img/service-table-block-icon.svg) no-repeat center center/contain;
  position: absolute;
  top: 0.375rem;
  width: 0.875rem;
}
@media screen and (max-width: 767px) {
  .service-table__list::before {
    height: 0.5625rem;
    top: 0.1875rem;
    width: 0.5625rem;
  }
}
.service-table__list span {
  font-weight: 700;
}

.step {
  background-color: #FFFBCC;
}

.step__inner {
  margin-inline: auto;
  max-width: 950px;
  padding-inline: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .step__inner {
    max-width: 400px;
    padding-inline: 10px;
  }
}

.step__title {
  margin-inline: auto;
  max-width: 37.3125rem;
  width: 31.145833vw;
}
@media screen and (max-width: 767px) {
  .step__title {
    max-width: 20.875rem;
    width: 100%;
  }
}

.step__lists {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .step__lists {
    margin-top: 2.3125rem;
  }
}

.step-list {
  background-color: #fff;
  border: 3px solid #0d4389;
  border-radius: 7px;
  padding-left: 16.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step-list {
    padding-left: 5.5625rem;
  }
}
.step-list:not(:first-child) {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .step-list:not(:first-child) {
    margin-top: 1.6875rem;
  }
}
.step-list::before {
  border-radius: 5px;
  content: "";
  display: block;
  height: 102%;
  left: -1px;
  position: absolute;
  top: -1px;
  width: 100%;
}
.step-list:nth-child(1)::before {
  background: url(../img/step-list01.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .step-list:nth-child(1)::before {
    background: url(../img/step-list01-sp.svg) no-repeat center center/cover;
  }
}
.step-list:nth-child(2)::before {
  background: url(../img/step-list02.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .step-list:nth-child(2)::before {
    background: url(../img/step-list02-sp.svg) no-repeat center center/cover;
  }
}
.step-list:nth-child(3)::before {
  background: url(../img/step-list03.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .step-list:nth-child(3)::before {
    background: url(../img/step-list03-sp.svg) no-repeat center center/cover;
  }
}
.step-list:not(:last-child)::after {
  background: url(../img/step-list-under-triangle.svg) no-repeat center center/cover;
  bottom: -1.0625rem;
  content: "";
  display: block;
  height: 1.0625rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 2.875rem;
}

.step-list__title {
  color: #0d4389;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  padding: 0.25rem 0 0.25rem 3.4375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step-list__title {
    font-size: 1.125rem;
    padding: 0.125rem 0 0.125rem 1.625rem;
  }
}
.step-list__title::after {
  background: url(../img/step-list-dot-border.svg) no-repeat center center/contain;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .step-list__title::after {
    background: url(../img/step-list-dot-border-sp.svg) no-repeat center center/contain;
  }
}

.step-list__text {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.8095238095;
  padding: 0.25rem 0 0.25rem 3.4375rem;
}
@media screen and (max-width: 767px) {
  .step-list__text {
    font-size: 0.875rem;
    padding: 0.125rem 0 0.125rem 1.625rem;
  }
}

.step-list__items {
  padding: 0.25rem 0 0.25rem 3.4375rem;
}
@media screen and (max-width: 767px) {
  .step-list__items {
    padding: 0.125rem 0 0.125rem 1.625rem;
  }
}

.step-list-item {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.8095238095;
  padding-left: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step-list-item {
    font-size: 0.875rem;
    line-height: 1.5;
    padding-left: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .step-list-item:not(:first-child) {
    margin-top: 0.625rem;
  }
}
.step-list-item::before {
  border-radius: 2px;
  content: "";
  display: block;
  height: 1.0625rem;
  left: 0;
  position: absolute;
  top: 0.5625rem;
  width: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .step-list-item::before {
    top: 0.1875rem;
  }
}
.step-list-item--icon-red::before {
  background-color: #e60012;
}
.step-list-item--icon-blue::before {
  background-color: #0d4389;
}

.step-list-item__title {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .step-list-item__title {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .step-list-item__text {
    margin-left: -1.5625rem;
  }
}

.step-list-item__subtext {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .step-list-item__subtext {
    font-size: 0.75rem;
    margin-left: -1.5625rem;
  }
}

.user {
  overflow: hidden;
}

.user__title {
  margin-inline: auto;
  max-width: 860px;
  width: 44.739583333vw;
}
@media screen and (max-width: 767px) {
  .user__title {
    max-width: 22.1875rem;
    width: 100%;
  }
}

.user__container {
  margin-inline: auto;
  margin-top: 3.75rem;
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .user__container {
    margin-top: 2.375rem;
    padding-inline: 0.625rem;
  }
}

.worry {
  padding-block: 9.375rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .worry {
    padding-block: 3.5rem 0;
  }
}


.worry__inner {
  margin-inline: auto;
  max-width: 1050px;
  padding-inline: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .worry__inner {
    max-width: 400px;
    padding-inline: 10px;
  }
}

.worry__block {
  display: flex;
  flex-direction: column-reverse;
}

.worry__title {
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .worry__title {
    font-size: 1.25rem;
    margin-top: 1.875rem;
  }
}
.worry__title span {
  background-image: radial-gradient(circle at center, #e60012 20%, transparent 20%);
  /* 点の色とサイズ調整 */
  background-position: top center;
  /* 点の位置 */
  background-repeat: repeat-x;
  /* 横方向に繰り返し */
  background-size: 1em 0.3em;
  color: #e60012;
  /* 点の間隔とサイズ調整 */
  padding-top: 0.4em;
  /* 縦方向の位置調整 */
}

.worry__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -1.75rem;
}
@media screen and (max-width: 767px) {
  .worry__lists {
    display: block;
    margin-top: 0;
  }
}

.worry-list {
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-top: 1.75rem;
  min-height: 6.6875rem;
  padding: 1.125rem 0.9375rem 1.125rem 8.5rem;
  position: relative;
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1025px) {
  .worry-list {
    padding: 1.125rem 0.9375rem 1.125rem 13%;
  }
}
@media screen and (max-width: 767px) {
  .worry-list {
    font-size: 1rem;
    margin-top: 0;
    min-height: 4.9375rem;
    padding: 1.125rem 0.9375rem 1.125rem 6.375rem;
    width: 100%;
  }
}
.worry-list:nth-child(even) {
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .worry-list:nth-child(even) {
    margin-left: 0;
  }
}
.worry-list span:not(.worry-list__adjust) {
  color: #e60012;
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .worry-list span:not(.worry-list__adjust) {
    font-size: 1.3125rem;
  }
}
.worry-list::before {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.worry-list--01::before {
  background: url(../img/worry-list01.svg) no-repeat center center/contain;
}
.worry-list--02::before {
  background: url(../img/worry-list02.svg) no-repeat center center/contain;
}
.worry-list--03::before {
  background: url(../img/worry-list03.svg) no-repeat center center/contain;
}
.worry-list--04::before {
  background: url(../img/worry-list04.svg) no-repeat center center/contain;
}
.worry-list--05::before {
  background: url(../img/worry-list05.svg) no-repeat center center/contain;
}
.worry-list span.worry-list__adjust {
  display: inline-block;
  margin-top: 0.4375rem;
}

.worry-bottom {
  margin-top: -6.875rem;
  padding-block: 14.125rem 4.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .worry-bottom {
    margin-top: -0.375rem;
    padding-block: 4.1875rem 2.5625rem;
  }
}
.worry-bottom::before {
  background: url(../img/worry-stripe-border-bg.png) no-repeat center center/100% 100%;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin-inline: calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .worry-bottom::before {
    background: url(../img/worry-stripe-border-bg-sp.png) no-repeat center center/100% 100%;
  }
}

.worry-bottom__title {
  margin-inline: auto;
  max-width: 569px;
  width: 29.5833333vw;
}
@media screen and (max-width: 767px) {
  .worry-bottom__title {
    max-width: 319px;
    width: 100%;
  }
}

.worry-bottom__content {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  margin-top: 1.25rem;
}

.worry-bottom__text {
  background-color: #fff;
  border-radius: 10px;
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8095238095;
  margin-right: -0.05em;
  padding: 5.9375rem 3.75rem 1.9375rem;
}
@media screen and (max-width: 767px) {
  .worry-bottom__text {
    font-size: 1rem;
    padding: 5.875rem 1.125rem 1.25rem;
  }
}

.worry-bottom__img {
  margin-bottom: -5.25rem;
  max-width: 474px;
  position: relative;
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .worry-bottom__img {
    margin-bottom: -6.3125rem;
    max-width: 331px;
  }
}

@media screen and (max-width: 415px) {
  .serach__title img {
    text-align: center;

}
  .serach__title img {
    height: auto;
    width: 75%;
    margin: -50px auto 0;
  }
  .serach__content {
    margin-top: 10px;
    padding: 0.5rem 0.5rem 1.125rem;
}


.form__radio-lists {
    gap: 0.6rem 1.0625rem;
}
select {
    padding: 0.5rem 0.625rem;
}

.modal__close {
    top: 0.65rem;
}



input[type=radio] + span:before {

    height: 1.3em;
    left: 0;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.3em;
}

input[type=radio]:checked + span:after {
     height: 0.75em;
    left: 0.31em;
    line-height: 1;
    width: 0.75em;
}


.form__content {
    max-height: 26rem;
}

.btn--red-large {
    padding: 8px 6.25rem 7px;
}





.form__select-lists {
    margin-top: 0.2rem;
}



}


/*# sourceMappingURL=sourcemaps/styles.css.map */
