@charset "UTF-8";

/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #3E3E3E;
}

.u-desktop {
  display: none;
}

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

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

html {
  font-size: 16px;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 4.0712468193vw;
  }
}

@media (min-width: 393px) {
  html {
    font-size: 16px;
  }
}

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

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

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

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

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

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

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

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

/* Natural flow and rhythm in articles by default */
article>*+* {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

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

.accordion__head {
  background-color: #375A7F;
  height: 40px;
  height: 2.5rem;
  width: 100%;
  line-height: 40px;
  line-height: 2.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.accordion__head::before {
  content: "";
  position: absolute;
  width: 13px;
  width: 0.8125rem;
  height: 1px;
  top: 19px;
  top: 1.1875rem;
  right: 12px;
  right: 0.75rem;
  background-color: #fff;
}

.accordion__head::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 13px;
  height: 0.8125rem;
  background-color: #fff;
  top: 13px;
  top: 0.8125rem;
  right: 18px;
  right: 1.125rem;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.accordion__head.is-active::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion__body {
  margin-top: 16px;
  margin-top: 1rem;
  display: none;
}

.accordion__body.is-active {
  display: block;
}

.accordion__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.accordion__item {
  width: calc(50% - 1.03125rem);
}

.accordion__item:nth-child(2n) {
  margin-left: 33px;
  margin-left: 2.0625rem;
}

.accordion__item:nth-child(n+3) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.accordion__img {
  width: 127px;
  width: 7.9375rem;
  margin-left: auto;
  margin-right: auto;
}

.accordion__name {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.accordion__address {
  margin-top: 9px;
  margin-top: 0.5625rem;
  color: #000;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.accordion__btn {
  color: #fff;
  display: block;
  border-radius: 1.625rem;
  text-align: center;
  width: 167px;
  width: 10.4375rem;
  height: 32px;
  height: 2rem;
  line-height: 32px;
  line-height: 2rem;
  background-color: #EF5A6F;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  -webkit-box-shadow: 0 0 0.4375rem rgba(0, 0, 0, .15);
  box-shadow: 0 0 0.4375rem rgba(0, 0, 0, .15);
  margin-left: auto;
  margin-right: auto;
  margin-top: 13px;
  margin-top: 0.8125rem;
  position: relative;
}

.accordion__btn::after {
  content: "";
  position: absolute;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background: url(../images/common/modal-arrow.webp) no-repeat center center/contain;
  right: 6px;
  right: 0.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 550px) {
  .accordion__btn::after {
    content: "";
    position: absolute;
    width: 0.9375rem;
    height: 0.9375rem;
    background: url(../images/common/modal-arrow.webp) no-repeat center center/contain;
    right: 0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .accordion__head::before {
    width: 1.125rem;
    height: 2px;
    top: 1.8125rem;
    right: 0.75rem;
  }

  .accordion__head::after {
    width: 2px;
    height: 1.125rem;
    top: 1.3125rem;
    right: 1.25rem;
  }
}

.before-after {
  background-color: #375A7F;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
}

.before-after__inner {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}

.before-after__box {
  border-radius: 0.3125rem;
  background-color: #fff;
  padding: 40px 21px 51px;
  padding: 2.5rem 1.3125rem 3.1875rem;
}

.before-after__title {
  text-align: center;
  color: #375A7F;
  position: relative;
  font-weight: 700;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.05em;
}

.before-after__title::after {
  content: "";
  position: absolute;
  width: 56px;
  width: 3.5rem;
  height: 3px;
  height: 0.1875rem;
  background-color: #375A7F;
  bottom: -12px;
  bottom: -0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.before-after__items {
  margin-top: 62px;
  margin-top: 3.875rem;
}

.before-after__item:not(:first-child) {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.before-after__labels {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.before-after__label {
  margin-right: 12px;
  margin-right: 0.75rem;
  background-color: #375A7F;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  border-radius: 0.1875rem;
  padding: 2px 5px;
  padding: 0.125rem 0.3125rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 550px) {
  .before-after__title {
    font-size: 2.3125rem;
  }

  .before-after__title::after {
    width: 5.25rem;
    height: 0.3125rem;
  }

  .before-after__label {
    font-size: 1.6875rem;
    padding: 0.25rem 0.4375rem;
  }
}

.campaign-section {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.campaign {
  background-color: #EDEADB;
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.campaign__inner {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}

.campaign__title {
  text-align: center;
}

.campaign__title span {
  display: inline-block;
  background-color: #375A7F;
  border-radius: 0.3125rem;
  height: 37px;
  height: 2.3125rem;
  line-height: 37px;
  line-height: 2.3125rem;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  padding-left: 9px;
  padding-left: 0.5625rem;
  padding-right: 5px;
  padding-right: 0.3125rem;
}

.campaign__box {
  border-radius: 0.625rem;
  background-color: #fff;
  padding: 41px 10px 35px;
  padding: 2.5625rem 0.625rem 2.1875rem;
  margin-top: -19px;
  margin-top: -1.1875rem;
}

.campaign__img {
  width: 335px;
  width: 20.9375rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 12px 13px 9px;
  padding: 0.75rem 0.8125rem 0.5625rem;
  border: 2px solid #4674A4;
  border: 0.125rem solid #4674A4;
}

.campaign__meta {
  margin-top: 27px;
  margin-top: 1.6875rem;
  color: #3E3E3E;
  font-weight: 600;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
}

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

.campaign__copy01 span {
  background-color: #375A7F;
  font-weight: 600;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  padding-left: 6px;
  padding-left: 0.375rem;
  padding-right: 6px;
  padding-right: 0.375rem;
  color: #fff;
  display: inline-block;
  margin-right: 7px;
  margin-right: 0.4375rem;
}

.campaign__copy02 {
  font-weight: 600;
  font-size: 23px;
  font-size: 1.4375rem;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.campaign__copy02 span.copy01 {
  position: relative;
  display: inline-block;
  z-index: 1;
  padding-left: 5px;
  padding-left: 0.3125rem;
}

.campaign__copy02 span.copy01::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  height: 0.4375rem;
  background-color: #FFC436;
  left: 0;
  bottom: 3px;
  bottom: 0.1875rem;
  z-index: -1;
}

.campaign__copy02 span.copy02 {
  background-image: radial-gradient(circle at center, #000 10%, transparent 10%);
  /* 点の色とサイズ調整 */
  background-position: top right;
  /* 点の位置 */
  background-repeat: repeat-x;
  /* 横方向に繰り返し */
  background-size: 1em 0.3em;
  /* 点の間隔とサイズ調整 */
  padding-top: 0.05em;
  /* 縦方向の位置調整 */
}

.campaign__box01 {
  margin-top: 17px;
  margin-top: 1.0625rem;
  border-radius: 0.5rem;
  background-color: #4674A4;
  padding: 10px;
  padding: 0.625rem;
}

.campaign__copy03 {
  width: 180px;
  width: 11.25rem;
  height: 27px;
  height: 1.6875rem;
  line-height: 27px;
  line-height: 1.6875rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: #fff;
  font-weight: 700;
  color: #375A7F;
  font-size: 16px;
  font-size: 1rem;
}

.campaign__plus {
  margin-top: 5px;
  margin-top: 0.3125rem;
  width: 15px;
  width: 0.9375rem;
  margin-left: auto;
  margin-right: auto;
}

.campaign__img-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.campaign__img-item {
  width: calc(33.33333% - 0.5rem);
}

.campaign__img-item:not(:first-child) {
  margin-left: 12px;
  margin-left: 0.75rem;
}

.campaign__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.campaign__label {
  text-align: center;
  width: calc(33.33333% - 0.5rem);
  position: relative;
}

.campaign__label span {
  display: inline-block;
  background-color: #fff;
  width: 97px;
  width: 6.0625rem;
  height: 26px;
  height: 1.625rem;
  text-align: center;
  line-height: 26px;
  line-height: 1.625rem;
  color: #375A7F;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}

.campaign__label:not(:first-child) {
  margin-left: 12px;
  margin-left: 0.75rem;
}

.campaign__label:not(:first-child)::before {
  content: "";
  position: absolute;
  width: 10px;
  width: 0.625rem;
  height: 22px;
  height: 1.375rem;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -12px;
  left: -0.75rem;
  background: url(../images/common/campaign__label-before.webp) no-repeat center center/contain;
}

.campaign__copy04 {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 28px;
  font-size: 1.75rem;
}

.campaign__copy04 span {
  background-image: radial-gradient(circle at center, #000 10%, transparent 10%);
  /* 点の色とサイズ調整 */
  background-position: top right;
  /* 点の位置 */
  background-repeat: repeat-x;
  /* 横方向に繰り返し */
  background-size: 1em 0.3em;
  /* 点の間隔とサイズ調整 */
  padding-top: 0.1em;
  /* 縦方向の位置調整 */
}

.campaign__bnr {
  margin-top: 3px;
  margin-top: 0.1875rem;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}

.campaign__arrow {
  width: 86px;
  width: 5.375rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 9px;
  margin-top: 0.5625rem;
}

@media screen and (min-width: 550px) {
  .campaign__title span {
    font-size: 1.6875rem;
    height: 3.4375rem;
    line-height: 3.4375rem;
  }

  .campaign__copy01 span {
    font-size: 2.0625rem;
  }

  .campaign__meta {
    font-size: 2.0625rem;
  }

  .campaign__copy02 {
    font-size: 2.0625rem;
  }

  .campaign__copy02 span.copy01::after {
    height: 0.6875rem;
  }

  .campaign__copy03 {
    font-size: 1.5rem;
    width: 15rem;
    height: 2.4375rem;
    line-height: 2.4375rem;
  }

  .campaign__box {
    margin-top: -1.6875rem;
  }

  .campaign__plus {
    width: 1.3125rem;
    margin-top: 0.5rem;
  }

  .campaign__label span {
    font-size: 1.5rem;
    width: 9.375rem;
    height: 2.25rem;
    line-height: 2.25rem;
  }

  .campaign__label:not(:first-child)::before {
    width: 0.9375rem;
    height: 2.0625rem;
  }

  .campaign__arrow {
    width: 8.0625rem;
  }

  .campaign__copy04 {
    font-size: 2.625rem;
  }
}

.cause {
  padding: 60px 0;
  padding: 3.75rem 0;
  background-color: #EDEADB;
}

.cause__inner {
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-right: 12px;
  padding-right: 0.75rem;
}

.cause__title {
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1.3636363636;
  text-align: center;
}

.cause__title span {
  position: relative;
  z-index: 1;
}

.cause__title span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  height: 0.625rem;
  background-color: rgba(239, 90, 111, .95);
  z-index: -1;
  left: 0;
  bottom: 0;
}

.cause__lists {
  margin-top: 33px;
  margin-top: 2.0625rem;
  border-radius: 0.3125rem;
  background-color: #fff;
  padding: 35px 44px;
  padding: 2.1875rem 2.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cause__list {
  width: calc(50% - 1.59375rem);
}

.cause__list:nth-child(n+3) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.cause__list:nth-child(2n) {
  margin-left: 51px;
  margin-left: 3.1875rem;
}

.cause__list:last-child {
  width: 100%;
  margin-left: 0;
  text-align: center;
}

.cause__list:last-child img {
  display: inline-block;
  width: calc(50% - 1.59375rem);
}

.cause__head {
  color: #000;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1.3571428571;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-align: center;
  white-space: nowrap;
}

.cause__copy01 {
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.cause__items {
  margin-top: 26px;
  margin-top: 1.625rem;
  border-radius: 0.3125rem;
  background-color: #A6A5A5;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  width: 232px;
  width: 14.5rem;
  margin-left: auto;
  margin-right: auto;
}

.cause__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 154px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cause__item:not(:first-child) {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.cause__number {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
}

.cause__sub-head {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  margin-left: 11px;
  margin-left: 0.6875rem;
}

.cause__copy02 {
  margin-top: 19px;
  margin-top: 1.1875rem;
  line-height: 49px;
  line-height: 3.0625rem;
  margin-left: auto;
  margin-right: auto;
  width: 209px;
  width: 13.0625rem;
  height: 65px;
  height: 4.0625rem;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
  background: url(../images/common/course-sankaku.webp) no-repeat center center/contain;
}

.cause__labels {
  margin-top: 17px;
  margin-top: 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cause__label {
  background-color: #A6A5A5;
  border-radius: 0.125rem;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  width: 72px;
  width: 4.5rem;
  height: 30px;
  height: 1.875rem;
  line-height: 30px;
  line-height: 1.875rem;
  text-align: center;
  color: #fff;
}

.cause__label:not(:first-child) {
  margin-left: 10px;
  margin-left: 0.625rem;
}

.cause__copy03 {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

@media screen and (min-width: 550px) {
  .cause__title {
    font-size: 2.0625rem;
  }

  .cause__head {
    font-size: 1.3125rem;
  }

  .cause__copy01 {
    font-size: 1.875rem;
  }

  .cause__number {
    font-size: 1.6875rem;
  }

  .cause__sub-head {
    font-size: 1.6875rem;
  }

  .cause__items {
    width: 21.75rem;
  }

  .cause__item {
    width: 14.4375rem;
  }

  .cause__copy02 {
    width: 18.75rem;
    font-size: 1.6875rem;
  }

  .cause__label {
    width: 6.75rem;
    height: 2.8125rem;
    line-height: 2.8125rem;
  }

  .cause__copy03 {
    font-size: 1.875rem;
  }
}

.common-btn__copy {
  text-align: center;
  color: #3E3E3E;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
}

.common-btn__btn {
  text-align: center;
  margin-top: 3px;
  margin-top: 0.1875rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  display: block;
  width: 254px;
  width: 15.875rem;
  height: 42px;
  height: 2.625rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 42px;
  line-height: 2.625rem;
  background-color: #EF5A6F;
  border-radius: 1.625rem;
  -webkit-box-shadow: 0 0 0.4375rem rgba(0, 0, 0, .15);
  box-shadow: 0 0 0.4375rem rgba(0, 0, 0, .15);
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
}

.common-btn__btn::after {
  content: "";
  position: absolute;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  background: url(../images/common/modal-arrow.webp) no-repeat center center/contain;
  right: 12px;
  right: 0.75rem;
  top: 53%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*
.common-btn__btn a {
    display: inline-block;
    width: rem(254);
    height: rem(42);
    line-height: rem(42);
    background-color: #EF5A6F;
    border-radius: rem(26);
    box-shadow: 0 0 rem(7) rgba($color: #000000, $alpha: 0.15);
    font-weight: 700;
    color: #fff;
    font-size: rem(16);
    text-align: center;
}
*/
.common-btn__area {
  text-align: center;
  font-weight: 500;
  color: #3E3E3E;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (min-width: 550px) {
  .common-btn__copy {
    font-size: 1.3125rem;
  }

  .common-btn__btn {
    width: 23.8125rem;
    height: 3.9375rem;
    line-height: 3.9375rem;
    border-radius: 2.4375rem;
    font-size: 1.5rem;
    margin-top: 0.375rem;
    margin-bottom: 0.5rem;
  }

  .common-btn__area {
    font-size: 1.3125rem;
  }

  .common-btn__btn::after {
    width: 1.25rem;
    height: 1.25rem;
    right: 1.5rem;
  }
}

.effect {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 47px;
  padding-bottom: 2.9375rem;
  background-color: #375A7F;
}

.effect__copy01 {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
}

.effect__items {
  margin-top: 35px;
  margin-top: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.effect__item {
  width: 138px;
  width: 8.625rem;
}

.effect__item:not(:first-child) {
  margin-left: 18px;
  margin-left: 1.125rem;
}

.effect__label {
  margin-top: 16px;
  margin-top: 1rem;
  width: 114px;
  width: 7.125rem;
  height: 38px;
  height: 2.375rem;
  line-height: 38px;
  line-height: 2.375rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0.3125rem;
  background-color: #fff;
  font-weight: 700;
  color: #375A7F;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
}

.effect__copy02 {
  margin-top: 19px;
  margin-top: 1.1875rem;
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.05em;
}

.effect__box {
  margin-top: 27px;
  margin-top: 1.6875rem;
  border-top: 5px solid #FFC436;
  border-top: 0.3125rem solid #FFC436;
}

.effect__arrow {
  width: 188px;
  width: 11.75rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: -2px;
  margin-top: -0.125rem;
}

.effect__lists {
  margin-top: 27px;
  margin-top: 1.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.effect__list {
  width: 162px;
  width: 10.125rem;
}

.effect__list:not(:first-child) {
  margin-left: 26px;
  margin-left: 1.625rem;
}

.effect__label01 {
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
}

.effect__list img {
  margin-top: 11px;
  margin-top: 0.6875rem;
}

.effect__copy03 {
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 35px;
  font-size: 2.1875rem;
  letter-spacing: 0.05em;
}

.effect__copy03 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top: 14px;
  margin-top: 0.875rem;
}

.effect__copy03 span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 13px;
  height: 0.8125rem;
  background-color: #FFC436;
  left: 0;
  bottom: 4px;
  bottom: 0.25rem;
  z-index: -1;
}

.effect__copy04 {
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  text-align: center;
  color: #fff;
}

.effect__copy04 span {
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 550px) {
  .effect__copy01 {
    font-size: 2.0625rem;
  }

  .effect__item {
    width: 12.9375rem;
  }

  .effect__label {
    width: 10.6875rem;
    height: 3.5625rem;
    line-height: 3.5625rem;
    font-size: 2.0625rem;
  }

  .effect__copy02 {
    font-size: 2.3125rem;
  }

  .effect__box {
    border-top: 0.4375rem solid #FFC436;
  }

  .effect__arrow {
    width: 17.625rem;
  }

  .effect__label01 {
    font-size: 1.6875rem;
  }

  .effect__list {
    width: 15.1875rem;
  }

  .effect__copy03 {
    font-size: 3.25rem;
  }

  .effect__copy04 {
    font-size: 2.0625rem;
  }
}

.faq-accordion__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding-left: 15px;
  padding-left: 0.9375rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding-top: 6px;
  padding-top: 0.375rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  cursor: pointer;
  padding-right: 33px;
  padding-right: 2.0625rem;
  position: relative;
}

.faq-accordion__head::before {
  content: "";
  position: absolute;
  width: 13px;
  width: 0.8125rem;
  height: 1px;
  background-color: #375A7F;
  right: 12px;
  right: 0.75rem;
  top: 19px;
  top: 1.1875rem;
}

.faq-accordion__head::after {
  content: "";
  position: absolute;
  height: 13px;
  height: 0.8125rem;
  width: 1px;
  background-color: #375A7F;
  right: 18px;
  right: 1.125rem;
  top: 13px;
  top: 0.8125rem;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.faq-accordion__head.is-active::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faq-accordion__head svg {
  width: 37px;
  width: 2.3125rem;
}

.faq-accordion__head span {
  color: #375A7F;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  margin-left: 4px;
  margin-left: 0.25rem;
}

.faq-accordion__body {
  margin-top: 14px;
  margin-top: 0.875rem;
  display: none;
}

.faq-accordion__body-in {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  width: 348px;
  width: 21.75rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 550px) {
  .faq-accordion__head::before {
    top: 1.6875rem;
    width: 1.125rem;
    height: 2px;
  }

  .faq-accordion__head::after {
    top: 1.1875rem;
    right: 1.25rem;
    width: 2px;
    height: 1.125rem;
  }
}

.faq {
  background-color: #F8F8F3;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.faq__inner {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}

.faq__title {
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.05em;
}

.faq__items {
  margin-top: 55px;
  margin-top: 3.4375rem;
}

.faq__item:not(:first-child) {
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 550px) {
  .faq__title {
    font-size: 2.4375rem;
  }

  .faq-accordion__head span {
    font-size: 1.6875rem;
  }

  .faq-accordion__body-in {
    font-size: 1.5rem;
    width: 32.625rem;
    max-width: 100%;
  }

  .faq-accordion__head svg {
    width: 3.4375rem;
    height: 1.375rem;
  }
}

.flow-block__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flow-block__number {
  width: 71px;
  width: 4.4375rem;
  height: 25px;
  height: 1.5625rem;
  background-color: #fff;
  line-height: 25px;
  line-height: 1.5625rem;
  text-align: center;
  font-weight: 700;
  color: #375A7F;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.flow-block__head {
  margin-left: 10px;
  margin-left: 0.625rem;
  width: calc(100% - 5.0625rem);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.flow-block__box {
  margin-top: 22px;
  margin-top: 1.375rem;
  padding-left: 31px;
  padding-left: 1.9375rem;
  border-left: 1px solid #fff;
  width: 293px;
  width: 18.3125rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.flow-block__explain {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 17px;
  margin-top: 1.0625rem;
}

@media screen and (min-width: 550px) {
  .flow__inner {
    padding-left: 2.8125rem;
    padding-right: 2.8125rem;
  }

  .flow-block__number {
    width: 6.625rem;
    height: 2.3125rem;
    line-height: 2.3125rem;
    font-size: 1.6875rem;
  }

  .flow-block__head {
    font-size: 1.875rem;
  }

  .flow-block__box {
    width: 27.5rem;
  }

  .flow-block__explain {
    font-size: 1.6875rem;
  }
}

.flow {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 87px;
  padding-bottom: 5.4375rem;
  background-color: #4674A4;
}

.flow__inner {
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}

.flow__title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
}

.flow__items {
  margin-top: 80px;
  margin-top: 5rem;
}

.flow__item:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 550px) {
  .flow__title {
    font-size: 2.8125rem;
  }
}

.header {
  width: 100%;
  height: 68px;
  height: 4.25rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
  box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 19px;
  padding-left: 1.1875rem;
  padding-right: 8px;
  padding-right: 0.5rem;
}

.header__logo {
  width: 95px;
  width: 5.9375rem;
  margin-top: 10px;
}

.header__logo a {
  display: block;
}

.header__logo a svg {
  width: 100%;
}

.header__btn {
  width: 199px;
  width: 10.4375rem;
  height: 52px;
  height: 3.25rem;
  line-height: 52px;
  line-height: 3.25rem;
  border-radius: 0.25rem;
  background-color: #375A7F;
  margin-left: auto;
  padding-left: 21px;
  padding-left: 1.9125rem;
  display: block;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  position: relative;
  cursor: pointer;
}

/*
.header__btn a {
    display: block;
    font-weight: 500;
    font-size: rem(14);
    color: #fff;
    position: relative;
}
*/
.header__btn img {
  width: 27px;
  width: 1.15rem;
  position: absolute;
  right: 5px;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 550px) {
  .header {
    width: 37.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .inner {
    max-width: 443px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.main-view {
  margin-top: 82px;
  margin-top: 5.125rem;
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
}

.main-view__labels {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-view__label {
  display: inline-block;
  background-color: #ADADAD;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  padding-left: 9px;
  padding-left: 0.5625rem;
  padding-right: 9px;
  padding-right: 0.5625rem;
  padding-top: 3px;
  padding-top: 0.1875rem;
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
}

.main-view__label:nth-child(2),
.main-view__label:nth-child(3),
.main-view__label:nth-child(5) {
  padding-left: 13px;
  padding-left: 0.8125rem;
  padding-right: 13px;
  padding-right: 0.8125rem;
}

.main-view__copy01 {
  margin-top: 9px;
  margin-top: 0.5625rem;
}

.main-view__copy01 span {
  display: inline-block;
  background-color: #375A7F;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 6px;
  padding-right: 0.375rem;
  padding-top: 2px;
  padding-top: 0.125rem;
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
}

.main-view__copy01 span:not(:first-child) {
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.main-view__copy01 span span {
  padding: 0;
  color: #FFC436;
  font-size: 21px;
  font-size: 1.3125rem;
  position: relative;
  top: 1px;
  top: 0.0625rem;
  margin-right: 2px;
  margin-right: 0.125rem;
  background-image: radial-gradient(circle at center, #fff 10%, transparent 10%);
  /* 点の色とサイズ調整 */
  background-position: top right;
  /* 点の位置 */
  background-repeat: repeat-x;
  /* 横方向に繰り返し */
  background-size: 1em 0.3em;
  /* 点の間隔とサイズ調整 */
  padding-top: 0.05em;
  /* 縦方向の位置調整 */
}

.main-view__copy01 span span strong {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
}

.main-view__copy02 {
  color: #375A7F;
  font-weight: 700;
  font-size: 39px;
  font-size: 2.4375rem;
  display: inline-block;
  background-color: #fff;
  padding-left: 4px;
  padding-left: 0.25rem;
  padding-right: 9px;
  padding-right: 0.5625rem;
  margin-left: 4px;
  margin-left: 0.25rem;
  position: relative;
  z-index: 1;
}

.main-view__copy02 span {
  font-size: 30px;
  font-size: 1.875rem;
  margin-left: 2px;
  margin-left: 0.125rem;
  margin-right: 2px;
  margin-right: 0.125rem;
}

.main-view__img {
  margin-top: -27px;
  margin-top: -1.6875rem;
}

/*
.main-view__img::before {
    content: "";
	display: block;
	padding-top: calc(257 / 393 * 100%);
}
.main-view__img img {
    -o-object-position: center;
	height: auto;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}
*/
.main-view__box {
  margin-top: -16px;
  margin-top: -1rem;
  padding-top: 14px;
  padding-bottom: 23px;
  padding-bottom: 1.4375rem;
  background: url(../images/common/main-view__box-bg.webp) no-repeat center center/cover;
}

.main-view__copy03 {
  width: 328px;
  width: 20.5rem;
}

.main-view__copy03 span {
  background-color: #F8F8F3;
  padding-left: 7px;
  padding-left: 0.4375rem;
  padding-right: 11px;
  padding-right: 0.6875rem;
  color: #3E3E3E;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  padding-top: 1px;
  padding-top: 0.0625rem;
  padding-bottom: 1px;
  padding-bottom: 0.0625rem;
  display: inline-block;
}

.main-view__copy03 span:not(:first-child) {
  margin-top: 9px;
  margin-top: 0.5625rem;
  white-space: nowrap;
}

.main-view__copy03 span span {
  font-size: 22px;
  font-size: 1.375rem;
  padding: 0;
  background-color: transparent;
}

.main-view__copy04 {
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-left: 9px;
  margin-left: 0.5625rem;
}

.main-view__copy04 span {
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  border-bottom: 1px solid #fff;
  display: inline-block;
}

.main-view__copy04 span:not(:first-child) {
  margin-left: 13px;
  margin-left: 0.8125rem;
}

.main-view__copy05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  color: #fff;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  margin-top: 11px;
  margin-top: 0.6875rem;
  margin-left: 9px;
  margin-left: 0.5625rem;
}

.main-view__copy05 span {
  font-weight: 700;
  color: #4674A4;
  font-size: 36px;
  font-size: 2.25rem;
  background-color: #fff;
  padding-left: 3px;
  padding-left: 0.1875rem;
  padding-right: 3px;
  padding-right: 0.1875rem;
  line-height: 1.2;
}

.main-view__copy05 span.mr {
  margin-right: 4px;
  margin-right: 0.25rem;
}

.main-view__copy06 {
  margin-left: 9px;
  margin-left: 0.5625rem;
}

.main-view__copy06 span {
  color: #fff;
  font-weight: 700;
  font-size: 45px;
  font-size: 2.8125rem;
  display: inline;
  position: relative;
  z-index: 1;
}

.main-view__copy06 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  height: 1.25rem;
  left: 0;
  bottom: 6px;
  bottom: 0.375rem;
  background-color: rgba(255, 196, 54, .95);
  z-index: -1;
}

 .main-view__copy02 .small {
    font-size: 2rem;
  }

  .main-view__copy02 .dot{
    position: relative;
    font-size: 2.5rem;
  }

  .main-view__copy02 .dot::before{
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #375A7F;
    position: absolute;
    top: 1px;
    left: 50%;
    /*transform: translate(50%,0);*/
  }

@media screen and (min-width: 550px) {
  .main-view__label {
    font-size: 1.875rem;
  }

  .main-view__copy01 span {
    font-size: 1.5625rem;
  }

  .main-view__copy01 span span {
    font-size: 1.875rem;
  }

  .main-view__copy01 span span strong {
    font-size: 2.25rem;
  }

  .main-view__copy02 {
    font-size: 3.5625rem;
  }



  .main-view__img img {
    height: 18.75rem;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .main-view__copy03 {
    width: 28.125rem;
  }

  .main-view__copy03 span {
    font-size: 1.6875rem;
  }

  .main-view__copy03 span span {
    font-size: 2.0625rem;
  }

  .main-view__copy04 span {
    font-size: 1.875rem;
  }

  .main-view__copy05 {
    font-size: 2.8125rem;
  }

  .main-view__copy05 span {
    font-size: 3.375rem;
  }

  .main-view__copy06 span {
    font-size: 4.1875rem;
  }

  .main-view__box {
    margin-top: -1.6875rem;
  }
}

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 299;
  background-color: rgba(0, 0, 0, .4);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: visibility 0.3s ease 0s, opacity 0.3s ease 0s;
}

.modal-bg.is-active {
  visibility: visible;
  opacity: 1;
}

.modal {
  width: 337px;
  width: 21.0625rem;
  height: 607px;
  height: 37.9375rem;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 300;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: visibility 0.3s ease 0s, opacity 0.3s ease 0s;
}

.modal.is-active {
  visibility: visible;
  opacity: 1;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  width: 3.375rem;
  cursor: pointer;
}

.modal__box {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal__copy {
  font-weight: 600;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
}

.modal__items {
  margin-top: 23px;
  margin-top: 1.4375rem;
  width: 258px;
  width: 16.125rem;
  margin-left: auto;
  margin-right: auto;
}

.modal__item:not(:first-child) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.modal__item a {
  display: block;
  background-color: #EF5A6F;
  width: 100%;
  height: 47px;
  height: 2.9375rem;
  line-height: 47px;
  line-height: 2.9375rem;
  text-align: center;
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, .15);
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, .15);
  border-radius: 2.375rem;
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
}

.modal__item a::after {
  content: "";
  position: absolute;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  background: url(../images/common/modal-arrow.webp) no-repeat center center/contain;
  right: 10px;
  right: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.reason-block__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.reason-block__number {
  width: 21px;
  width: 1.3125rem;
}

.reason-block__number svg {
  width: 21px;
  width: 1.3125rem;
  position: relative;
  top: 3px;
  top: 0.1875rem;
}

.reason-block__head {
  color: #EF5A6F;
  font-size: 18px;
  font-size: 1.125rem;
  margin-left: 12px;
  margin-left: 0.75rem;
}

.reason-block__box {
  padding-left: 29px;
  padding-left: 1.8125rem;
  border-left: 2px solid #3E3E3E;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.reason-block__box--04 {
  padding-top: 14px;
  padding-top: 0.875rem;
}

.reason-block__box--05 {
  padding-top: 35px;
  padding-top: 2.1875rem;
}

.reason-block__img {
  width: 121px;
  width: 7.5625rem;
  margin-left: auto;
  margin-right: auto;
}

.reason-block__img--04 {
  width: 250px;
  width: 15.625rem;
}

.reason-block__img--05 {
  width: 250px;
  width: 15.625rem;
}

.reason-block__explain {
  font-weight: 500;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 550px) {
  .reason-block__number {
    width: 1.875rem;
    top: 0.6875rem;
    position: relative;
  }

  .reason-block__number svg {
    width: 1.875rem;
    height: 2.5rem;
  }

  .reason-block__head {
    font-size: 1.6875rem;
  }

  .reason-block__img {
    width: 11.25rem;
  }

  .reason-block__explain {
    font-size: 1.5rem;
  }

  .reason-block__img--04 {
    width: 23.4375rem;
  }

  .reason-block__img--05 {
    width: 23.4375rem;
  }
}

.reason {
  padding-top: 84px;
  padding-top: 5.25rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  background-color: #A6A5A5;
}

.reason__inner {
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-right: 12px;
  padding-right: 0.75rem;
}

.reason__title {
  font-weight: 700;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: YuGothic, "Yu Gothic", sans-serif;
}

.reason__items {
  margin-top: 41px;
  margin-top: 2.5625rem;
  border-radius: 0.3125rem;
  background-color: #fff;
  padding: 52px 39px 50px 47px;
  padding: 3.25rem 2.4375rem 3.125rem 2.9375rem;
}

.reason__item:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
}

@media screen and (min-width: 550px) {
  .reason__title {
    font-size: 1.875rem;
  }
}

.reason01-block__number {
  background-color: #375A7F;
  text-align: center;
  width: 72px;
  width: 4.5rem;
  height: 30px;
  height: 1.875rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  margin-left: 22px;
  margin-left: 1.375rem;
  position: relative;
}

.reason01-block__box {
  -webkit-box-shadow: 0 0 0.375rem rgba(0, 0, 0, .11);
  box-shadow: 0 0 0.375rem rgba(0, 0, 0, .11);
  background-color: #fff;
  padding: 35px 23px;
  padding: 2.1875rem 1.4375rem;
  margin-top: -14px;
  margin-top: -0.875rem;
}

.reason01-block__head {
  color: #375A7F;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

.reason01-block__img {
  margin-top: 19px;
  margin-top: 1.1875rem;
}

.reason01-block__explain {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 17px;
  margin-top: 1.0625rem;
}

@media screen and (min-width: 550px) {
  .reason01-block__number {
    font-size: 1.875rem;
    width: 6.75rem;
    height: 2.8125rem;
    line-height: 2.8125rem;
  }

  .reason01-block__box {
    margin-top: -1.3125rem;
  }

  .reason01-block__head {
    font-size: 1.5rem;
  }

  .reason01-block__explain {
    font-size: 1.5rem;
  }
}

.reason01 {
  background-color: #fff;
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 75px;
  padding-bottom: 4.6875rem;
}

.reason01__inner {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}

.reason01__title {
  color: #375A7F;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3636363636;
}

.reason01__title .border {
  border-bottom: 1px solid #FFC436;
  display: inline-block;
}

.reason01__title span span {
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: 1;
  font-weight: 500;
}

.reason01__items {
  margin-top: 58px;
  margin-top: 3.625rem;
}

.reason01__item:not(:first-child) {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

@media screen and (min-width: 550px) {
  .reason01__title {
    font-size: 2.0625rem;
  }

  .reason01__title .border {
    border-bottom: 0.1875rem solid #FFC436;
  }
}

.store {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.store__inner {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}

.store__title {
  color: #375A7F;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  font-size: 1.625rem;
  letter-spacing: 0.05em;
}

.store__items {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.store__item:not(:first-child) {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

@media screen and (min-width: 550px) {
  .store__title {
    font-size: 2.4375rem;
  }

  .accordion__head {
    height: 3.75rem;
    line-height: 3.75rem;
    font-size: 1.6875rem;
  }

  .accordion__img {
    width: 11.875rem;
  }

  .accordion__name {
    font-size: 1.5rem;
  }

  .accordion__address {
    font-size: 1.3125rem;
  }

  .accordion__btn {
    width: 15.625rem;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.125rem;
  }
}

.suggestion__inner {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}

.suggestion__head {
  background-color: #EF5A6F;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 35px 28px;
  padding: 2.1875rem 1.75rem;
  white-space: nowrap;
  /*
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  */
}

.suggestion__head span {
  display: inline-block;
  border-bottom: 1px solid #fff;
}

.suggestion__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.suggestion__img {
  width: 99px;
  width: 6.1875rem;
}

.suggestion__text {
  margin-left: 22px;
  margin-left: 1.375rem;
  width: calc(100% - 7.5625rem);
  color: #000;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-family: YuGothic, "Yu Gothic", sans-serif;
}

.suggestion__text span {
  font-weight: 700;
}

.suggestion__copy01 {
  background-color: #375A7F;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 67px;
  height: 4.1875rem;
  line-height: 67px;
  line-height: 4.1875rem;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.suggestion__copy02 {
  margin-top: 40px;
  margin-top: 2.5rem;
  color: #000;
  line-height: 1.7;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}

.suggestion__copy02 .border {
  border-bottom: 2px solid #FFC436;
}

.suggestion__copy02 .blue {
  background-color: #375A7F;
  border-radius: 0.125rem;
  width: 167px;
  width: 10.4375rem;
  height: 29px;
  height: 1.8125rem;
  text-align: center;
  line-height: 29px;
  line-height: 1.8125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 20px;
  font-size: 1.25rem;
}

.suggestion__img01 {
  margin-top: 34px;
  margin-top: 2.125rem;
  width: 300px;
  width: 18.75rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.suggestion__explain {
  margin-top: 25px;
  margin-top: 1.5625rem;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-left: 8px;
  padding-left: 0.5rem;
  padding-right: 8px;
  padding-right: 0.5rem;
}

.suggestion__explain .bold {
  font-weight: 700;
}

.suggestion__explain .border {
  font-weight: 700;
  border-bottom: 2px solid #FFC436;
}

.suggestion__bnr {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 45px;
}

@media screen and (min-width: 550px) {
  .suggestion__head {
    font-size: 1.875rem;
  }

  .suggestion__text {
    font-size: 1.5rem;
  }

  .suggestion__copy01 {
    font-size: 1.875rem;
    width: 37.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .suggestion__copy02 {
    font-size: 1.875rem;
  }

  .suggestion__copy02 .blue {
    font-size: 1.875rem;
    width: 15.625rem;
    height: 2.75rem;
    line-height: 2.75rem;
    margin-right: 0.3125rem;
  }

  .suggestion__img01 {
    width: 28.125rem;
  }

  .suggestion__explain {
    font-size: 1.5rem;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #111;
  color: #fff;
}

.value {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  background-color: #FEF3E2;
}

.value__inner {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}

.value__copy01 {
  color: #EF5A6F;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.value__copy02 {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.value__copy02 .dot {
  background-image: radial-gradient(circle at center, #000 10%, transparent 10%);
  /* 点の色とサイズ調整 */
  background-position: top right;
  /* 点の位置 */
  background-repeat: repeat-x;
  /* 横方向に繰り返し */
  background-size: 1em 0.3em;
  /* 点の間隔とサイズ調整 */
  padding-top: 0.05em;
  /* 縦方向の位置調整 */
}

.value__copy02 .red {
  position: relative;
  z-index: 1;
}

.value__copy02 .red::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 9px;
  height: 0.5625rem;
  background-color: #EF5A6F;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.value__graph {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.value__explain {
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.value__explain span {
  font-weight: 700;
}

@media screen and (min-width: 550px) {
  .value__copy01 {
    font-size: 1.875rem;
  }

  .value__copy02 {
    font-size: 2.0625rem;
  }

  .value__explain {
    font-size: 1.4375rem;
  }
}

.voice {
  margin-top: -2px;
  margin-top: -0.125rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.voice__title span {
  display: block;
}

.voice__title--ja {
  color: #375A7F;
  font-weight: 700;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: -41px;
  margin-top: -2.5625rem;
}

.voice__items {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.voice__item:not(:first-child) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

@media screen and (min-width: 550px) {
  .voice__title--ja {
    font-size: 2.8125rem;
    margin-top: -3.75rem;
  }

  .voice__items {
    width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.worry {
  padding-top: 60px;
  padding-top: 3.75rem;
  background-color: #A6A5A5;
}

.worry__inner {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.worry__title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
}

.worry__items {
  margin-top: 43px;
  margin-top: 2.6875rem;
}

.worry__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.worry__item:not(:first-child) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.worry__item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.worry__img {
  width: 130px;
  width: 8.125rem;
}

.worry__ballon {
  width: 203px;
  width: 12.6875rem;
  background-color: #fff;
  border-radius: 0.3125rem;
  color: #3E3E3E;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  min-height: 75px;
  min-height: 4.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 11px;
  padding-left: 0.6875rem;
  padding-top: 9px;
  padding-top: 0.5625rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  line-height: 1.375;
  position: relative;
}

.worry__ballon--01 img {
  position: absolute;
  width: 25px;
  width: 1.5625rem;
  left: -14px;
  left: -0.875rem;
  bottom: 5px;
  bottom: 0.3125rem;
}

.worry__ballon--02 img {
  position: absolute;
  width: 25px;
  width: 1.5625rem;
  right: -14px;
  right: -0.875rem;
  bottom: 5px;
  bottom: 0.3125rem;
}

.worry__item:nth-child(2) .worry__ballon {
  padding-left: 33px;
  padding-left: 2.0625rem;
}

.worry__item:nth-child(3) .worry__ballon {
  padding-left: 22px;
  padding-left: 1.375rem;
}

.worry__copy {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 36px;
  margin-top: 2.25rem;
}

.worry__copy01 {
  font-weight: 700;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #EF5A6F;
  padding-top: 53px;
  padding-top: 3.3125rem;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  margin-top: -37px;
  margin-top: -2.3125rem;
}

.worry__copy01 span {
  border-bottom: 2px solid #FFC436;
}

.worry__copy02 {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
}

.worry__arrow {
  width: 139px;
  width: 8.6875rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 19px;
  margin-top: 1.1875rem;
}

.worry__copy03 {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  margin-top: 19px;
  margin-top: 1.1875rem;
}

.worry__lists {
  margin-top: 15px;
  margin-top: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.3125rem;
  background-color: #F8F8F3;
  padding: 19px 29px 15px;
  padding: 1.1875rem 1.8125rem 0.9375rem;
}

.worry__list {
  width: calc(50% - 0.75rem);
}

.worry__list:not(:first-child) {
  margin-left: 24px;
  margin-left: 1.5rem;
}

.worry__label {
  margin-top: 12px;
  margin-top: 0.75rem;
  border-radius: 0.3125rem;
  background-color: #375A7F;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  color: #fff;
  width: 114px;
  width: 7.125rem;
  height: 38px;
  height: 2.375rem;
  text-align: center;
  line-height: 38px;
  line-height: 2.375rem;
  margin-left: auto;
  margin-right: auto;
}

.worry__box {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  background-color: #fff;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.worry__copy04 {
  text-align: center;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.worry__copy04 span {
  display: inline-block;
  font-weight: 700;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.worry__copy04 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 14px;
  height: 0.875rem;
  background-color: #FFC436;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.worry__video {
  margin-top: 41px;
  margin-top: 2.5625rem;
  position: relative;
  /*
  padding-top: calc(235 / 373 * 100%);
  */
  padding-top: 125.002681%;
}

.worry__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width: 550px) {
  .worry__title {
    font-size: 2.0625rem;
  }

  .worry__item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .worry__ballon--01 {
    margin-left: 1.875rem;
  }

  .worry__ballon--02 {
    margin-right: 1.875rem;
  }

  .worry__img {
    width: 12.1875rem;
  }

  .worry__ballon {
    font-size: 1.5rem;
    width: 18.75rem;
  }

  .worry__copy {
    font-size: 2.0625rem;
  }

  .worry__copy01 {
    font-size: 1.875rem;
    margin-top: -3.625rem;
    padding-top: 4.625rem;
  }

  .worry__copy02 {
    font-size: 2.0625rem;
  }

  .worry__copy03 {
    font-size: 2.0625rem;
  }

  .worry__label {
    font-size: 2.0625rem;
    width: 10.6875rem;
    height: 3.5625rem;
    line-height: 3.5625rem;
  }

  .worry__copy04 span {
    font-size: 2.375rem;
  }
}

.wrapper {
  width: 600px;
  width: 37.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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


.store_img {
  margin: 0 0 20px;
}

.store_inner {
  margin: 50px 0 0;
  padding: 0 25px 0;
}

.store_name {
  margin-bottom: 14px;
  font-weight: 400;
}

.store_txt {
  margin-bottom: 25px;
}

.store_btn {
  display: block;
  background-color: #EF5A6F;
  width: 280px;
  max-width: 100%;
  height: 47px;
  height: 2.9375rem;
  line-height: 47px;
  line-height: 2.9375rem;
  text-align: center;
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, .15);
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, .15);
  border-radius: 2.375rem;
  font-weight: 400;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  margin: 3px auto 0;
}

.store_btn::after {
  content: "";
  position: absolute;
  width: 20px;
  /*width: 1.8rem;*/
  height: 20px;
  /*height: 0.9375rem;*/
  background: url(../images/common/modal-arrow.webp) no-repeat center center / contain;
  right: 10px;
  right: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.company_detail{
  padding: 10px 10px 86px;
  text-align: center;
}

.company_detail a{
  font-size: 12px;
  margin: 0 5px;
  border-bottom:solid 1px #000 ;
}

.copyright{
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 10px;
}

.gmap{
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 35px;
}

.gmap iframe{
  width: 100%;
  height: 100%;
}


.site-btn {
  background-color: #EF5A6F;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 11px;
  padding-bottom: 0.6875rem;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  cursor: pointer;
  width: 600px;
  width: 37.5rem;
  max-width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
  transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
}

.site-btn a {
  display: block;
}

.site-btn.is-active {
  opacity: 1;
  visibility: visible;
}

.site-btn img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  width: 1.75rem;
  right: 6px;
  right: 0.375rem;
}

.site-btn__top {
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.site-btn__bottom {
  font-weight: 700;
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  color: #fff;
}