@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* LP CSS */

/* アニメーション */
.elm {
  opacity: 0;
  transform: translateY(1.875em);
  transition: opacity 1s ease-in-out, transform 1s ease-out;
}
@media screen and (max-width: 768px) {
  .elm {
    transition: opacity 1s ease-in-out, transform 1s ease-out;
    transform: translateY(70px);
  }
}
.elm.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm.elm2 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .elm.elm2 {
    transition-delay: unset;
  }
}

.elm.elm2_2 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .elm.elm2_2 {
    transition-delay: unset;
  }
}

.elm.elm3 {
  transition: opacity 0.6s ease-in-out, transform 1s ease-out;
  transition-delay: 0.9s;
}
@media screen and (max-width: 768px) {
  .elm.elm3 {
    transition: opacity 0.6s ease-in-out, transform 0.7s ease-out;
    transition-delay: unset;
  }
}

.elm_title {
  opacity: 1;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateY(-1.5em);
}
@media screen and (max-width: 768px) {
  .elm_title {
    transform: translateY(-70px);
  }
}

.elm_title_en {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  transition-delay: 0.3s;
}

.elm_r {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(300px);
}
@media screen and (max-width: 768px) {
  .elm_r {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(200px);
  }
}

.elm_r {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(300px);
}
@media screen and (max-width: 768px) {
  .elm_r {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(200px);
  }
}

.elm_l {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(-300px);
}
@media screen and (max-width: 768px) {
  .elm_l {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(-200px);
  }
}

.elm_o {
  opacity: 0;
  transition-duration: 1.8s;
  transition-timing-function: ease-in-out;
  filter: blur(6px);
}
.elm_o.fade-in {
  opacity: 1;
  filter: blur(0px);
}

.elm_title.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm_title_en.fade-in {
  opacity: 1;
}

.elm_r.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.elm_l.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.animate-on-appear {
  animation: fadeAndTranslate 1s ease forwards;
}
@keyframes fadeAndTranslate {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-l {
  animation: fadeAndTranslateL 1s ease forwards;
}

@keyframes fadeAndTranslateL {
  from {
    opacity: 0;
    transform: translateX(-3.125em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-o {
  animation: fadeAndTranslateO 1s ease forwards;
}
@keyframes fadeAndTranslateO {
  from {
    opacity: 0;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}

/* 共通 */
html {
  font-size: min(0.93984vw, 10px);
}
img {
  display: block;
  width: 100%;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.home {
  color: #5e5c5c;
}
.top #content {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  html {
    font-size: min(1.333333333333vw, 10px);
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  #content.l-container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

/* ヘッダー */
.l-header {
  background: transparent;
  padding: 0 2.5rem;
}
.-body-solid .l-fixHeader {
  box-shadow: none;
  padding: 0 2.5rem;
}
.l-header__inner,
.l-fixHeader__inner {
  background: #fff;
  border-radius: 10px;
  padding: 0 2.5rem;
  margin-top: 20px;
}
.icon-menu-thin:before {
  content: "";
  width: 6rem;
  height: auto;
  aspect-ratio: 100/23;
  background-image: url("./assets/img/sp_menu_open.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
[data-spmenu="opened"] .icon-menu-thin:before {
  background-image: url("./assets/img/sp_menu_close.svg");
  width: 2.5rem;
  aspect-ratio: 1/1;
}
.icon-close-thin:before {
  content: none;
}
.p-spMenu {
  z-index: 999;
}
.p-spMenu__inner {
  width: 100vw;
}
.-right .p-spMenu__inner {
  -webkit-transform: translateX(100vw);
  transform: translateX(100vw);
}
[data-spmenu="opened"] .p-spMenu__inner {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.p-spMenu__inner::before {
  background: #e5e5e5;
}
.p-spMenu__body {
  padding: 12rem 7.5rem 7.5rem;
}
.c-widget__title.-spmenu {
  display: none;
}
.c-listMenu.c-listMenu li {
  margin-bottom: 5rem;
}
.c-listMenu a {
  font-size: 2.1rem;
  line-height: 1;
  border-bottom: none;
  display: flex;
  align-items: center;
  padding: 0;
}
.c-listMenu.c-listMenu li.sp_menu-line {
  margin-top: 6rem;
}
.c-listMenu.c-listMenu li.sp_menu-line,
.c-listMenu.c-listMenu li.sp_menu-contact {
  margin-bottom: 1.6rem;
}
.c-listMenu.c-listMenu li.sp_menu-estimate {
  margin-bottom: 0;
}

.c-listMenu a:before {
  content: none;
  position: unset;
  transform: none;
  margin-right: 1.5rem;
  height: 2.11rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.sp_menu-service a::before {
  content: "";
  width: 19.7rem;
  background-image: url("./assets/img/sp_menu01.svg");
}
.sp_menu-price a::before {
  content: "";
  width: 13rem;
  background-image: url("./assets/img/sp_menu02.svg");
}
.sp_menu-area a::before {
  content: "";
  width: 13rem;
  background-image: url("./assets/img/sp_menu03.svg");
}
.sp_menu-voice a::before {
  content: "";
  width: 14rem;
  background-image: url("./assets/img/sp_menu07.svg");
}
.sp_menu-flow a::before {
  content: "";
  width: 13.1rem;
  background-image: url("./assets/img/sp_menu04.svg");
}
.sp_menu-faq a::before {
  content: "";
  width: 9.8rem;
  height: 2.6rem;
  background-image: url("./assets/img/sp_menu05.svg");
}
.sp_menu-company a::before {
  content: "";
  width: 23.2rem;
  background-image: url("./assets/img/sp_menu06.svg");
}
@media screen and (min-width: 960px) {
  .-series .c-headLogo {
    margin-right: 0;
  }
}
@media screen and (max-width: 959px) {
  .l-header {
    position: fixed !important;
    top: 10px !important;
    z-index: 1001;
  }
  .l-header__inner,
  .l-fixHeader__inner {
    margin-top: 0;
  }
}

/* メインビジュアル */
.p-mainVisual {
  margin-top: -92px;
}
.mainVisual-cta {
  max-width: 1200px;
  width: 100%;
  height: auto;
  aspect-ratio: 1200/594;
  background-image: url("./assets/img/bg_cta.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 8rem;
}
.mainVisual-cta.elm.fade-in {
  transform: translate(-50%, -50%);
}
.cta-btn-area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta-btn {
  width: 48%;
}
.staff-img {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .p-mainVisual {
    margin-top: 0;
  }
  .mainVisual-cta {
    position: relative;
    transform: translate(-50%, 0);
    width: 100vw;
    max-width: 100vw;
    aspect-ratio: 750/685;
    background-image: url("./assets/img/bg_cta_sp.png");
    padding: 7.5rem;
  }
  .cta-btn-area {
    display: block;
  }
  .cta-btn {
    width: 60rem;
  }
  .cta-btn:first-of-type {
    margin-bottom: 1.8rem;
  }
}

/* 全て解決 */
.about {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  aspect-ratio: 1920/949;
  transform: translateX(-50%);
  background-image: url("./assets/img/bg_solution.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 6.25vw;
  z-index: 2;
}
.about .l-container {
  text-align: center;
}
.about-heading {
  width: 20.1vw;
  margin: 0 auto;
  margin-bottom: 4.3vw;
}
.about-txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3.75;
  letter-spacing: 0.14em;
  color: #fff;
}
.about-logo {
  width: 11.875vw;
  position: absolute;
  bottom: 8.5vw;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1440px) {
  .about-logo {
    bottom: 3.5vw;
  }
}

@media screen and (max-width: 768px) {
  .about {
    aspect-ratio: 750/1060;
    background-image: url("./assets/img/bg_solution_sp.png");
    padding-top: 6rem;
  }
  .about-heading {
    width: 38.6rem;
    margin-bottom: 8.5rem;
  }
  .about-txt {
    font-size: 2.4rem;
    line-height: 2.5;
    letter-spacing: 0;
  }
  .about-logo {
    position: unset;
    transform: none;
    width: 25.9rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8rem;
  }
}

/* CTA */
.cta {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-50%);
  background-image: url("./assets/img/bg_cta.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 6.25vw;
  aspect-ratio: 1920/675;
  background-position: center 29%;
}
.cta.mt-minus {
  padding-top: 6.25vw;
  aspect-ratio: 1920/675;
  background-position: center 29%;
  margin-top: -6vw;
}
.cta-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 8rem;
}
.cta-heading {
  width: 61.3rem;
  margin: 5.1vw auto 4vw;
}

@media screen and (max-width: 768px) {
  .cta {
    aspect-ratio: 750/550;
    background-image: url("./assets/img/bg_cta_sp.webp");
    padding-top: 8.5rem;
  }
  .cta.mt-minus {
    aspect-ratio: 750/610;
    padding-top: 6.4rem;
    margin-top: -6.5rem;
  }
  .cta-wrap {
    padding: 0 7.5rem;
  }
  .cta-heading {
    margin: 0 auto 6.65rem;
  }
  .cta.mt-minus .cta-heading {
    margin: 7rem auto 5.5rem;
  }
}

/* サービス紹介 */

.service {
  padding-top: 14.5rem;
  padding-bottom: 18rem;
}
.sec-ttl {
  margin: 0 auto 7rem;
}
.ttl-service {
  width: 31.5rem;
}
.main-txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3;
  letter-spacing: 0.14em;
  text-align: center;
}
.txt-org {
  color: #eb6742;
}
.service-img-slider {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  transform: translateX(-50%);
  overflow: hidden;
  margin-top: 6rem;
  margin-bottom: 7.6rem;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiper-slide {
  width: 60rem;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
}
.service-item:not(:last-of-type) {
  margin-bottom: 4.8rem;
}
.service-detail {
  display: flex;
}
.service-ttl-wrap {
  width: 50%;
  height: auto;
  aspect-ratio: 2/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eb6742;
  position: relative;
}
.service-ttl-wrap::before {
  content: "";
  height: auto;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}
.service-item-01 .service-ttl-wrap::before {
  width: 5.7rem;
  aspect-ratio: 57/50;
  background-image: url("./assets/img/icon_service01.svg");
}
.service-item-02 .service-ttl-wrap::before {
  width: 4.5rem;
  aspect-ratio: 45/46;
  background-image: url("./assets/img/icon_service02.svg");
}
.service-item-03 .service-ttl-wrap::before {
  width: 5rem;
  aspect-ratio: 50/52;
  background-image: url("./assets/img/icon_service03.svg");
}
.service-item-04 .service-ttl-wrap::before {
  width: 6.4rem;
  aspect-ratio: 64/39;
  background-image: url("./assets/img/icon_service04.svg");
}
.service-txt-wrap {
  width: 50%;
  padding: 3rem 3.8rem;
  background: #fff;
}
.service-ttl img {
  width: 100%;
}
.service-ttl-01 {
  width: 18.8rem;
}
.service-ttl-02 {
  width: 29.4rem;
}
.service-ttl-03 {
  width: 27.5rem;
}
.service-ttl-04 {
  width: 18rem;
}
.service-txt {
  font-size: 1.6rem;
  line-height: 2.5;
}
.service-accordion {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 3rem;
}
.service-accordion-item {
  width: 48rem;
  background: #231815;
  color: #fff;
  border-radius: 4rem;
}
.js-accordion--close {
  display: none;
}
.accordion-box {
  height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}
.accordion-box ul {
  font-size: 1.6rem;
  line-height: 2.5;
  padding: 2rem 3.5rem 3rem;
}
.accordion-box ul li {
  position: relative;
  padding-left: 1em;
}
.accordion-box ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.js-accordion {
  width: 100%;
  font-size: 2.2rem;
  letter-spacing: 0.14em;
  font-weight: bold;
  background: #231815;
  color: #fff;
  padding: 2rem;
  border: none;
  border-radius: 4rem;
  position: relative;
}
.js-accordion::before {
  content: "";
  width: 0.37rem;
  height: 2.2rem;
  background: #fff;
  position: absolute;
  right: 3.4rem;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s ease;
}
.js-accordion::after {
  content: "";
  width: 2.2rem;
  height: 0.37rem;
  background: #fff;
  position: absolute;
  right: 2.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s ease;
}
.js-accordion.is-accordion--open::before {
  transform: rotate(90deg);
}
.js-accordion.is-accordion--open::after {
  transform: rotate(-180deg);
}
.js-accordion.is-accordion--open + .accordion-box {
  height: auto;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .service {
    padding-top: 12rem;
    padding-bottom: 9.3rem;
  }
  .sec-ttl {
    margin-bottom: 6rem;
  }
  .main-txt {
    font-size: 2.1rem;
    line-height: 2.14;
  }
  .service-detail {
    display: block;
  }
  .service-ttl-wrap {
    width: 100%;
    aspect-ratio: 650/250;
  }
  .service-ttl-wrap::before {
    left: unset;
    right: 2rem;
    top: 2rem;
  }
  .service-item-01 .service-ttl-wrap::before {
    width: 7.6rem;
  }
  .service-item-02 .service-ttl-wrap::before {
    width: 6.5rem;
  }
  .service-item-03 .service-ttl-wrap::before {
    width: 7.1rem;
  }
  .service-item-04 .service-ttl-wrap::before {
    width: 9.2rem;
  }
  .service-ttl-01 {
    width: 22.7rem;
  }
  .service-ttl-02 {
    width: 35.4rem;
  }
  .service-ttl-03 {
    width: 33.2rem;
  }
  .service-ttl-04 {
    width: 21.7rem;
  }
  .service-txt-wrap {
    width: 100%;
    padding: 4rem 4.5rem;
  }
  .service-txt {
    font-size: 2.1rem;
    line-height: 1.9;
  }
  .service-accordion {
    margin-top: 0;
    background: #fff;
    padding: 0 5rem 6rem;
    display: block;
  }
  .service-accordion-item {
    width: 100%;
  }
  .service-accordion-item:first-of-type {
    margin-bottom: 2.4rem;
  }
  .js-accordion {
    font-size: 2.6rem;
  }
  .accordion-box ul {
    font-size: 2.1rem;
    line-height: 1.9;
    padding: 2rem 3.8rem 3.8rem;
  }
}

/* PRICE 料金について */
.price {
  padding-top: 13.5rem;
  padding-bottom: 16rem;
}
.ttl-price {
  width: 20.7rem;
}
.main-txt-strong {
  font-size: 1.3125em;
  font-weight: bold;
  color: #eb6742;
}
.price-wrap {
  width: 104rem;
  margin: 0 auto;
  padding-top: 9rem;
}
.price-heading-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 7rem;
}
.price-heading-wrap::before,
.price-heading-wrap::after {
  content: "";
  border-top: 1px solid;
  flex-grow: 1;
}
.price-heading-wrap::before {
  margin-right: 5.5rem;
}
.price-heading-wrap::after {
  margin-left: 5.5rem;
}
.price-heading {
  text-align: center;
  color: #231815;
}
.price-heading h3 {
  font-size: 2.4rem;
  letter-spacing: 0.14em;
}
.price-heading span {
  font-size: 1.4rem;
  letter-spacing: 0.14em;
}
.price-list-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5.6rem;
}
.price-list {
  width: 50rem;
}
.price-list th {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: #fff;
  background: #eb6742;
  padding: 1rem;
}
.price-list td {
  width: 50%;
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  background: #fff;
  text-align: center;
  padding: 2.6rem 1rem;
  border-bottom: 1px solid #eaeaea;
}
.price-list td.ls-narrow {
  letter-spacing: 0.06em;
}
.price-list tr:last-of-type td {
  border-bottom: none;
}
.price-list tr td:first-of-type {
  border-right: 1px solid #eaeaea;
}
.price-list-attention {
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
  margin-top: 1rem;
  margin-bottom: 4rem;
}
.price-attention {
  background: #fff;
  padding: 4rem;
}
.price-attention-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.price-attention-ttl::before {
  content: "";
  background-image: url("./assets/img/icon_attention_price.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.1rem;
  height: auto;
  aspect-ratio: 31/28;
  display: inline-block;
}
.price-attention-ttl h4 {
  font-size: 1.8rem;
  letter-spacing: 0.34em;
  color: #eb6742;
  margin-top: 0.4em;
  margin-left: 0.6em;
}
.price-attention-list {
  padding-left: 8rem;
}
.price-attention-item {
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  position: relative;
  padding-left: 1em;
}
.price-attention-item:not(:last-of-type) {
  margin-bottom: 1em;
}
.price-attention-item::before {
  content: "・";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .price {
    padding-top: 10rem;
    padding-bottom: 8.5rem;
  }
  .price-heading-wrap {
    margin-bottom: 3.5rem;
  }
  .main-txt-strong {
    font-size: 1.19em;
  }
  .price-wrap {
    width: 100%;
  }
  .price-list-wrap {
    display: block;
    margin-bottom: 4.8rem;
  }
  .price-list {
    width: 100%;
    margin-bottom: 4.8rem;
  }

  .price-list th {
    font-size: 2.1rem;
    padding: 1.3rem;
  }
  .price-list td {
    font-size: 2.1rem;
    padding: 3.4rem 1rem 3.2rem;
  }
  .price-list-attention {
    font-size: 1.8rem;
    margin-top: -3rem;
    margin-bottom: 4.8rem;
  }
  .price-attention {
    padding: 3rem 2rem;
  }
  .price-attention-ttl::before {
    width: 3.2rem;
  }
  .price-attention-ttl h4 {
    font-size: 2.1rem;
    margin-top: 0.2rem;
  }
  .price-attention-list {
    padding-left: 0;
  }
  .price-attention-item {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.09em;
  }
  .price-attention-item:not(:last-of-type) {
    margin-bottom: 0.6em;
  }
}

/* 対応エリアについて */
.area {
  padding-top: 13.5rem;
}
.ttl-area {
  width: 20.7rem;
}
.area-map {
  padding-top: 10rem;
  padding-bottom: 8rem;
}
.map-img {
  width: 60.4rem;
  margin: 0 auto;
}
.map-attention {
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  text-align: center;
  margin-top: 2rem;
}
.area-message {
  padding: 7.7rem;
  position: relative;
  z-index: 0;
  text-align: center;
}
.area-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  filter: blur(1rem);
  z-index: -1;
}
.area-message-heading {
  font-size: 3.2rem;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN";
  letter-spacing: 0.06em;
  color: #eb6742;
  margin-bottom: 1rem;
}
.area-logo {
  width: 13.4rem;
  margin: 4.5rem auto 0;
}
.area-message-txt {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.5;
  letter-spacing: 0.14em;
}
.area-message-txt02 {
  text-align: center;
  margin-top: 4rem;
}

@media screen and (max-width: 768px) {
  .area {
    padding-top: 12rem;
  }
  .area-map {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
  .map-img {
    width: 57.5rem;
    padding-bottom: 0;
  }
  .map-attention {
    margin-top: -5rem;
    padding-left: 5rem;
  }
  .area-message {
    padding: 7.5rem 4.5rem 5.5rem;
  }
  .area-message-heading {
    font-size: 3.6rem;
    letter-spacing: 0;
  }
  .area-message-txt {
    font-size: 2.1rem;
    line-height: 2;
  }
  .area-logo {
    margin-top: 3rem;
  }
}

/* VOICE */
.voice {
  padding-top: 21.3rem;
}
.ttl-voice {
  width: 22.3rem;
}
.main-txt-wrap {
  width: 76.5rem;
  margin: 0 auto;
}
.main-txt-sup {
  text-align: right;
}
.voice-list {
  margin-top: 8rem;
}
.voice-item {
  display: flex;
}
.voice-item:not(:last-of-type) {
  margin-bottom: 5rem;
}
/* .voice-img {
  width: 50%;
}
.voice-img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
} */
.voice-detail {
  width: 100%;
  padding: 4rem 8rem;
  background: #fff;
}
.voice-user {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}
.voice-icon {
  width: 14.2rem;
  margin-right: 3.3rem;
}
.voice-user-name {
  font-size: 1.7rem;
  letter-spacing: 0.14em;
  color: #fff;
  background: #eb6742;
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}
.voice-use-type {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.14em;
}
.voice-txt p {
  font-size: 1.6rem;
  line-height: 2.25;
}
.voice-other {
  margin-top: 5rem;
}
.voice-other-heading {
  width: 24.3rem;
  margin: 0 auto;
}
.voice-bubble-wrap {
  margin-top: 2.5rem;
  margin-bottom: 6rem;
}
.voice-bubble-01 {
  width: 64rem;
  margin: 0 0 1.5rem auto;
}
.voice-bubble-02 {
  width: 54rem;
  margin: 0 auto 0 0;
}

@media screen and (max-width: 768px) {
  .voice {
    padding-top: 15rem;
  }
  .main-txt-wrap {
    width: 100%;
  }
  .main-txt-sup {
    font-size: 1.8rem;
    padding-right: 7rem;
  }
  .voice-list {
    margin-top: 5rem;
  }
  .voice-item {
    display: block;
  }
  .voice-item:not(:last-of-type) {
    margin-bottom: 6rem;
  }
  .voice-img {
    width: 100%;
    height: auto;
    aspect-ratio: 650/400;
  }
  .voice-detail {
    width: 100%;
    padding: 5.2rem;
  }
  .voice-user {
    justify-content: center;
  }
  .voice-icon {
    width: 17.5rem;
    margin-right: 4rem;
  }
  .voice-user-name {
    font-size: 2.1rem;
    padding: 0.1rem 1.6rem;
  }
  .voice-use-type {
    font-size: 1.8rem;
  }
  .voice-txt p {
    font-size: 2.1rem;
    line-height: 1.9;
  }
  .voice-other {
    margin-top: 2.5rem;
  }
  .voice-bubble-wrap {
    margin-bottom: 3.5rem;
  }
  .voice-bubble-01 {
    margin-bottom: 2rem;
  }
}

/* FLOW */
.flow {
  padding-top: 15rem;
  padding-bottom: 14rem;
}
.ttl-flow {
  width: 21rem;
}
.flow-list {
  margin-top: 16rem;
}
.flow-item {
  background: #fff;
  padding: 10rem 13rem 6rem;
  position: relative;
}
.flow-item:not(:last-of-type) {
  margin-bottom: 8.5rem;
}
.flow-item::before {
  content: "";
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
}
.flow-item-01::before {
  width: 14.7rem;
  aspect-ratio: 147/94;
  background-image: url("./assets/img/icon_step01.svg");
  top: -4.8rem;
  right: 5.2rem;
}
.flow-item-02::before {
  width: 8rem;
  aspect-ratio: 80/92;
  background-image: url("./assets/img/icon_step02.svg");
  top: -4.5rem;
  right: 5.2rem;
}
.flow-item-03::before {
  width: 14.5rem;
  aspect-ratio: 145/81;
  background-image: url("./assets/img/icon_step03.svg");
  top: -4.3rem;
  right: 5.2rem;
}
.flow-item-04::before {
  width: 7.5rem;
  aspect-ratio: 75/76;
  background-image: url("./assets/img/icon_step04.svg");
  top: -3.7rem;
  right: 5.2rem;
}
.flow-item-05::before {
  width: 9.2rem;
  aspect-ratio: 92/56;
  background-image: url("./assets/img/icon_step05.svg");
  top: -2.5rem;
  right: 5.2rem;
}
.flow-item-06::before {
  width: 6.5rem;
  aspect-ratio: 65/67;
  background-image: url("./assets/img/icon_step06.svg");
  top: -3.1rem;
  right: 5.2rem;
}
.flow-step {
  width: 14rem;
  position: absolute;
  top: -7.6rem;
  left: 4.8rem;
}
.flow-heading {
  font-size: 1.8rem;
  letter-spacing: 0.14em;
  color: #eb6742;
  margin-bottom: 1rem;
}
.flow-txt {
  font-size: 1.6rem;
  line-height: 2.5;
}
.flow-bubble {
  width: 64rem;
  margin: 8.3rem auto 3rem;
}

@media screen and (max-width: 768px) {
  .flow {
    padding-bottom: 8rem;
  }
  .flow-list {
    margin-top: 12.4rem;
  }
  .flow-item {
    padding: 11.5rem 5rem 5rem;
  }
  .flow-item:not(:last-of-type) {
    margin-bottom: 10.5rem;
  }
  .flow-heading {
    font-size: 2.1rem;
  }
  .flow-txt {
    font-size: 2.1rem;
    line-height: 1.9;
  }
  .flow-bubble {
    margin-top: 7.2rem;
  }
}

/* Q&A */
.faq {
  padding-top: 16.7rem;
}
.ttl-faq {
  width: 15.6rem;
}
.faq-item {
  border-bottom: 1px solid #999999;
  padding: 6.5rem 0 6.3rem;
}
.faq-item:first-of-type {
  border-top: 1px solid #999999;
}
.faq-js-accordion {
  font-size: 1.8rem;
  letter-spacing: 0.14em;
  color: #5e5c5c;
  background: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.faq-accordion-circle {
  width: 3.2rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #eb6742;
}
.faq-js-accordion::before {
  width: 0.2rem;
  height: 1.4rem;
  background: #231815;
  right: 1.5rem;
}
.faq-js-accordion::after {
  width: 1.4rem;
  height: 0.2rem;
  background: #231815;
  right: 0.9rem;
}
.faq-list-txt {
  font-size: 1.6rem;
  line-height: 2;
  padding-top: 4rem;
}
.faq-end-txt {
  margin-top: 10rem;
}

@media screen and (max-width: 768px) {
  .faq {
    padding-top: 10.8rem;
  }
  .faq-item {
    padding: 3.4rem 0 3.1rem;
  }
  .faq-js-accordion {
    font-size: 2.1rem;
  }
  .faq-list-txt {
    font-size: 2.1rem;
    line-height: 1.9;
    padding-top: 3rem;
  }
  .faq-end-txt {
    margin-top: 7rem;
  }
}

/* 会社概要 */
.company {
  padding-top: 21rem;
  padding-bottom: 10rem;
}
.ttl-company {
  width: 37rem;
}
.company-top-txt {
  position: relative;
}
.company-top-txt::before {
  content: "";
  width: 23.8rem;
  height: auto;
  aspect-ratio: 238/275;
  background-image: url("./assets/img/bg_logo_company.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.company .service-accordion-item {
  width: unset;
  background: unset;
  padding-top: 6rem;
}
.company .js-accordion {
  width: 48rem;
  display: block;
  margin: 0 auto;
}
.company-info {
  padding-top: 8rem;
}
.company-info dl {
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0.14em;
  display: flex;
  flex-wrap: wrap;
  color: #5e5c5c;
  border-top: 1px solid #999;
}
.company-info dl dt {
  width: 20%;
  border-bottom: 1px solid #999;
  padding: 6rem 4rem;
}
.company-info dl dd {
  width: 80%;
  border-bottom: 1px solid #999;
  padding: 6rem 4rem;
}
.company-end-txt {
  margin-top: 9rem;
}

@media screen and (max-width: 768px) {
  .company {
    padding-top: 13.5rem;
    padding-bottom: 0;
  }
  .company-info {
    padding-top: 9rem;
  }
  .company-info dl {
    font-size: 2.1rem;
  }
  .company-info dl dt {
    width: 26%;
    padding: 2.4rem 2rem;
  }
  .company-info dl dd {
    width: 74%;
    padding: 2.4rem 2rem;
  }
  .company-pc-slash {
    display: none;
  }
  .company-end-txt {
    margin-top: 7rem;
  }
  .company-end-txt .main-txt {
    letter-spacing: 0.1em;
  }
}

/* お問い合わせ */
.contact {
  padding-top: 13rem;
  padding-bottom: 13rem;
}
.ttl-contact {
  width: 34.5rem;
}
.qr-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 9rem;
}
.qr-img {
  width: 22rem;
  margin-right: 9rem;
}
.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}
.qr-txt .main-txt {
  text-align: left;
}
.contact-cta {
  padding-top: 9rem;
  margin-bottom: 12.5rem;
}
.contact-cta .cta-btn-form {
  width: 50rem;
}
.contact-cta .cta-btn-tel {
  width: 39.6rem;
}
.contact-closing {
  display: flex;
  justify-content: space-between;
}
.contact-closing-img {
  width: 50rem;
}
.contact-closing-txt p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.22em;
}
.contact-closing-txt p.mb {
  margin-bottom: 1rem;
}
.contact-closing-bubble {
  display: inline-block;
  width: 42.4rem;
  margin: 1.6rem 0;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 15rem;
    padding-bottom: 4rem;
  }
  .qr-wrap {
    flex-direction: column-reverse;
    margin-bottom: 6.5rem;
  }
  .qr-txt .main-txt {
    text-align: center;
  }
  .qr-img {
    width: 28rem;
    margin-right: 0;
    margin-top: 6.5rem;
  }
  .contact-cta {
    padding-top: 6.5rem;
    margin-bottom: 7.5rem;
  }
  .contact-cta .cta-btn-form {
    width: 60rem;
    margin: 0 auto 2.4rem;
  }
  .contact-cta .cta-btn-tel {
    width: 60rem;
    margin: 0 auto;
  }
  .contact-closing {
    display: block;
  }
  .contact-closing-img {
    width: 100%;
  }
  .contact-closing-txt {
    margin-top: 4.5rem;
    text-align: center;
  }
  .contact-closing-bubble {
    width: 52.3rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
  }
  .contact-closing-txt p {
    font-size: 2.1rem;
    letter-spacing: 0.14em;
  }
  .contact-closing-txt p.nowrap {
    white-space: nowrap;
  }
  .contact-closing-txt p.mb {
    margin-bottom: 1.5rem;
  }
}

/* お問い合わせ */

.l-topTitleArea {
  margin-top: 20px;
}
.c-pageTitle {
  font-size: 2.4rem;
}
.contact-txt {
  font-size: 15px;
  line-height: 2.5;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 6rem;
}
.form-wrap dl {
  width: 100%;
  display: flex;
  margin-bottom: 3rem;
}
.form-wrap dl dt {
  width: 30%;
  color: #5e5c5c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  padding-right: 4rem;
}
.form-wrap dl dt span.required {
  font-size: 0.8em;
  font-weight: normal;
  color: #fff;
  background: #eb6742;
  padding: 0.45em 0.3em 0.3em;
  border-radius: 5px;
}
.form-wrap dl dd {
  width: 70%;
}
.form-wrap dl dd input[type="text"],
.form-wrap dl dd textarea {
  width: 100%;
}
.contact-btn {
  text-align: center;
}
.contact-btn input {
  width: 300px;
  padding: 0.75em 1.5em;
  color: #eb6742;
  border: 1px solid #eb6742;
  background: #fff;
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
}
.contact-btn input:hover {
  color: #fff;
  background: #eb6742;
}
.contact-btn input.btn-back {
  margin-top: 20px;
}

@media screen and (max-width: 959px) {
  .l-topTitleArea {
    margin-top: 0;
    min-height: 260px;
  }
}

@media screen and (max-width: 767px) {
  .c-pageTitle {
    font-size: 22px;
  }
  .contact-txt {
    font-size: 2.4rem;
  }
  .form-wrap dl {
    display: block;
    font-size: 2.4rem;
  }
  .form-wrap dl dt {
    width: 100%;
    padding-right: 0;
    margin-bottom: 1rem;
    justify-content: flex-start;
  }
  .form-wrap dl dt span.required {
    line-height: 1;
    padding: 0.3em;
    margin-left: 1rem;
  }
  .form-wrap dl dd {
    width: 100%;
  }
  .form-wrap dl dd .mwform-checkbox-field {
    display: block;
    margin-left: 10px;
  }
}
