@charset "UTF-8";
body {
  font-family: "Noto Serif JP", "serif";
}
@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}
.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (min-width: 767px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* Remove default padding */
ul, ol {
  padding: 0;
}
/* Remove default margin */
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
}
/* Set core root defaults */
html {
  scroll-behavior: smooth;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* Remove list styles on ul, ol elements with a class attribute */
ul, ol {
  list-style: none;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}
/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}
/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}
/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
/* フォームリセット */
input, button, select, textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type=submit], input[type=button], label, button, select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
/*==================================================
アコーディオンのためのcss
===================================*/
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/*アイコンの＋と×*/
.title::before, .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}
.title::before {
  top: 48%;
  left: 15px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.title.close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 1160px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #111;
  color: #fff;
}
.area_container {
  margin-bottom: 110px;
  margin-bottom: 6.875rem;
}
.area_inner {
  max-width: 1000px;
  max-width: 62.5rem;
  width: 100%;
  margin: 0 auto;
}
.area_title {
  background-color: #100E5E;
  color: #fff;
  font-size: 50px;
  letter-spacing: 0.5em;
  width: 550px;
  width: 34.375rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .area_title {
    width: 90%;
    font-size: 2.5rem;
    margin-top: 1.875rem;
  }
}
.area_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Noto Sans JP", "sans-serif";
  font-weight: 700;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .area_box {
    display: block;
    margin-top: 2.5rem;
  }
}
.area_box-left {
  margin-right: 130px;
  margin-right: 8.125rem;
}
@media screen and (max-width: 768px) {
  .area_box-left {
    margin-right: 0;
  }
}
.area_name {
  color: #100E5E;
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (max-width: 768px) {
  .area_name {
    margin-top: 1.25rem;
  }
}
.area_name-border {
  border-bottom: 1px solid #100E5E;
  font-size: 24px;
  font-size: 1.5rem;
}
.area_text {
  text-align: center;
  font-size: 42px;
  font-size: 2.625rem;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .area_text {
    font-size: 1.5rem;
  }
}
.area_image {
  max-width: 1000px;
  max-width: 62.5rem;
}
.area_image-picture {
  text-align: center;
}
.area_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 135%;
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 65px;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .area_detail {
    display: block;
  }
}
.area_detail-left {
  line-height: 135%;
  font-size: 18px;
  font-size: 1.125rem;
  margin-right: 80px;
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .area_detail-left {
    font-size: 1rem;
  }
}
.area_detail-right {
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (max-width: 768px) {
  .area_detail-right {
    margin-top: 1.25rem;
  }
}
.area_detail-right-blue {
  font-size: 26px;
  color: #2870BA;
}
@media screen and (max-width: 1024px) {
  .area_detail-right-blue {
    font-size: 1.375rem;
  }
}
.area_detail-bottom {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.area_detail-bottom-bigger {
  font-size: 21px;
  font-size: 1.3125rem;
}
.cleaning-pc {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .cleaning-pc {
    display: none;
  }
}
.cleaning-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .cleaning-sp {
    display: block;
  }
}
.contact-pc {
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .contact-pc {
    display: none;
  }
}
.contact-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact-sp {
    display: block;
  }
}
.contact_inner {
  margin-left: 20px;
  margin-left: 1.25rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}
.contact_box {
  margin: 16px auto;
  text-align: center;
}
.contact_box-text {
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 16px;
  font-size: 1rem;
  width: 600px;
  width: 37.5rem;
  margin-top: 70px;
  margin-top: 4.375rem;
  text-align: left;
  display: inline-block;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .contact_box-text {
    width: 90%;
  }
}
.contact_container {
  margin-top: 80px;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  font-family: "Noto Sans JP", "sans-serif";
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .contact_container {
    border: none;
  }
}
.contact_content {
  border: #E0E0E0 solid 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .contact_content {
    display: block;
  }
}
.contact_name:first-of-type {
  border-top: #E0E0E0 solid 1px;
}
.contact_name {
  font-size: 16px;
  font-size: 1rem;
  border-right: #E0E0E0 solid 1px;
  border-bottom: #E0E0E0 solid 1px;
  padding: 30px 0;
  padding: 1.875rem 0;
  width: 30%;
  border-left: #E0E0E0 solid 1px;
}
@media screen and (max-width: 768px) {
  .contact_name {
    width: 100%;
  }
}
.contact_name-text {
  margin-left: 20px;
  margin-left: 1.25rem;
}
.contact_required {
  border: #E0E0E0 solid 1px;
  background-color: red;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  margin-left: 20px;
  margin-left: 1.25rem;
}
.contact_answer {
  border-bottom: #E0E0E0 solid 1px;
  border-right: #E0E0E0 solid 1px;
  padding: 30px;
  padding: 1.875rem;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .contact_answer {
    width: 100%;
    border-left: #E0E0E0 solid 1px;
  }
}
.contact_answer-box {
  padding: 7px;
  padding: 0.4375rem;
  width: 500px;
  width: 31.25rem;
}
@media screen and (max-width: 768px) {
  .contact_answer-box {
    width: 21.875rem;
  }
}
@media screen and (max-width: 600px) {
  .contact_answer-box {
    width: 13.75rem;
  }
}
.contact_answer textarea {
  padding: 7px;
  padding: 0.4375rem;
  width: 500px;
  width: 31.25rem;
}
@media screen and (max-width: 600px) {
  .contact_answer textarea {
    width: 13.75rem;
  }
}
.contact_answer-zenkaku {
  display: inline;
}
.contact_answer-box {
  background-color: #FDF1F1;
}
.contact_wrapper {
  width: 1000px;
  width: 62.5rem;
}
@media screen and (max-width: 768px) {
  .contact_wrapper {
    width: 100%;
  }
}
.privacy-policy-container {
  margin: 0 auto;
  max-width: 90%;
}
.privacy-policy-title {
  text-align: center;
  padding: 20px 0;
  padding: 1.25rem 0;
  margin-top: 60px;
  margin-top: 3.75rem;
  background-color: #F6F6F6;
  border: #E0E0E0 solid 1px;
  font-family: "Noto Sans JP", "sans-serif";
}
.privacy-policy {
  margin: 50 auto;
  height: 300px;
  overflow: scroll;
  padding: 25px;
  border-bottom: 1px solid #D9D9D9;
  border-left: 1px solid #D9D9D9;
  border-right: 1px solid #D9D9D9;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", "sans-serif";
}
.privacy-policy__item p {
  margin-bottom: 25px;
}
.privacy-policy-check {
  text-align: center;
  padding: 15px 0;
  padding: 0.9375rem 0;
  background-color: #FDF1F1;
  border: #E0E0E0 solid 1px;
  font-family: "Noto Sans JP", "sans-serif";
}
.contact_btn {
  max-width: 350px;
  height: 60px;
  margin: 60px auto;
  margin: 3.75rem auto;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (max-width: 1440px) {
  .contact_btn {
    max-width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .contact_btn {
    margin: 2.5rem auto;
  }
}
input[type=submit] {
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  width: 100%;
  background-color: #D9D9D9;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
input[type=submit]:hover {
  background-color: #eae9e9;
}
.cooking-pc {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .cooking-pc {
    display: none;
  }
}
.cooking-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .cooking-sp {
    display: block;
  }
}
.cta {
  background-image: url(../images/common/cta_bg.png);
  background-size: cover;
  background-position: center center;
  height: 450px;
  height: 28.125rem;
  padding-top: 130px;
  padding-top: 8.125rem;
}
@media screen and (max-width: 768px) {
  .cta {
    height: 25rem;
  }
}
@media screen and (max-width: 600px) {
  .cta {
    padding-top: 3.125rem;
  }
}
.cta-title {
  color: #fff;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta-title {
    font-size: 1.5rem;
  }
}
.cta-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .cta-btn-box {
    margin-top: 2.5rem;
    display: block;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
  }
}
.cta-btn {
  width: 387px;
  width: 24.1875rem;
}
@media screen and (max-width: 768px) {
  .cta-btn {
    width: 70%;
  }
}
.cta-btn-left {
  height: 80px;
  height: 5rem;
  margin-right: 80px;
  margin-right: 5rem;
}
@media screen and (max-width: 768px) {
  .cta-btn-left {
    margin-right: auto;
    margin-left: auto;
  }
}
.cta-btn-right {
  height: 109px;
  height: 6.8125rem;
}
@media screen and (max-width: 768px) {
  .cta-btn-right {
    margin-right: auto;
    margin-left: auto;
    margin-top: 1.25rem;
  }
}
.example_heading {
  font-weight: bold;
  font-size: 42px;
  font-size: 2.625rem;
  color: #fff;
  background-color: #32619E;
  padding: 20px auto;
  padding: 1.25rem auto;
  margin-top: 100px;
  margin-top: 6.25rem;
  text-align: center;
  text-decoration: underline;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .example_heading {
    font-size: 1.5rem;
    margin-top: 6.25rem;
  }
}
.example-private_container {
  margin-top: 60px;
  margin-top: 3.75rem;
}
.example-private_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-top: 40px;
  margin-top: 2.5rem;
}
.example-private_item {
  width: 135px;
  width: 8.4375rem;
  height: 120px;
  height: 7.5rem;
  padding: 15px;
  padding: 0.9375rem;
  text-align: center;
  border: 1px solid #BBBBBB;
  border-left: solid 7px #EFDC82;
}
@media screen and (max-width: 768px) {
  .example-private_item {
    margin-top: 0.625rem;
  }
}
.price_private-table {
  border-collapse: collapse;
  font-size: 20px;
  font-size: 1.25rem;
  width: 800px;
  width: 50rem;
  margin: 15px auto;
  margin: 0.9375rem auto;
  font-family: "Noto Sans JP", "sans-serif";
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .price_private-table {
    font-size: 1rem;
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
  .price_private-table {
    font-size: 1rem;
    width: 95%;
  }
}
.price_private-table-title {
  background-color: #32619E;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
}
.price_private-table tr, th, td {
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
  border: 1px solid #F6FAFF;
}
.price_private-table td {
  background-color: #F6FAFF;
}
.example_private-box {
  text-align: center;
  margin: 0 auto;
  font-family: "Noto Sans JP", "sans-serif";
}
.example_private-box-text {
  display: inline-block;
  text-align: left;
}
.example_private-box-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
}
.example-corporate_container {
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .example-corporate_container {
    margin-top: 2.5rem;
  }
}
.example-corporate_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.example-corporate_item:nth-child(odd) {
  margin-right: 40px;
  margin-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .example-corporate_item:nth-child(odd) {
    margin-right: 1.25rem;
  }
}
.example-corporate_item {
  width: 380px;
  width: 23.75rem;
  height: 80px;
  height: 5rem;
  padding: 30px 0 30px 40px;
  padding: 1.875rem 0 1.875rem 2.5rem;
  border: 1px solid #BBBBBB;
  border-left: solid 7px #32619E;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (max-width: 768px) {
  .example-corporate_item {
    padding: 0.3125rem 0 0.3125rem 0.3125rem;
  }
}
.feature-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .feature-pc {
    display: none;
  }
}
.feature-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .feature-sp {
    display: block;
  }
}
.flow_inner {
  margin: 100px auto;
  margin: 6.25rem auto;
}
@media screen and (max-width: 768px) {
  .flow_inner {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.flow-pc {
  width: 1080px;
  width: 67.5rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .flow-pc {
    width: 100%;
    display: none;
  }
}
.flow-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .flow-sp {
    display: block;
  }
}
.footer_copyright {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 20px auto;
  margin: 1.25rem auto;
}
.fv-pc {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .fv-pc {
    display: none;
  }
}
.fv-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .fv-sp {
    display: block;
  }
}
.fv_cta {
  background-color: #05479B;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}
.hamburger {
  display: none;
  position: fixed;
  z-index: 3;
  right: 20px;
  right: 1.25rem;
  top: 18px;
  top: 1.125rem;
  width: 40px;
  width: 2.5rem;
  height: inherit;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: block;
  position: absolute;
  width: 25px;
  width: 1.5625rem;
  height: 1px;
  height: 0.0625rem;
  left: 6px;
  left: 0.375rem;
  background: #100E5E;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .hamburger span {
    height: 0.125rem;
    width: 1.875rem;
  }
}
.hamburger span:nth-child(1) {
  top: 7px;
  top: 0.4375rem;
}
.hamburger span:nth-child(2) {
  top: 19px;
  top: 1.1875rem;
}
.hamburger span:nth-child(3) {
  top: 30px;
  top: 1.875rem;
}
/* ナビ開いてる時のバツボタン */
.hamburger.is-open span:nth-child(1) {
  top: 16px;
  top: 1rem;
  left: 6px;
  left: 0.375rem;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.is-open span:nth-child(2), .hamburger.is-open span:nth-child(3) {
  top: 16px;
  top: 1rem;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.main {
  overflow: hidden;
}
.header {
  background-color: white;
  width: 100%;
  top: 0;
  position: fixed;
  z-index: 10;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
}
.header__inner {
  height: inherit;
  margin: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .header__inner {
    max-width: 80rem;
    padding-top: 0.3125rem;
    padding-left: 2.0625rem;
    padding-right: 0;
  }
}
.header__logo {
  height: 90px;
  height: 5.625rem;
}
.logo__link {
  height: inherit;
  display: table-cell;
  vertical-align: middle;
}
.logo__link img {
  width: 270px;
  width: 16.875rem;
}
@media screen and (max-width: 600px) {
  .logo__link img {
    width: 14.375rem;
  }
}
@media screen and (max-width: 1440px) {
  .logo__link img {
    width: 16.875rem;
  }
}
/* headerの色を変える */
/*pc-nav*/
.pc-nav {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (max-width: 1200px) {
  .pc-nav {
    display: none;
  }
}
.pc-nav__items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #100E5E;
}
.pc-nav__item {
  height: inherit;
  margin-left: 16px;
  margin-left: 1rem;
}
.pc-nav__item a {
  height: inherit;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
}
.btn-upper-img {
  position: absolute;
  top: -15px;
  top: -0.9375rem;
  width: 70%;
}
.pc-nav__item a:hover .pc-nav__item-blue {
  border-bottom: 1px solid #100E5E;
}
.pc_nav_contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/*sp-nav*/
/* ナビメニュー内 */
.sp-nav {
  font-family: "Noto Sans JP", "sans-serif";
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #100E5E;
}
.sp-nav__items {
  padding-top: 150px;
  padding-top: 9.375rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  height: 100vh;
  overflow: scroll;
}
.sp-nav__item a {
  display: block;
  width: 100%;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  text-align: center;
  color: #FFF;
  font-size: 16px;
}
.button {
  margin-left: 10px;
  margin-left: 0.625rem;
  max-height: 50px;
  max-height: 3.4rem;
}
.button-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
  border-radius: 0.625rem;
  background-color: #F15F2C;
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .button-1 {
    max-width: 18.75rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}
.button-1::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 5px;
  width: 0.3125rem;
  min-width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  border-right: 2px solid #fff;
  border-right: 0.125rem solid #fff;
  content: "";
}
@media screen and (max-width: 1200px) {
  .button-1::after {
    margin-left: 0.3125rem;
  }
}
.button-2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  min-width: 250px;
  min-width: 14rem;
  padding: 17px 10px;
  padding: 0.625rem 0.625rem;
  border-radius: 0.625rem;
  background-color: #009F41;
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .button-2 {
    max-width: 18.75rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.875rem;
    margin-bottom: 0.9375rem;
  }
}
.button-2::after {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  border-top: 2px solid #fff;
  border-top: 0.125rem solid #fff;
  border-right: 2px solid #fff;
  border-right: 0.125rem solid #fff;
  content: "";
}
.button-2 span {
  display: block;
  width: 100%;
  padding-top: 0.2rem;
  text-align: center;
  font-size: 10px;
  font-size: 0.5rem;
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .button-2 a {
    padding-bottom: 0.5em;
  }
}
.button-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 10em;
  min-width: 230px;
  padding: 0.625rem 0.625rem;
  border-radius: 0.625rem;
  background-color: #07B53B;
}
.button-3 a {
  display: block;
  width: 100%;
}
.button-3 a img {
  max-width: initial;
}
@media screen and (max-width: 1200px) {
  .button-3 {
    width: auto;
    max-width: 18.75rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}
.free-dial_icon {
  max-width: 27px;
  max-width: 1.6875rem;
  display: inline-block;
  margin-right: 3px;
  margin-right: 0.1875rem;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
.button-2_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: flex-start;
}
.laundry-pc {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .laundry-pc {
    display: none;
  }
}
.laundry-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .laundry-sp {
    display: block;
  }
}
.organizing-pc {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .organizing-pc {
    display: none;
  }
}
.organizing-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .organizing-sp {
    display: block;
  }
}
.prepare-pc {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .prepare-pc {
    display: none;
  }
}
.prepare-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .prepare-sp {
    display: block;
  }
}
.price_inner {
  max-width: 1080px;
  max-width: 67.5rem;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  font-family: "Noto Sans JP", "sans-serif";
}
.price_heading {
  margin-top: 120px;
  margin-top: 7.5rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: #364F7F;
  color: #fff;
  width: 550px;
  width: 34.375rem;
  text-align: center;
  font-size: 42px;
  font-size: 2.625rem;
}
@media screen and (max-width: 768px) {
  .price_heading {
    font-size: 1.5rem;
    width: 100%;
    margin-top: 3.75rem;
  }
}
.price_title-small {
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .price_title-small {
    font-size: 0.875rem;
  }
}
.price_title {
  margin-top: 90px;
  margin-top: 5.625rem;
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 768px) {
  .price_title {
    margin-top: 2.5rem;
    font-size: 1.375rem;
  }
}
.price_title-underline {
  border-bottom: 2px solid #000;
}
.price_lead {
  text-align: center;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
.price_lead-text {
  display: inline-block;
  text-align: left;
}
.price_lead-line_yellow {
  margin: 0 auto;
  width: 42%;
}
@media screen and (max-width: 768px) {
  .price_lead-line_yellow {
    width: 65%;
  }
}
@media screen and (max-width: 600px) {
  .price_lead-line_yellow {
    width: 84%;
  }
}
.price_spot-table {
  border-collapse: collapse;
  font-size: 20px;
  font-size: 1.25rem;
  max-width: 1080px;
  max-width: 67.5rem;
  margin: 15px auto;
  margin: 0.9375rem auto;
}
@media screen and (max-width: 768px) {
  .price_spot-table {
    font-size: 1rem;
    width: 95%;
  }
}
.price_spot-table table {
  border: 1px solid #000;
}
.price_spot-table th {
  background: #4B618D;
  color: #fff;
}
.price_spot-table th, td {
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .price_spot-table th, td {
    padding: 0.3125rem 0.625rem;
  }
}
.price_table-memo {
  text-align: left;
}
.price_spot-detail {
  line-height: 150%;
  text-align: center;
}
.price_regular-title-detail {
  font-size: 18px;
  font-size: 1.125rem;
}
.price_table-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .price_table-box {
    display: block;
  }
}
.price_spot-table-contents {
  max-width: 380px;
  max-width: 23.75rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  position: relative;
}
.price_spot-table-contents:first-child {
  margin-right: 40px;
  margin-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .price_spot-table-contents:first-child {
    margin-right: 0;
  }
}
.price_spot-table-contents-title {
  text-align: left;
}
.price_spot-table-point_01 {
  width: 15%;
  position: absolute;
}
@media screen and (max-width: 375px) {
  .price_spot-table-point_01 {
    width: 18%;
  }
}
.price_spot-table-point_01-left {
  top: -10px;
  top: -0.625rem;
  left: -11px;
  left: -0.6875rem;
}
.price_spot-table-point_01-right {
  top: -10px;
  top: -0.625rem;
  left: -9px;
}
.price_spot-table-point_02 {
  width: 34%;
  height: 17%;
  position: absolute;
  top: -23px;
  top: -1.4375rem;
  left: -11px;
  left: -0.6875rem;
}
@media screen and (max-width: 1024px) {
  .price_spot-table-point_02 {
    top: -14px;
  }
}
@media screen and (max-width: 768px) {
  .price_spot-table-point_02 {
    width: 30%;
  }
}
@media screen and (max-width: 375px) {
  .price_spot-table-point_02 {
    width: 39%;
    top: -9px;
  }
}
.price_regular-detail {
  text-align: center;
}
.price_regular-detail-text {
  display: inline-block;
  text-align: left;
  width: 800px;
  width: 50rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .price_regular-detail-text {
    width: 40.625rem;
  }
}
@media screen and (max-width: 600px) {
  .price_regular-detail-text {
    width: 18.75rem;
  }
}
.price_regular-detail-red {
  color: red;
}
.question-pc {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .question-pc {
    display: none;
  }
}
.question-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .question-sp {
    display: block;
  }
}
.question_container {
  margin: 0 auto;
}
.question_title {
  text-align: center;
  margin: 100px auto 90px;
  margin: 6.25rem auto 5.625rem;
  color: #fff;
  background-color: #0F126F;
  font-size: 42px;
  font-size: 2.625rem;
}
@media screen and (max-width: 768px) {
  .question_title {
    font-size: 1.875rem;
    margin: 3.125rem auto 2.5rem;
  }
}
.question_title-small {
  font-size: 38px;
  font-size: 2.375rem;
}
@media screen and (max-width: 768px) {
  .question_title-small {
    font-size: 1.25rem;
  }
}
.question_inner {
  font-family: "Noto Sans JP", "sans-serif";
  padding-left: 110px;
  padding-left: 6.875rem;
  padding-right: 110px;
  padding-right: 6.875rem;
}
@media screen and (max-width: 768px) {
  .question_inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.question_bg {
  background-color: #0F126F;
}
.question_underline {
  text-decoration: underline;
}
.qa-001 {
  max-width: 900px;
  max-width: 56.25rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  border: 1px solid #d6dde3;
  border-radius: 0.3125rem;
}
.qa-001 summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 6em;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .qa-001 summary {
    padding: 1em 2em 1em 5em;
  }
}
.qa-001 summary::before, .qa-001 p::before {
  position: absolute;
  left: 1em;
  font-weight: bold;
  font-size: 1.3em;
}
.qa-001 summary::before {
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  color: #0F126F;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border-radius: 50px;
}
.qa-001 summary::after {
  -webkit-transform: translateY(-25%) rotate(45deg);
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.qa-001[open] summary::after {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.qa-001 p {
  position: relative;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 6em 1.5em;
  color: #333;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
@media screen and (max-width: 768px) {
  .qa-001 p {
    padding: 0.3em 5em 1.5em;
  }
}
.qa-001[open] p {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}
.qa-001 p::before {
  line-height: 1.2;
  content: "A";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #0F126F;
  color: #fff;
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  border-radius: 50px;
}
.question_text {
  margin-top: 55px;
  margin-top: 3.4375rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .question_text {
    margin-top: 1.875rem;
    margin-bottom: 3.125rem;
  }
}
.service-flow-pc {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .service-flow-pc {
    display: none;
  }
}
.service-flow-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .service-flow-sp {
    display: block;
  }
}
.service_inner {
  text-align: center;
  width: 700px;
  width: 43.75rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .service_inner {
    width: 90%;
  }
}
.service_contents {
  margin: 0 auto;
  margin-top: 30px;
  margin-top: 1.875rem;
}
.service_contents-top {
  margin-top: 60px;
  margin-top: 3.75rem;
}
.service_title {
  color: #100E5E;
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 700;
  -webkit-text-decoration: underline double #100E5E;
  text-decoration: underline double #100E5E;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .service_title {
    margin-top: 1.875rem;
    font-size: 1.875rem;
  }
}
.service_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .service_items {
    display: block;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.service_items-title {
  font-family: "Noto Sans JP", "sans-serif";
  width: 160px;
  width: 10rem;
  font-size: 30px;
  font-size: 1.875rem;
  color: #100E5E;
  background-color: #EEF5FD;
  border-bottom: 3px solid #100E5E; /* 下線のスタイルを指定 */
}
.service_item {
  -moz-text-align-last: left;
  text-align-last: left;
  font-weight: 700;
  font-family: "Noto Sans JP", "sans-serif";
  line-height: 150%;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.service_picture {
  width: 150px;
  width: 9.375rem;
}
@media screen and (max-width: 768px) {
  .service_picture {
    margin-top: 1.25rem;
  }
}
.service_line {
  border-bottom: 1px dashed #D5C387; /* 下部に線を描く */
}
.solution {
  background-color: #EFF1F5;
}
.solution_inner {
  text-align: center;
}
.solution_item {
  width: 915px;
  width: 57.1875rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.solution_item:first-child {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.solution_text {
  font-family: "Noto Serif JP", "serif";
  font-weight: 700;
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
}
.target-pc {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .target-pc {
    display: none;
  }
}
.target-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .target-sp {
    display: block;
  }
}
.voice-pc {
  max-width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .voice-pc {
    display: none;
  }
}
.voice-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .voice-sp {
    display: block;
  }
}
.worries_bg-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .worries_bg-pc {
    display: none;
  }
}
.worries_bg-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .worries_bg-sp {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
@media screen and (min-width: 769px) {
  .floating {
    display: none;
  }
}
.floating {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  font-family: "Noto Sans JP", "sans-serif";
}
.floating ul {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
}
.floating li {
  min-width: initial;
  max-width: initial;
  max-height: initial;
  min-height: 50px;
  margin: 0;
  border-radius: 0;
}
.floating .button-2 {
  font-size: 15px;
}
.floating .button-3 img {
  max-width: 160px;
  margin: 0 auto;
}