@charset "UTF-8";
/* ===========================================
 * fonts
 * ===========================================
*/
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@400;500&family=M+PLUS+Rounded+1c:wght@400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
/* ===========================================
 * Variable
 * ===========================================
*/
/* -------------------------------------------
 * breakpoint
*/
/* -------------------------------------------
 * max-width
*/
/* -------------------------------------------
 * color
*/
/* -------------------------------------------
 * svg
*/
/* ===========================================
 * Utility
 * ===========================================
*/
/* $break-point以下の時に@contentを適用 */
/* $break-point以上の時に@contentを適用 */
/* $break-point-min以上、$break-point-max以下の時に@contentを適用 */
/* -------------------------------------------
 * font-size
*/
/* $base-font-sizeを基準に$sizeを%で指定 */
/* $base-font-sizeを基準に$sizeをremで指定 */
/* $base-font-sizeを基準に$sizeをpxで指定 */
/* $base-font-sizeを基準に$sizeをemで指定 */
/* $base-font-sizeを基準に$sizeをvwで指定 */
/* $base-font-sizeを基準に$sizeをvhで指定 */
.noto-sans-jp-400 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-rounded-1c-medium {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.m-plus-rounded-1c-bold {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.m-plus-rounded-1c-extrabold {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.m-plus-rounded-1c-black {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.kiwi-maru-medium {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-medium {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/* ===========================================
 * debug
 * ===========================================
*/
.show-for-logged-in, .hide-for-logged-in {
  display: none; /* 最初はどちらも非表示 */
}

/* ===========================================
 * common
 * ===========================================
*/
/* selecter */
html {
  overflow-x: hidden;
}

html body {
  font-family: "Noto Sans JP", sans-serif;
}

/* default font size */
p {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  font-weight: normal;
  line-height: 2;
  color: #333333;
}

.__p_vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 3;
  letter-spacing: 0.25rem;
}

figure {
  margin: 0;
}
figure img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

/* ===========================================
 * content header
 * ===========================================
*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.2;
  color: #333333;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* ===========================================
 * FAQ
 * ===========================================
*/
.sec-faq .__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
.sec-faq .__inner .accordion {
  margin: 4% auto;
  border: none;
  background: transparent;
}
.sec-faq .__inner .accordion .accordion-item {
  border: none;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 2em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button {
  display: flex;
  align-items: center;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  font-weight: bold;
  background-color: #FFF;
  border-radius: 12px;
  padding: 1em 2.5em;
  transition: background-color 0.3s;
}
.sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button::before {
  content: "Q";
  font-size: 2em;
  color: #6BA48A;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-right: 1em;
  font-weight: 700;
  font-style: normal;
}
.sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button::after {
  background-image: none;
  background-color: #6BA48A;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f068";
  margin-left: auto;
  font-size: 1em;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75em;
  border-radius: 100px;
}
.sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button.collapsed::after {
  content: "\f067";
}
.sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button:focus {
  box-shadow: none;
}
.sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button:not(.collapsed) {
  color: #6BA48A;
}
.sec-faq .__inner .accordion .accordion-item .accordion-collapse {
  border: none;
}
.sec-faq .__inner .accordion .accordion-item .accordion-collapse .accordion-body {
  background-color: #fff;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #6E6E6E;
  padding: 16px 20px;
  padding-left: 0;
  margin-left: 4em;
  border-top: 1px solid #e0e0e0;
  line-height: 2;
}
.sec-faq .__inner .accordion .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
}
@media screen and (max-width: 991px) {
  .sec-faq .__inner .accordion .accordion-item .accordion-header button.accordion-button {
    padding: 1em;
  }
}

/* ===========================================
 * CTA
 * ===========================================
*/
.sec-cta {
  margin: 12% 0 0 !important;
  position: relative;
  z-index: 1;
}
.sec-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/bg-cta-01.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
  z-index: -1;
}
.sec-cta .__inner {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 4rem;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4%;
}
.sec-cta .__inner .__title_container .__title {
  font-size: clamp(18px, 2.2703818369vw, 22px);
  font-weight: bold;
  margin-bottom: 1rem;
  color: #6BA48A;
}
.sec-cta .__inner .__title_container .__lead {
  margin: 0;
}
.sec-cta .__inner .__title_container .__lead li {
  font-size: clamp(16px, 1.8575851393vw, 18px);
  font-weight: 500;
  line-height: 2.4;
}
.sec-cta .__inner .__cta_container {
  margin: 4% 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.sec-cta .__inner .__cta_container .__item_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.sec-cta .__inner .__cta_container .__item_container .__icon {
  width: 64px;
  height: 24px;
  background-color: #B8553B;
  -webkit-mask-image: url("/assets/img/icon-cta-deco.svg");
  mask-image: url("/assets/img/icon-cta-deco.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  display: inline-block;
}
.sec-cta .__inner .__cta_container .__item_container .__copy {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  font-weight: 500;
  text-align: center;
  color: #B8553B;
}
.sec-cta .__inner .__cta_container .__item_container .__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #B8553B;
  color: #FFF;
  font-weight: 500;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  padding: 0.75em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  transition: none;
  animation: none;
  line-height: 1;
}
.sec-cta .__inner .__cta_container .__item_container.__form .__icon {
  background-color: #3F5C4C;
}
.sec-cta .__inner .__cta_container .__item_container.__form .__copy {
  color: #3F5C4C;
}
.sec-cta .__inner .__cta_container .__item_container.__form .__btn {
  background-color: #3F5C4C;
  color: #FFF;
}
@media screen and (max-width: 991px) {
  .sec-cta .__inner {
    gap: 0;
    padding: 12% 4%;
    flex-direction: column;
  }
  .sec-cta .__inner .__title_container {
    width: 100%;
    text-align: center;
  }
  .sec-cta .__inner .__title_container .__lead {
    display: inline-block;
    text-align: left;
  }
  .sec-cta .__inner .__cta_container {
    flex-direction: column;
    width: 100%;
  }
  .sec-cta .__inner .__cta_container .__item_container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .sec-cta .__inner .__cta_container .__btn {
    min-width: 100%;
  }
}

/* ===========================================
 * Site Header
 * グローバルヘッダー
 * ===========================================
*/
.site-header {
  background-color: #FFF;
}
.site-header .container {
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .site-header .container {
    background-color: #E7F5F5;
    position: relative;
  }
  .site-header .container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    z-index: 3;
  }
  .site-header .container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56%;
    z-index: 2;
  }
}
@media screen and (max-width: 991px) {
  .site-header .container .navbar {
    position: relative;
    z-index: 3;
  }
}
.site-header .container .navbar .container-fluid .navbar-brand .__logo {
  max-width: 140px;
  overflow: hidden;
}
.site-header .container .navbar .container-fluid .navbar-brand .__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item {
  margin-right: 0.5rem;
}
.site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item.__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  border-left: 1px solid #E2E2E2;
}
.site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item.__contact .nav-link {
  color: #FFF;
  border-radius: 100px;
  padding: 0.25rem 2rem;
  background-color: #3F5C4C;
  font-weight: 500;
  border: 1px solid #3F5C4C;
  transition: all 0.3s ease-in-out;
}
.site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item.__contact .nav-link:hover {
  background-color: #F6F3EF;
  color: #3F5C4C;
  box-shadow: none;
}
@media screen and (max-width: 991px) {
  .site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav {
    padding-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: right;
    gap: 1rem;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-item {
    font-family: "Zen Old Mincho", serif;
    margin-right: 0;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-link {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(112, 112, 112, 0.2);
    font-size: 14px;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .navbar-nav .nav-link::after {
    content: attr(data-en);
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    color: #BFD8CA;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents {
    margin-top: 3rem;
    padding-bottom: 2rem;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents .__btn_container {
    margin-bottom: 2rem;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents .__btn_container .__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
    width: 100%;
    background-color: #FFF;
    border-radius: 100px;
    text-decoration: none;
    padding: 0.5em 1.5em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents .__btn_container .__btn .__top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    font-family: "Zen Old Mincho", serif;
    color: #6BA48A;
    font-size: clamp(20px, 2.4767801858vw, 24px);
    border-bottom: 1px solid rgba(234, 240, 247, 0.8);
    width: 100%;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents .__btn_container .__btn .__top i {
    font-size: 0.6em;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents .__btn_container .__btn .__bottom {
    font-family: "Zen Old Mincho", serif;
    color: #BFD8CA;
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .site-header .container .navbar .container-fluid .navbar-collapse .__sp_add_contents .__bnr_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .site-header .container .navbar .container-fluid {
    padding: 0;
  }
  .site-header .container .navbar .container-fluid .custom-toggler {
    position: relative;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background-color: #6BA48A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .site-header .container .navbar .container-fluid .custom-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  .site-header .container .navbar .container-fluid .custom-toggler .label {
    color: #fff;
    font-family: "Zen Old Mincho", serif;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .site-header .container .navbar .container-fluid .custom-toggler .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
  }
  .site-header .container .navbar .container-fluid .custom-toggler .hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }
  .site-header .container .navbar .container-fluid .custom-toggler.collapsed .hamburger span:nth-child(1) {
    transform: none;
  }
  .site-header .container .navbar .container-fluid .custom-toggler.collapsed .hamburger span:nth-child(2) {
    opacity: 1;
  }
  .site-header .container .navbar .container-fluid .custom-toggler.collapsed .hamburger span:nth-child(3) {
    transform: none;
  }
  .site-header .container .navbar .container-fluid .custom-toggler.not-collapsed .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .site-header .container .navbar .container-fluid .custom-toggler.not-collapsed .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .site-header .container .navbar .container-fluid .custom-toggler.not-collapsed .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ===========================================
 * Site Footer
 * サイト フッター
 * ===========================================
*/
.sec-bnr {
  margin: 8% 0;
}
.sec-bnr .__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
.sec-bnr .__inner .__header_container {
  margin-bottom: 1rem;
}
.sec-bnr .__inner .__header_container .__text {
  width: 100%;
  font-size: clamp(16px, 1.8575851393vw, 20px);
  font-weight: 500;
  color: #333333;
  text-align: center;
  line-height: 2;
}
.sec-bnr .__inner .__bnr_container .__img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.site-footer {
  padding: 8% 0 4%;
  background-color: #fbfaf9;
}
.site-footer .container {
  width: 100%;
  padding: 0 4%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.site-footer .container .__img {
  max-width: 160px;
  overflow: hidden;
}
.site-footer .container .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.site-footer .container .__logo_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.site-footer .container .__logo_container .__copyright {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.6;
  margin: 0;
}
.site-footer .container .__nav_container .nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.site-footer .container .__nav_container .nav-list .nav-item a {
  display: block;
  padding: 0.25rem 1.5rem;
  font-size: clamp(12px, 1.4447884417vw, 14px);
  font-weight: 300;
  opacity: 0.8;
  text-decoration: none;
}
.site-footer .container .__nav_container .nav-list .nav-item a:hover {
  opacity: 1;
}
.site-footer .container .__bnr_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.site-footer .container .__bnr_container .__img {
  max-height: 64px;
  overflow: hidden;
}
.site-footer .container .__bnr_container .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 991px) {
  .site-footer .container .__bnr_container {
    display: none;
  }
  .site-footer .container .__nav_container .nav-list {
    flex-wrap: wrap;
  }
  .site-footer .container .__nav_container .nav-list .nav-item a {
    padding: 0 1rem;
    font-size: clamp(12px, 1.4447884417vw, 14px);
    border-right: 1px solid #FFF;
    padding-right: 2rem;
  }
}

@media screen and (max-width: 991px) {
  .footer-nav__container {
    width: 100%;
    position: fixed;
    z-index: 10;
    bottom: -1px;
    left: 0;
  }
  .footer-nav__container .__cta_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .footer-nav__container .__cta_container .__btn {
    flex: 1 1 50%;
    width: 50%;
  }
}

.page-top__container {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: fixed;
  display: block;
  bottom: 5vh;
  right: 3vh;
  z-index: 10;
}
@media screen and (max-width: 991px) {
  .page-top__container {
    bottom: 12vh;
  }
}

/* ===========================================
 * Top
 * ===========================================
*/
body.top {
  /**
   * --------------------------------------------
   * ヒーローコンテナ
   */
  /**
   * --------------------------------------------
   * メニュー
   */
  /**
   * --------------------------------------------
   * 概要
   */
  /**
   * --------------------------------------------
   * サービス紹介
   */
  /**
   * --------------------------------------------
   * 特徴
   */
  /**
   * --------------------------------------------
   * お客様の声
   */
  /**
   * --------------------------------------------
   * よくある質問
   */
}
body.top .site-header .container .navbar .h1-header {
  display: block;
}
body.top .site-header .container .navbar .h1-header .navbar-brand {
  display: block;
}
body.top .main-content [class^=sec-] {
  margin: 12% 0;
}
body.top .main-content .__header_container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  position: relative;
}
body.top .main-content .__header_container .__h2_header {
  margin-bottom: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
}
body.top .main-content .__header_container .__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #BFD8CA;
  margin: 0;
  line-height: 1.2;
}
body.top .main-content .__header_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2.4;
  margin-top: auto;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (max-width: 991px) {
  body.top .main-content .__header_container {
    padding: 0 4%;
  }
}
body.top .hero-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-height: calc(100vh - 70px);
}
body.top .hero-container .__swiper-fv {
  width: 100%;
}
body.top .hero-container .__swiper-fv .swiper-slide figure {
  aspect-ratio: 16/9;
  overflow: hidden;
}
body.top .hero-container .__swiper-fv .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 991px) {
  body.top .hero-container {
    height: 72vh;
  }
  body.top .hero-container .__swiper-fv {
    height: 100%;
  }
  body.top .hero-container .swiper-slide figure {
    aspect-ratio: 9/16;
  }
  body.top .hero-container .swiper-slide figure img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
body.top .hero-container .__title_container {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1280px;
  padding: 0 4%;
}
body.top .hero-container .__title_container .__title {
  font-size: clamp(32px, 4.9535603715vw, 48px);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #FFF;
  line-height: 1.4;
  margin-bottom: 1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
body.top .hero-container .__title_container .__sub_title {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  color: #FFF;
  line-height: 2.4;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
body.top .hero-container .__title_container .__btn_container .__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #3F5C4C;
  color: #FFF;
  font-weight: 500;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  padding: 1em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  transition: none;
  animation: none;
  line-height: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #3F5C4C;
  transition: all 0.3s ease-in-out;
}
body.top .hero-container .__title_container .__btn_container .__btn:hover {
  background-color: #F6F3EF;
  color: #3F5C4C;
  box-shadow: none;
}
body.top .hero-container::after {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5.5rem;
  height: 5.5rem;
  background-image: url("../img/icon-mouse.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  animation: bounce 1.5s infinite alternate;
  z-index: 3;
}
@keyframes bounce {
  from {
    transform: translateX(-50%) translateY(0);
  }
  to {
    transform: translateX(-50%) translateY(-1rem);
  }
}
@media screen and (max-width: 991px) {
  body.top .hero-container::after {
    display: none;
  }
}
body.top .sec-menu {
  margin: 0 !important;
  padding: 4% 0;
  position: relative;
  z-index: 1;
}
body.top .sec-menu .__bg_menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #FFF;
}
body.top .sec-menu .__bg_menu img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
body.top .sec-menu .__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}
body.top .sec-menu .__inner .__item_container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
}
body.top .sec-menu .__inner .__item_container .__item {
  text-decoration: none;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
body.top .sec-menu .__inner .__item_container .__item figure {
  aspect-ratio: 2/1;
  overflow: hidden;
}
body.top .sec-menu .__inner .__item_container .__item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
body.top .sec-menu .__inner .__item_container .__item:hover figure {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 991px) {
  body.top .sec-menu .__inner {
    padding: 12% 4%;
  }
  body.top .sec-menu .__inner .__item_container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  body.top .sec-menu .__inner .__item_container .__item {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    min-width: 345px;
  }
}
body.top .sec-about {
  margin: 0 !important;
}
body.top .sec-about .__inner {
  padding: 12% 0;
  position: relative;
  z-index: 1;
}
body.top .sec-about .__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 80%;
  height: 100%;
  background-color: #BFD8CA;
  z-index: -1;
}
body.top .sec-about .__inner .about-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
body.top .sec-about .__inner .about-layout .about-image-large {
  flex: 1 1 65%;
  width: 65%;
}
body.top .sec-about .__inner .about-layout .about-image-large img {
  width: 100%;
  height: auto;
  display: block;
}
body.top .sec-about .__inner .about-layout .about-text-block {
  padding-right: max(4%, (100% - 1280px) / 2);
  flex: 1 1 35%;
  width: 35%;
  writing-mode: vertical-rl;
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 3rem;
}
body.top .sec-about .__inner .about-layout .about-text-block .__header_container {
  width: 100%;
}
body.top .sec-about .__inner .about-layout .about-text-block .__header_container .__en {
  color: #FFF;
}
body.top .sec-about .__inner .about-layout .about-text-block .__header_container .__lead {
  margin: 0;
  margin-left: 0;
  margin-right: auto;
  text-orientation: upright;
}
body.top .sec-about .__inner .about-layout .about-text-block .btn-more {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 230px;
  width: 100%;
  padding: 10px 0px 10px 25px;
  line-height: 1.8;
  text-decoration: none;
  color: #333333;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
body.top .sec-about .__inner .about-layout .about-text-block .btn-more::before, body.top .sec-about .__inner .about-layout .about-text-block .btn-more::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
body.top .sec-about .__inner .about-layout .about-text-block .btn-more::before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
body.top .sec-about .__inner .about-layout .about-text-block .btn-more::after {
  left: 0;
  background: #eee;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
body.top .sec-about .__inner .about-layout .about-text-block .btn-more span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
  writing-mode: horizontal-tb;
  white-space: nowrap;
}
body.top .sec-about .__inner .about-layout .about-text-block .btn-more:hover span {
  color: #fff;
}
body.top .sec-about .__inner .about-layout .about-text-block .btn-more:hover::before {
  left: 2.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
body.top .sec-about .__inner .about-layout .about-text-block .btn-more:hover::after {
  width: 100%;
  background: #333333;
}
body.top .sec-about .__inner .about-layout .about-text-block .about-image-small {
  margin-top: 20px;
  width: 100%;
}
body.top .sec-about .__inner .about-layout .about-text-block .about-image-small img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 991px) {
  body.top .sec-about .__inner .about-layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  body.top .sec-about .__inner .about-layout .about-image-large {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 1 100%;
    width: 100%;
  }
  body.top .sec-about .__inner .about-layout .about-image-large img {
    flex: 1 1 80%;
    width: 80%;
  }
  body.top .sec-about .__inner .about-layout .about-image-large .__header_container {
    flex: 1 1 20%;
    width: 20%;
    writing-mode: vertical-rl;
    text-align: right;
  }
  body.top .sec-about .__inner .about-layout .about-image-large .__header_container .__en {
    color: #FFF;
  }
  body.top .sec-about .__inner .about-layout .about-text-block {
    flex: 1 1 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    writing-mode: horizontal-tb;
    padding: 0;
  }
  body.top .sec-about .__inner .about-layout .about-text-block .__header_container {
    padding: 0 4%;
  }
  body.top .sec-about .__inner .about-layout .about-text-block .__header_container .__lead {
    font-size: clamp(14px, 1.6511867905vw, 16px);
    line-height: 2.4;
    margin-top: auto;
    margin-bottom: 0;
    text-align: left;
    writing-mode: vertical-rl;
    text-align: left;
  }
  body.top .sec-about .__inner .about-layout .about-text-block .about-image-small {
    margin: 0;
  }
  body.top .sec-about .__inner .about-layout .btn-more {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 230px;
    width: 100%;
    padding: 10px 0px 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #333333;
    transition: 0.3s ease-in-out;
    font-weight: 500;
  }
  body.top .sec-about .__inner .about-layout .btn-more::before, body.top .sec-about .__inner .about-layout .btn-more::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
  }
  body.top .sec-about .__inner .about-layout .btn-more::before {
    width: 0.5rem;
    height: 0.5rem;
    left: 2.5rem;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    z-index: 2;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
  body.top .sec-about .__inner .about-layout .btn-more::after {
    left: 0;
    background: #eee;
    z-index: 1;
    width: 3rem;
    height: 3rem;
    border-radius: 4rem;
    transform: translateY(-50%);
    transition: all 0.5s;
    width: 100%;
    background-color: #333333;
  }
  body.top .sec-about .__inner .about-layout .btn-more span {
    position: relative;
    transition: all 0.3s;
    z-index: 3;
    writing-mode: horizontal-tb;
    white-space: nowrap;
    color: #FFF;
  }
}
body.top .sec-service .__inner {
  padding: 12% 0;
  position: relative;
  z-index: 1;
}
body.top .sec-service .__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-color: #F6F3EF;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  body.top .sec-service .__inner::before {
    width: 70%;
  }
}
body.top .sec-service .__inner .service-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
body.top .sec-service .__inner .service-layout .service-text-block {
  padding-left: max(4%, (100% - 1280px) / 2);
  flex: 1 1 35%;
  width: 35%;
  writing-mode: vertical-rl;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}
body.top .sec-service .__inner .service-layout .service-text-block .__header_container {
  width: 100%;
}
body.top .sec-service .__inner .service-layout .service-text-block .__header_container .__lead {
  margin: 0;
  margin-left: auto;
  margin-right: 0;
  text-orientation: upright;
}
body.top .sec-service .__inner .service-layout .service-text-block .btn-more {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 230px;
  width: 100%;
  padding: 10px 0px 10px 25px;
  line-height: 1.8;
  text-decoration: none;
  color: #333333;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
body.top .sec-service .__inner .service-layout .service-text-block .btn-more::before, body.top .sec-service .__inner .service-layout .service-text-block .btn-more::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
body.top .sec-service .__inner .service-layout .service-text-block .btn-more::before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
body.top .sec-service .__inner .service-layout .service-text-block .btn-more::after {
  left: 0;
  background: #eee;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
body.top .sec-service .__inner .service-layout .service-text-block .btn-more span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
  writing-mode: horizontal-tb;
  white-space: nowrap;
}
body.top .sec-service .__inner .service-layout .service-text-block .btn-more:hover span {
  color: #fff;
}
body.top .sec-service .__inner .service-layout .service-text-block .btn-more:hover::before {
  left: 2.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
body.top .sec-service .__inner .service-layout .service-text-block .btn-more:hover::after {
  width: 100%;
  background: #333333;
}
body.top .sec-service .__inner .service-layout .service-text-block .service-image-small {
  margin-top: 20px;
  width: 100%;
}
body.top .sec-service .__inner .service-layout .service-text-block .service-image-small img {
  width: 100%;
  height: auto;
  display: block;
}
body.top .sec-service .__inner .service-layout .service-image-large {
  flex: 1 1 65%;
  width: 65%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-top: 3rem;
}
body.top .sec-service .__inner .service-layout .service-image-large img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 991px) {
  body.top .sec-service .__inner .service-layout {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  body.top .sec-service .__inner .service-layout .service-text-block {
    order: 2;
    flex: 1 1 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    writing-mode: horizontal-tb;
    margin-top: 3rem;
    padding: 0;
  }
  body.top .sec-service .__inner .service-layout .service-text-block .__header_container {
    padding: 0 4%;
  }
  body.top .sec-service .__inner .service-layout .service-text-block .__header_container .__lead {
    font-size: clamp(14px, 1.6511867905vw, 16px);
    line-height: 2.4;
    text-align: left;
    writing-mode: vertical-rl;
    margin: 0;
  }
  body.top .sec-service .__inner .service-layout .service-text-block .about-image-small {
    margin: 0;
  }
  body.top .sec-service .__inner .service-layout .service-image-large {
    order: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 1 100%;
    width: 100%;
  }
  body.top .sec-service .__inner .service-layout .service-image-large img {
    flex: 1 1 80%;
    width: 80%;
  }
  body.top .sec-service .__inner .service-layout .service-image-large .__header_container {
    flex: 1 1 20%;
    width: 20%;
    writing-mode: vertical-rl;
    text-align: right;
  }
  body.top .sec-service .__inner .service-layout .service-image-large .__header_container .__en {
    color: #FFF;
  }
  body.top .sec-service .__inner .service-layout .btn-more {
    order: 3;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 230px;
    width: 100%;
    padding: 10px 0px 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #333333;
    transition: 0.3s ease-in-out;
    font-weight: 500;
  }
  body.top .sec-service .__inner .service-layout .btn-more::before, body.top .sec-service .__inner .service-layout .btn-more::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
  }
  body.top .sec-service .__inner .service-layout .btn-more::before {
    width: 0.5rem;
    height: 0.5rem;
    left: 2.5rem;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    z-index: 2;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
  body.top .sec-service .__inner .service-layout .btn-more::after {
    left: 0;
    background: #eee;
    z-index: 1;
    width: 3rem;
    height: 3rem;
    border-radius: 4rem;
    transform: translateY(-50%);
    transition: all 0.5s;
    width: 100%;
    background-color: #333333;
  }
  body.top .sec-service .__inner .service-layout .btn-more span {
    position: relative;
    transition: all 0.3s;
    z-index: 3;
    writing-mode: horizontal-tb;
    white-space: nowrap;
    color: #FFF;
  }
}
body.top .sec-feature .__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
body.top .sec-feature .__inner .__header_container {
  flex: 1 1 35%;
  width: 35%;
}
body.top .sec-feature .__inner .__header_container .__h2_header {
  margin-bottom: 1em;
}
body.top .sec-feature .__inner .__header_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
}
body.top .sec-feature .__inner .feature-layout {
  flex: 1 1 65%;
  width: 65%;
}
body.top .sec-feature .__inner .feature-layout .feature-item {
  margin-bottom: 5rem;
}
body.top .sec-feature .__inner .feature-layout .feature-item .__img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
body.top .sec-feature .__inner .feature-layout .feature-item .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
body.top .sec-feature .__inner .feature-layout .feature-item .__h3_header {
  font-size: clamp(18px, 2.2703818369vw, 22px);
  font-weight: 500;
  color: #6BA48A;
  margin-top: 1em;
  margin-bottom: 1em;
}
body.top .sec-feature .__inner .feature-layout .feature-item .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2;
}
body.top .sec-feature .__inner .feature-layout .feature-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  body.top .sec-feature .__inner {
    flex-direction: column;
    align-items: center;
  }
  body.top .sec-feature .__inner .__header_container {
    flex: 1 1 100%;
    width: 100%;
    padding: 0;
  }
  body.top .sec-feature .__inner .feature-layout {
    flex: 1 1 100%;
    width: 100%;
  }
}
body.top .sec-review .__header_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
  align-items: center;
}
body.top .sec-review .__header_container .__en {
  margin-bottom: 0.5em;
}
body.top .sec-review .__header_container .__h2_header {
  margin-bottom: 1em;
}
body.top .sec-review .__header_container .__lead {
  text-align: center;
  line-height: 2;
}
body.top .sec-review .review-posts {
  background-color: #F6F3EF;
  margin: 4% 0;
  padding: 4% 2%;
  position: relative;
  z-index: 1;
}
body.top .sec-review .review-posts .review-posts-item {
  position: relative;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: auto;
  overflow: hidden;
  background-color: #FFF;
}
body.top .sec-review .review-posts .review-posts-item .customer-info {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}
body.top .sec-review .review-posts .review-posts-item .customer-info .__left_container {
  width: 30%;
}
body.top .sec-review .review-posts .review-posts-item .customer-info .__left_container img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
body.top .sec-review .review-posts .review-posts-item .customer-info .__right_container {
  width: 70%;
}
body.top .sec-review .review-posts .review-posts-item .customer-info .__right_container .__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(14px, 1.8575851393vw, 18px);
  color: #9E7C5C;
  margin-left: 1.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid #DFE4E5;
  line-height: 1.6;
}
body.top .sec-review .review-posts .review-posts-item .revew-content {
  margin-top: 1rem;
  font-size: clamp(12px, 1.4447884417vw, 14px);
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  body.top .sec-review .review-posts {
    padding: 16% 4%;
  }
}
body.top .sec-faq .__inner .__header_container .__en {
  margin-bottom: 0.5em;
}
body.top .sec-faq .__inner .__header_container .__h2_header {
  margin-bottom: 1em;
}
body.top .sec-faq .__inner .__header_container .__lead {
  line-height: 2;
}
body.top .sec-faq .__inner .__btn_container .btn-more {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 230px;
  width: 100%;
  padding: 10px 0px 10px 25px;
  line-height: 1.8;
  text-decoration: none;
  color: #333333;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
body.top .sec-faq .__inner .__btn_container .btn-more::before, body.top .sec-faq .__inner .__btn_container .btn-more::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
body.top .sec-faq .__inner .__btn_container .btn-more::before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
body.top .sec-faq .__inner .__btn_container .btn-more::after {
  left: 0;
  background: #eee;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
body.top .sec-faq .__inner .__btn_container .btn-more span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
  writing-mode: horizontal-tb;
  white-space: nowrap;
}
body.top .sec-faq .__inner .__btn_container .btn-more:hover span {
  color: #fff;
}
body.top .sec-faq .__inner .__btn_container .btn-more:hover::before {
  left: 2.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
body.top .sec-faq .__inner .__btn_container .btn-more:hover::after {
  width: 100%;
  background: #333333;
}

/* ===========================================
 * about
 * ===========================================
*/
body.about {
  /**
   * --------------------------------------------
   * 概要
   */
  /**
   * --------------------------------------------
   * 代表メッセージ
   */
  /**
   * --------------------------------------------
   * スライダー
   */
  /**
   * --------------------------------------------
   * 会社概要
   */
}
body.about .main-content [class^=sec-] {
  margin: 12% 0;
}
body.about .main-content .__header_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
body.about .main-content .__header_container .__h2_header {
  margin-bottom: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
}
body.about .main-content .__header_container .__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #BFD8CA;
  margin: 0;
  line-height: 1.2;
}
body.about .main-content .__header_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2.4;
  margin-top: auto;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (max-width: 991px) {
  body.about .main-content .__header_container {
    padding: 0 4%;
  }
}
body.about .page-header {
  position: relative;
  z-index: 1;
}
body.about .page-header .__bg .__img {
  width: 100%;
  height: 30vh;
  overflow: hidden;
}
body.about .page-header .__bg .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
body.about .page-header .__h1_header_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
body.about .page-header .__h1_header_container .__h1_header {
  font-size: clamp(24px, 3.302373581vw, 32px);
  line-height: 1.2;
  margin-bottom: 0;
  color: #333333;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
body.about .page-header .__h1_header_container .__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #3F5C4C;
  margin-bottom: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 991px) {
  body.about .page-header .__h1_header_container {
    width: 100%;
  }
  body.about .page-header .__h1_header_container .__h1_header {
    color: #FFF;
  }
  body.about .page-header .__h1_header_container .__en {
    color: #FFF;
  }
}
body.about .sec-rehome .__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
body.about .sec-rehome .__inner .__flex_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
body.about .sec-rehome .__inner .__flex_container .__header_container {
  flex: 1 1 40%;
  width: 40%;
}
body.about .sec-rehome .__inner .__flex_container .__header_container .__h2_header {
  color: #6BA48A;
  line-height: 1.6;
  margin-bottom: 0;
}
body.about .sec-rehome .__inner .__flex_container .__text_container {
  flex: 1 1 60%;
  width: 60%;
}
body.about .sec-rehome .__inner .__flex_container .__text_container .__title {
  font-size: clamp(18px, 2.2703818369vw, 22px);
  font-weight: 500;
  line-height: 2;
  color: #9E7C5C;
}
body.about .sec-rehome .__inner .__flex_container .__text_container .__lead {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  body.about .sec-rehome .__inner {
    padding: 0;
  }
  body.about .sec-rehome .__inner .__flex_container {
    flex-direction: column;
    padding: 0 4%;
    gap: 2rem;
  }
  body.about .sec-rehome .__inner .__flex_container .__header_container {
    flex: 1 1 100%;
    width: 100%;
    padding: 0;
  }
  body.about .sec-rehome .__inner .__flex_container .__header_container .__h2_header {
    width: 100%;
  }
  body.about .sec-rehome .__inner .__flex_container .__text_container {
    flex: 1 1 100%;
    width: 100%;
  }
}
body.about .sec-message .__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
body.about .sec-message .__inner .__header_container {
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-bottom: 3rem;
}
body.about .sec-message .__inner .__header_container .__h2_header {
  color: #6BA48A;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: left;
}
body.about .sec-message .__inner .__flex_container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
}
body.about .sec-message .__inner .__flex_container .__text_container {
  flex: 1 1 50%;
  width: 50%;
}
body.about .sec-message .__inner .__flex_container .__text_container .__lead {
  font-size: 14px;
  line-height: 2.4;
  margin-bottom: 1rem;
}
body.about .sec-message .__inner .__flex_container .__text_container strong {
  color: #9E7C5C;
}
body.about .sec-message .__inner .__flex_container .__img_container {
  flex: 1 1 50%;
  width: 50%;
}
body.about .sec-message .__inner .__flex_container .__img_container .__img {
  width: 100%;
  aspect-ratio: 3/2;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}
body.about .sec-message .__inner .__flex_container .__img_container .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body.about .sec-message .__inner .__flex_container .__img_container .__img.__01 {
  width: 80%;
}
body.about .sec-message .__inner .__flex_container .__img_container .__img.__02 {
  max-width: 320px;
  width: 100%;
  height: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  margin-top: -3rem;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  body.about .sec-message .__inner .__flex_container .__img_container .__img.__02 {
    max-height: 300px;
    width: auto;
  }
}
body.about .sec-message .__inner .__flex_container .__img_container .__img.__03 {
  width: 64%;
  margin-top: -3rem;
}
body.about .sec-message .__inner .__flex_container .__img_container .__title {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 14px;
  color: #666666;
}
body.about .sec-message .__inner .__flex_container .__img_container .__name {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
@media screen and (max-width: 991px) {
  body.about .sec-message .__inner {
    padding: 0;
  }
  body.about .sec-message .__inner .__header_container {
    margin-bottom: 2rem;
  }
  body.about .sec-message .__inner .__header_container .__h2_header {
    width: 100%;
  }
  body.about .sec-message .__inner .__flex_container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 4%;
  }
  body.about .sec-message .__inner .__flex_container .__text_container {
    flex: 1 1 100%;
    width: 100%;
  }
  body.about .sec-message .__inner .__flex_container .__text_container .__lead {
    line-height: 2;
  }
  body.about .sec-message .__inner .__flex_container .__img_container {
    flex: 1 1 100%;
    width: 100%;
  }
  body.about .sec-message .__inner .__flex_container .__img_container .__img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}
body.about .sec-slide .__inner {
  margin: 4% 0;
}
body.about .sec-slide .__inner .__slide_container {
  width: 100%;
  position: relative;
  z-index: 1;
}
body.about .sec-slide .__inner .__slide_container .__swiper_about {
  position: relative;
}
body.about .sec-slide .__inner .__slide_container .__swiper_about .swiper-wrapper {
  transition-timing-function: linear;
}
body.about .sec-slide .__inner .__slide_container .__swiper_about .swiper-slide figure {
  aspect-ratio: 3/2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body.about .sec-slide .__inner .__slide_container .__swiper_about .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body.about .sec-company .__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4rem;
}
body.about .sec-company .__inner .__header_container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  flex: 1 1 10%;
  width: 10%;
  gap: 0;
  position: relative;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
body.about .sec-company .__inner .__header_container .__h2_header {
  margin-bottom: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
}
body.about .sec-company .__inner .__header_container .__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #BFD8CA;
  margin: 0;
  line-height: 1.2;
}
body.about .sec-company .__inner .company-table {
  flex: 1 1 90%;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
body.about .sec-company .__inner .company-table .company-row {
  display: flex;
  flex-wrap: wrap;
}
body.about .sec-company .__inner .company-table .company-row dt, body.about .sec-company .__inner .company-table .company-row dd {
  padding: 2em 1em;
  border-top: 1px solid #F6F3EF;
}
body.about .sec-company .__inner .company-table .company-row dt {
  width: 200px;
  font-weight: bold;
  font-size: clamp(16px, 1.8575851393vw, 18px);
}
body.about .sec-company .__inner .company-table .company-row dd {
  flex: 1;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #666666;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  body.about .sec-company .__inner {
    gap: 2rem;
  }
  body.about .sec-company .__inner .company-table {
    margin-top: 3rem;
  }
  body.about .sec-company .__inner .company-table .company-row {
    flex-direction: column;
  }
  body.about .sec-company .__inner .company-table .company-row dt, body.about .sec-company .__inner .company-table .company-row dd {
    padding: 1.5em;
  }
  body.about .sec-company .__inner .company-table .company-row dd {
    padding-left: 3em;
  }
}

/* ===========================================
 * Flow
 * ===========================================
*/
body.flow {
  /**
   * --------------------------------------------
   * 施行の流れ
   */
}
body.flow .main-content [class^=sec-] {
  margin: 12% 0;
}
body.flow .main-content .__header_container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
body.flow .main-content .__header_container .__h2_header {
  margin-bottom: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
}
body.flow .main-content .__header_container .__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #BFD8CA;
  margin: 0;
  line-height: 1.2;
}
body.flow .main-content .__header_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2.4;
  margin-top: auto;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (max-width: 991px) {
  body.flow .main-content .__header_container {
    padding: 0 4%;
  }
}
body.flow .page-header {
  position: relative;
  z-index: 1;
}
body.flow .page-header .__bg .__img {
  width: 100%;
  height: 30vh;
  overflow: hidden;
}
body.flow .page-header .__bg .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
body.flow .page-header .__h1_header_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
body.flow .page-header .__h1_header_container .__h1_header {
  font-size: clamp(24px, 3.302373581vw, 32px);
  line-height: 1.2;
  margin-bottom: 0;
  color: #333333;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
body.flow .page-header .__h1_header_container .__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #3F5C4C;
  margin-bottom: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 991px) {
  body.flow .page-header .__h1_header_container {
    width: 100%;
  }
  body.flow .page-header .__h1_header_container .__h1_header {
    color: #FFF;
  }
  body.flow .page-header .__h1_header_container .__en {
    color: #FFF;
  }
}
body.flow .sec-flow {
  width: 100%;
  padding: 0 4%;
}
body.flow .sec-flow .__header_container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 3rem;
  gap: 0;
}
body.flow .sec-flow .__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
body.flow .sec-flow .__inner .__flow_container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
body.flow .sec-flow .__inner .__flow_container .__flow_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #F6F3EF;
  border-radius: 0 2rem 0 0;
  padding: 2rem 1rem;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
}
body.flow .sec-flow .__inner .__flow_container .__flow_item .__left_container {
  flex: 1 1 35%;
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.flow .sec-flow .__inner .__flow_container .__flow_item .__left_container .__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
body.flow .sec-flow .__inner .__flow_container .__flow_item .__left_container .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
body.flow .sec-flow .__inner .__flow_container .__flow_item .__right_container {
  flex: 1 1 65%;
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
body.flow .sec-flow .__inner .__flow_container .__flow_item .__right_container .__step {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  margin-bottom: 0;
  width: 100%;
}
body.flow .sec-flow .__inner .__flow_container .__flow_item .__right_container .__step .__num {
  font-size: 1.5em;
  font-weight: 700;
  margin-left: 0.25em;
  color: #9E7C5C;
}
body.flow .sec-flow .__inner .__flow_container .__flow_item .__right_container .__h3_flow {
  width: 100%;
  padding-bottom: 0.25em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: clamp(22px, 2.4767801858vw, 24px);
}
body.flow .sec-flow .__inner .__flow_container .__flow_item .__right_container .__text_flow {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 0;
  color: #666666;
}
body.flow .sec-flow .__inner .__flow_container .__flow_item .__right_container .__btn_container .__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #3F5C4C;
  color: #FFF;
  font-weight: 500;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  padding: 1em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  transition: none;
  animation: none;
  line-height: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #3F5C4C;
  transition: all 0.3s ease-in-out;
}
body.flow .sec-flow .__inner .__flow_container .__flow_item .__right_container .__btn_container .__btn:hover {
  background-color: #FFF;
  color: #3F5C4C;
  box-shadow: none;
}
@media screen and (max-width: 991px) {
  body.flow .sec-flow .__header_container {
    padding: 0;
  }
  body.flow .sec-flow .__inner {
    padding: 0;
  }
  body.flow .sec-flow .__inner .__flow_container .__flow_item {
    flex-direction: column;
  }
  body.flow .sec-flow .__inner .__flow_container .__flow_item .__left_container {
    width: 100%;
    flex: 1 1 100%;
  }
  body.flow .sec-flow .__inner .__flow_container .__flow_item .__left_container .__img {
    max-width: 240px;
  }
  body.flow .sec-flow .__inner .__flow_container .__flow_item .__right_container {
    width: 100%;
    flex: 1 1 100%;
    max-width: 500px;
  }
  body.flow .sec-flow .__inner .__flow_container .__flow_item .__right_container .__btn_container {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
  }
}

/* ===========================================
 * Service
 * ===========================================
*/
body.service {
  /**
   * --------------------------------------------
   * 概要
   */
  /**
   * --------------------------------------------
   * サービス一覧
   */
}
body.service .main-content [class^=sec-] {
  margin: 12% 0;
}
body.service .main-content .__header_container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
body.service .main-content .__header_container .__h2_header {
  margin-bottom: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
}
body.service .main-content .__header_container .__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #BFD8CA;
  margin: 0;
  line-height: 1.2;
}
body.service .main-content .__header_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2.4;
  margin-top: auto;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (max-width: 991px) {
  body.service .main-content .__header_container {
    padding: 0 4%;
  }
}
body.service .page-header {
  position: relative;
  z-index: 1;
}
body.service .page-header .__bg .__img {
  width: 100%;
  height: 30vh;
  overflow: hidden;
}
body.service .page-header .__bg .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
body.service .page-header .__h1_header_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
body.service .page-header .__h1_header_container .__h1_header {
  font-size: clamp(24px, 3.302373581vw, 32px);
  line-height: 1.2;
  margin-bottom: 0;
  color: #333333;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
body.service .page-header .__h1_header_container .__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #3F5C4C;
  margin-bottom: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 991px) {
  body.service .page-header .__h1_header_container {
    width: 100%;
  }
  body.service .page-header .__h1_header_container .__h1_header {
    color: #FFF;
  }
  body.service .page-header .__h1_header_container .__en {
    color: #FFF;
  }
}
body.service .sec-about .__inner {
  padding: 12% 0;
  position: relative;
  z-index: 1;
}
body.service .sec-about .__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 80%;
  height: 100%;
  background-color: #BFD8CA;
  z-index: -1;
}
body.service .sec-about .__inner .about-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
body.service .sec-about .__inner .about-layout .about-image-large {
  flex: 1 1 65%;
  width: 65%;
}
body.service .sec-about .__inner .about-layout .about-image-large img {
  width: 100%;
  height: auto;
  display: block;
}
body.service .sec-about .__inner .about-layout .about-text-block {
  padding-right: max(4%, (100% - 1280px) / 2);
  flex: 1 1 35%;
  width: 35%;
  writing-mode: vertical-rl;
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 3rem;
}
body.service .sec-about .__inner .about-layout .about-text-block .__header_container {
  width: 100%;
}
body.service .sec-about .__inner .about-layout .about-text-block .__header_container .__en {
  color: #FFF;
}
body.service .sec-about .__inner .about-layout .about-text-block .__header_container .__lead {
  margin: 0;
  margin-left: 0;
  margin-right: auto;
  text-orientation: upright;
}
body.service .sec-about .__inner .about-layout .about-text-block .btn-more {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 230px;
  width: 100%;
  padding: 10px 0px 10px 25px;
  line-height: 1.8;
  text-decoration: none;
  color: #333333;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
body.service .sec-about .__inner .about-layout .about-text-block .btn-more::before, body.service .sec-about .__inner .about-layout .about-text-block .btn-more::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
body.service .sec-about .__inner .about-layout .about-text-block .btn-more::before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
body.service .sec-about .__inner .about-layout .about-text-block .btn-more::after {
  left: 0;
  background: #eee;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
body.service .sec-about .__inner .about-layout .about-text-block .btn-more span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
  writing-mode: horizontal-tb;
  white-space: nowrap;
}
body.service .sec-about .__inner .about-layout .about-text-block .btn-more:hover span {
  color: #fff;
}
body.service .sec-about .__inner .about-layout .about-text-block .btn-more:hover::before {
  left: 2.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
body.service .sec-about .__inner .about-layout .about-text-block .btn-more:hover::after {
  width: 100%;
  background: #333333;
}
body.service .sec-about .__inner .about-layout .about-text-block .about-image-small {
  margin-top: 20px;
  width: 100%;
}
body.service .sec-about .__inner .about-layout .about-text-block .about-image-small img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 991px) {
  body.service .sec-about .__inner .about-layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  body.service .sec-about .__inner .about-layout .about-image-large {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 1 100%;
    width: 100%;
  }
  body.service .sec-about .__inner .about-layout .about-image-large img {
    flex: 1 1 80%;
    width: 80%;
  }
  body.service .sec-about .__inner .about-layout .about-image-large .__header_container {
    flex: 1 1 20%;
    width: 20%;
    writing-mode: vertical-rl;
    text-align: right;
  }
  body.service .sec-about .__inner .about-layout .about-image-large .__header_container .__en {
    color: #FFF;
  }
  body.service .sec-about .__inner .about-layout .about-text-block {
    flex: 1 1 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    writing-mode: horizontal-tb;
    padding: 0;
  }
  body.service .sec-about .__inner .about-layout .about-text-block .__header_container {
    padding: 0 4%;
    flex-direction: row;
  }
  body.service .sec-about .__inner .about-layout .about-text-block .__header_container .__lead {
    margin-top: 0;
    font-size: clamp(14px, 1.6511867905vw, 16px);
    line-height: 2.4;
    writing-mode: vertical-rl;
    text-align: left;
  }
  body.service .sec-about .__inner .about-layout .about-text-block .about-image-small {
    margin: 0;
  }
  body.service .sec-about .__inner .about-layout .btn-more {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 230px;
    width: 100%;
    padding: 10px 0px 10px 25px;
    line-height: 1.8;
    text-decoration: none;
    color: #333333;
    transition: 0.3s ease-in-out;
    font-weight: 500;
  }
  body.service .sec-about .__inner .about-layout .btn-more::before, body.service .sec-about .__inner .about-layout .btn-more::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
  }
  body.service .sec-about .__inner .about-layout .btn-more::before {
    width: 0.5rem;
    height: 0.5rem;
    left: 2.5rem;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    z-index: 2;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  }
  body.service .sec-about .__inner .about-layout .btn-more::after {
    left: 0;
    background: #eee;
    z-index: 1;
    width: 3rem;
    height: 3rem;
    border-radius: 4rem;
    transform: translateY(-50%);
    transition: all 0.5s;
    width: 100%;
    background-color: #333333;
  }
  body.service .sec-about .__inner .about-layout .btn-more span {
    position: relative;
    transition: all 0.3s;
    z-index: 3;
    writing-mode: horizontal-tb;
    white-space: nowrap;
    color: #FFF;
  }
}
body.service .sec-service {
  width: 100%;
  padding: 0 4%;
}
body.service .sec-service .__header_container {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 3rem;
  gap: 0;
}
body.service .sec-service .__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
body.service .sec-service .__inner .__left_container {
  flex: 1 1 65%;
  width: 65%;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container {
  margin-bottom: 5rem;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .__swiper-service .swiper-slide figure {
  aspect-ratio: 3/2;
  width: 100%;
  overflow: hidden;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .__swiper-service .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .__swiper-service-thumbs {
  margin-top: 2rem;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .__swiper-service-thumbs .swiper-slide {
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .__swiper-service-thumbs .swiper-slide figure {
  aspect-ratio: 3/2;
  width: 100%;
  overflow: hidden;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .__swiper-service-thumbs .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item__header {
  margin-top: 2rem;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item__header .__number {
  font-size: clamp(12px, 1.4447884417vw, 14px);
  font-weight: 500;
  color: #9E7C5C;
  margin-bottom: 1em;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item__header .__notice {
  margin-top: 1em;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item__body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item__body .__contents,
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item__body .__point {
  flex: 1 1 50%;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item__body .__contents .__title,
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item__body .__point .__title {
  font-size: clamp(16px, 1.8575851393vw, 18px);
  font-weight: 500;
  margin-bottom: 1em;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item__body .__contents .__text,
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item__body .__point .__text {
  color: #333333;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 1.8;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item__body::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 90%;
  background-color: #666666;
  z-index: -1;
  opacity: 0.5;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item_price p {
  margin-bottom: 0;
}
body.service .sec-service .__inner .__left_container .__service_container .__slider_container .plan-item .plan-item_price p .__amount {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(18px, 2.4767801858vw, 24px);
  font-weight: 500;
  color: #6BA48A;
}
body.service .sec-service .__inner .__right_container {
  flex: 1 1 35%;
  width: 35%;
  position: relative;
}
body.service .sec-service .__inner .__right_container .__sidebar {
  text-align: center;
}
body.service .sec-service .__inner .__right_container .__sidebar .__btn_container {
  border: 1px solid #6BA48A;
  border-radius: 0.5rem;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
}
body.service .sec-service .__inner .__right_container .__sidebar .__btn_container .__btn_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #6BA48A;
  font-size: clamp(24px, 3.302373581vw, 32px);
  font-weight: 500;
}
body.service .sec-service .__inner .__right_container .__sidebar .__btn_container .__btn_tel .__num {
  line-height: 1;
}
body.service .sec-service .__inner .__right_container .__sidebar .__btn_container .__notice {
  margin-top: 2rem;
  margin-bottom: 0;
  line-height: 1.4;
}
body.service .sec-service .__inner .__right_container .__sidebar .__btn_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}
body.service .sec-service .__inner .__right_container .__sidebar .__btn_form .__icon {
  width: 64px;
  height: 24px;
  background-color: #3F5C4C;
  -webkit-mask-image: url("/assets/img/icon-cta-deco.svg");
  mask-image: url("/assets/img/icon-cta-deco.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  display: inline-block;
}
body.service .sec-service .__inner .__right_container .__sidebar .__btn_form .__copy {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  font-weight: 500;
  text-align: center;
  color: #3F5C4C;
}
body.service .sec-service .__inner .__right_container .__sidebar .__btn_form .__btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #3F5C4C;
  color: #FFF;
  font-weight: 500;
  margin-top: 0.5rem;
  padding: 0.75em 2.5em;
  border-radius: 100px;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #3F5C4C;
  transition: all 0.3s ease-in-out;
}
body.service .sec-service .__inner .__right_container .__sidebar .__btn_form .__btn:hover {
  background-color: #FFF;
  color: #3F5C4C;
  box-shadow: none;
}
@media screen and (max-width: 991px) {
  body.service .sec-service {
    padding-top: 24%;
  }
  body.service .sec-service .__header_container {
    width: 100%;
    padding: 0;
  }
  body.service .sec-service .__header_container .__h2_header {
    width: 100%;
  }
  body.service .sec-service .__inner .__right_container {
    display: none;
  }
}

/* ===========================================
 * Faq
 * ===========================================
*/
body.faq {
  /* ===========================================
  * FAQ
  * ===========================================
  */
}
body.faq .page-header {
  position: relative;
  z-index: 1;
}
body.faq .page-header .__bg .__img {
  width: 100%;
  height: 30vh;
  overflow: hidden;
}
body.faq .page-header .__bg .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
body.faq .page-header .__h1_header_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
body.faq .page-header .__h1_header_container .__h1_header {
  font-size: clamp(24px, 3.302373581vw, 32px);
  line-height: 1.2;
  margin-bottom: 0;
  color: #333333;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
body.faq .page-header .__h1_header_container .__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #3F5C4C;
  margin-bottom: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 991px) {
  body.faq .page-header .__h1_header_container {
    width: 100%;
  }
  body.faq .page-header .__h1_header_container .__h1_header {
    color: #FFF;
  }
  body.faq .page-header .__h1_header_container .__en {
    color: #FFF;
  }
}
body.faq .sec-faq {
  margin: 4% 0;
}
body.faq .sec-faq .__lead {
  text-align: center;
}
@media screen and (max-width: 991px) {
  body.faq .sec-faq .__lead {
    padding: 8% 0;
  }
}

/* ===========================================
 * Contact
 * ===========================================
*/
body.contact,
body.thanks {
  /* ===========================================
  * Header
  * ===========================================
  */
  /* ===========================================
  * Form
  * ===========================================
  */
  /* ===========================================
  * CTA
  * ===========================================
  */
}
body.contact .main-content [class^=sec-],
body.thanks .main-content [class^=sec-] {
  margin: 4% 0;
}
body.contact .main-content .__header_container,
body.thanks .main-content .__header_container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
body.contact .main-content .__header_container .__h2_header,
body.thanks .main-content .__header_container .__h2_header {
  margin-bottom: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
}
body.contact .main-content .__header_container .__en,
body.thanks .main-content .__header_container .__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #BFD8CA;
  margin: 0;
  line-height: 1.2;
}
body.contact .main-content .__header_container .__lead,
body.thanks .main-content .__header_container .__lead {
  font-size: clamp(14px, 1.6511867905vw, 16px);
  line-height: 2.4;
  margin-top: auto;
  margin-bottom: 0;
  text-align: left;
}
@media screen and (max-width: 991px) {
  body.contact .main-content .__header_container,
  body.thanks .main-content .__header_container {
    padding: 0 4%;
  }
}
body.contact .page-header,
body.thanks .page-header {
  position: relative;
  z-index: 1;
}
body.contact .page-header .__bg .__img,
body.thanks .page-header .__bg .__img {
  width: 100%;
  height: 30vh;
  overflow: hidden;
}
body.contact .page-header .__bg .__img img,
body.thanks .page-header .__bg .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
body.contact .page-header .__h1_header_container,
body.thanks .page-header .__h1_header_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
body.contact .page-header .__h1_header_container .__h1_header,
body.thanks .page-header .__h1_header_container .__h1_header {
  font-size: clamp(24px, 3.302373581vw, 32px);
  line-height: 1.2;
  margin-bottom: 0;
  color: #333333;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
body.contact .page-header .__h1_header_container .__en,
body.thanks .page-header .__h1_header_container .__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.6511867905vw, 16px);
  color: #3F5C4C;
  margin-bottom: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 991px) {
  body.contact .page-header .__h1_header_container,
  body.thanks .page-header .__h1_header_container {
    width: 100%;
  }
  body.contact .page-header .__h1_header_container .__h1_header,
  body.thanks .page-header .__h1_header_container .__h1_header {
    color: #FFF;
  }
  body.contact .page-header .__h1_header_container .__en,
  body.thanks .page-header .__h1_header_container .__en {
    color: #FFF;
  }
}
body.contact .sec-header .__inner,
body.thanks .sec-header .__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
  text-align: center;
}
body.contact .sec-header .__inner .__header_container,
body.thanks .sec-header .__inner .__header_container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 4% 0;
}
body.contact .sec-header .__inner .__header_container .__lead,
body.thanks .sec-header .__inner .__header_container .__lead {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  body.contact .sec-header .__inner .__header_container,
  body.thanks .sec-header .__inner .__header_container {
    flex-direction: column;
    padding: 8% 0;
  }
  body.contact .sec-header .__inner .__header_container .__title,
  body.contact .sec-header .__inner .__header_container .__lead,
  body.thanks .sec-header .__inner .__header_container .__title,
  body.thanks .sec-header .__inner .__header_container .__lead {
    text-align: left;
    width: 100%;
  }
}
body.contact .sec-header .__inner .__btn_container,
body.thanks .sec-header .__inner .__btn_container {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #6BA48A;
  border-radius: 0.5rem;
  padding: 2rem 1rem;
}
body.contact .sec-header .__inner .__btn_container .__btn_tel,
body.thanks .sec-header .__inner .__btn_container .__btn_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #6BA48A;
  font-size: clamp(24px, 3.302373581vw, 32px);
  font-weight: 500;
}
body.contact .sec-header .__inner .__btn_container .__btn_tel .__num,
body.thanks .sec-header .__inner .__btn_container .__btn_tel .__num {
  line-height: 1;
}
body.contact .sec-header .__inner .__btn_container .__notice,
body.thanks .sec-header .__inner .__btn_container .__notice {
  margin-top: 2rem;
  margin-bottom: 0;
  line-height: 1.4;
}
body.contact .sec-form .__inner,
body.thanks .sec-form .__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4%;
}
body.contact .sec-form .__inner .contact-form .__main_container,
body.thanks .sec-form .__inner .contact-form .__main_container {
  padding: 2rem 4rem;
  background-color: #F6F3EF;
}
body.contact .sec-form .__inner .contact-form .form-text,
body.thanks .sec-form .__inner .contact-form .form-text {
  white-space: nowrap;
}
body.contact .sec-form .__inner .contact-form .__pp_container,
body.thanks .sec-form .__inner .contact-form .__pp_container {
  padding: 2rem 4rem;
  text-align: center;
}
body.contact .sec-form .__inner .contact-form .__pp_container .form-text a,
body.thanks .sec-form .__inner .contact-form .__pp_container .form-text a {
  color: #6BA48A;
}
body.contact .sec-form .__inner .contact-form .__pp_container .form-text a:hover,
body.thanks .sec-form .__inner .contact-form .__pp_container .form-text a:hover {
  text-decoration: none;
}
body.contact .sec-form .__inner .contact-form .__pp_container .form-check-label,
body.thanks .sec-form .__inner .contact-form .__pp_container .form-check-label {
  justify-content: center;
  font-weight: 400;
}
body.contact .sec-form .__inner .contact-form .__pp_container .form-check-label .required,
body.thanks .sec-form .__inner .contact-form .__pp_container .form-check-label .required {
  color: #F06363;
  background-color: unset;
  margin: 0;
  padding: 0;
}
body.contact .sec-form .__inner .contact-form label,
body.thanks .sec-form .__inner .contact-form label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  color: #333333;
  margin-bottom: 0.25rem;
}
body.contact .sec-form .__inner .contact-form label .required,
body.thanks .sec-form .__inner .contact-form label .required {
  display: inline-block;
  padding: 0.2rem 1.5rem;
  color: #FFF;
  background-color: #3F5C4C;
  font-size: 0.8em;
  margin-left: 0.5rem;
}
body.contact .sec-form .__inner .contact-form label .optional,
body.thanks .sec-form .__inner .contact-form label .optional {
  display: inline-block;
  padding: 0.2rem 1.5rem;
  color: #333333;
  background-color: #C1D5EB;
  font-size: 0.8em;
  margin-left: 0.5rem;
}
body.contact .sec-form .__inner .contact-form input[type=text],
body.contact .sec-form .__inner .contact-form input[type=email],
body.contact .sec-form .__inner .contact-form input[type=tel],
body.contact .sec-form .__inner .contact-form select,
body.contact .sec-form .__inner .contact-form textarea,
body.thanks .sec-form .__inner .contact-form input[type=text],
body.thanks .sec-form .__inner .contact-form input[type=email],
body.thanks .sec-form .__inner .contact-form input[type=tel],
body.thanks .sec-form .__inner .contact-form select,
body.thanks .sec-form .__inner .contact-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 0 !important;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 400;
}
body.contact .sec-form .__inner .contact-form textarea,
body.thanks .sec-form .__inner .contact-form textarea {
  resize: vertical;
}
body.contact .sec-form .__inner .contact-form .form-submit,
body.thanks .sec-form .__inner .contact-form .form-submit {
  text-align: center;
}
body.contact .sec-form .__inner .contact-form .form-submit button,
body.thanks .sec-form .__inner .contact-form .form-submit button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background-color: #B8553B;
  color: #fff;
  padding: 2rem 0;
  font-size: clamp(16px, 1.8575851393vw, 18px);
  border: none;
  border-radius: 0;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  body.contact .sec-form .__inner,
  body.thanks .sec-form .__inner {
    padding: 0;
  }
  body.contact .sec-form .__inner .contact-form,
  body.thanks .sec-form .__inner .contact-form {
    padding: 0;
    padding-bottom: 32% !important;
  }
  body.contact .sec-form .__inner .contact-form .row label,
  body.thanks .sec-form .__inner .contact-form .row label {
    margin-bottom: 1rem;
  }
  body.contact .sec-form .__inner .contact-form .__main_container,
  body.thanks .sec-form .__inner .contact-form .__main_container {
    padding: 2rem 4%;
  }
  body.contact .sec-form .__inner .contact-form .__main_container .row,
  body.thanks .sec-form .__inner .contact-form .__main_container .row {
    justify-content: center;
  }
  body.contact .sec-form .__inner .contact-form .__pp_container,
  body.thanks .sec-form .__inner .contact-form .__pp_container {
    padding: 2rem 4%;
    padding-top: 0;
    margin-bottom: 0 !important;
  }
  body.contact .sec-form .__inner .contact-form .__pp_container .form-text,
  body.thanks .sec-form .__inner .contact-form .__pp_container .form-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
  }
  body.contact .sec-form .__inner .contact-form .__pp_container .form-check-label,
  body.thanks .sec-form .__inner .contact-form .__pp_container .form-check-label {
    gap: 0.25rem;
  }
  body.contact .sec-form .__inner .contact-form .form-submit,
  body.thanks .sec-form .__inner .contact-form .form-submit {
    padding: 8%;
  }
}
body.contact .sec-cta,
body.thanks .sec-cta {
  display: none;
}/*# sourceMappingURL=rehome-style.css.map */