@charset "UTF-8";
/* _reset.scss */
html {
  scroll-behavior: smooth;
}

/* Box sizing を統一 */
*, *::before, *::after {
  box-sizing: border-box;
}

/* マージン・パディングを初期化 */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* list-style を初期化 */
ul, ol {
  list-style: none;
}

/* aタグの装飾をリセット */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像の最大幅を制限 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム要素のフォントを継承 */
input, button, textarea, select {
  font: inherit;
}

/* HTML5セクションのdisplay調整（IE対策だったが今も保険） */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section {
  display: block;
}

/*!
 * Bootstrap Grid v5.3.0 (https://getbootstrap.com/)
 * Copyright 2011-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

@media (min-width: 744px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.color-merry {
  color: #D50180;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #1F1F1F;
  background-color: #FFF6F9;
  font-size: 16px;
  line-height: 30px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.site-header .header-inner-logo {
  width: 300px;
  height: 100px;
  background-color: #fff;
  border-bottom-right-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #1F1F1F;
  text-align: center;
  line-height: 1;
}
.site-header .header-inner-logo .logo {
  height: 48px;
  width: 165px;
  object-fit: contain;
  margin: 2px auto 0;
}
.site-header .header-cta {
  width: 410px;
  height: 100px;
  background-color: #D50180;
  border-bottom-left-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.site-header .header-inner-logo,
.site-header .header-cta {
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.site-header .header-inner-logo:hover,
.site-header .header-cta:hover {
  opacity: 0.6;
}

.main-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.section-staffcta {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 1000;
}
.section-staffcta .section-staffctabox {
  display: inline-block;
  border-radius: 40px 0 0 40px;
  background-color: #fff;
  padding: 20px 45px 20px 40px;
  color: #42548F;
  text-decoration: none;
  box-shadow: 0 4px 10px rgb(217, 217, 217);
  transition: opacity 0.3s ease;
  position: relative;
}
.section-staffcta .section-staffctabox:hover {
  opacity: 0.6;
}
.section-staffcta .section-staffctabox .close-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background-color: #C8C8C8;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 35px;
  cursor: default;
  z-index: 2;
}
.section-staffcta .check {
  font-size: 20px;
  line-height: 35px;
  color: #60BAFA;
  font-weight: 700;
  border-bottom: solid 1px #60BAFA;
  display: inline-block;
  margin-bottom: 20px;
}
.section-staffcta h2 {
  font-size: 25px;
  line-height: 35px;
  margin-bottom: 10px;
}
.section-staffcta .section-staffctatext {
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
  margin-bottom: 10px;
}
.section-staffcta .cta-arrow {
  font-size: 18px;
  line-height: 40px;
  font-weight: 700;
}
.section-staffcta .cta-arrow-circle {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  background-color: #42548F;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
}

.section-problem {
  padding: 120px 10px 0 10px;
}
.section-problem .container {
  max-width: 824px;
  margin: 0 auto;
}
.section-problem .nayami_title {
  max-width: 548px;
  margin: 0 auto 0 auto;
  margin-bottom: 120px;
}
.section-problem h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 0;
  color: #D50180;
  text-align: center;
  border-bottom: solid 2px #D50180;
  line-height: 1;
  padding-bottom: 25px;
  margin-bottom: 30px;
}
.section-problem .mb150 {
  margin-bottom: 150px;
}
.section-problem .nayami-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 25px;
}
.section-problem h4 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 37px;
  color: #1F1F1F;
  text-align: center;
}
.section-problem p {
  font-size: 16px;
  line-height: 30px;
  color: #1F1F1F;
}
.section-problem img {
  width: 100%;
  height: auto;
  display: block;
}

.section-merrymaids {
  text-align: center;
}
.section-merrymaids .container {
  max-width: 938px;
  margin: 0 auto;
}
.section-merrymaids h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-merrymaids h2 small {
  font-size: 25px;
}
.section-merrymaids .title-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 938px;
  margin: 0 auto 50px;
}
.section-merrymaids .title-wrapper .title-bg {
  width: 100%;
  height: auto;
  display: block;
}
.section-merrymaids .title-wrapper h3 {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 50px;
  line-height: 65px;
  font-weight: 700;
  color: #1F1F1F;
  white-space: nowrap;
  animation: bounce-once 1s ease;
}
.section-merrymaids .title-wrapper h3 small {
  font-size: 40px;
}
.section-merrymaids .title-wrapper h3 .color-merry {
  color: #D50180;
}
@media (max-width: 768px) {
  .section-merrymaids .title-wrapper h3 {
    top: 60px;
    font-size: 45px;
    line-height: 55px;
  }
  .section-merrymaids .title-wrapper h3 small {
    font-size: 30px;
  }
}
.section-merrymaids .merrymaids__bottom {
  position: relative;
  background-color: #FFD9E6;
  padding-top: 170px;
  padding-bottom: 30px;
}
.section-merrymaids .merrymaids__bottom::before {
  content: "";
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  width: 310px;
  height: 310px;
  background-color: #FFD9E6;
  border-radius: 50%;
  z-index: -100;
}
.section-merrymaids .merrymaids__bottom p, .section-merrymaids .merrymaids__bottom img {
  position: relative;
  z-index: 1;
}
.section-merrymaids .illust-image {
  width: 218px;
  margin: -300px auto 40px auto;
}
.section-merrymaids .merrymaids__bottom-txt1 {
  font-weight: 700;
  font-size: 25px;
  line-height: 50px;
}
.section-merrymaids .merrymaids__bottom-txt2 {
  font-weight: 700;
  font-size: 33px;
  line-height: 50px;
  margin-bottom: 50px;
}
.section-merrymaids .merrymaids__bottom-cap {
  display: block;
  margin: 24px auto;
  max-width: 492px;
  padding: 12px 30px 24px 30px;
  background-color: #fff;
  border: 3px solid #D50180;
  border-radius: 50px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  font-size: 30px;
  font-weight: 700;
  color: #D50180;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.section-merrymaids .merrymaids__bottom-cap small {
  font-size: 20px;
}
.section-merrymaids .merrymaids__bottom-cap:hover {
  background-color: #D50180;
  border: 3px solid #fff;
  color: #fff;
}
.section-merrymaids .merrymaids__bottom-cap:hover small {
  color: #fff;
}

.section-maid {
  background-color: #fff;
  text-align: center;
  padding: 120px 10px 0 10px;
}
.section-maid .container {
  margin: 0 auto;
}
.section-maid .section-maid__title {
  max-width: 481px;
  margin: 0 auto 20px auto;
}
.section-maid .section-maid__service {
  padding-top: 80px;
  max-width: 938px;
  margin: 0 auto;
  text-align: left;
}
.section-maid .section-maid__service-text {
  max-width: 600px;
  margin: 0 auto 60px auto;
  font-size: 16px;
  line-height: 30px;
  text-align: left;
}
.section-maid .imgborderradius {
  border-radius: 10px;
}
.section-maid .mb125 {
  margin-bottom: 125px;
}
.section-maid h2 {
  text-align: center;
  background-color: #D50180;
  border-radius: 20px;
  color: #fff;
  font-size: 25px;
  line-height: 40px;
  padding: 15px;
  margin-bottom: 65px;
}
.section-maid h3 {
  color: #D50180;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 30px;
}
.section-maid .section-maid__service-price {
  font-size: 23px;
  line-height: 40px;
  margin-bottom: 15px;
}
.section-maid .section-maid__service-price small {
  font-size: 16px;
  line-height: 40px;
}
.section-maid .section-maid__service-pricetxt {
  font-size: 16px;
  line-height: 30px;
  padding-bottom: 65px;
}

.section-campaign {
  background-image: url("../img/campaign_back_pc.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.section-flow {
  background-color: #fff;
  padding-top: 165px;
  padding-bottom: 200px;
}
.section-flow .container {
  max-width: 600px;
  margin: 0 auto;
}
.section-flow h2 {
  font-size: 25px;
  line-height: 40px;
  margin-bottom: 65px;
  text-align: center;
}
.section-flow h3 {
  font-size: 23px;
  line-height: 40px;
  margin-bottom: 10px;
  background-color: rgba(110, 188, 153, 0.4);
  padding: 10px 20px;
  border-radius: 20px;
}
.section-flow .flow-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}
.section-flow .flow-step img {
  flex-shrink: 0;
  width: 100px;
  height: auto;
}
.section-flow .flow-step .flow-text {
  flex: 1;
  padding-top: 10px;
}
.section-flow .flow-step .flow-text p {
  font-size: 16px;
  line-height: 30px;
  color: #1F1F1F;
}
.section-flow .arrow-down {
  width: 0;
  height: 0;
  border-left: 52.5px solid transparent;
  border-right: 52.5px solid transparent;
  border-top: 38px solid #D9D9D9;
  margin: 0 auto;
  margin-bottom: 40px;
}

.section-contact {
  padding: 110px 16px 150px 16px;
  background-color: #FAFAFA;
}
.section-contact .container {
  max-width: 938px;
  margin: 0 auto;
}
.section-contact h2 {
  font-size: 25px;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 50px;
  border-bottom: solid 4px #D50180;
  margin-bottom: 50px;
}
.section-contact .section-contact-text {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 40px;
}
.section-contact dl {
  display: grid;
  grid-template-columns: 250px 1fr;
  row-gap: 0;
  column-gap: 0;
  align-items: stretch;
  border-bottom: solid 1px #ededed;
  margin-bottom: 100px;
}
.section-contact dl dt, .section-contact dl dd {
  border-top: solid 1px #ededed;
  padding: 16px 0;
  display: flex;
}
.section-contact dl dt {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.section-contact dl dt .dtname {
  display: block;
}
.section-contact dl dt small {
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-top: 4px;
  width: 210px;
}
.section-contact dl dt .required {
  color: #F13B3B;
  font-size: 16px;
  margin-left: 0.5em;
  white-space: nowrap;
}
.section-contact dl dd {
  padding-left: 40px;
  font-size: 16px;
  line-height: 1.6;
  flex-direction: column;
  justify-content: center;
}
.section-contact dl dd input,
.section-contact dl dd textarea,
.section-contact dl dd select {
  width: 100%;
  padding: 8px 12px;
  font-size: 16px;
  box-sizing: border-box;
}
.section-contact dl dd input[type=radio],
.section-contact dl dd input[type=checkbox] {
  width: auto;
  margin-right: 0.5em;
}
.section-contact dl .form-radio-group {
  line-height: 40px;
}
.section-contact .form-submit {
  text-align: center;
}
.section-contact .form-submit .btn-submit {
  font-size: 18px;
  font-weight: 700;
  color: #D50180;
  border: solid 2px #D50180;
  background-color: #fff;
  border-radius: 30px;
  line-height: 80px;
  width: 100%;
  max-width: 350px;
  margin-bottom: 45px;
}
.section-contact .privacy {
  text-align: center;
}
.section-contact .thanks-block {
  max-width: 474px;
  margin: 0 auto 40px auto;
}
.section-contact .thanks-block .thanks {
  max-width: 313px;
}

.section-recruit {
  padding-top: 240px;
  padding-bottom: 50px;
  background-color: #fff;
  background-image: url("../img/staff_haikei.webp");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.section-recruit .container {
  max-width: 474px;
  margin: 0 auto;
}
.section-recruit .section-recruit__staff_title {
  margin-bottom: 40px;
}
.section-recruit h2 {
  font-size: 45px;
  line-height: 45px;
  text-align: center;
  margin-bottom: 40px;
  color: #42548F;
}
.section-recruit h2 small {
  font-size: 25px;
  display: block;
}
.section-recruit h3 {
  font-size: 25px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.section-recruit .section-recruit_img {
  border-radius: 20px;
  margin-bottom: 40px;
}
.section-recruit .section-recruit_entrytxt {
  font-size: 16px;
  line-height: 30px;
}
.section-recruit .section-recruit_entrytxt p {
  margin-bottom: 40px;
}
.section-recruit h3.entry {
  font-size: 25px;
  color: #42548F;
  font-weight: 700;
  line-height: 40px;
  padding: 60px 0;
  text-align: center;
}
.section-recruit .section-recruit_entryillust {
  max-width: 313px;
  margin-bottom: 45px;
}
.section-recruit .section-recruit_entrylink {
  font-size: 23px;
  border-radius: 20px;
  border: solid 3px #42548F;
  text-align: center;
  font-weight: 700;
  padding: 25px 0;
  color: #42548F;
  background-color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.section-recruit .section-recruit_entrylink:hover {
  background-color: #42548F;
  color: #fff;
}
.section-recruit .section-recruit_entryqr {
  margin: 45px auto;
}
.section-recruit .section-recruit_entryqrtxt {
  font-size: 16px;
  line-height: 30px;
}

footer {
  padding: 40px 0;
  background-color: #fff6f9;
}
footer .container {
  max-width: 914px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .shopnames {
  width: 480px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .shopname {
  width: 260px;
}
footer .map {
  width: 200px;
}
footer .company {
  width: 260px;
}
footer h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
footer .footer__add {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 20px;
}
footer .footer__tel {
  font-weight: 700;
  font-size: 23px;
}
footer .footer__tel .small {
  font-size: 20px;
}
footer .footer__about {
  font-size: 13px;
  line-height: 28px;
}
footer .footer__about-name {
  font-size: 16px;
  font-weight: 700;
}
footer .link {
  padding-top: 20px;
  border-bottom: solid 1px #1F1F1F;
  line-height: 2;
  transition: opacity 0.2s ease;
}
footer .link:hover {
  opacity: 0.6;
}
footer .footer__copyright {
  font-size: 13px;
  line-height: 70px;
  text-align: center;
}

.fadeinup {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 1s ease-out, transform 1s ease-out, visibility 1s;
}

.fadeinup.scrolled {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.form-error {
  display: none;
  color: #F13B3B;
  font-size: 14px;
  margin-top: 8px;
}

.form-errorphp {
  color: #F13B3B;
  font-size: 14px;
  margin-top: 8px;
}

@media (max-width: 743px) {
  .site-header .header-inner-logo {
    width: 150px;
    height: 65px;
    font-size: 9px;
  }
  .site-header .header-inner-logo .logo {
    width: 115px;
    height: auto;
  }
  .site-header .header-cta {
    width: 215px;
    height: 65px;
    font-size: 13px;
  }
}
@media (max-width: 743px) {
  .section-staffcta .check {
    font-size: 19px;
    margin-bottom: 35;
  }
  .section-staffcta h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .section-staffcta .section-staffctatext {
    font-size: 13px;
    line-height: 22px;
  }
  .section-staffcta .cta-arrow {
    font-size: 15px;
    line-height: 40px;
    font-weight: 700;
  }
  .section-staffcta .cta-arrow-circle {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-left: 10px;
    background-color: #42548F;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    font-weight: 700;
  }
  .section-problem {
    padding: 110px 10px 0 10px;
  }
  .section-problem .nayami_title {
    margin-bottom: 60px;
  }
  .section-problem h3 {
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 0;
    color: #D50180;
    text-align: center;
    border-bottom: solid 2px #D50180;
    line-height: 1;
    padding-bottom: 12px;
    margin-bottom: 25px;
  }
  .section-problem .mb150 {
    margin-bottom: 120px;
  }
  .section-problem .nayami-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 25px 25px;
  }
  .section-problem h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 29px;
    color: #1F1F1F;
    text-align: center;
  }
  .section-problem p {
    font-size: 16px;
    line-height: 30px;
    color: #1F1F1F;
  }
  .section-problem img {
    width: 100%;
    height: auto;
    display: block;
  }
  .section-merrymaids .container {
    padding: 0;
  }
  .section-merrymaids h2 {
    font-size: 21px;
  }
  .section-merrymaids h2 small {
    font-size: 15px;
  }
  .section-merrymaids .title-wrapper {
    max-width: 400px;
  }
  .section-merrymaids .title-wrapper .title-bg {
    height: auto;
    display: block;
  }
  .section-merrymaids .title-wrapper h3 {
    top: 27px;
    font-size: 26px;
    line-height: 32px;
  }
  .section-merrymaids .title-wrapper h3 small {
    font-size: 17px;
  }
  .section-merrymaids .merrymaids__bottom {
    position: relative;
    background-color: #FFD9E6;
    padding-top: 190px;
    padding-bottom: 30px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .section-merrymaids .merrymaids__bottom::before {
    width: 300px;
    height: 300px;
  }
  .section-merrymaids .illust-image {
    width: 193px;
    margin: -300px auto 40px auto;
  }
  .section-merrymaids .merrymaids__bottom-txt1 {
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
  }
  .section-merrymaids .merrymaids__bottom-txt2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 35px;
    margin-bottom: 35px;
  }
  .section-merrymaids .merrymaids__bottom-cap {
    display: block;
    margin: 24px auto;
    max-width: 492px;
    padding: 10px 10px 12px 10px;
    background-color: #fff;
    border: 1.5px solid #D50180;
    border-radius: 30px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    font-weight: 700;
  }
  .section-merrymaids .merrymaids__bottom-cap small {
    font-size: 20px;
  }
  .section-maid {
    text-align: center;
    padding: 75px 0 0 0;
  }
  .section-maid .section-maid__title {
    max-width: 100%;
  }
  .section-maid .section-maid__service {
    padding: 75px 24px 0 24px;
  }
  .section-maid .section-maid__service-text {
    max-width: 600px;
    margin: 0 auto 80px auto;
    font-size: 16px;
    line-height: 32px;
    text-align: left;
  }
  .section-maid .imgborderradius {
    border-radius: 10px;
  }
  .section-maid .mb125 {
    margin-bottom: 90px;
  }
  .section-maid .mb15 {
    margin-bottom: 15px;
  }
  .section-maid h2 {
    text-align: center;
    background-color: #D50180;
    border-radius: 20px;
    color: #fff;
    font-size: 20px;
    line-height: 35px;
    padding: 15px;
    margin-bottom: 35px;
  }
  .section-maid h3 {
    color: #D50180;
    font-size: 22px;
    line-height: 35px;
    margin-bottom: 20px;
  }
  .section-maid .section-maid__service-price {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  .section-maid .section-maid__service-price small {
    font-size: 16px;
    line-height: 32px;
  }
  .section-maid .section-maid__service-pricetxt {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 90px;
  }
  .section-campaign {
    background-image: url("../img/campaign_back_sp.webp");
  }
  .section-contact {
    background-color: #fafafa;
    padding-top: 110px;
    padding-bottom: 150px;
  }
  .section-flow {
    background-color: #fff;
    padding: 125px 12px 125px 12px;
  }
  .section-flow h2 {
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 25px;
    text-align: center;
  }
  .section-flow h3 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
    background-color: rgba(110, 188, 153, 0.4);
    padding: 20px 20px;
    border-radius: 10px;
  }
  .section-flow .flow-step {
    display: block;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  .section-flow .flow-step img {
    width: 110px;
    height: auto;
    margin: 0 auto;
  }
  .section-flow .flow-step .flow-text {
    flex: 1;
    padding-top: 10px;
  }
  .section-flow .flow-step .flow-text p {
    font-size: 16px;
    line-height: 32px;
  }
  .section-flow .arrow-down {
    width: 0;
    height: 0;
    border-left: 52.5px solid transparent;
    border-right: 52.5px solid transparent;
    border-top: 38px solid #D9D9D9;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .section-contact {
    padding: 120px 12px 150px 12px;
    background-color: #FAFAFA;
  }
  .section-contact h2 {
    font-size: 20px;
    line-height: 35px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: solid 2px #D50180;
    margin-bottom: 45px;
  }
  .section-contact .section-contact-text {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 45px;
  }
  .section-contact dl {
    display: block;
    margin-bottom: 60px;
  }
  .section-contact dl dt, .section-contact dl dd {
    padding: 10px 0;
  }
  .section-contact dl dt {
    padding-top: 30px;
    border-top: solid 1px #ededed;
    font-weight: 700;
    font-size: 20px;
    line-height: 35px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .section-contact dl dt .dtname {
    display: block;
  }
  .section-contact dl dt small {
    display: block;
    font-size: 16px;
    font-weight: normal;
    margin-top: 4px;
    width: 100%;
    line-height: 25px;
  }
  .section-contact dl dt .required {
    color: #F13B3B;
    font-size: 20px;
    line-height: 35px;
    margin-left: 0.5em;
    white-space: nowrap;
  }
  .section-contact dl dd {
    border: none;
    padding-bottom: 30px;
    font-size: 20px;
    line-height: 1.6;
    flex-direction: column;
    justify-content: center;
  }
  .section-contact dl dd input,
  .section-contact dl dd textarea,
  .section-contact dl dd select {
    width: 100%;
    padding: 8px 12px;
    font-size: 16px;
    box-sizing: border-box;
  }
  .section-contact dl dd input[type=radio],
  .section-contact dl dd input[type=checkbox] {
    width: auto;
    margin-right: 0.5em;
  }
  .section-contact dl .form-radio-group {
    line-height: 40px;
  }
  .section-contact .form-submit {
    text-align: center;
  }
  .section-contact .form-submit .btn-submit {
    font-size: 22px;
    font-weight: 400;
    color: #D50180;
    border: solid 2px #D50180;
    background-color: #fff;
    border-radius: 10px;
    line-height: 70px;
    width: 100%;
    max-width: 350px;
    margin-bottom: 35px;
  }
  .section-recruit {
    padding: 125px 0 60px 0;
    background-color: #fff;
    background-image: url("../img/staff_haikei.jpg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .section-recruit .section-recruit__staff_title {
    margin-bottom: 60px;
  }
  .section-recruit .section-recruit-container {
    padding: 0 20px;
  }
  .section-recruit h2 {
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 60px;
    color: #42548F;
  }
  .section-recruit h2 small {
    font-size: 30px;
    display: block;
  }
  .section-recruit h3 {
    font-size: 22px;
    line-height: 35px;
    text-align: center;
    margin-bottom: 35px;
  }
  .section-recruit .section-recruit_img {
    border-radius: 20px;
    margin-bottom: 40px;
  }
  .section-recruit .section-recruit_entrytxt {
    font-size: 16px;
    line-height: 32px;
  }
  .section-recruit .section-recruit_entrytxt p {
    margin-bottom: 40px;
  }
  .section-recruit h3.entry {
    font-size: 22px;
    color: #42548F;
    font-weight: 700;
    line-height: 35px;
    padding: 60px 0;
    text-align: center;
    letter-spacing: -0.1;
  }
  .section-recruit .section-recruit_entryillust {
    margin-bottom: 45px;
  }
  .section-recruit .section-recruit_entrylink {
    font-size: 22px;
    border-radius: 20px;
    border: solid 2px #42548F;
    text-align: center;
    font-weight: 700;
    padding: 25px 0;
    color: #42548F;
  }
  .section-recruit .section-recruit_entryqr {
    display: none;
  }
  .section-recruit .section-recruit_entryqrtxt {
    margin-top: 40px;
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 40px 16px;
  }
  footer .container {
    max-width: 914px;
  }
  footer h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  footer .footer__add {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  footer .footer__tel {
    font-weight: 700;
    font-size: 23px;
  }
  footer .footer__tel .small {
    font-size: 20px;
  }
  footer .footer__about {
    font-size: 13px;
    line-height: 28px;
  }
  footer .footer__about-name {
    font-size: 16px;
    font-weight: 700;
  }
  footer .link {
    padding-top: 20px;
    text-decoration: underline;
  }
  footer .footer__copyright {
    font-size: 11px;
    line-height: 70px;
    text-align: center;
  }
  footer .shopnames {
    width: 100%;
    display: block;
  }
  footer .shopname {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .map {
    width: 100%;
    margin-bottom: 40px;
  }
  footer .company {
    width: 100%;
  }
}
@keyframes bounce-once {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounce-once {
  animation: bounce-once 1s ease;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #fff;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
}

.section-privacy {
  text-align: left;
}
.section-privacy h1 {
  font-size: 24px;
  margin: 0 0 3rem 0;
}
.section-privacy h2 {
  font-size: 18px;
  margin: 0 0 1rem 0;
  text-align: left;
  padding: 0;
  border: none;
  font-weight: 700;
}
.section-privacy .ptxt {
  margin: 0 0 4rem 0;
  line-height: 30px;
  font-size: 16px;
}
.section-privacy ol {
  margin: 1rem 1rem 0 0;
  padding: 0;
  line-height: 30px;
  font-size: 16px;
}
.section-privacy .privacy-policy {
  margin-bottom: 1rem;
}

.close {
  border: solid 1px #1F1F1F;
  margin: 0 auto 2rem auto;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
}

/*# sourceMappingURL=main.css.map */
