@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1330px) {
  html {
    font-size: 1.2030075188vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1330px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}

.header {
  height: 8.125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.75rem;
  }
}

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

.header__logo {
  width: 26.9375rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 12.5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width: 600px) {
  .header__logo {
    width: 10.3125rem;
  }
}

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

.header__time {
  width: 21.25rem;
  margin-right: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .header__time {
    width: 11.25rem;
    margin-right: 0.375rem;
  }
}
@media screen and (max-width: 600px) {
  .header__time {
    width: 8.125rem;
    margin-right: 0.3125rem;
  }
}

.header__tel {
  width: 27.0625rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .header__tel {
    width: 12.5rem;
  }
}

@media screen and (max-width: 600px) {
  .header__tel-link.sp {
    width: 3.125rem;
    height: 3.125rem;
    background-color: #4672C4;
    border-radius: 50%;
    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;
  }
}

.header__tel-link img {
  width: 60%;
  height: 60%;
}

.mv {
  position: relative;
}
.mv__body {
  position: absolute;
  top: 55%;
  left: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .mv__body {
    position: static;
    margin-top: 2.8125rem;
  }
}

.mv__text {
  font-size: 2.625rem;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 1.5rem;
  }
}

.mv__title {
  font-size: 5rem;
  font-weight: 900;
  text-shadow: 3px 3px #fff;
  line-height: 1.125;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 2.625rem;
  }
}

.mv__circle-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 37.5rem;
  width: 100%;
  margin: 0.625rem;
}
@media screen and (max-width: 767px) {
  .mv__circle-container {
    max-width: 18.75rem;
    margin-bottom: 0;
  }
}

.mv__item {
  width: 60%;
}

.mv__smiletru {
  position: absolute;
  top: -5.75rem;
  right: 10%;
  width: 14.375rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .mv__smiletru {
    top: -3.125rem;
    width: 7.5rem;
  }
}

.worries {
  padding-top: 3.4375rem;
  padding-bottom: 5.5rem;
  background-color: #D8D0BA;
  position: relative;
}
@media screen and (max-width: 767px) {
  .worries {
    padding-top: 1.875rem;
    padding-bottom: 2.8125rem;
  }
}

.worries::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 57.5px 0 57.5px;
  border-color: #D8D0BA transparent transparent transparent;
}

.section-title {
  font-size: 2.375rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.25rem;
  }
}

.section-title span {
  color: #0244BF;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #FAFF14));
  background: linear-gradient(transparent 70%, #FAFF14 70%);
}

.worries__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.5rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .worries__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.25rem;
  }
}

.worries__text-wrap {
  width: 65%;
  margin-right: -13.75rem;
  background-color: #fff;
  border: 5px solid #3893D1;
  border-radius: 2.5rem;
  padding: 3.4375rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .worries__text-wrap {
    width: 100%;
    margin-right: 0;
    margin-top: -2.5rem;
    padding: 1.875rem;
  }
}

.worries__text {
  font-size: 1.625rem;
  font-weight: 700;
  padding-left: 4.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .worries__text {
    font-size: 1rem;
    padding-left: 2rem;
  }
}

.worries__text::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 2.8125rem;
  height: 2.8125rem;
  top: 0;
  left: 0;
  background: url(../images/check.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .worries__text::before {
    width: 1.375rem;
    height: 1.375rem;
    margin-top: 2px;
  }
}

.worries__text + .worries__text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .worries__text + .worries__text {
    margin-top: 0.9375rem;
  }
}

.worries__img {
  width: 60vw;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .worries__img {
    width: 70vw;
  }
}

.worries__img img {
  width: 100%;
}

.recommend {
  padding-top: 6.25rem;
  background-color: #FDF8F5;
}
@media screen and (max-width: 767px) {
  .recommend {
    padding-top: 4.375rem;
  }
}

@media screen and (max-width: 767px) {
  .recommend-title {
    width: 75%;
  }
}

.recommend__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .recommend__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.recommend__img {
  width: 31.4%;
}
@media screen and (max-width: 767px) {
  .recommend__img {
    width: 25%;
  }
}

.recommend__wrap {
  width: 60.4%;
  background: #fff;
  position: relative;
  padding: 2.1875rem 1.25rem 3.125rem 2.1875rem;
  border: 3px solid #FF87A4;
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .recommend__wrap {
    width: 100%;
    padding: 0.9375rem 0.9375rem 1.25rem;
    margin-bottom: 2.5rem;
  }
}

.recommend__wrap::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13px;
  content: "";
  border-top: 3px solid #FF87A4;
  background-image: repeating-linear-gradient(-45deg, #FF87A4 20%, transparent 20%, transparent 50%, #FF87A4 50%, #FF87A4 70%, transparent 70%);
  background-size: 10px 10px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (max-width: 767px) {
  .recommend__wrap::after {
    height: 10px;
  }
}

.recommend__title {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 0.71875rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recommend__title {
    font-size: 1.125rem;
  }
}

.recommend__title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background-color: #9E9E9E;
}

.recommend__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .recommend__text-wrap {
    margin-top: 0.9375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.recommend__text {
  font-size: 1.375rem;
  width: 67.5%;
}
@media screen and (max-width: 767px) {
  .recommend__text {
    font-size: 1rem;
    width: 100%;
  }
}

.recommend__text-img {
  width: 28.7%;
}

.feature {
  padding-top: 4.6875rem;
  padding-bottom: 3.75rem;
  background-color: #FFE6E6;
}
@media screen and (max-width: 767px) {
  .feature {
    padding-top: 2.1875rem;
    padding-bottom: 1.875rem;
  }
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem 2.8125rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0.625rem;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .cards {
    max-width: 31.25rem;
    margin: 2.1875rem auto 0;
    padding-left: 0.9375rem;
    gap: 2.5rem;
  }
}

.card__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  border-radius: 0.9375rem;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .card__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.card__number {
  position: absolute;
  width: 30%;
  top: 0;
  left: 0;
  -webkit-transform: translate(-40%, -50%);
          transform: translate(-40%, -50%);
}
@media screen and (max-width: 767px) {
  .card__number {
    width: 25%;
    -webkit-transform: translate(-30%, -40%);
            transform: translate(-30%, -40%);
  }
}

.card__img {
  width: 100%;
  border-radius: 0.9375rem 0.9375rem 0 0;
  overflow: hidden;
}

.card__body {
  padding: 0.9375rem 0.9375rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .card__body {
    padding: 0.625rem 0.9375rem 1.25rem;
  }
}

.card__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: #4672C4;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #4672C4;
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 1.125rem;
  }
}

.card__text {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .card__text {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.difference {
  padding-top: 4.375rem;
  padding-bottom: 5.3125rem;
  background-color: #FDF8F5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .difference {
    padding-top: 2.1875rem;
    padding-bottom: 5rem;
  }
}

.difference-point__img {
  position: absolute;
  bottom: 0;
  left: 0.625rem;
  width: 40%;
  max-width: 31.5625rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .difference-point__img {
    width: 50%;
  }
}

.difference-title {
  color: #0244BF;
}

.difference__container {
  position: relative;
  padding: 2.375rem 7rem 5rem;
  text-align: center;
  border: 4px solid #000;
  background: #fff;
  margin: 6.25rem auto 0;
  width: 78%;
}
@media screen and (max-width: 767px) {
  .difference__container {
    padding: 0.625rem 0.625rem 2.5rem;
    margin: 4.375rem auto 0;
    width: 100%;
    max-width: 31.25rem;
  }
}

.difference__container:before,
.difference__container:after {
  position: absolute;
  content: "";
}

.difference__container:before {
  top: -5.375rem;
  left: calc(50% - 5.125rem);
  width: 10.25rem;
  height: 10.75rem;
  border: 4px solid #000;
  border-radius: 50%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .difference__container:before {
    top: -3.75rem;
    left: calc(50% - 3.4375rem);
    width: 6.875rem;
    height: 7.5rem;
  }
}

.difference__container:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.difference__container i {
  font-size: 5rem;
  line-height: 3.75rem;
  position: absolute;
  z-index: 1;
  top: -3.75rem;
  left: calc(50% - 2.5rem);
  width: 5rem;
  height: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .difference__container i {
    font-size: 2.5rem;
  }
}

.difference__body {
  position: relative;
  z-index: 1;
}

.difference__title {
  font-size: 2.125rem;
}
@media screen and (max-width: 767px) {
  .difference__title {
    font-size: 1.25rem;
  }
}

.difference__text-wrap {
  text-align: left;
  margin: 1.25rem auto;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .difference__text-wrap {
    padding-left: 1.25rem;
  }
}

.difference__text-wrap > p {
  font-size: 1.5rem;
  color: #D2A41C;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .difference__text-wrap > p {
    font-size: 1.125rem;
  }
}

.difference__img {
  width: 90%;
  margin: auto;
}

.explanation {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .explanation {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}

.explanation__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .explanation__container {
    display: block;
    max-width: 31.25rem;
    margin: auto;
  }
}

.explanation__body {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .explanation__body {
    width: 100%;
    padding-left: 0;
  }
}

.explanation__title {
  font-size: 2.625rem;
  color: #0244BF;
}
@media screen and (max-width: 767px) {
  .explanation__title {
    font-size: 1.375rem;
    text-align: center;
  }
}

.explanation__text {
  font-size: 1.75rem;
  line-height: 1.7;
  margin-top: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .explanation__text {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 0.625rem;
  }
}

.explanation__img {
  width: 44.53%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media screen and (max-width: 767px) {
  .explanation__img {
    width: 50%;
    margin: auto;
  }
}

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

.card2__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 4.375rem;
  border-bottom: 3px dashed #48D3C2;
  width: 95%;
  margin: 0.625rem auto 0;
}
@media screen and (max-width: 767px) {
  .card2__item {
    display: block;
    padding-bottom: 1.875rem;
    max-width: 31.25rem;
  }
}

.card2__item:last-child {
  border-bottom: none;
}

.card2__img {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .card2__img {
    width: 85%;
  }
}

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

.card2__title {
  font-size: 2.25rem;
  color: #0244BF;
}
@media screen and (max-width: 767px) {
  .card2__title {
    font-size: 1.25rem;
  }
}

.card2__text {
  font-size: 1.5rem;
  line-height: 1.66;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .card2__text {
    font-size: 1rem;
    margin-top: 0.3125rem;
    line-height: 1.5;
  }
}

.flow {
  padding-top: 4.375rem;
  padding-bottom: 5rem;
  background-color: #FFE6E6;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-top: 1.875rem;
    padding-bottom: 2.5rem;
  }
}

.cards3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 2.8125rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .cards3 {
    max-width: 31.25rem;
    margin: 2.1875rem auto 0;
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
}

.card3__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  background-color: #fff;
  border: 3px solid #FF87A4;
}
@media screen and (max-width: 767px) {
  .card3__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.card3__img {
  width: 100%;
  overflow: hidden;
}

.card3__title {
  font-size: 1.75rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  padding: 1rem 0 1rem 6.25rem;
  border-bottom: 3px solid #FF87A4;
}
@media screen and (max-width: 767px) {
  .card3__title {
    font-size: 1.25rem;
    padding: 0.625rem 0 0.625rem 6.25rem;
  }
}

.card3__title:before {
  position: absolute;
  top: -150%;
  left: -6.25rem;
  width: 11.875rem;
  height: 300%;
  content: "";
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #FF87A4;
}
@media screen and (max-width: 767px) {
  .card3__title:before {
    width: 11.25rem;
  }
}

.card3__title span {
  font-size: 2.5rem;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  padding-left: 1rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .card3__title span {
    font-size: 1.875rem;
  }
}

.card3__text {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .card3__text {
    font-size: 1rem;
  }
}

.flow__img {
  position: absolute;
  bottom: 100%;
  right: -1.25rem;
  width: 25%;
}
@media screen and (max-width: 767px) {
  .flow__img {
    width: 30%;
  }
}

.qa {
  padding-top: 5.9375rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .qa {
    padding-top: 2.5rem;
  }
}

.qa__items {
  width: 73%;
  margin: 3.125rem auto 0;
}
@media screen and (max-width: 767px) {
  .qa__items {
    margin-top: 1.25rem;
    width: 100%;
    max-width: 31.25rem;
  }
}

.qa__item:nth-child(n+2) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .qa__item:nth-child(n+2) {
    margin-top: 1.25rem;
  }
}

.qa-box__q {
  font-size: 1.625rem;
  font-weight: 700;
  padding: 0.9375rem 4.0625rem;
  position: relative;
  border-bottom: 1px dashed #777;
}
.qa-box__q::before {
  content: "";
  display: inline-block;
  width: 3.125rem;
  height: 3.125rem;
  background: url(../images/q.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .qa-box__q {
    font-size: 1rem;
    padding: 0.625rem 2.5rem;
  }
  .qa-box__q::before {
    width: 1.875rem;
    height: 1.875rem;
    top: 0.625rem;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}

.qa-box__icon {
  width: 1.75rem;
  height: 1.25rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.qa-box__icon.is-open {
  top: 30%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .qa-box__icon {
    width: 1rem;
    height: 0.875rem;
  }
}

.qa-box__a {
  font-size: 1.375rem;
  line-height: 1.5909090909;
  padding: 0.9375rem 0 0.9375rem 4.0625rem;
  display: none;
  position: relative;
  padding-left: 4.0625rem;
}
.qa-box__a::before {
  content: "";
  display: inline-block;
  width: 3.125rem; /*画像の幅*/
  height: 3.125rem; /*画像の高さ*/
  background: url(../images/a.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.9375rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .qa-box__a {
    font-size: 1rem;
    padding: 0.625rem 0 0.625rem 2.5rem;
  }
  .qa-box__a::before {
    width: 1.875rem;
    height: 1.875rem;
    top: 0.625rem;
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}

.qa__img {
  width: 60%;
  margin: 1.25rem auto 0;
}
@media screen and (max-width: 767px) {
  .qa__img {
    width: 70%;
  }
}

.case {
  padding-top: 4.0625rem;
  padding-bottom: 5.9375rem;
  background-color: #FFE6E6;
}
@media screen and (max-width: 767px) {
  .case {
    padding-top: 2.1875rem;
    padding-bottom: 2.5rem;
  }
}

.case-price__img {
  width: 60%;
  margin-top: 0.9375rem;
  margin-left: -1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .case-price__img {
    width: 80%;
    margin-left: 0;
  }
}

.case__img {
  max-width: 75rem;
  margin: -6.25rem auto 0;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, .25);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, .25);
}
@media screen and (max-width: 767px) {
  .case__img {
    margin: -2.5rem auto 0;
  }
}

.cta {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #FDFAF5;
}
@media screen and (max-width: 767px) {
  .cta {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.cta__container {
  position: relative;
  padding: 4.625rem 1.5rem 1.5rem;
  border: 5px solid #FF87A4;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .cta__container {
    padding: 3.125rem 0.8125rem 0.875rem;
    border: 3px solid #FF87A4;
    max-width: 37.5rem;
    margin: auto;
  }
}

.cta__container::before {
  position: absolute;
  top: 1.375rem;
  left: 1.375rem;
  width: calc(100% - 2.75rem);
  height: calc(100% - 2.75rem);
  content: "";
  border: 5px dashed #FF87A4;
}
@media screen and (max-width: 767px) {
  .cta__container::before {
    top: 0.75rem;
    left: 0.75rem;
    width: calc(100% - 1.5rem);
    height: calc(100% - 1.5rem);
    border: 3px dashed #FF87A4;
  }
}

.cta-title {
  font-size: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta-title {
    font-size: 1.4375rem;
  }
}

.cta-title::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 12.5rem;
  height: 12.5rem;
  background: url(../images/cta1.png) no-repeat;
  background-size: contain;
  top: 0;
  left: 63%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
}
@media screen and (max-width: 767px) {
  .cta-title::after {
    width: 7.5rem;
    height: 7.5rem;
  }
}

.cta__text {
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cta__text {
    margin: 0.9375rem 0.3125rem 0;
    font-size: 0.875rem;
  }
}

.cta__text::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 6.25rem;
  height: 6.25rem;
  background: url(../images/cta2.png) no-repeat;
  background-size: contain;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
}
@media screen and (max-width: 767px) {
  .cta__text::before {
    width: 3.75rem;
    height: 3.75rem;
    top: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.cta__text::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 6.25rem;
  height: 6.25rem;
  background: url(../images/cta3.png) no-repeat;
  background-size: contain;
  top: -5%;
  right: 3%;
}
@media screen and (max-width: 767px) {
  .cta__text::after {
    width: 3.75rem;
    height: 3.75rem;
    top: 100%;
    right: 3%;
  }
}

.cta__tel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -1.25rem;
}
@media screen and (max-width: 767px) {
  .cta__tel-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 0.625rem;
  }
}

.cta-tel__img {
  width: 43%;
  display: block;
}
@media screen and (max-width: 767px) {
  .cta-tel__img {
    width: 70%;
    margin: 0 auto 1.25rem;
    z-index: 10;
  }
}

.cta__img {
  width: 41%;
}
@media screen and (max-width: 767px) {
  .cta__img {
    width: 50%;
    margin: auto;
  }
}

.aisho__img {
  width: 100%;
}

.footer {
  padding-top: 2.8125rem;
  padding-bottom: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 1.5625rem;
    padding-bottom: 2.1875rem;
  }
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .footer__container {
    display: block;
  }
}

.footer__left,
.footer__right {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .footer__left,
  .footer__right {
    width: 100%;
    max-width: 31.25rem;
    margin: auto;
  }
}

.footer__logo {
  max-width: 31.25rem;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 60%;
    min-width: 18.75rem;
  }
}

.footer__address {
  font-size: 1.25rem;
  padding-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .footer__address {
    font-size: 0.875rem;
    padding-top: 0.3125rem;
  }
}

.footer__access-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .footer__access-wrap {
    margin-top: 0.625rem;
  }
}

.footer__access-left {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF87A4;
  margin-right: 1.4375rem;
  margin-top: 3px;
}
@media screen and (max-width: 767px) {
  .footer__access-left {
    font-size: 0.875rem;
    margin-right: 0.625rem;
  }
}

.footer__access-right {
  font-size: 1.25rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .footer__access-right {
    font-size: 0.875rem;
  }
}

.map {
  margin-top: 1.25rem;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .map {
    margin-top: 0.625rem;
  }
}

.map iframe {
  aspect-ratio: 460/330;
  width: 100%;
  height: 100%;
}

.footer__time-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__time-wrap {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.footer__time-left {
  width: 36.4%;
  background-color: #2D3A61;
  padding: 0.375rem;
  color: #fff;
  text-align: center;
  margin-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .footer__time-left {
    width: 25%;
    padding: 0.1875rem;
    margin-right: 1.125rem;
  }
}

.footer__time-right {
  color: #FF87A4;
}

.footer__attention {
  margin-top: 0.8125rem;
  font-size: 1.125rem;
  color: #2D3A61;
}
@media screen and (max-width: 767px) {
  .footer__attention {
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }
}

.footer__attention p:not(:first-child) {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .footer__attention p:not(:first-child) {
    margin-top: 0.25rem;
  }
}

.biz-hour {
  display: block;
  border-collapse: collapse;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .biz-hour {
    margin-top: 1.25rem;
    /* overflow-x: scroll;で、
    スマホ画面幅に表が入りきらない場合は
    横スクロールしてくれます */
    overflow-x: scroll;
  }
}

.biz-hour th, .biz-hour td {
  padding: 0.9375rem 0.9375rem;
  text-align: right;
  /* ２番目以降の線 */
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .biz-hour th, .biz-hour td {
    padding: 0.625rem 0.625rem;
    /* スマホ時に横スクロールしないよう、横の余白（padding）を20px→10pxに */
  }
}

.biz-hour th {
  font-weight: normal;
}

.biz-hour td {
  font-weight: normal;
  font-family: "Roboto", sans-serif;
  color: #333;
}

/* 「土」の文字色 */
.biz-hour th.sat,
.biz-hour td.sat {
  color: #4672C4;
}

.biz-hour th.sat {
  text-align: center;
}

.biz-hour td.sat {
  text-align: right;
}

/* 「日」の文字色 */
.biz-hour th.sun {
  color: #FF87A4;
}

.footer__insta {
  margin-top: 3.125rem;
}

.footer__insta a img {
  width: 80%;
}

.copyright {
  font-size: 0.75rem;
  text-align: right;
  color: #6B5D43;
  margin-top: 1.25rem;
}

.p-test {
  color: red;
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-test {
    font-size: 1.5625rem;
  }
}

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

@media screen and (max-width: 600px) {
  .pc {
    display: none;
  }
}

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

.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
