@charset "UTF-8";
html {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  html {
    font-size: 1vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.667vw;
  }
}
body {
  color: #fca7a7;
  line-height: 1;
  font-family: "Noto Serif JP", sans-serif;
}

.pc_n {
  display: none !important;
}
@media (max-width: 767px) {
  .pc_n {
    display: block !important;
  }
}

.sp_n {
  display: block !important;
}
@media (max-width: 767px) {
  .sp_n {
    display: none !important;
  }
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  color: #796859;
  line-height: 1;
  font-family: "Noto Serif JP", sans-serif;
  letter-spacing: 0.1em;
  -webkit-animation: fadeIn 2s ease-in-out forwards;
          animation: fadeIn 2s ease-in-out forwards;
}

.inner {
  max-width: 104rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .inner {
    padding-left: 2.8rem;
    padding-right: 2.8rem;
  }
}

.wrap {
  overflow: hidden;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  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;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 1s, visibility 1s;
  transition: opacity 1s, visibility 1s;
}
#loading picture {
  width: 100%;
  height: 100%;
}

#loading img {
  width: 100%;
  height: 100%;
}

#loading.is-loaded {
  opacity: 0;
  visibility: hidden;
}

/* ============== ヘッダー ============== */
.header {
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header__inner {
  height: 5.714vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 3.357vw;
  padding-right: 3.714vw;
  gap: 1.429vw;
}

.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  width: 11vw;
}

.header__logo-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo-img {
  width: 8.571vw;
  height: auto;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.714vw;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__nav-link {
  position: relative;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: 1.143vw;
  color: #796859;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.118vw;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.357vw;
  width: 0;
  height: 2px;
  background-color: #fca7a7;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.header__nav-link:hover {
  opacity: 0.7;
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__cta {
  background: url(../img/free-bg.png) no-repeat center center/contain;
  width: 14.857vw;
  height: 3.929vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 1.319vw;
  color: #fff;
  font-size: 1.143vw;
  letter-spacing: 0.118vw;
  font-family: "Noto Serif JP", sans-serif;
  margin-left: 2.929vw;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
  font-weight: 600;
}

.header__cta:hover {
  background: url(../img/free-bg_hover.png) no-repeat center center/contain;
}

.header__lang-link {
  color: #796859;
  font-size: 1.143vw;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: "Noto Serif JP", sans-serif;
}

.header__lang-link:hover {
  opacity: 0.7;
}

.header__lang {
  margin-left: 3.286vw;
  padding-left: 0.786vw;
  padding-right: 0.786vw;
  border-left: 1px solid #796859;
  border-right: 1px solid #796859;
}

.fv {
  height: 42.847vw;
  margin-top: 5.714vw;
}
.fv img {
  height: 100%;
}

@media (max-width: 767px) {
  .fv {
    margin-top: 5.8rem;
    height: 61.1rem;
  }
}
.fv__inner {
  position: absolute;
  z-index: 3;
  top: 9.028vw;
  left: 8.333vw;
}

@media (max-width: 767px) {
  .fv__inner {
    top: 5.7rem;
    left: 2.7rem;
  }
}
.fv__title {
  font-size: 2.222vw;
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

@media (max-width: 767px) {
  .fv__title {
    font-size: 1.6rem;
    line-height: 2.6rem;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
}
.fv__text {
  font-size: 1.389vw;
  color: #fff;
  letter-spacing: 0.176em;
  margin-top: 1.806vw;
}
@media (max-width: 767px) {
  .fv__text {
    margin-top: 3.1rem;
  }
}

@media (max-width: 767px) {
  .fv__text {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0.1em;
  }
}
.fv__catchcopy {
  width: 41.528vw;
}

.fv-img {
  position: relative;
  height: 100%;
}

.fv-swiper {
  height: 100%;
}

.fv .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fv .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 4s ease-in-out;
  transition: -webkit-transform 4s ease-in-out;
  transition: transform 4s ease-in-out;
  transition: transform 4s ease-in-out, -webkit-transform 4s ease-in-out;
}

.fv .swiper-slide-active img,
.fv .swiper-slide-duplicate-active img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.fv__buttons {
  margin-top: 3.264vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .fv__buttons {
    display: none;
  }
}
.fv__button a {
  font-size: 1.111vw;
  color: #fff;
  width: 21.667vw;
  height: 5.069vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../img/btn.png) no-repeat center center/cover;
  padding-top: 1.667vw;
  padding-left: 3.5vw;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
  letter-spacing: 0.118vw;
}

.fv__button a:hover {
  background: url(../img/btn-hover.png) no-repeat center center/cover;
  color: #fca7a7;
}

.service {
  padding-top: 20.8rem;
  padding-bottom: 16rem;
  background: url(../img/service-bg.jpg) no-repeat center center/cover;
  margin-top: -1.4rem;
}
@media (max-width: 767px) {
  .service {
    background: url(../img/SERVICE-haikei.png) no-repeat center center/cover;
  }
}
.service .service__heading {
  width: auto;
}
@media (max-width: 767px) {
  .service .service__heading {
    height: 1.92rem;
  }
}
.service .service__heading img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .service .service__heading {
    width: 12.9rem;
  }
}

@media (max-width: 767px) {
  .service {
    padding-top: 9.4rem;
    padding-bottom: 7.4rem;
  }
}
@media (min-width: 768px) {
  .service__heading {
    font-size: 4.8rem;
    color: rgba(252, 167, 167, 0.27);
    letter-spacing: 0.16em;
  }
}

@media (max-width: 767px) {
  .service__heading {
    width: 12.9rem;
    height: 1.92rem;
  }
}
.service__subheading {
  font-size: 2.4rem;
  line-height: 2;
  padding-left: 17rem;
  margin-top: -1rem;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .service__subheading {
    padding-left: 0;
    font-size: 1.8rem;
    line-height: 1.5555555556;
    margin-top: -1rem;
  }
}
.service__lead {
  padding-left: 17rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0;
  margin-top: 2.1rem;
}

@media (max-width: 767px) {
  .service__lead {
    padding-left: 0;
    margin-top: 6rem;
    font-size: 1.4rem;
  }
}
.service__items {
  margin-top: 6.4rem;
}

@media (max-width: 767px) {
  .service__items {
    margin-top: 6rem;
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
.service__item {
  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;
}

@media (max-width: 767px) {
  .service__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.service__item:nth-of-type(n+2) {
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .service__item:nth-of-type(1) .service__img {
    margin-top: 2.4rem;
  }
}
@media (max-width: 767px) {
  .service__item:nth-of-type(2) .service__img {
    margin-top: 2.2rem;
  }
}
@media (max-width: 767px) {
  .service__item:nth-of-type(3) .service__img {
    margin-top: 2.4rem;
  }
}
.service__title {
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .service__title {
    font-size: 1.6rem;
    letter-spacing: 0.175em;
    line-height: 1.625;
    text-align: center;
  }
}
.service__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 1.5rem;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .service__text {
    font-size: 1.4rem;
    line-height: 1.9285714286;
    letter-spacing: 0.09rem !important;
    margin-top: 2rem;
  }
}
.service__img {
  width: 43.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 767px) {
  .service__img {
    width: auto;
    margin-top: 0rem;
  }
}
.service__message {
  margin-top: 6.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .service__message {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .service__message {
    margin-top: 5.9rem;
  }
}
.service__message-text {
  display: inline-block;
  font-size: 2rem;
  line-height: 2;
  text-align: left;
}

@media (max-width: 767px) {
  .service__message-text {
    font-size: 1.4rem;
    line-height: 1.9285714286;
  }
  .service__message-text span {
    display: inline-block;
    margin-top: 1.3rem;
  }
}
.cta {
  padding-top: 7.3rem;
  padding-bottom: 7.1rem;
  background: url(../img/cta-bg.jpg) no-repeat center center/cover;
  margin-top: -0.1rem;
}
@media (max-width: 767px) {
  .cta {
    padding-top: 3.3rem;
    padding-bottom: 3.1rem;
  }
  .cta .cta__buttons {
    gap: 2.3rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .cta .cta__buttons {
    margin-top: 2.4rem;
  }
}

.cta__heading {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  letter-spacing: 0.16em;
  margin-left: auto;
  margin-right: auto;
  width: 25.6rem;
}
@media (max-width: 767px) {
  .cta__heading {
    width: 17.6rem;
    height: 2.5rem !important;
  }
  .cta__heading img {
    height: 100%;
  }
}

.cta__text {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  margin-top: -0.7rem;
}
@media (max-width: 767px) {
  .cta__text {
    font-size: 1.3rem;
    letter-spacing: 0.175em;
    margin-top: -0.4rem;
  }
}

.cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 2rem;
}
@media (max-width: 767px) {
  .cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2rem;
    gap: 1.6rem;
  }
}

.cta__button:nth-of-type(1) a {
  padding-left: 3.8rem;
}
@media (max-width: 767px) {
  .cta__button:nth-of-type(1) a {
    padding-left: 3.6rem;
  }
  .cta__button:nth-of-type(1) a::after {
    right: 3.8rem;
  }
}
.cta__button:nth-of-type(2) a {
  padding-left: 3.3rem;
}
@media (max-width: 767px) {
  .cta__button:nth-of-type(2) a {
    padding-left: 2rem;
  }
  .cta__button:nth-of-type(2) a::after {
    right: 2.1rem;
  }
}

.cta__button a {
  height: 6.4rem;
  background: url(../img/cta-btn.png) no-repeat center center/cover;
  padding-left: 4.05rem;
  padding-top: 2.1rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
  width: 34.25rem;
  height: 6.4rem;
}
@media (max-width: 767px) {
  .cta__button a {
    width: auto;
    width: 27.6rem;
    height: 4.8rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #f5b2b2;
    border-radius: 1.6rem 0 1.6rem 0;
    -webkit-box-shadow: 4px 4px 5px rgba(183, 154, 166, 0.75);
            box-shadow: 4px 4px 5px rgba(183, 154, 166, 0.75);
    padding-top: 0;
    position: relative;
  }
  .cta__button a::after {
    content: "";
    position: absolute;
    background: url(../img/next.png) no-repeat center center/cover;
    width: 1.2rem;
    height: 1.6rem;
  }
}

@media (max-width: 767px) {
  .cta__button a {
    max-width: 34.25rem;
  }
}
@media (min-width: 768px) {
  .cta__button a:hover {
    background: url(../img/cta-btn_hover.png) no-repeat center center/cover;
    color: #fca7a7;
  }
}

.worry {
  padding-top: 16rem;
  padding-bottom: 16rem;
  background: url(../img/bg.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .worry {
    padding-top: 7.3rem;
    background: url(../img/bg-sp.jpg) no-repeat center center/cover;
    padding-bottom: 7.3rem;
  }
}

.worry__heading {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  text-align: center;
}
@media (max-width: 767px) {
  .worry__heading {
    font-size: 1.8rem;
    text-align: left;
    line-height: 1.5555555556;
    letter-spacing: 0.15em;
  }
}

.worry__list {
  max-width: 78rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5.5rem;
}
@media (max-width: 767px) {
  .worry__list {
    padding-top: 6rem;
  }
}

.worry__item {
  font-size: 1.6rem;
  padding-left: 4.6rem;
  position: relative;
}
@media (max-width: 767px) {
  .worry__item {
    font-size: 1.4rem;
    line-height: 1.9285714286;
    letter-spacing: 0.175em;
  }
}

.worry__item::after {
  content: "";
  position: absolute;
  background: url(../img/check.png) no-repeat center center/cover;
  width: 2.3rem;
  height: 1.9rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
@media (max-width: 767px) {
  .worry__item::after {
    -webkit-transform: none;
            transform: none;
    top: 0.7rem;
  }
}

.worry__item:nth-of-type(n+2) {
  margin-top: 4.7rem;
}
@media (max-width: 767px) {
  .worry__item:nth-of-type(n+2) {
    margin-top: 2.5rem;
  }
}

.worry__text {
  font-size: 2rem;
  text-align: center;
  margin-top: 6.4rem;
}
@media (max-width: 767px) {
  .worry__text {
    margin-top: 5.7rem;
    font-size: 1.6rem;
    line-height: 1.6875;
    letter-spacing: 0;
    text-align: left;
    padding-left: 2.2rem;
  }
}

.service01 {
  margin-top: 30.8rem;
}
@media (max-width: 767px) {
  .service01 {
    margin-top: 12.8rem;
  }
}

.service01__inner {
  text-align: center;
}

.service01__heading {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .service01__heading {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    text-align: center;
    line-height: 1.5;
  }
}

.service01__text {
  font-size: 1.6rem;
  line-height: 2;
  max-width: 66.4rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5.7rem;
  text-align: left;
}
@media (max-width: 767px) {
  .service01__text {
    font-size: 1.4rem;
    line-height: 1.9285714286;
    margin-top: 5.8rem;
  }
}

.service01__list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5.3rem 2.3rem;
}

@media (max-width: 767px) {
  .service01__list {
    grid-template-columns: 1fr 1fr;
    gap: 4.3rem 2.4rem;
  }
}
.service01__item {
  text-align: center;
}

.service01__item-img {
  height: 23.3rem;
}
@media (max-width: 767px) {
  .service01__item-img {
    height: 11.1rem;
  }
}

.service01__item-img img {
  height: 100%;
}

.service01__item-heading {
  font-size: 2rem;
  text-align: center;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .service01__item-heading {
    font-size: 1.6rem;
    line-height: 1.625;
    margin-top: 2.1rem;
    display: inline-block;
    text-align: left;
  }
}

.service01__item-text {
  font-size: 1.6rem;
  line-height: 2;
  display: inline-block;
  text-align: left;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .service01__item-text {
    font-size: 1.4rem;
    line-height: 1.9285714286;
  }
}

.service01__bottom-text {
  font-size: 2rem;
  line-height: 2;
  text-align: left;
  display: inline-block;
  margin-top: 8.5rem;
}
@media (max-width: 767px) {
  .service01__bottom-text {
    font-size: 1.4rem;
    line-height: 1.9285714286;
    margin-top: 5.8rem;
    display: block;
  }
}

.example-wrap {
  background: url(../img/example-bg.jpg) no-repeat center center/cover;
  padding-top: 15.8rem;
}
@media (max-width: 767px) {
  .example-wrap {
    padding-top: 0rem;
    background: transparent;
  }
}

.example {
  position: relative;
}
@media (max-width: 767px) {
  .example {
    padding-top: 8rem;
  }
}
.example .example__sub-heading {
  width: auto;
}
@media (max-width: 767px) {
  .example .example__sub-heading {
    height: 1.9rem;
  }
}
@media (max-width: 767px) {
  .example .example__heading {
    margin-bottom: 0;
  }
}

.example__sub-heading {
  letter-spacing: 0.16em;
  color: rgba(252, 167, 167, 0.27);
}
@media (min-width: 768px) {
  .example__sub-heading img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .example__sub-heading {
    width: 26.4rem;
    font-size: 0;
  }
}

.example__heading {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  margin-top: -0.7rem;
}
@media (max-width: 767px) {
  .example__heading {
    font-size: 1.8rem;
    margin-bottom: 4.5rem;
    margin-top: -0.3rem;
  }
}

.example-swiper {
  position: relative;
  padding-bottom: 7rem;
  padding-top: 7rem;
}
@media (max-width: 767px) {
  .example-swiper {
    padding-top: 4.2rem;
    padding-bottom: 4rem;
  }
}

.example-swiper .swiper-slide {
  background-color: #fcf5f5;
  height: auto;
  padding: 2.8rem 4.5rem;
  -webkit-filter: drop-shadow(7px 4px 27px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(7px 4px 27px rgba(0, 0, 0, 0.25));
}
@media (max-width: 767px) {
  .example-swiper .swiper-slide {
    padding: 2.3rem;
  }
}

.swiper-pagination02 {
  width: auto !important;
  text-align: center;
}
@media (max-width: 767px) {
  .swiper-pagination02 {
    bottom: -1.6rem !important;
  }
}
.swiper-pagination02 .swiper-pagination-bullet-active {
  background-color: #fca7a7 !important;
}

.example__wrap {
  position: relative;
}

.example__price {
  font-size: 1.6rem;
  color: #fca7a7;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .example__price {
    font-size: 1.2rem;
  }
}

.example__price span {
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .example__price span {
    font-size: 1.6rem;
  }
}

.example__lead {
  font-size: 2rem;
  line-height: 1.8;
  margin-top: 2.4rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .example__lead {
    font-size: 1.4rem;
    line-height: 1.9285714286;
    letter-spacing: 0.175em;
    margin-top: 1.8rem;
  }
}

.example__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  margin-top: 2.6rem;
}
@media (max-width: 767px) {
  .example__content {
    margin-top: 2.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.9rem;
  }
}

.example__img {
  width: 52%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .example__img {
    width: 100%;
    height: 15rem;
  }
  .example__img img {
    height: 100%;
  }
}

.example__flow {
  line-height: 2;
  letter-spacing: 0;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .example__flow {
    margin-top: 0rem;
    font-size: 1.2rem;
    letter-spacing: 0.175em;
  }
}

.example__desc {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0;
  margin-top: 2.2rem;
}
@media (max-width: 767px) {
  .example__desc {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}

.example .swiper-pagination {
  bottom: -2rem !important;
}

.example .swiper-pagination-bullet {
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 0.7rem !important;
  margin-right: 0.7rem !important;
}

.example__bottom {
  margin-top: 9.4rem;
  max-width: 75.7rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .example__bottom {
    margin-top: 5.4rem;
  }
}

.example__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.8rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .example__other {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 2.7rem;
    gap: 1.1rem !important;
    font-size: 1.4rem;
    line-height: 1.9285714286;
    gap: 0;
  }
}

.example__other-heading {
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
  color: #796859;
}
@media (max-width: 767px) {
  .example__other-heading {
    font-size: 1.6rem;
    font-weight: 500;
  }
}

.example__other-list {
  font-size: 1.6rem;
  line-height: 2;
}
.example__other-list span {
  padding-left: 1.5rem;
  display: block;
  position: relative;
}
.example__other-list span::after {
  content: "・";
  position: absolute;
  top: 0;
  left: -0.7rem;
}

.example__contact-text {
  font-size: 1.6rem;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .example__contact-text {
    padding-left: 2.7rem;
    padding-right: 2.7rem;
    font-size: 1.4rem;
    line-height: 1.9285714286;
    margin-top: 0.5rem;
  }
}

.example__english {
  margin-top: 5.8rem;
}
@media (max-width: 767px) {
  .example__english {
    margin-top: 3.5rem;
    padding-left: 2.7rem;
    padding-right: 2.7rem;
  }
}

.example__english-heading {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .example__english-heading {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}

.example__english-text {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 2.1rem;
}
@media (max-width: 767px) {
  .example__english-text {
    font-size: 1.4rem;
    line-height: 1.9285714286;
    margin-top: 2.1rem;
  }
}

.voice {
  padding-top: 15.6rem;
  position: relative;
}
.voice .example__sub-heading {
  width: 16.1rem;
}
@media (max-width: 767px) {
  .voice .example__sub-heading {
    width: auto;
    height: 1.92rem;
  }
}
@media (max-width: 767px) {
  .voice {
    padding-top: 7.8rem;
  }
  .voice .example__sub-heading {
    width: 8.5rem;
  }
  .voice .example__heading {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}

.voice .swiper-pagination {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.voice .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4.3rem;
}
@media (max-width: 767px) {
  .voice .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.voice .swiper-pagination-bullet {
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 0.8rem !important;
  margin-right: 0.8rem !important;
}

.voice .swiper-pagination-bullet-active {
  background-color: #fca7a7 !important;
}

.voice-swiper__img {
  width: 32.5%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.voice-swiper__img img {
  height: 100%;
}
@media (max-width: 767px) {
  .voice-swiper__img {
    width: 100%;
    height: auto;
  }
}

.voice-swiper__name {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .voice-swiper__name {
    font-size: 1.6rem;
  }
}

.voice-swiper__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 2.6rem;
}
@media (max-width: 767px) {
  .voice-swiper__text {
    font-size: 1.4rem;
    line-height: 1.9285714286;
    margin-top: 1.8rem;
  }
}

.voice-swiper {
  margin-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .voice-swiper {
    margin-top: 6rem;
  }
}

.staff {
  padding-bottom: 17.2rem;
  padding-top: 21.5rem;
}
.staff .example__sub-heading {
  width: 27.8rem;
}
@media (max-width: 767px) {
  .staff {
    padding-bottom: 6rem;
    padding-top: 7.6rem;
  }
  .staff .example__sub-heading {
    width: auto;
    height: 1.9rem;
  }
  .staff .example__heading {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}

@media (max-width: 767px) {
  .staff__img-pc {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 1.4rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .staff__img-pc img {
    width: 14.8rem;
    height: 18.9rem;
  }
}

.staff__container {
  max-width: 92rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .staff__container {
    margin-top: 0;
  }
}

.staff__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.2rem;
}
.staff__item:nth-of-type(2) .big {
  display: inline-block;
}
@media (max-width: 767px) {
  .staff__item:nth-of-type(2) .staff__position {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.staff__item:nth-of-type(2) {
  margin-top: 5.5rem;
}

.staff__img {
  width: 28.8rem;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.staff__position {
  position: absolute;
  top: 0;
  left: 0;
  width: 21.5rem;
  height: 4.8rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.6rem;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .staff__position {
    position: relative;
    padding-left: 0;
    background-color: transparent;
    width: auto;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.staff__position .big {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .staff__position .big {
    display: block;
    font-size: 1.6rem;
  }
}

.staff__content {
  padding-top: 2.6rem;
}
@media (max-width: 767px) {
  .staff__content {
    padding-top: 0rem;
  }
}

.staff__title {
  font-size: 2rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .staff__title {
    font-size: 1.4rem;
    line-height: 1.9285714286;
    margin-top: 1.3rem;
  }
}

.staff__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .staff__text {
    font-size: 1.4rem;
    line-height: 1.9285714286;
    margin-top: 1.8rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

.flow {
  padding-top: 16rem;
  padding-bottom: 16rem;
  background-color: #F1ECE8;
}
.flow .example__sub-heading {
  width: 64.1rem;
}
@media (max-width: 767px) {
  .flow {
    padding-top: 8rem;
    padding-bottom: 7.5rem;
  }
  .flow .example__sub-heading {
    width: 32rem;
    height: auto;
  }
  .flow .example__sub-heading img {
    width: 100%;
  }
}

.flow__container {
  margin-top: 6.2rem;
  max-width: 69rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 767px) {
  .flow__container {
    margin-top: 6.2rem;
  }
}

.flow__container::after {
  content: "";
  position: absolute;
  height: 80.5rem;
  width: 0.2rem;
  background-color: #F5B2B2;
  top: 4rem;
  left: 5.7rem;
}
@media (max-width: 767px) {
  .flow__container::after {
    height: 94.5rem;
    top: 4.5rem;
    left: 3.3rem;
  }
}

.flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.6rem;
}
@media (max-width: 767px) {
  .flow__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3.2rem;
  }
}

.flow__item:nth-of-type(n+2) {
  margin-top: 5.2rem;
}
@media (max-width: 767px) {
  .flow__item:nth-of-type(n+2) {
    margin-top: 4.6rem;
  }
}

.flow__img {
  width: 11.4rem;
  height: 11.2rem;
  position: relative;
  z-index: 5;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .flow__img {
    width: 7rem;
    height: 7rem;
  }
}

.flow__img img {
  height: 11.2rem;
}
@media (max-width: 767px) {
  .flow__img img {
    height: 7rem;
  }
}

.flow__step {
  font-size: 1.6rem;
  color: #f5b2b2;
}
@media (max-width: 767px) {
  .flow__step {
    font-size: 1.4rem;
  }
}

.flow__title {
  font-size: 2rem;
  line-height: 2;
  margin-top: 0.2rem;
}
@media (max-width: 767px) {
  .flow__title {
    font-size: 1.6rem;
    line-height: 1.625;
    margin-top: 1.7rem;
  }
  .flow__title .ten {
    display: inline-block;
    margin-left: -0.4rem;
    margin-right: -0.4rem;
  }
}

.flow__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 0.7rem;
  color: #6d6a69;
}
@media (max-width: 767px) {
  .flow__text {
    font-size: 1.3rem;
    line-height: 2;
    margin-top: 1.2rem;
  }
}

.faq {
  padding-top: 16rem;
  padding-bottom: 16rem;
  background: url(../img/FAQ-bg.jpg) no-repeat center center/cover;
}
.faq .example__sub-heading {
  width: 13rem;
}
@media (max-width: 767px) {
  .faq .example__sub-heading {
    width: auto;
    height: 2.4rem;
  }
}
.faq .example__heading {
  margin-top: -2rem;
}
@media (max-width: 767px) {
  .faq .example__heading {
    margin-top: -1rem;
  }
}
@media (max-width: 767px) {
  .faq {
    padding-top: 7.5rem;
    padding-bottom: 7.3rem;
  }
}
@media (max-width: 767px) {
  .faq .example__sub-heading {
    width: 5.5rem;
  }
}

.faq__accordion {
  margin-top: 5.4rem;
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
}

.faq__item + .faq__item {
  margin-top: 3.8rem;
}
@media (max-width: 767px) {
  .faq__item + .faq__item {
    margin-top: 4.2rem;
  }
}

.faq__question {
  width: 100%;
  font-size: 2rem;
  line-height: 1.5;
  text-align: left;
  position: relative;
  background-color: #EBE4DE;
  cursor: pointer;
  color: #796859;
  font-family: "Noto Serif JP", sans-serif;
  padding-bottom: 1.4rem;
}
@media (max-width: 767px) {
  .faq__question {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.6rem;
    padding-right: 4.4rem;
    font-size: 1.6rem;
    line-height: 1.625;
    padding-bottom: 1rem;
  }
}

.faq__question span {
  color: #fca7a7;
  margin-right: 3rem;
}
@media (max-width: 767px) {
  .faq__question span {
    display: block;
    margin-right: 0;
  }
}

.faq__question::after,
.faq__question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0rem;
  width: 2.4rem;
  height: 0.4rem;
  background-color: #fca7a7;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 767px) {
  .faq__question::after,
  .faq__question::before {
    width: 2rem;
    height: 0.18rem;
  }
}

.faq__question::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg); /* 縦線 */
}

.faq__question.active::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg); /* 縦線を消してマイナスに */
}

.faq__answer {
  display: none;
  padding-top: 1.8rem;
  border-top: 1.5px solid #ded8d4;
}
@media (max-width: 767px) {
  .faq__answer {
    padding-top: 1.1rem;
  }
}

.faq__answer p {
  font-size: 1.6rem;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #6d6a69;
  gap: 3.2rem;
}
@media (max-width: 767px) {
  .faq__answer p {
    gap: 1.6rem;
    font-size: 1.4rem;
    padding-right: 2rem;
  }
}

.faq__answer p span {
  display: block;
  font-size: 1.6rem;
  color: #6d6a69;
}

.contact {
  background: url(../img/back.jpg) no-repeat center center/cover;
  padding-top: 15rem;
  padding-bottom: 15rem;
  text-align: center;
}
@media (max-width: 767px) {
  .contact {
    padding-top: 7.5rem;
    padding-bottom: 5.2rem;
    background: url(../img/CTA-haikei3.png) no-repeat center center/cover;
  }
}

.contact__inner {
  display: inline-block;
}

.contact__heading {
  text-align: left;
  font-size: 2.4rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .contact__heading {
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}

.contact__sub-heading {
  font-size: 2rem;
  text-align: left;
  font-weight: 500;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .contact__sub-heading {
    font-size: 1.6rem;
    line-height: 1.625;
    margin-top: 5.4rem;
  }
}

.contact__text {
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
  margin-top: 2.2rem;
  color: #796859;
}
@media (max-width: 767px) {
  .contact__text {
    font-size: 1.4rem;
    margin-top: 2.5rem;
  }
}

.contact-form {
  background: url(../img/CONTACT-haikei.png) no-repeat center center/cover;
  padding-top: 16rem;
  padding-bottom: 20.8rem;
}
.contact-form .example__sub-heading {
  width: 39.3rem;
}
@media (max-width: 767px) {
  .contact-form .example__sub-heading {
    width: auto;
    height: 1.92rem;
  }
}
@media (max-width: 767px) {
  .contact-form {
    padding-top: 7.3rem;
    padding-bottom: 8.4rem;
  }
}
@media (max-width: 767px) {
  .contact-form .example__sub-heading {
    width: 14.4rem;
  }
}
.contact-form .example__heading {
  margin-bottom: 0;
}

.contact-form__content {
  text-align: center;
}

.contact-form__text {
  font-size: 2rem;
  letter-spacing: 0;
  margin-top: 5.1rem;
}
@media (max-width: 767px) {
  .contact-form__text {
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 5rem;
    display: inline-block;
    text-align: left;
  }
}

.contact-form__button {
  margin-top: 4.1rem;
}
@media (max-width: 767px) {
  .contact-form__button {
    margin-top: 2.1rem;
  }
}
.contact-form__button a {
  padding-left: 10.8rem;
  color: #fff;
  width: 45.6rem;
  height: 14.4rem;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 1.6rem 0 1.6rem 0;
  background: #f5b2b2;
  -webkit-box-shadow: 4px 4px 5px rgba(183, 154, 166, 0.75);
          box-shadow: 4px 4px 5px rgba(183, 154, 166, 0.75);
  position: relative;
  font-weight: bold;
}
.contact-form__button a::after {
  content: "";
  position: absolute;
  background: url(../img/icon_contact.png) no-repeat center center/cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 5rem;
  width: 3.6rem;
  height: 2.9rem;
}
@media (max-width: 767px) {
  .contact-form__button a::after {
    width: 2rem;
    height: 1.6rem;
    left: 5.3rem;
  }
}
.contact-form__button a:hover {
  background-color: #fff;
  color: #F5B2B2;
}
.contact-form__button a:hover::after {
  background: url(../img/icon_contact_sp.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .contact-form__button a {
    font-size: 1.6rem;
    padding-left: 9.3rem;
    width: 100%;
    height: 8rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
    padding-left: 8.7rem;
  }
}

.footer {
  background: url(../img/footer-bg.png) no-repeat center center/cover;
  padding-top: 5.8rem;
  padding-bottom: 6.1rem;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__logo {
  width: 31.6rem;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 20.2rem;
  }
}

.footer__logo img {
  height: 100%;
}

.footer__cta {
  margin-left: 4.6rem;
}
@media (max-width: 767px) {
  .footer__cta {
    margin-left: 4.1rem;
  }
}

.footer__cta-link {
  font-size: 1.6rem;
  width: 18rem;
  height: 4.4rem;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 4px rgba(68, 39, 30, 0.5);
          box-shadow: 4px 4px 4px rgba(68, 39, 30, 0.5);
  border-radius: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #796859;
  font-weight: 600;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media (max-width: 767px) {
  .footer__cta-link {
    width: 18rem;
    height: 4.4rem;
    font-size: 1.4rem;
  }
}

.footer__cta-link:hover {
  background-color: #796859;
  color: #fff;
}

.footer__lang {
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  top: -0.2rem;
  margin-left: 2.4rem;
}
@media (max-width: 767px) {
  .footer__lang {
    display: none !important;
  }
}

.footer__lang-link {
  color: #fff;
  font-size: 1.6rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.footer__lang-link:hover {
  opacity: 0.7;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.8rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 5.7rem;
}
@media (max-width: 767px) {
  .footer__nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: 3.7rem;
    margin-right: 3.7rem;
    gap: 2rem 1.8rem;
    margin-top: 3.8rem;
  }
}

.footer__nav-link {
  color: #fff;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .footer__nav-link {
    font-size: 1.36rem;
  }
}

.footer__nav-link::after {
  background-color: #fff;
}

.footer__copyright {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  margin-top: 11.8rem;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 1.2rem;
    line-height: 1.6666666667;
    margin-top: 7.4rem;
  }
}

@media (max-width: 767px) {
  .footer__bottom01 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin-top: 3.3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 767px) {
  .footer__lang {
    display: none !important;
  }
}

.footer__lang_sp {
  margin-left: 3.1rem;
  color: #fff;
  gap: 3rem;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: relative;
}
.footer__lang_sp::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.1rem;
  height: 1.5rem;
  background-color: #fff;
}

.hamburger {
  display: none;
  position: relative;
  width: 2.4rem;
  height: 1.6rem;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 0rem;
  width: 2.4rem;
  height: 0.12rem;
  background: #333;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(0.7rem) rotate(45deg);
  transform: translateY(0.7rem) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-0.7rem) rotate(-45deg);
  transform: translateY(-0.7rem) rotate(-45deg);
}

.sp-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
}
.sp-nav .cta__buttons {
  margin-top: 4.5rem;
}
.sp-nav .cta__buttons .cta__button a {
  width: 24.2rem;
}
.sp-nav .cta__buttons .cta__button:nth-of-type(1) a {
  padding-left: 3rem;
  letter-spacing: 0.175em;
}
.sp-nav .cta__buttons .cta__button:nth-of-type(1) a:hover {
  background: #f5b2b2;
  color: #fff;
}
.sp-nav .cta__buttons .cta__button:nth-of-type(1) a::after {
  right: 2.7rem;
}
.sp-nav .cta__buttons .cta__button:nth-of-type(2) a {
  padding-left: 4rem;
  letter-spacing: 0.175em;
}
.sp-nav .cta__buttons .cta__button:nth-of-type(2) a:hover {
  background: #f5b2b2;
  color: #fff;
}
.sp-nav .cta__buttons .cta__button:nth-of-type(2) a::after {
  right: 4rem;
}

.sp-nav.is-open {
  opacity: 1;
}

.sp-nav__list {
  list-style: none;
  padding: 0;
  margin-top: 7.7rem;
  margin-left: 6.6rem;
  margin-right: 6.6rem;
}
@media (max-width: 767px) {
  .sp-nav__list {
    margin-top: 7.3rem;
  }
}

.sp-nav__item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .sp-nav__item {
    margin-bottom: 0;
  }
  .sp-nav__item:nth-of-type(n+2) {
    margin-top: 3.4rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .sp-nav__item:nth-of-type(n+2) {
    margin-top: 4rem;
  }
}

.sp-nav__link {
  font-size: 1.6rem;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  letter-spacing: 0.175em;
  color: #796859;
}

.sp-nav__link:hover {
  color: #fca7a7;
}

.sp-nav__cta {
  display: inline-block;
  margin-top: 2rem;
  font-size: 1.8rem;
  color: #fff;
  background: #fca7a7;
  padding: 1rem 3rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.sp-nav__cta:hover {
  background: #fa7676;
}

.sp-nav__lang {
  margin-top: 2rem;
  text-align: center;
}

.is-fixed {
  overflow: hidden;
  height: 100vh;
}

.sp-nav .header-sp__inner {
  padding-left: 2.8rem;
  padding-right: 7.6rem;
}
@media (max-width: 767px) {
  .sp-nav .header-sp__inner {
    height: 5.8rem;
  }
}

@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }
  .header-sp {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 2.7rem;
    padding-right: 2.7rem;
    overflow-x: hidden;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    height: 5.8rem;
  }
  .header-sp__inner {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
    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: 100%;
    align-items: center;
  }
  .header-sp__logo-img {
    width: 12.9rem;
    height: 4rem;
  }
  .header-sp__logo {
    position: relative;
    z-index: 3;
  }
  .header-sp__lang {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.4rem;
    font-size: 1.4rem;
  }
  .header-sp__lang-link {
    color: #796859;
  }
  .header-sp__right {
    gap: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  html, body {
    overflow-x: hidden;
  }
  .sp-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .sp-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: url(../img/CTA-haikei2.png) no-repeat center center/cover;
  }
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none !important;
  }
  .header-sp {
    display: none !important;
  }
  .sp-nav {
    display: none !important;
  }
}
.price {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.price .example__sub-heading {
  width: auto;
}
@media (max-width: 767px) {
  .price .example__sub-heading {
    width: auto !important;
    height: 1.92rem;
  }
}
@media (max-width: 767px) {
  .price {
    padding-top: 7.2rem;
    padding-bottom: 7.8rem;
  }
  .price .example__sub-heading {
    width: 8.6rem;
  }
}

@media (max-width: 767px) {
  .example-wrap__inner {
    background: url(../img/example_bg02.png) no-repeat center center/cover;
  }
}

.price__content {
  max-width: 68.7rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5.7rem;
  -webkit-box-shadow: 7px 4px 27px rgba(0, 0, 0, 0.25);
  box-shadow: 7px 4px 27px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .price__content {
    margin-top: 6.3rem;
  }
}

.price__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .price__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.price__item:nth-of-type(1) {
  background-color: rgba(237, 228, 228, 0.5);
  padding-top: 4.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  .price__item:nth-of-type(1) {
    padding-top: 2.6rem;
    padding-bottom: 2.1rem;
  }
}

.price__item:nth-of-type(2) {
  background-color: #FAFAFA;
  padding-top: 3.2rem;
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  .price__item:nth-of-type(2) {
    padding-top: 2.2rem;
    padding-bottom: 1.9rem;
  }
}

.price__item:nth-of-type(3) {
  background-color: rgba(237, 228, 228, 0.5);
  padding-top: 2.7rem;
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  .price__item:nth-of-type(3) {
    padding-top: 2.7rem;
    padding-bottom: 2.1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .price__item:nth-of-type(3) .price__item-heading {
    padding-right: 2rem;
  }
}

@media (max-width: 767px) {
  .price__item-box {
    padding-left: 3.3rem;
    padding-right: 5.9rem;
  }
}

.price__item-heading {
  width: 28.3rem;
  padding-left: 4.6rem;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .price__item-heading {
    width: auto;
    padding-left: 3.3rem;
    padding-right: 5.9rem;
    font-size: 1.6rem;
  }
}

.price__item-price {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .price__item-price {
    margin-top: 2.6rem;
    font-size: 1.4rem;
  }
}

.price__item-price span {
  font-size: 2rem;
  font-weight: bold !important;
}
@media (max-width: 767px) {
  .price__item-price span {
    font-size: 1.6rem;
    font-weight: 600;
  }
}

.price__item-note {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 1.1rem;
}
@media (max-width: 767px) {
  .price__item-note {
    font-size: 1.2rem;
    margin-top: 1.3rem;
  }
}

@media (max-width: 767px) {
  .price__item-list {
    margin-top: 1.9rem;
    padding-left: 3.2rem;
    padding-right: 2.3rem;
  }
}

.price__item-list-item {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .price__item-list-item {
    font-size: 1.4rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.price__item-list-item span:nth-of-type(1) {
  display: inline-block;
  width: 11.3rem;
}
@media (max-width: 767px) {
  .price__item-list-item span:nth-of-type(1) {
    width: 10.7rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.price__item-list-item:nth-of-type(n+2) {
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .price__item-list-item:nth-of-type(n+2) {
    margin-top: 1.7rem;
  }
}

.price__item-list-item-price {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .price__item-list-item-price {
    font-size: 1.6rem;
  }
}

.price__item-text {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .price__item-text {
    font-size: 1.6rem;
  }
}

.price__example {
  font-size: 1.6rem;
  letter-spacing: 0.24em;
  margin-top: 2rem;
  max-width: 68.7rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .price__example {
    font-size: 1.2rem;
    line-height: 2;
    margin-top: 1.5rem;
  }
  .price__example span {
    padding-left: 6rem;
  }
}

.area {
  padding-top: 16rem;
  padding-bottom: 16rem;
  background: url(../img/voice_bg.jpg) no-repeat center center/cover;
  position: relative;
}
@media (max-width: 767px) {
  .area {
    padding-top: 7.4rem;
    background: url(../img/area-bg02.jpg) no-repeat center center/cover;
    padding-bottom: 7.1rem;
  }
}
.area .example__sub-heading {
  width: 45.5rem;
}
@media (max-width: 767px) {
  .area .example__sub-heading {
    width: auto;
    height: 1.9rem;
  }
}

.area__sub-heading {
  color: rgba(251, 251, 251, 0.25);
}
@media (max-width: 767px) {
  .area__sub-heading {
    width: 23.9rem;
  }
}

.area__heading {
  color: #fff;
}

.area__text {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 5.2rem;
  padding-left: 17rem;
  color: #fff;
}

@media (max-width: 767px) {
  .area__text {
    padding-left: 0;
    margin-top: 5.8rem;
    font-size: 1.4rem;
  }
}
.voice-wrap {
  background: url(../img/voice-back.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .voice-wrap {
    background: url(../img/VOICE-STAFF-haikei.png) no-repeat center center/cover;
  }
}

.page-top {
  z-index: 9999;
  position: fixed;
  bottom: 4rem;
  right: 4rem;
}
.page-top a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
  width: 5.6rem;
  background-color: #fff;
  height: 5.6rem;
  border-radius: 50%;
  -webkit-box-shadow: 4px 4px 4px rgba(68, 39, 30, 0.5);
          box-shadow: 4px 4px 4px rgba(68, 39, 30, 0.5);
  position: relative;
}
.page-top a:hover::after {
  background: url(../img/white-yazirusi-PC.png) no-repeat center center/cover;
}
.page-top a::after {
  content: "";
  position: absolute;
  background: url(../img/brown-yazirusi-PC.png) no-repeat center center/cover;
  width: 1.3rem;
  height: 1.1rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .page-top a {
    width: 4rem;
    height: 4rem;
  }
}
.page-top a:hover {
  background-color: #796859;
}

.heading01 {
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .heading01 {
    font-weight: 600;
    letter-spacing: 0.13rem;
  }
}

.heading02 {
  font-weight: 600;
  letter-spacing: 0.104em;
}
@media (max-width: 767px) {
  .heading02 {
    font-weight: 500;
    letter-spacing: 0.11rem;
  }
}

.text01 {
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (max-width: 767px) {
  .text01 {
    letter-spacing: 0.15rem;
  }
}

.text02 {
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .text02 {
    letter-spacing: 0.14rem;
  }
}

.bold {
  font-weight: bold;
}

.title01 {
  height: 3.8rem;
  width: auto;
}
@media (max-width: 767px) {
  .title01 {
    height: auto;
  }
}
.title01 img {
  width: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .title01 {
    height: auto;
  }
}

@media (min-width: 768px) {
  .en .fv__button:nth-of-type(1) a {
    padding-left: 3.5vw;
  }
}
.en .worry__item {
  line-height: 1.5;
}
.en .example__other-list {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .en .example__other-list {
    white-space: normal;
  }
}
.en .price__item-heading, .en .price__item-list-item, .en .price__example {
  line-height: 1.5;
}
.en .price__item-list-item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.en .cta__buttons .cta__button:nth-of-type(1) a::after {
  right: 2.1rem;
}
.en .price__item-text {
  line-height: 1.5;
}
@media (min-width: 768px) {
  .en .price__item-heading {
    width: 26.3rem;
  }
}
.en .price__item-list-item-price {
  position: relative;
  top: -0.5rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .en .price__item-list-item-price {
    top: auto;
  }
}
.en .fv__catchcopy {
  padding-left: 0.486vw;
}
@media (max-width: 767px) {
  .en .worry__text {
    padding-left: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .en .worry {
    background: url(../img/bg-sp02.png) no-repeat center center/cover;
  }
}
@media (max-width: 767px) {
  .en .service01 {
    margin-top: 12rem;
  }
}
@media (max-width: 767px) {
  .en .cta__button:nth-of-type(1) a {
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .en .cta__text {
    line-height: 1.5;
  }
}
.en .price__item-price .tax {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .en .price__item-price span {
    display: inline-block;
  }
  .en .price__item-price .tax {
    font-weight: 400 !important;
    padding-left: 5.8rem;
    font-size: 1.2rem;
    margin-top: 0.6rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .en .price__item-price .tax {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .en .tax01 {
    font-size: 1.1rem;
    position: relative;
    top: -1.5rem;
    left: 12.3rem;
  }
}
.en .price__example span {
  font-weight: 400 !important;
}
@media (max-width: 767px) {
  .en .price__example span {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .en .flow__container::after {
    height: 104.5rem;
  }
}
.en .big {
  padding-right: 0.8rem;
}
@media (min-width: 768px) {
  .en .big {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .en .faq__question {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .en .contact-form__button a {
    padding-left: 14.8rem;
  }
}
@media (max-width: 767px) {
  .en .contact-form__button a {
    padding-left: 10.7rem;
  }
}
@media (min-width: 768px) {
  .en .contact-form__button a::after {
    left: 9rem;
  }
}
@media (max-width: 767px) {
  .en .contact-form__button a::after {
    left: 6.9rem;
  }
}
.en .fv__button a {
  background: url(../img/btn-2.png) no-repeat center center/cover;
  position: relative;
}
.en .fv__button a:hover {
  background: url(../img/cta-btn_hover-5.png) no-repeat center center/cover;
}
.en .fv__button a:hover:hover::after {
  background: url(../img/cta-btn_hover-2.png) no-repeat center center/cover;
  width: 1.042vw;
  height: 1.25vw;
}
.en .fv__button a::after {
  content: "";
  position: absolute;
  background: url(../img/next.png) no-repeat center center/cover;
  width: 1.042vw;
  height: 1.25vw;
  right: 4vw;
}
.en .cta__button:nth-of-type(1) a {
  position: relative;
}
@media (min-width: 768px) {
  .en .cta__button:nth-of-type(1) a {
    background: url(../img/cta-btn-2.png) no-repeat center center/cover;
  }
  .en .cta__button:nth-of-type(1) a::after {
    position: absolute;
    content: "";
    width: 1.5rem;
    height: 1.8rem;
    right: 3.3rem !important;
    background: url(../img/next.png) no-repeat center center/cover;
    top: 2rem;
  }
}
@media (min-width: 768px) {
  .en .cta__button:nth-of-type(2) a {
    position: relative;
    background: url(../img/cta-btn-2.png) no-repeat center center/cover;
  }
  .en .cta__button:nth-of-type(2) a::after {
    position: absolute;
    content: "";
    width: 1.5rem;
    height: 1.8rem;
    right: 3.3rem !important;
    background: url(../img/next.png) no-repeat center center/cover;
    top: 2rem;
  }
}
@media (min-width: 768px) {
  .en .cta__button a:hover {
    background: url(../img/cta-btn_hover-3.png) no-repeat center center/cover;
  }
  .en .cta__button a:hover::after {
    background: url(../img/cta-btn_hover-2.png) no-repeat center center/cover;
  }
}
@media (max-width: 767px) {
  .en .sp-nav .cta__buttons .cta__button:nth-of-type(1) a::after {
    right: 4rem;
  }
}
@media (max-width: 767px) {
  .en .sp-nav .cta__buttons .cta__button:nth-of-type(1) a {
    padding-left: 4rem;
  }
}
.en .tax {
  font-weight: 400 !important;
}
@media (max-width: 767px) {
  .en .service01__item-heading {
    display: inline-block;
  }
}
.en .flow__title .ten {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .en .price__item-note {
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .en .service01__list {
    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;
  }
}
@media (max-width: 767px) {
  .en .service01__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.en .service01__item {
  width: 31.7%;
}
@media (max-width: 767px) {
  .en .service01__item {
    width: 14.7rem;
  }
}
.en .service01__item-heading {
  line-height: 1.5;
}
@media (min-width: 768px) {
  .en .price__item02 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.en .contact__sub-heading {
  line-height: 1.5;
}
@media (max-width: 767px) {
  .en .voice .example__heading, .en .staff .example__heading {
    margin-top: -1rem;
  }
}
@media (max-width: 767px) {
  .en .footer__nav-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.en .service01__text {
  display: inline-block;
}
@media (max-width: 767px) {
  .en .service01__item-heading02 {
    width: 87%;
  }
}
@media (min-width: 768px) {
  .en .service01__item-text01 {
    width: 86%;
  }
}
@media (min-width: 768px) {
  .en .service01__item-text02 {
    width: 90%;
  }
}
@media (min-width: 768px) {
  .en .service01__item-text03 {
    width: 87%;
  }
}
@media (min-width: 768px) {
  .en .service01__item-text04 {
    width: 94%;
  }
}
@media (min-width: 768px) {
  .en .service01__item-text05 {
    width: 84%;
  }
}
.en .price__example {
  letter-spacing: normal;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .en .worry {
    background: url(../img/bg02-en.jpg) no-repeat center center/cover;
  }
}
@media (max-width: 767px) {
  .en .price__item-price {
    margin-top: 0;
  }
}