@charset "UTF-8";
/*
.hoge {
  z-index: map.get($layer, modal);
}
*/
/* FLOCSS
----------------------------------------------------- */
#page_top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 25px;
  z-index: 999;
}
#page_top a:focus, #page_top a:hover {
  opacity: 1;
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

.content {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
.content._margin {
  padding-top: 100px;
  padding-bottom: 100px;
}

.top-header,
.header {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.top-header__inner,
.header__inner {
  background-color: #90f0ed;
}
.top-header-utilities,
.header-utilities {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-header-logo-area,
.header-logo-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 15px;
}
.top-header-logo-area__logo--img,
.header-logo-area__logo--img {
  width: 360px;
}
.top-header-nav-area,
.header-nav-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 80px;
}
.top-header-nav,
.header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-header-nav__wrapper,
.header-nav__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.top-header-nav__item,
.header-nav__item {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  position: relative;
}
.top-header-nav__item + .top-header-nav__item,
.top-header-nav__item + .header-nav__item,
.header-nav__item + .top-header-nav__item,
.header-nav__item + .header-nav__item {
  margin-left: 30px;
}
.top-header-nav__link,
.header-nav__link {
  position: relative;
  display: block;
  border-bottom: 4px solid transparent;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  color: #4480CF;
}
.top-header-nav__link::after,
.header-nav__link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #ee80c4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1); /*X方向0、Y方向1*/
  -webkit-transform-origin: center top;
          transform-origin: center top; /*上部中央基点*/
}
.top-header-nav__link:hover,
.header-nav__link:hover {
  color: #ee80c4;
}
.top-header-nav__link:hover::after,
.header-nav__link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.top-header-nav__link._has-child::after,
.header-nav__link._has-child::after {
  content: "";
  width: 0%;
  height: 0;
}

.top-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: calc(100% - 40px);
  margin: 20px 20px 0;
}
.top-header__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding: 10px 40px;
  border-radius: 100px;
  border: 3px solid #4480CF;
  height: 160px;
}
.top-header #stay,
.top-header .stay {
  color: #ee80c4;
}
.top-header #stay::after,
.top-header .stay::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #ee80c4;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: unset;
  transition: unset;
}
.top-header #stay:hover,
.top-header .stay:hover {
  color: #ee80c4;
}
.top-header #stay:hover::after,
.top-header .stay:hover::after {
  height: 0px;
}
.top-header__top-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-header__top-items .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 15px;
}
.top-header__top-items .right {
  margin-left: auto;
}
.top-header__bottom-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}
.top-header-top-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-header-top-nav__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.top-header-top-nav__item {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  position: relative;
}
.top-header-top-nav__item + .top-header-top-nav__item {
  margin-left: 35px;
}
.top-header-top-nav__link {
  position: relative;
  display: block;
  border-bottom: 4px solid transparent;
  font-weight: 500;
  color: #4480CF;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.top-header-top-nav__link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #ee80c4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1); /*X方向0、Y方向1*/
  -webkit-transform-origin: center top;
          transform-origin: center top; /*上部中央基点*/
}
.top-header-top-nav__link:hover {
  color: #ee80c4;
}
.top-header-top-nav__link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.top-header-top-nav__link._has-child::after {
  content: "";
  width: 0%;
  height: 0;
}

.header {
  display: none;
  position: fixed;
  top: 0;
  left: 50‰;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.header__inner {
  padding-left: 40px;
  padding-right: 40px;
}
.header.displayBlock {
  display: block;
}
.header.displayNone {
  display: none;
}
.header #stay,
.header .stay {
  color: #ee80c4;
}

/*　上に上がる動き　*/
#header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.drawer-company-btn {
  display: inline-block;
  margin-top: 20px;
  margin-left: 20px;
  text-align: center;
  width: 220px;
}
.drawer-icon {
  display: none;
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 201;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 0 9px 10px;
}
.drawer-icon.is-checked {
  -webkit-transform: translateX(-260px);
          transform: translateX(-260px);
}
.drawer-bars {
  display: inline-block;
  width: 22px;
  height: 20px;
  position: relative;
  vertical-align: bottom;
}
.drawer-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background: #777;
  width: 100%;
  height: 4px;
  border-radius: 0;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  top: 8px;
}
.drawer-bar:nth-of-type(3) {
  top: 16px;
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-background {
  display: none;
  position: fixed;
  z-index: 199;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-background.is-checked {
  display: block;
  opacity: 0.8;
}
.drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  z-index: 200;
  width: 260px;
  max-width: 90%;
  height: 100%;
  background: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  text-align: left;
  color: #707070;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
          box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}
.drawer-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer-content ul li {
  border-bottom: 1px dotted #707070;
  color: #707070;
}
.drawer-content ul li a {
  text-decoration: none;
  display: block;
  position: relative;
  padding: 16px 30px 14px 20px;
}
.drawer-content ul li a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 11px;
  background: transparent url(../img/common/drawer-arrow-right.png) no-repeat center center/contain;
}
.drawer-tel {
  display: inline-block;
  margin-top: 20px;
  margin-left: 20px;
  background-color: #fff;
  font-weight: bold;
  text-align: center;
  color: #4480CF;
  height: 50px;
  width: 220px;
  line-height: 50px;
  border-radius: 25px;
  border: 1px solid #4480CF;
}

.mobile-active {
  color: #fff !important;
  background-color: #4480CF;
}

.footer {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  background: #90f0ed;
}
.footer__inner {
  max-width: 1140px;
  padding-inline: 15px;
  margin-inline: auto;
  color: #4480CF;
}
.footer__inner-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 40px;
}
.footer__company-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer__name {
  margin-bottom: 10px;
}
.footer__name-link {
  display: block;
}
.footer__name-link .small {
  font-size: 12px;
  line-height: 1.2;
}
.footer__name-link .name {
  display: block;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}
.footer__name-img {
  width: 280px;
}
.footer .address-area__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 10px;
}
.footer .address-area__box .map-label {
  font-size: 13px;
  color: #fff;
  background-color: #4480CF;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 1px 12px;
  margin-left: 15px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.footer .address-area__box .map-label:focus, .footer .address-area__box .map-label:hover {
  background-color: #ee80c4;
}
.footer .address-area__address {
  font-weight: 500;
}
.footer__nav-area {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 30%;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer-nav__item {
  margin: 0 auto;
  text-align: right;
}
.footer-nav__item--active {
  background-color: #90f0ed;
  color: #fff;
}
.footer-nav__link {
  display: inline-block;
  padding: 0 15px;
  line-height: 2.3333333333;
  text-decoration: none;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  font-size: 14px;
}
.footer-nav__link:focus, .footer-nav__link:hover {
  color: #4480CF;
}
.footer-nav__link--last-child {
  padding-right: 0;
}
.footer .copyright {
  color: #fff;
  background-color: #4480CF;
  padding: 8px 0;
  font-size: 13px;
  text-align: center;
}

.top-mv .sp-box {
  position: relative;
  z-index: 10;
  overflow: hidden;
  height: calc(100vh - 80px);
  margin-top: 100px;
}
.top-mv .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
  -webkit-animation: animationZoom 18s ease-in-out infinite;
          animation: animationZoom 18s ease-in-out infinite;
}
@-webkit-keyframes animationZoom {
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes animationZoom {
  50% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.top-mv .catch-area {
  position: absolute;
  top: 25%;
  left: 70%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 610;
  width: 100%;
  text-align: center;
}
.top-mv .catch-area > img {
  width: 600px;
}
.top-mv .catch-area2 {
  position: absolute;
  top: 70%;
  left: 30%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 608;
  width: 100%;
  text-align: center;
}
.top-mv .catch-area2 > img {
  width: 800px;
}
.top-mv .catch-area3 {
  position: absolute;
  top: 75%;
  left: 75%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 609;
  width: 100%;
  text-align: center;
}
.top-mv__contact-icon {
  width: 390px;
  display: inline-block;
  color: #4480CF;
  background-color: #ddf5f8;
  padding: 20px 30px 10px;
  border: 3px solid #4480CF;
  border-radius: 20px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.top-mv__contact-icon .text {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  background-color: #4480CF;
  border-radius: 10px;
  padding: 6px 10px;
}
.top-mv__contact-icon .tel {
  font-family: "Montserrat", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
  font-size: 35px;
}

.mv {
  background-color: #fff;
  margin: 100px auto 20px;
  max-width: 1600px;
}
.mv-jumbotron {
  background-color: #E2FBFA;
  background-size: cover;
  background-position: center center;
  height: 350px;
  margin-inline: 10px;
  border-radius: 50px;
  border: 10px solid #90f0ed;
}
.mv-jumbotron__inner {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 15px;
}
.mv-jumbotron__inner .title {
  width: 60%;
  position: absolute;
  top: 60%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
}
.mv-jumbotron__inner .mv-image {
  position: absolute;
  top: 60%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mv-jumbotron__inner .mv-image > img {
  height: 230px;
}
.mv .mv-h2 {
  font-size: 40px;
  color: #4480CF;
  background-color: #90f0ed;
  padding-inline: 15px;
  border-radius: 5px;
  font-weight: 600;
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff;
  position: relative;
}
.mv .mv-h2._rental {
  font-size: 35px;
}

.h2 {
  font-size: 33px;
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 6px double #90f0ed;
  padding-bottom: 10px;
}
.h2-subtitle {
  font-size: 22px;
  color: #4480CF;
  font-family: "Montserrat", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  text-transform: uppercase;
  margin-left: 20px;
}

.common-btn {
  position: relative;
  z-index: 100;
  display: inline-block;
  width: 250px;
  max-width: 100%;
  padding: 12px 10px;
  border: 2px solid #fff;
  color: #fff;
  background-color: #90f0ed;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.common-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.common-btn:focus, .common-btn:hover {
  color: #90f0ed;
  background-color: #fff;
  border: 2px solid #90f0ed;
}
.common-btn:hover::after {
  background-color: #90f0ed;
}
.common-btn._top-contact {
  font-size: 18px;
  width: 350px;
  padding: 15px 60px;
  border-radius: 33px;
}
.common-btn._drums {
  font-size: 17px;
  font-family: "Montserrat", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
}

.top-company-btn {
  position: relative;
  z-index: 10;
  display: inline-block;
  width: 300px;
  max-width: 100%;
  height: 55px;
  line-height: 55px;
  color: #fff;
  background-color: #4480CF;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  border-radius: 27px;
  -webkit-transition: color 0.25s, background-color 0.25s;
  transition: color 0.25s, background-color 0.25s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.top-company-btn::after {
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 1.2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.top-company-btn:focus, .top-company-btn:hover {
  background-color: #ee80c4;
}
.top-company-btn._top-contact {
  background-color: #ee80c4;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.top-company-btn._top-contact:focus, .top-company-btn._top-contact:hover {
  background-color: #90f0ed;
  color: #4480CF;
}

.top-about {
  padding-top: 50px;
  padding-bottom: 50px;
}
.top-about__item {
  max-width: 1000px;
  margin-inline: auto;
  background-color: #F0ED90;
  padding: 30px;
  border: 4px solid #90f0ed;
  border-radius: 30px;
  text-align: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
}
.top-about__item .bg-img,
.top-about__item .bg-img2 {
  position: absolute;
  width: 130px;
  opacity: 0.8;
}
.top-about__item .bg-img {
  top: 20px;
  left: 30px;
}
.top-about__item .bg-img2 {
  bottom: 20px;
  right: 30px;
}
.top-about__item .text {
  font-size: 30px;
  font-weight: bold;
  color: #4480CF;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.top-about__item .text .strong {
  font-size: 46px;
  color: #fff;
  text-shadow: 2px 2px 1px #4480CF, -2px 2px 1px #4480CF, 2px -2px 1px #4480CF, -2px -2px 1px #4480CF, 2px 0px 1px #4480CF, 0px 2px 1px #4480CF, -2px 0px 1px #4480CF, 0px -2px 1px #4480CF;
}
.top-about__item .text .xl {
  font-size: 43px;
}
.top-about__item .text .sm {
  font-size: 24px;
}

.top-news {
  padding-top: 50px;
  padding-bottom: 60px;
}
.top-news .news_list {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  height: 415px;
  overflow-y: auto;
  border: 4px solid #90f0ed;
  border-radius: 30px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  overflow: hidden;
}
.top-news .news_list__inner {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.top-news .news_list__date {
  font-size: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 10%;
      -ms-flex: 0 0 10%;
          flex: 0 0 10%;
}
.top-news .news_list__new {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8%;
      -ms-flex: 0 0 8%;
          flex: 0 0 8%;
  margin-right: 15px;
}
.top-news .news_list__new--icon {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: #dd0000;
  /* 親要素の文字サイズを基準 */
  text-align: center;
  padding: 5px 10px;
}
.top-news .news_list__text {
  margin-right: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top-news .news_list_item {
  padding: 25px 5px;
  border-bottom: 1px solid #e6e6e6;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.top-news .news_list_item__link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.top-news .news_list_item__link:focus, .top-news .news_list_item__link:hover {
  background-color: rgba(250, 250, 250, 0.5);
}
.top-news .news_list_item:first-child {
  border-top: 1px solid #e6e6e6;
}
.top-news .file {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 12%;
      -ms-flex: 0 0 12%;
          flex: 0 0 12%;
  font-size: 13px;
  letter-spacing: 0;
  background-color: #fbdada;
  padding: 10px;
  max-width: 200px;
}

.top-strong__items-inner {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
.top-strong__items-wrapper {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 150px;
  padding-bottom: 150px;
  background: #E2FBFA;
  -webkit-clip-path: polygon(50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
          clip-path: polygon(50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
}
.top-strong__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.top-strong__item {
  background-color: #F0ED90;
  padding: 30px 15px;
  border-radius: 40px;
  border: 4px solid #90f0ed;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-strong__item .img-wrap._one {
  width: 210px;
}
.top-strong__item .img-wrap._two {
  width: 200px;
}
.top-strong__item .img-wrap._three {
  width: 240px;
}
.top-strong__item .text {
  font-size: 20px;
  font-weight: bold;
  color: #4480CF;
  margin-top: 20px;
}

.top-homeuse {
  padding-top: 10px;
  padding-bottom: 100px;
}
.top-homeuse__item {
  max-width: 1000px;
  margin-inline: auto;
  padding: 40px 90px;
  background-color: #ee80c4;
  border: 4px solid #90f0ed;
  border-radius: 100px;
  color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.top-homeuse__item .head {
  font-size: 33px;
  font-weight: bold;
  border-bottom: 2px solid #F0ED90;
  padding-bottom: 10px;
}
.top-homeuse__item .head .subhead {
  display: block;
  font-size: 16px;
  font-family: "Montserrat", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  text-transform: uppercase;
}
.top-homeuse__item .title {
  font-size: 22px;
  font-weight: bold;
  color: #F0ED90;
}
.top-homeuse__item .text {
  font-size: 19px;
}
.top-homeuse__item .btn__wrap {
  text-align: center;
  margin-top: 30px;
}
.top-homeuse__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 100px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-homeuse__list .body .title {
  font-size: 20px;
  font-weight: bold;
  color: #4480CF;
  border-bottom: 1px dotted #4480CF;
  margin-bottom: 15px;
}
.top-homeuse__list .body .date {
  display: inline-block;
  color: #fff;
  background-color: #4480CF;
  padding: 2px 10px 1px;
  border-radius: 10px;
  font-size: 14px;
}
.top-homeuse__list .body .list-text {
  font-size: 15px;
}

.top-contact {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background: transparent url(../img/common/top-contact-bg.jpg) no-repeat center center/cover;
  padding-top: 60px;
  padding-bottom: 60px;
}
.top-contact__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.top-contact__item {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-contact__item .title {
  width: 100%;
  margin-top: 13px;
  padding-left: 10px;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}
.top-contact__item .title__wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 5px;
  margin-bottom: 15px;
  position: relative;
}
.top-contact__item .title__wrap::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  height: 2px;
  width: 70px;
  background-color: #fff;
}
.top-contact__item .number {
  width: 100%;
  font-size: 32px;
  font-weight: bold;
  font-family: "Montserrat", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  text-align: center;
}
.top-contact__item .text {
  text-align: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.top-contact__item .fa-phone-alt,
.top-contact__item .fa-fax,
.top-contact__item .fa-envelope {
  font-size: 35px;
}
.top-contact__btn-wrap {
  margin-top: 20px;
}

.wash__full-bg {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 100px;
  padding-bottom: 80px;
  background: #E2FBFA;
}
.wash-about {
  padding-top: 40px;
  padding-bottom: 50px;
}
.wash-about__item {
  max-width: 1000px;
  margin-inline: auto;
  background-color: #F0ED90;
  padding: 30px;
  border: 4px solid #4480CF;
  border-radius: 30px;
  text-align: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  text-align: center;
}
.wash-about__item .text {
  font-size: 27px;
  font-weight: bold;
  color: #4480CF;
  position: relative;
  z-index: 1;
}
.wash-about__item .text .strong {
  font-size: 37px;
  color: #fff;
  margin-inline: 5px;
  text-shadow: 2px 2px 1px #4480CF, -2px 2px 1px #4480CF, 2px -2px 1px #4480CF, -2px -2px 1px #4480CF, 2px 0px 1px #4480CF, 0px 2px 1px #4480CF, -2px 0px 1px #4480CF, 0px -2px 1px #4480CF;
}
.wash-about__item .text .xl {
  font-size: 33px;
}
.wash-ion {
  padding-top: 50px;
}
.wash-ion__items {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.wash-ion__items .text {
  text-align: justify;
}
.wash-ion .sub-title {
  display: inline-block;
  padding: 20px 40px;
  background-color: #F0ED90;
  border: 4px solid #90f0ed;
  font-size: 24px;
  font-weight: bold;
  color: #4480CF;
  border-radius: 20px;
}
.wash-ion .sub-title__wrap {
  text-align: center;
  position: relative;
  top: 45px;
}
.wash-ion .attention-text {
  font-size: 18px;
  font-weight: bold;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #4480CF;
  line-height: 2;
}
.wash-ion .attention-list {
  font-size: 18px;
  font-weight: bold;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: #4480CF;
  line-height: 2;
  text-indent: -26px;
  padding-left: 20px;
}

.cleaning .sale .feature,
.rental .sale .feature {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background: #E2FBFA;
  padding-top: 50px;
  padding-bottom: 50px;
}
.cleaning .sale .feature__inner,
.rental .sale .feature__inner {
  max-width: 900px;
  margin-inline: auto;
}
.cleaning .sale .feature__title,
.rental .sale .feature__title {
  background-color: #fff;
  border: 4px solid #90f0ed;
  padding: 25px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #4480CF;
  text-align: center;
}
.cleaning .sale__items,
.rental .sale__items {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.cleaning .sale__items .body .text,
.rental .sale__items .body .text {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 10px;
}
.cleaning .sale__items .body .text__wrap,
.rental .sale__items .body .text__wrap {
  border: 4px solid #ee80c4;
  background-color: rgba(240, 237, 144, 0.7);
  color: #4480CF;
  font-weight: bold;
  padding: 20px;
  border-radius: 20px;
}
.cleaning .sale__items .head,
.rental .sale__items .head {
  text-align: center;
}
.cleaning .sale__media,
.rental .sale__media {
  max-width: 910px;
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.cleaning .sale__media .img__wrap,
.rental .sale__media .img__wrap {
  text-align: center;
}
.cleaning .sale__maker,
.rental .sale__maker {
  margin: 100px auto 50px;
}
.cleaning .sale__maker .img__wrap,
.rental .sale__maker .img__wrap {
  text-align: center;
}
.cleaning .sale__privacy,
.rental .sale__privacy {
  max-width: 910px;
  margin-inline: auto;
  padding-top: 50px;
}
.cleaning .sale__privacy .text,
.rental .sale__privacy .text {
  margin-top: 20px;
}
.cleaning .sale__privacy .list,
.rental .sale__privacy .list {
  text-indent: -22px;
  padding-left: 19px;
}
.cleaning .sale__privacy .list__wrap,
.rental .sale__privacy .list__wrap {
  margin-top: 20px;
}
.cleaning .sale__privacy .horizontal-table,
.rental .sale__privacy .horizontal-table {
  margin-top: 20px;
  border: 1px solid #ddd;
}
.cleaning .sale__privacy .horizontal-table__inner,
.rental .sale__privacy .horizontal-table__inner {
  width: 100%;
}
.cleaning .sale__privacy .horizontal-table__header,
.rental .sale__privacy .horizontal-table__header {
  width: 26%;
  padding: 15px;
  background-color: #efefef;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  vertical-align: middle;
}
.cleaning .sale__privacy .horizontal-table__header:last-child,
.rental .sale__privacy .horizontal-table__header:last-child {
  border-right-width: 0;
}
.cleaning .sale__privacy .horizontal-table__text,
.rental .sale__privacy .horizontal-table__text {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.cleaning .sale__privacy .horizontal-table__text:last-child,
.rental .sale__privacy .horizontal-table__text:last-child {
  border-right-width: 0;
}
.cleaning .sale__privacy .horizontal-table__row:last-child .horizontal-table__header, .cleaning .sale__privacy .horizontal-table__row:last-child .horizontal-table__text,
.rental .sale__privacy .horizontal-table__row:last-child .horizontal-table__header,
.rental .sale__privacy .horizontal-table__row:last-child .horizontal-table__text {
  border-bottom-width: 0;
}
.cleaning .intro,
.rental .intro {
  margin-bottom: 50px;
}
.cleaning .intro .feature,
.rental .intro .feature {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background: #E2FBFA;
  padding-top: 50px;
  padding-bottom: 50px;
}
.cleaning .intro .feature__inner,
.rental .intro .feature__inner {
  max-width: 900px;
  margin-inline: auto;
}
.cleaning .intro .feature__title,
.rental .intro .feature__title {
  background-color: #fff;
  border: 4px solid #90f0ed;
  padding: 25px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #4480CF;
  text-align: center;
}
.cleaning .intro .feature__items,
.rental .intro .feature__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}
.cleaning .intro .feature__item,
.rental .intro .feature__item {
  width: 200px;
  height: 200px;
  line-height: 200px;
  font-size: 35px;
  font-weight: bold;
  color: #804f42;
  text-shadow: 3px 3px 1px #fff, -3px 3px 1px #fff, 3px -3px 1px #fff, -3px -3px 1px #fff, 3px 0px 1px #fff, 0px 3px 1px #fff, -3px 0px 1px #fff, 0px -3px 1px #fff;
  border-radius: 100px;
  text-align: center;
  margin-inline: auto;
  background: transparent url(../img/common/feature-bg.png) no-repeat center center/contain;
}
.cleaning .intro .feature__item._green,
.rental .intro .feature__item._green {
  background-color: #ddf6c2;
}
.cleaning .intro .feature__item._blue,
.rental .intro .feature__item._blue {
  background-color: #bcfbfc;
}
.cleaning .intro .feature__item._yellow,
.rental .intro .feature__item._yellow {
  background-color: #f7f3b7;
}
.cleaning .intro .feature__item._pink,
.rental .intro .feature__item._pink {
  background-color: #fee2ef;
}
.cleaning .intro .aer__items,
.rental .intro .aer__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 30px;
  margin-top: 80px;
  text-align: center;
}
.cleaning .school__price,
.rental .school__price {
  padding-top: 50px;
  padding-bottom: 50px;
}
.cleaning .school__price .title,
.rental .school__price .title {
  font-size: 22px;
}
.cleaning .school__price .title__wrap,
.rental .school__price .title__wrap {
  width: 220px;
  display: inline-block;
  text-align: center;
  background-color: #F0ED90;
  color: #4480CF;
  font-weight: bold;
  padding: 6px 20px;
  border-radius: 10px;
}
.cleaning .school__price-items,
.rental .school__price-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.cleaning .school__price-items .body .sub-title,
.rental .school__price-items .body .sub-title {
  font-size: 18px;
}
.cleaning .school__price-items .body .text,
.rental .school__price-items .body .text {
  margin-top: 30px;
}
.cleaning .school__price-items .head > img,
.rental .school__price-items .head > img {
  border: 5px solid #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.cleaning .school__price-item._left,
.rental .school__price-item._left {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 70%;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
}
.cleaning .school__price-item .list,
.rental .school__price-item .list {
  color: #ee80c4;
  text-indent: -17px;
  padding-left: 16px;
  line-height: 2;
}
.cleaning .school__price-item .list__wrap,
.rental .school__price-item .list__wrap {
  margin-top: 20px;
}
.cleaning .school__price-item .vertical-table,
.rental .school__price-item .vertical-table {
  margin-top: 20px;
  border: 1px solid #ddd;
}
.cleaning .school__price-item .vertical-table__inner,
.rental .school__price-item .vertical-table__inner {
  width: 100%;
  text-align: center;
  table-layout: fixed;
}
.cleaning .school__price-item .vertical-table__header-row,
.rental .school__price-item .vertical-table__header-row {
  background-color: rgba(238, 128, 196, 0.3);
}
.cleaning .school__price-item .vertical-table__header,
.rental .school__price-item .vertical-table__header {
  padding: 15px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
.cleaning .school__price-item .vertical-table__header:last-child,
.rental .school__price-item .vertical-table__header:last-child {
  border-right-width: 0;
}
.cleaning .school__price-item .vertical-table__text,
.rental .school__price-item .vertical-table__text {
  padding: 15px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}
.cleaning .school__price-item .vertical-table__text:last-child,
.rental .school__price-item .vertical-table__text:last-child {
  border-right-width: 0;
}
.cleaning .school__price-item .vertical-table__body-row:last-child .vertical-table__text,
.rental .school__price-item .vertical-table__body-row:last-child .vertical-table__text {
  border-bottom-width: 0;
}
.cleaning .school__price-item .vertical-table__body-row:nth-child(odd),
.rental .school__price-item .vertical-table__body-row:nth-child(odd) {
  background-color: #E2FBFA;
}
.cleaning .school__price-media,
.rental .school__price-media {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 50px;
}
.cleaning .school__price-media .body,
.rental .school__price-media .body {
  margin-inline: auto;
}
.cleaning .school__price-media .body .text,
.rental .school__price-media .body .text {
  background-color: #E2FBFA;
  border: 4px solid #90f0ed;
  border-radius: 20px;
  padding: 25px;
  line-height: 2;
  font-size: 18px;
  text-align: justify;
}
.cleaning .school__catch,
.rental .school__catch {
  background-color: #E2FBFA;
  border: 4px solid #90f0ed;
  border-radius: 20px;
  padding: 10px;
  font-size: 22px;
  font-weight: bold;
  color: #4480CF;
  background-color: rgba(240, 237, 144, 0.5);
  margin-top: 50px;
  text-align: center;
}
.cleaning .home__option,
.rental .home__option {
  max-width: 1000px;
  margin-inline: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
.cleaning .home__option .title,
.rental .home__option .title {
  font-size: 30px;
  color: #fff;
  background-color: #4480CF;
  text-align: center;
  border-radius: 10px;
  padding: 5px;
}
.cleaning .home__option .common-sub-title,
.rental .home__option .common-sub-title {
  font-size: 22px;
  font-weight: bold;
  border-bottom: 4px double #90f0ed;
  padding-bottom: 7px;
}
.cleaning .home__option-item,
.rental .home__option-item {
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 40px;
  margin-top: 40px;
}
.cleaning .home__option-item .illust,
.rental .home__option-item .illust {
  text-align: right;
}
.cleaning .home__option-item .illust .image,
.rental .home__option-item .illust .image {
  width: 100px;
}
.cleaning .home__option .horizontal-table__inner,
.rental .home__option .horizontal-table__inner {
  margin-top: 20px;
  width: 100%;
  font-weight: bold;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.cleaning .home__option .horizontal-table__header,
.rental .home__option .horizontal-table__header {
  width: 35%;
  padding: 15px;
  border-bottom: 1px solid #ccc;
  font-weight: 600;
  vertical-align: middle;
  text-align: center;
}
.cleaning .home__option .horizontal-table__header:last-child,
.rental .home__option .horizontal-table__header:last-child {
  border-right-width: 0;
}
.cleaning .home__option .horizontal-table__header:first-child,
.rental .home__option .horizontal-table__header:first-child {
  border-top: 1px solid #ccc;
}
.cleaning .home__option .horizontal-table__text,
.rental .home__option .horizontal-table__text {
  padding: 15px;
  border-right: 1px solid #F0ED90;
  border-bottom: 1px solid #F0ED90;
  vertical-align: middle;
  text-align: center;
}
.cleaning .home__option .horizontal-table__text:last-child,
.rental .home__option .horizontal-table__text:last-child {
  border-right-width: 0;
}
.cleaning .home__option .horizontal-table__text:first-of-type,
.rental .home__option .horizontal-table__text:first-of-type {
  border-top: 1px solid #F0ED90;
}
.cleaning .home__option .horizontal-table__row:nth-child(odd),
.rental .home__option .horizontal-table__row:nth-child(odd) {
  background-color: #E2FBFA;
}
.cleaning .home__option .horizontal-table .center,
.rental .home__option .horizontal-table .center {
  margin: 0 auto;
}
.cleaning .home__option .storage,
.rental .home__option .storage {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  color: #4480CF;
  margin-top: 20px;
}
.cleaning .home__option .storage .left,
.cleaning .home__option .storage .right,
.rental .home__option .storage .left,
.rental .home__option .storage .right {
  padding: 20px;
}
.cleaning .home__option .storage .left,
.rental .home__option .storage .left {
  background-color: rgba(240, 237, 144, 0.5);
}
.cleaning .home__option .storage .right,
.rental .home__option .storage .right {
  text-align: center;
  font-weight: bold;
  background-color: rgba(238, 128, 196, 0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.cleaning .home__option .storage .right .text,
.rental .home__option .storage .right .text {
  width: 100%;
}
.cleaning .home__about,
.rental .home__about {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background: #E2FBFA;
  padding-top: 50px;
  padding-bottom: 50px;
}
.cleaning .home__about, .cleaning .home__items,
.rental .home__about,
.rental .home__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.cleaning .home__about .body .title, .cleaning .home__items .body .title,
.rental .home__about .body .title,
.rental .home__items .body .title {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.cleaning .home__about .body .title__wrap, .cleaning .home__items .body .title__wrap,
.rental .home__about .body .title__wrap,
.rental .home__items .body .title__wrap {
  text-align: center;
  border: 4px solid #ee80c4;
  background-color: #F0ED90;
  color: #4480CF;
  font-weight: bold;
  padding: 20px;
  border-radius: 20px;
}
.cleaning .home__about .body .title ._xl, .cleaning .home__items .body .title ._xl,
.rental .home__about .body .title ._xl,
.rental .home__items .body .title ._xl {
  font-size: 30px;
}
.cleaning .home__about .body .sub-title, .cleaning .home__items .body .sub-title,
.rental .home__about .body .sub-title,
.rental .home__items .body .sub-title {
  font-size: 18px;
}
.cleaning .home__about .body .text, .cleaning .home__items .body .text,
.rental .home__about .body .text,
.rental .home__items .body .text {
  margin-top: 30px;
}
.cleaning .home__about .head > img, .cleaning .home__items .head > img,
.rental .home__about .head > img,
.rental .home__items .head > img {
  border: 5px solid #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.cleaning .home__items,
.rental .home__items {
  padding-top: 50px;
}
.cleaning .home__item .horizontal-table,
.rental .home__item .horizontal-table {
  margin-top: 20px;
  border: 1px solid #ddd;
}
.cleaning .home__item .horizontal-table__inner,
.rental .home__item .horizontal-table__inner {
  width: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.cleaning .home__item .horizontal-table__header,
.rental .home__item .horizontal-table__header {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  vertical-align: middle;
}
.cleaning .home__item .horizontal-table__header:last-child,
.rental .home__item .horizontal-table__header:last-child {
  border-right-width: 0;
}
.cleaning .home__item .horizontal-table__text,
.rental .home__item .horizontal-table__text {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}
.cleaning .home__item .horizontal-table__text:last-child,
.rental .home__item .horizontal-table__text:last-child {
  border-right-width: 0;
}
.cleaning .home__item .horizontal-table__row:last-child .horizontal-table__header, .cleaning .home__item .horizontal-table__row:last-child .horizontal-table__text,
.rental .home__item .horizontal-table__row:last-child .horizontal-table__header,
.rental .home__item .horizontal-table__row:last-child .horizontal-table__text {
  border-bottom-width: 0;
}
.cleaning .home__item .horizontal-table__row:nth-child(odd),
.rental .home__item .horizontal-table__row:nth-child(odd) {
  background-color: #E2FBFA;
}
.cleaning .home__item .title,
.rental .home__item .title {
  font-size: 22px;
}
.cleaning .home__item .title__wrap,
.rental .home__item .title__wrap {
  width: 220px;
  display: inline-block;
  text-align: center;
  background-color: #F0ED90;
  color: #4480CF;
  font-weight: bold;
  padding: 6px 20px;
  border-radius: 10px;
}
.cleaning .home__attention-items,
.rental .home__attention-items {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  background: #E2FBFA;
  padding-top: 50px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 2.5fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}
.cleaning .home__attention-items .image-wrap,
.rental .home__attention-items .image-wrap {
  text-align: center;
}
.cleaning .home__attention-items .body,
.rental .home__attention-items .body {
  background-color: #F0ED90;
  border: 4px solid #90f0ed;
  padding: 30px 20px;
  border-radius: 30px;
}
.cleaning .home__attention-items .body .text,
.rental .home__attention-items .body .text {
  color: #4480CF;
  font-weight: bold;
  font-size: 18px;
}
.cleaning .land__about,
.rental .land__about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.cleaning .land__about .body .title,
.rental .land__about .body .title {
  color: #ee80c4;
  font-size: 22px;
  border-bottom: 4px double #90f0ed;
}
.cleaning .land__about .body .text,
.rental .land__about .body .text {
  margin-top: 20px;
}
.cleaning .land .common-sub-title,
.rental .land .common-sub-title {
  font-size: 22px;
  font-weight: bold;
  border-bottom: 4px double #90f0ed;
  padding-bottom: 7px;
}
.cleaning .land .sub-title,
.rental .land .sub-title {
  width: 476px;
  display: inline-block;
  padding: 20px 40px;
  background-color: #F0ED90;
  border: 4px solid #4480CF;
  font-size: 24px;
  font-weight: bold;
  color: #4480CF;
  border-radius: 20px;
}
.cleaning .land .sub-title__wrap,
.rental .land .sub-title__wrap {
  text-align: center;
  position: relative;
  top: 65px;
}
.cleaning .land .youtube,
.rental .land .youtube {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  margin-top: 10px;
}
.cleaning .land .youtube iframe,
.rental .land .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cleaning .land .youtube__wrap,
.rental .land .youtube__wrap {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.cleaning .land .youtube-title,
.rental .land .youtube-title {
  display: inline-block;
  background-color: #4480CF;
  color: #fff;
  padding: 5px 15px;
  border-radius: 10px;
}
.cleaning .land .youtube-title._before,
.rental .land .youtube-title._before {
  background-color: #ee80c4;
}
.cleaning .land__service,
.rental .land__service {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.cleaning .land__service-item,
.rental .land__service-item {
  background-color: #fff;
  border: 4px solid #90f0ed;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
}
.cleaning .land__service-item .text,
.rental .land__service-item .text {
  font-size: 20px;
  line-height: 1.5;
  color: #4480CF;
  font-weight: bold;
}
.cleaning .land__service-item .image,
.rental .land__service-item .image {
  margin-top: 20px;
}
.cleaning .land__service-item .image .img,
.rental .land__service-item .image .img {
  width: 70%;
}
.cleaning .land__appeal,
.rental .land__appeal {
  text-align: center;
  margin-top: 30px;
  color: #fff;
  background-color: #ee80c4;
  border-radius: 3px;
  padding: 6px 30px;
  font-size: 20px;
}
.cleaning .land__btn-wrap,
.rental .land__btn-wrap {
  margin-top: 20px;
}
.cleaning .reform__illust,
.rental .reform__illust {
  margin: 40px auto 0;
  text-align: center;
}
.cleaning .reform__items,
.rental .reform__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.cleaning .reform__item,
.rental .reform__item {
  margin-top: 20px;
}
.cleaning .reform__item .item-wrap,
.rental .reform__item .item-wrap {
  background-color: #E2FBFA;
  padding: 30px;
  border-radius: 20px;
}
.cleaning .reform__item .item-wrap .h4-title,
.rental .reform__item .item-wrap .h4-title {
  color: #4480CF;
  font-size: 22px;
  font-weight: bold;
}
.cleaning .reform__item .item-wrap .text,
.rental .reform__item .item-wrap .text {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  margin-top: 5px;
  line-height: 2;
}
.cleaning .reform__item .attention,
.rental .reform__item .attention {
  font-weight: bold;
  color: #ee80c4;
}
.cleaning .reform__price,
.rental .reform__price {
  margin-top: 50px;
}
.cleaning .reform__price .title,
.rental .reform__price .title {
  font-size: 22px;
}
.cleaning .reform__price .title__wrap,
.rental .reform__price .title__wrap {
  width: 220px;
  display: inline-block;
  text-align: center;
  background-color: #F0ED90;
  color: #4480CF;
  font-weight: bold;
  padding: 6px 20px;
  border-radius: 10px;
}
.cleaning .pdf__wrap,
.rental .pdf__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 50px;
}
.cleaning .pdf-btn,
.rental .pdf-btn {
  text-align: center;
  font-size: 18px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  width: 380px;
  color: #fff;
  padding: 10px;
  background-color: #4480CF;
  border-radius: 26px;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s;
  transition: background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.cleaning .pdf-btn:hover, .cleaning .pdf-btn:focus,
.rental .pdf-btn:hover,
.rental .pdf-btn:focus {
  background-color: #ee80c4;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.company {
  max-width: 1000px;
  margin-inline: auto;
}
.company .profile {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  padding-block: 100px;
}
.company .profile .access-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
}
.company .profile .horizontal-table__inner {
  width: 100%;
}
.company .profile .horizontal-table__header {
  width: 25%;
  padding: 15px;
  border-bottom: 1px solid #ee80c4;
  font-weight: 600;
  vertical-align: middle;
}
.company .profile .horizontal-table__header:last-child {
  border-right-width: 0;
}
.company .profile .horizontal-table__header:first-child {
  border-top: 1px solid #ee80c4;
}
.company .profile .horizontal-table__text {
  padding: 15px;
  border-right: 1px solid #90f0ed;
  border-bottom: 1px solid #90f0ed;
  vertical-align: middle;
}
.company .profile .horizontal-table__text:last-child {
  border-right-width: 0;
}
.company .profile .horizontal-table__text:first-of-type {
  border-top: 1px solid #90f0ed;
}
.company .profile .horizontal-table__row:nth-child(odd) {
  background-color: #E2FBFA;
}
.company .profile .horizontal-table .center {
  margin: 0 auto;
}
.company .access-map {
  position: relative;
  aspect-ratio: 4/1;
}
.company .access-map iframe {
  width: 100%;
  height: 500px;
}
.company .access-text {
  color: #4480CF;
  text-indent: -22px;
  padding-left: 16px;
  text-align: justify;
}
.company .access-text__wrap {
  margin-top: 20px;
  background-color: #F0ED90;
  padding: 5px 10px;
  border-radius: 10px;
}

.tel-fax {
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  background: rgba(238, 128, 196, 0.2);
}
.tel-fax__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #4480CF;
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 30px;
  color: #fff;
}
.tel-fax__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 48.33333%;
      -ms-flex: 0 0 48.33333%;
          flex: 0 0 48.33333%;
  margin-right: 3.33333%;
}
.tel-fax__box-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-left: 1px solid #fff;
}
.tel-fax__box-right > *:last-child {
  margin-bottom: 0;
}
.tel-fax__line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.tel-fax__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 23px;
  color: #4480CF;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
.tel-fax__title::before, .tel-fax__title::after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #ee80c4;
}
.tel-fax__title::before {
  margin-right: 15px;
}
.tel-fax__title::after {
  margin-left: 15px;
}
.tel-fax .tel__img {
  font-size: 35px;
}
.tel-fax .tel-number {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  padding-left: 15px;
}
.tel-fax .cards__item {
  max-width: 1000px;
  margin-inline: auto;
  padding: 20px;
  background-color: #E2FBFA;
  text-align: center;
  border: 2px solid #4480CF;
  border-radius: 30px;
}
.tel-fax .cards > .cards__item:nth-of-type(2n) {
  margin-right: 0;
}

.mail-form {
  padding-top: 50px;
  padding-bottom: 50px;
  /*ラジオボタンorチェックボックス
  ------------------------------------*/
  /*フォーカス時*/
  /*クリック範囲*/
  /*ラジオボタンスタイル*/
  /*ラジオボタンチェック印（未選択）*/
  /*ラジオボタンチェック印（選択）*/
  /*チェックボックススタイル*/
  /*チェックボックス未チェック時*/
  /*チェックボックスチェック時*/
  /*セレクトボックス
  ------------------------------------*/
  /*テキストエリア
  ------------------------------------*/
}
.mail-form ::-webkit-input-placeholder {
  color: #aaa;
}
.mail-form ::-moz-placeholder {
  color: #aaa;
}
.mail-form :-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::placeholder {
  color: #aaa;
}
.mail-form__text {
  margin-bottom: 50px;
}
.mail-form__text > p {
  line-height: 2;
}
.mail-form .form-p {
  display: inline-block;
}
.mail-form .form-input {
  border: 1px solid #aaa;
  padding: 5px 10px;
  width: 80%;
}
.mail-form .form-input._age {
  width: 40%;
}
.mail-form .label {
  display: inline-block;
  background-color: #ee80c4;
  color: #fff;
  padding: 4px 10px 2px;
  font-size: 13px;
  border-radius: 5px;
}
.mail-form__file-text {
  display: block;
  font-size: 13px;
  color: #cc2a1f;
  text-indent: -13px;
  padding-left: 13px;
}
.mail-form .horizontal-table__inner {
  width: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.mail-form .horizontal-table__header {
  width: 27%;
  padding: 20px;
  background: rgba(144, 240, 237, 0.2);
  border-bottom: 1px solid #aaa;
  font-weight: bold;
  vertical-align: middle;
}
.mail-form .horizontal-table__header--required {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mail-form .horizontal-table__header:first-child {
  border-top: 1px solid #aaa;
}
.mail-form .horizontal-table__header:last-child {
  border-right-width: 0;
}
.mail-form .horizontal-table__text {
  padding: 10px 20px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.mail-form .horizontal-table__text:first-of-type {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table__text:last-child {
  border-right-width: 0;
}
.mail-form .horizontal-table .center {
  margin: 0 auto;
}
.mail-form .privacy-policy {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 5px;
  text-align: center;
  border-bottom: 4px double #4480CF;
}
.mail-form .box-scroll {
  width: 100%;
  height: 240px;
  padding: 20px;
  border: 1px solid #ddd;
  overflow: hidden;
  overflow-y: scroll;
  margin-bottom: 30px;
  background-color: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.mail-form .box-scroll__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  border-left: 8px solid #333;
  margin-bottom: 8px;
  padding-left: 8px;
}
.mail-form .box-scroll__li {
  text-indent: -18px;
  padding-left: 20px;
  letter-spacing: 0;
  margin-bottom: 7px;
}
.mail-form .privacy-wrapper {
  text-align: center;
}
.mail-form .privacy__title {
  font-weight: 600;
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.mail-form .privacy__address {
  text-indent: -53px;
  padding-left: 53px;
}
.mail-form .privacy__link {
  color: blue;
  text-decoration: underline;
}
.mail-form .privacy__link:hover {
  color: #999;
}
.mail-form .privacy-btn {
  display: inline-block;
  background-color: #4480CF;
  color: #fff;
  padding: 15px 10px;
  width: 350px;
  border-radius: 10px;
}
.mail-form .privacy-btn__wrapper {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mail-form .privacy-btn:focus, .mail-form .privacy-btn:hover {
  opacity: 0.6;
}
.mail-form .send-btn__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mail-form .send-btn {
  display: inline-block;
  background-color: #4480CF;
  color: #fff;
  border: 2px solid transparent;
  padding: 15px;
  text-align: center;
  width: 320px;
  border-radius: 10px;
}
.mail-form .send-btn:focus, .mail-form .send-btn:hover {
  opacity: 0.6;
}
.mail-form .send-btn--back {
  margin-right: 100px;
  color: #4480CF;
  background-color: #fff;
  border: 2px solid #4480CF;
}
.mail-form input[type=radio],
.mail-form input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.mail-form input[type=radio]:focus + span,
.mail-form input[type=checkbox]:focus + span {
  outline: 1px solid #ccc;
}
.mail-form input[type=radio] + span,
.mail-form input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin: 0 2em 0 0;
  padding: 0.3em 0.3em 0.3em 2em;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}
.mail-form input[type=radio] + span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.375em;
  height: 1.375em;
  border: 1px solid #999;
  border-radius: 50%;
  line-height: 1;
  background: #fff;
}
.mail-form input[type=radio] + span:after {
  content: "";
  display: none;
}
.mail-form input[type=radio]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0.2em;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #3d98b4;
  line-height: 1;
}
.mail-form input[type=checkbox] + span:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  content: "";
  width: 1.25em;
  height: 1.25em;
  border: 1px solid #999;
  background: #fff;
  line-height: 1;
  vertical-align: middle;
}
.mail-form input[type=checkbox] + span:after {
  content: "";
  display: none;
}
.mail-form input[type=checkbox]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0.4em;
  width: 0.5em;
  height: 1em;
  content: "";
  border-bottom: 3px solid #3d98b4;
  border-right: 3px solid #3d98b4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mail-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /*ブラウザ標準スタイルを解除*/
  display: block;
  width: 100%;
  padding: 5px 30px 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.mail-form .selectWrap {
  /*selectの親要素をアイコン配置の基準とする*/
  position: relative;
  display: block;
  width: 30%;
}
.mail-form .selectWrap::after {
  /*矢印アイコン自作*/
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none; /*矢印の上もクリック可能にする*/
}
.mail-form textarea {
  resize: none;
}

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

.text-right {
  text-align: right;
}

.text-yellow {
  color: #F0ED90;
}

.text-blue {
  color: #4480CF;
}

.text-red {
  color: #ee80c4;
}

#drum,
#cable {
  margin-top: -100px;
  padding-top: 100px;
}

/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/* タブ
---------------------------------------------------- */
.tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
}

.tab li a {
  display: block;
  color: #4480CF;
  background: #90f0ed;
  border-radius: 8px;
  padding: 10px 15px;
  width: 230px;
  font-size: 18px;
  text-align: center;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  color: #fff;
  background: #4480CF;
}

/*エリアの表示非表示と形状*/
.area {
  background: #fff;
  padding-block: 50px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*========= レイアウトのためのCSS ===============*/
.wrapper {
  width: 100%;
  margin: 30px auto 0;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

main {
  overflow: hidden; /*横スクロールの発生を防止*/
}

body {
  font-size: 16px;
  font-family: "BIZ UDGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1px;
  color: #333;
}

a {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

a:hover {
  text-decoration: none;
}

img {
  height: auto;
}

/* FLOCSS
----------------------------------------------------- */
.l-inner {
  max-width: 1230px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.l-inner--has-column {
  display: grid;
  gap: 40px;
  grid-template-columns: 3fr minmax(260px, 1fr);
}

/* FLOCSS
----------------------------------------------------- */
.c-btn {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 20px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-btn:focus, .c-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}
.c-btn--arrow-right {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.c-btn--arrow-right::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 8.3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btn--icon {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.c-btn--icon::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 60px;
  background: transparent url(/images/nav_07.png) no-repeat center center/contain;
}
.c-btn--large {
  width: 340px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 20px;
}
.c-btn--warning {
  background-color: #f1de00;
  color: #222;
}
.c-btn--warning:focus, .c-btn--warning:hover {
  border-color: #f1de00;
  color: #222;
}

.c-rounded-btn {
  display: inline-block;
  width: 236px;
  max-width: 100%;
  padding: 15px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  border-bottom-color: #d40152;
  border-radius: 10px;
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-rounded-btn:focus, .c-rounded-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}

.c-before-icon-btn {
  position: relative;
  display: inline-block;
  padding: 0.2em 0.3em;
  border: 1px solid currentColor;
  color: #e25c00;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-before-icon-btn:focus, .c-before-icon-btn:hover {
  background-color: #e25c00;
  color: #fff;
}
.c-before-icon-btn::before {
  display: inline-block;
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.c-before-icon-btn--download::before {
  content: "\f019";
}
.c-before-icon-btn--zoom::before {
  content: "\f00e";
  -webkit-transform: translateY(-6%);
          transform: translateY(-6%);
}

/* FLOCSS
----------------------------------------------------- */
.p-breadcrumb {
  margin: 10px 20px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-breadcrumb li {
  list-style: none;
}
.p-breadcrumb li:after {
  content: ">";
  padding: 0 5px;
}
.p-breadcrumb li:last-child:after {
  content: "";
}
.p-breadcrumb li a {
  text-decoration: none;
}
.p-breadcrumb li a:hover {
  text-decoration: underline;
}
.p-breadcrumb .u-current {
  color: #90f0ed;
}

.p-btn-group__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  gap: 30px 2.43902%;
  position: relative;
  z-index: 1;
}
.p-btn-group__btns--col3 > .p-btn-group__btns-item {
  width: 31.707%;
}
.p-btn-group__link-btn--link {
  display: block;
  padding: 15px 30px 15px 15px;
  border: 1px solid #90f0ed;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background-color: #eee;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  position: relative;
}
.p-btn-group__link-btn--link::after {
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 0.83em;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-btn-group__link-btn--link:focus, .p-btn-group__link-btn--link:hover {
  color: #90f0ed;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.p-btn-group__link-btn--link._gb-active {
  color: #fff;
  background-color: #90f0ed;
}

/* FLOCSS
----------------------------------------------------- */

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-6 {
  margin-bottom: 60px;
}

.mb-7 {
  margin-bottom: 70px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mb-9 {
  margin-bottom: 90px;
}

.mb-10 {
  margin-bottom: 100px;
}

/* FLOCSS
----------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
@media (max-width: 767px) {
  #page_top {
    width: 50px;
  }
  .content._margin {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .footer__name-img {
    width: 200px;
  }
  .top-mv .swiper-slide img {
    -webkit-animation: unset;
            animation: unset;
    height: 350px;
  }
  .top-mv .catch-area {
    top: 20%;
    left: 50%;
  }
  .mv-jumbotron {
    height: 160px;
    border-width: 5px;
  }
  .mv-jumbotron__inner .mv-image > img {
    height: 130px;
  }
  .h2 {
    font-size: 22px;
  }
  .h2-subtitle {
    display: block;
    font-size: 17px;
    margin-left: 0px;
  }
  .common-btn::after {
    width: 15px;
  }
  .common-btn._top-contact {
    font-size: 14px;
    padding: 15px 30px;
    width: 270px;
  }
  .top-company-btn {
    width: 100%;
  }
  .top-about {
    padding-bottom: 25px;
  }
  .top-about__item {
    padding: 20px 15px;
  }
  .top-about__item .text {
    font-size: 17px;
  }
  .top-about__item .text .strong {
    font-size: 33px;
  }
  .top-about__item .text .xl {
    font-size: 32px;
  }
  .top-about__item .text .sm {
    font-size: 16px;
  }
  .top-news {
    padding-bottom: 50px;
  }
  .top-news .news_list {
    height: 350px;
    padding: 15px 10px;
    border-radius: 10px;
  }
  .top-strong__items {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .top-strong__item {
    padding: 20px 15px;
  }
  .top-strong__item .text {
    font-size: 16px;
  }
  .top-homeuse {
    padding-bottom: 50px;
  }
  .top-homeuse__item {
    padding: 20px 10px;
    border-radius: 20px;
  }
  .top-homeuse__item .head {
    font-size: 23px;
  }
  .top-homeuse__item .title {
    font-size: 18px;
    line-height: 1.4;
  }
  .top-homeuse__item .text {
    font-size: 16px;
  }
  .top-homeuse__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
  }
  .top-contact {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .top-contact__item {
    padding: 20px 10px;
  }
  .top-contact__item .title__wrap {
    margin-bottom: 10px;
  }
  .wash__full-bg {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .wash-about {
    padding-top: 0px;
    padding-bottom: 25px;
  }
  .wash-about__item {
    padding: 20px 15px;
  }
  .wash-about__item .text {
    font-size: 17px;
  }
  .wash-about__item .text .strong {
    font-size: 23px;
  }
  .wash-ion {
    padding-top: 25px;
  }
  .wash-ion__items {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .wash-ion .sub-title {
    padding: 15px 20px;
    font-size: 19px;
  }
  .wash-ion .sub-title__wrap {
    top: 30px;
  }
  .wash-ion .attention-text {
    font-size: 16px;
  }
  .wash-ion .attention-list {
    font-size: 16px;
  }
  .cleaning .sale .feature,
.rental .sale .feature {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .cleaning .sale .feature__title,
.rental .sale .feature__title {
    font-size: 16px;
    padding: 13px;
  }
  .cleaning .sale__items,
.rental .sale__items {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cleaning .sale__items .body .text,
.rental .sale__items .body .text {
    font-size: 16px;
  }
  .cleaning .sale__items .body .text__wrap,
.rental .sale__items .body .text__wrap {
    padding: 20px 10px;
  }
  .cleaning .sale__media,
.rental .sale__media {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cleaning .sale__maker,
.rental .sale__maker {
    margin: 50px auto 25px;
  }
  .cleaning .sale__privacy,
.rental .sale__privacy {
    padding-top: 25px;
  }
  .cleaning .sale__privacy .horizontal-table__header,
.rental .sale__privacy .horizontal-table__header {
    display: block;
    width: 100%;
  }
  .cleaning .sale__privacy .horizontal-table__text,
.rental .sale__privacy .horizontal-table__text {
    display: block;
    width: 100%;
  }
  .cleaning .intro,
.rental .intro {
    margin-bottom: 20px;
  }
  .cleaning .intro .feature,
.rental .intro .feature {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .cleaning .intro .feature__title,
.rental .intro .feature__title {
    font-size: 16px;
    padding: 13px;
  }
  .cleaning .intro .feature__items,
.rental .intro .feature__items {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    text-align: center;
  }
  .cleaning .intro .aer__items,
.rental .intro .aer__items {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  .cleaning .school__price,
.rental .school__price {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .cleaning .school__price .title,
.rental .school__price .title {
    font-size: 18px;
  }
  .cleaning .school__price .title__wrap,
.rental .school__price .title__wrap {
    width: 100%;
  }
  .cleaning .school__price-items,
.rental .school__price-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cleaning .school__price-items .body .sub-title,
.rental .school__price-items .body .sub-title {
    font-size: 16px;
  }
  .cleaning .school__price-item .list__wrap,
.rental .school__price-item .list__wrap {
    margin-top: 0px;
  }
  .cleaning .school__price-item .vertical-table,
.rental .school__price-item .vertical-table {
    border-right-width: 0;
    overflow-x: auto;
  }
  .cleaning .school__price-item .vertical-table__inner,
.rental .school__price-item .vertical-table__inner {
    width: auto;
    min-width: 100%;
  }
  .cleaning .school__price-item .vertical-table__header, .cleaning .school__price-item .vertical-table__text,
.rental .school__price-item .vertical-table__header,
.rental .school__price-item .vertical-table__text {
    white-space: nowrap;
  }
  .cleaning .school__price-item .vertical-table__header:last-child, .cleaning .school__price-item .vertical-table__text:last-child,
.rental .school__price-item .vertical-table__header:last-child,
.rental .school__price-item .vertical-table__text:last-child {
    border-right-width: 1px;
  }
  .cleaning .school__price-media,
.rental .school__price-media {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
    text-align: center;
  }
  .cleaning .school__catch,
.rental .school__catch {
    margin-top: 25px;
  }
  .cleaning .home__option,
.rental .home__option {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .cleaning .home__option .title,
.rental .home__option .title {
    font-size: 23px;
  }
  .cleaning .home__option .common-sub-title,
.rental .home__option .common-sub-title {
    font-size: 18px;
    text-align: center;
  }
  .cleaning .home__option-item,
.rental .home__option-item {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  .cleaning .home__option-item .illust,
.rental .home__option-item .illust {
    text-align: center;
  }
  .cleaning .home__option-item .illust > img,
.rental .home__option-item .illust > img {
    width: 30%;
  }
  .cleaning .home__option-item .illust .image,
.rental .home__option-item .illust .image {
    width: 20%;
  }
  .cleaning .home__option .horizontal-table__header,
.rental .home__option .horizontal-table__header {
    width: 100%;
    border-right: 0;
    background-color: #efefef;
    padding: 10px;
  }
  .cleaning .home__option .horizontal-table__header:first-child,
.rental .home__option .horizontal-table__header:first-child {
    border-top-width: 0;
  }
  .cleaning .home__option .horizontal-table__text,
.rental .home__option .horizontal-table__text {
    border-bottom-width: 0;
    background-color: #E2FBFA;
  }
  .cleaning .home__option .horizontal-table__text:first-of-type,
.rental .home__option .horizontal-table__text:first-of-type {
    border-top-width: 0;
  }
  .cleaning .home__option .horizontal-table__text,
.rental .home__option .horizontal-table__text {
    width: 100%;
  }
  .cleaning .home__option .horizontal-table__row,
.rental .home__option .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cleaning .home__option .horizontal-table__row:nth-child(odd),
.rental .home__option .horizontal-table__row:nth-child(odd) {
    background-color: unset;
  }
  .cleaning .home__option .storage,
.rental .home__option .storage {
    grid-template-columns: 1fr;
  }
  .cleaning .home__about,
.rental .home__about {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .cleaning .home__about, .cleaning .home__items,
.rental .home__about,
.rental .home__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cleaning .home__about .body .title, .cleaning .home__items .body .title,
.rental .home__about .body .title,
.rental .home__items .body .title {
    font-size: 18px;
  }
  .cleaning .home__about .body .title__wrap, .cleaning .home__items .body .title__wrap,
.rental .home__about .body .title__wrap,
.rental .home__items .body .title__wrap {
    padding: 20px 10px;
  }
  .cleaning .home__about .body .title ._xl, .cleaning .home__items .body .title ._xl,
.rental .home__about .body .title ._xl,
.rental .home__items .body .title ._xl {
    font-size: 22px;
  }
  .cleaning .home__about .body .sub-title, .cleaning .home__items .body .sub-title,
.rental .home__about .body .sub-title,
.rental .home__items .body .sub-title {
    font-size: 16px;
  }
  .cleaning .home__items,
.rental .home__items {
    padding-top: 25px;
  }
  .cleaning .home__item .horizontal-table,
.rental .home__item .horizontal-table {
    margin-top: 10px;
  }
  .cleaning .home__item .horizontal-table__header,
.rental .home__item .horizontal-table__header {
    display: block;
    width: 100%;
    background-color: #E2FBFA;
  }
  .cleaning .home__item .horizontal-table__text,
.rental .home__item .horizontal-table__text {
    display: block;
    width: 100%;
  }
  .cleaning .home__item .horizontal-table__row,
.rental .home__item .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cleaning .home__item .horizontal-table__row:nth-child(odd),
.rental .home__item .horizontal-table__row:nth-child(odd) {
    background-color: unset;
  }
  .cleaning .home__item .title,
.rental .home__item .title {
    font-size: 18px;
  }
  .cleaning .home__item .title__wrap,
.rental .home__item .title__wrap {
    width: 100%;
  }
  .cleaning .home__attention-items,
.rental .home__attention-items {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .cleaning .home__attention-items .body,
.rental .home__attention-items .body {
    padding: 20px 10px;
  }
  .cleaning .home__attention-items .body .text,
.rental .home__attention-items .body .text {
    font-size: 16px;
  }
  .cleaning .land__about,
.rental .land__about {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cleaning .land__about .body .title,
.rental .land__about .body .title {
    font-size: 18px;
  }
  .cleaning .land .common-sub-title,
.rental .land .common-sub-title {
    font-size: 18px;
    text-align: center;
  }
  .cleaning .land .sub-title,
.rental .land .sub-title {
    width: 100%;
    padding: 15px 20px;
    font-size: 19px;
  }
  .cleaning .land .sub-title__wrap,
.rental .land .sub-title__wrap {
    top: 30px;
  }
  .cleaning .land .youtube__wrap,
.rental .land .youtube__wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cleaning .land__service,
.rental .land__service {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cleaning .land__service-item,
.rental .land__service-item {
    padding: 20px 10px;
  }
  .cleaning .land__appeal,
.rental .land__appeal {
    font-size: 16px;
    padding: 6px 15px;
    margin-top: 20px;
  }
  .cleaning .reform__illust,
.rental .reform__illust {
    margin: 20px auto 0;
  }
  .cleaning .reform__items,
.rental .reform__items {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .cleaning .reform__item .item-wrap,
.rental .reform__item .item-wrap {
    padding: 20px 10px;
  }
  .cleaning .reform__item .item-wrap .h4-title,
.rental .reform__item .item-wrap .h4-title {
    font-size: 17px;
  }
  .cleaning .reform__item .item-wrap .text,
.rental .reform__item .item-wrap .text {
    font-size: 15px;
  }
  .cleaning .reform__item .attention,
.rental .reform__item .attention {
    font-size: 14px;
  }
  .cleaning .reform__price,
.rental .reform__price {
    margin-top: 50px;
  }
  .cleaning .reform__price .title,
.rental .reform__price .title {
    font-size: 18px;
  }
  .cleaning .reform__price .title__wrap,
.rental .reform__price .title__wrap {
    width: 100%;
  }
  .cleaning .pdf__wrap,
.rental .pdf__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 25px;
    gap: 20px;
  }
  .cleaning .pdf-btn,
.rental .pdf-btn {
    font-size: 14px;
    width: 100%;
  }
  .company .profile {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .company .profile .access-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .company .profile .access-item__img {
    width: 50px;
  }
  .company .profile .horizontal-table__header {
    width: 100%;
    border-right: 0;
    background-color: #efefef;
    padding: 10px;
  }
  .company .profile .horizontal-table__header:first-child {
    border-top-width: 0;
  }
  .company .profile .horizontal-table__text {
    border-bottom-width: 0;
  }
  .company .profile .horizontal-table__text:first-of-type {
    border-top-width: 0;
  }
  .company .profile .horizontal-table__text {
    width: 100%;
  }
  .company .profile .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .company .profile .horizontal-table__row:nth-child(odd) {
    background-color: unset;
  }
  .company .access-map iframe {
    height: 270px;
  }
  .company .access-text__wrap {
    margin-top: 15px;
  }
  .tel-fax__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
    border-radius: 15px;
  }
  .tel-fax__box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .tel-fax__box-right {
    border-left: unset;
  }
  .tel-fax__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tel-fax__title {
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.5;
  }
  .tel-fax .tel__img {
    font-size: 30px;
  }
  .tel-fax .cards__item {
    width: 100%;
    padding: 10px;
    border-radius: 15px;
  }
  .mail-form .form-input {
    width: 100%;
  }
  .mail-form .box-scroll__title {
    font-size: 16px;
    border-left: 2px solid #333;
  }
  .mail-form .privacy-btn {
    width: 100%;
    margin-bottom: 0px;
  }
  .mail-form .privacy-btn__wrapper {
    margin-bottom: 15px;
  }
  .mail-form .send-btn__wrapper {
    width: 100%;
    margin-bottom: 0px;
    display: block;
  }
  .mail-form .send-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .mail-form .send-btn--back {
    margin-right: 0px;
  }
  .mail-form input[type=radio] + span,
.mail-form input[type=checkbox] + span {
    font-size: 15px;
    margin-right: 0;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .mail-form .selectWrap {
    width: 60%;
  }
  .tab {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tab li a {
    width: 100%;
  }
  .area {
    padding-block: 30px;
  }
  .wrapper {
    margin: 10px auto 0;
  }
  .l-inner--has-column {
    grid-template-columns: 1fr;
  }
  .p-breadcrumb {
    font-size: 14px;
  }
  .p-btn-group__link-btn--link {
    font-size: 14px;
  }
  .pc-only {
    display: none;
  }
  .mb-2 {
    margin-bottom: 10px;
  }
  .mb-3 {
    margin-bottom: 15px;
  }
  .mb-4 {
    margin-bottom: 20px;
  }
  .mb-5 {
    margin-bottom: 25px;
  }
  .mb-6 {
    margin-bottom: 30px;
  }
  .mb-7 {
    margin-bottom: 35px;
  }
  .mb-8 {
    margin-bottom: 40px;
  }
  .mb-9 {
    margin-bottom: 45px;
  }
  .mb-10 {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  .top-header-logo-area,
.header-logo-area {
    width: 250px;
  }
  .top-header-nav-area,
.header-nav-area {
    display: none;
  }
  .top-header {
    width: 100%;
    height: 80px;
    margin: unset;
  }
  .top-header__inner {
    padding: 0 0 0 10px;
    border-radius: unset;
    border: unset;
    height: 80px;
  }
  .top-header__top-items .left {
    height: 80px;
    width: 250px;
  }
  .top-header__top-items .right {
    display: none;
  }
  .top-header__bottom-items {
    display: none;
  }
  .header__inner {
    padding-left: 15px;
    padding-right: 15px;
    background-color: #90f0ed;
  }
  .header.displayBlock {
    display: none;
  }
  .drawer-icon {
    display: block;
  }
  .drawer-content ul li .no-border {
    border-bottom-width: 0 !important;
  }
  .drawer-content ul li .border-top {
    border-top: 1px dotted #707070;
  }
  .top-mv .sp-box {
    margin-top: 80px;
  }
  .top-mv .catch-area > img {
    width: 50vw;
  }
  .top-mv .catch-area2 {
    top: 70%;
  }
  .top-mv .catch-area3 {
    top: 80%;
    left: 75%;
  }
  .top-mv__contact-icon {
    padding: 1.6666666667vw 1.6666666667vw 0.8333333333vw;
    width: 32.5vw;
  }
  .top-mv__contact-icon .text {
    font-size: 1.6666666667vw;
  }
  .top-mv__contact-icon .tel {
    font-size: 3.1666666667vw;
  }
  .mv {
    margin-top: 90px;
    margin-bottom: 10px;
  }
  .mv-jumbotron__inner .title {
    width: 50vw;
    top: 50%;
  }
  .mv-jumbotron__inner .mv-image {
    top: 50%;
  }
  .mv .mv-h2._rental {
    font-size: 2.75vw;
  }
  .top-company-btn._mobile {
    font-size: 11px;
    width: 220px;
  }
  .top-news .news_list__date {
    margin-right: 0;
  }
  .top-news .news_list__new {
    display: block;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .top-news .news_list__text {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .top-news .news_list_item {
    display: block;
  }
  .top-news .file {
    margin-top: 15px;
  }
  .top-contact__items {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 500px;
    margin-inline: auto;
  }
  .cleaning .intro .feature__item,
.rental .intro .feature__item {
    width: 16.6666666667vw;
    height: 16.6666666667vw;
    line-height: 16.6666666667vw;
    border-radius: calc(16.6666666667vw / 2);
    font-size: 2.9166666667vw;
    text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff;
  }
  .cleaning .school__price-media .body .text,
.rental .school__price-media .body .text {
    font-size: 16px;
    padding: 15px;
  }
  .cleaning .school__catch,
.rental .school__catch {
    font-size: 1.8333333333vw;
  }
  .cleaning .land__service-item .text,
.rental .land__service-item .text {
    font-size: 1.6666666667vw;
  }
}
@media (max-width: 1270px) {
  .top-header-nav__item + .top-header-nav__item,
.top-header-nav__item + .header-nav__item,
.header-nav__item + .top-header-nav__item,
.header-nav__item + .header-nav__item {
    margin-left: 20px;
  }
}
@media (max-width: 1300px) {
  .top-header-nav__link,
.header-nav__link {
    font-size: 14px;
  }
}
@media (max-width: 1300px) and (max-width: 1199px) {
  .top-header-nav__link,
.header-nav__link {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .footer__inner-wrapper {
    display: block;
  }
  .footer__company-area {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer__name {
    margin: 0 auto 10px;
  }
  .footer .address-area__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0px;
  }
  .footer .address-area__box .map-label {
    margin-left: 0px;
    margin-bottom: 20px;
  }
  .footer .address-area__address {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer .address-area .address-tel {
    font-size: 14px;
  }
  .footer__nav-area {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 15px;
  }
  .footer-nav {
    display: block;
    width: 100%;
  }
  .footer-nav__item {
    text-align: center;
  }
  .footer-nav__link {
    letter-spacing: 0;
    padding: 0 10px 10px;
    line-height: 1.4;
  }
  .mv .mv-h2 {
    font-size: 30px;
  }
  .top-about__item .bg-img,
.top-about__item .bg-img2 {
    opacity: 0.1;
  }
  .top-about__item .bg-img {
    left: 10px;
  }
  .top-about__item .bg-img2 {
    bottom: 60px;
    right: 10px;
  }
  .top-strong__items-wrapper {
    -webkit-clip-path: polygon(50% 3%, 100% 0, 100% 97%, 50% 100%, 0 97%, 0 0);
            clip-path: polygon(50% 3%, 100% 0, 100% 97%, 50% 100%, 0 97%, 0 0);
  }
  .wash-about__item .text .xl {
    font-size: 29px;
  }
  .tel-fax .tel-number {
    font-size: 28px;
  }
  .mail-form .horizontal-table__inner {
    font-size: 16px;
  }
  .mail-form .horizontal-table__header {
    border-bottom-width: 0;
    background-color: #efefef;
    width: 100%;
    border-right: 0;
    padding: 10px;
  }
  .mail-form .horizontal-table__text {
    border-bottom-width: 0;
    width: 100%;
    padding: 10px 0;
  }
  .mail-form .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mail-form .box-scroll {
    height: 220px;
    margin-bottom: 15px;
    padding: 15px;
    word-break: break-all;
  }
  .slide-in_inner span {
    display: inline-block;
  }
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .footer__inner-wrapper {
    padding: 40px 15px 30px 15px;
  }
}
@media (max-width: 1023px) and (max-width: 767px) {
  .footer__name {
    font-size: 24px;
  }
  .mv .mv-h2 {
    font-size: 20px;
    width: 100%;
  }
  .top-about__item .bg-img,
.top-about__item .bg-img2 {
    width: 80px;
  }
  .top-strong__items-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .wash-about__item .text .xl {
    font-size: 20px;
  }
  .tel-fax .tel-number {
    margin-bottom: 10px;
    padding-left: 0;
  }
}
@media (max-width: 1199px) and (max-width: 1023px) {
  .top-mv .sp-box {
    height: calc(100vh - 80px);
  }
}
@media (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {
  .top-mv .sp-box {
    height: 350px;
  }
}
@media (max-width: 1199px) and (max-width: 767px) {
  .top-mv .catch-area > img {
    width: min(78.125vw, 350px);
  }
  .top-mv .catch-area2 {
    top: 45%;
    left: 50%;
  }
  .top-mv .catch-area3 {
    top: 75%;
    left: 50%;
  }
  .top-mv__contact-icon {
    padding: 2.6041666667vw 3.90625vw 1.3020833333vw;
    width: 85%;
  }
  .top-mv__contact-icon .text {
    font-size: 16px;
  }
  .top-mv__contact-icon .tel {
    font-size: 25px;
  }
  .mv-jumbotron__inner .title {
    top: 75%;
    width: auto;
  }
  .mv-jumbotron__inner .mv-image {
    right: 15px;
    opacity: 0.8;
  }
  .mv .mv-h2._rental {
    font-size: 4.296875vw;
  }
  .top-news .news_list_item {
    padding-right: 0;
  }
  .cleaning .intro .feature__item,
.rental .intro .feature__item {
    width: 39.0625vw;
    height: 39.0625vw;
    line-height: 39.0625vw;
    border-radius: calc(39.0625vw / 2);
    font-size: 5.859375vw;
  }
  .cleaning .school__price-media .body .text,
.rental .school__price-media .body .text {
    line-height: unset;
  }
  .cleaning .school__catch,
.rental .school__catch {
    font-size: 16px;
  }
  .cleaning .land__service-item .text,
.rental .land__service-item .text {
    font-size: 16px;
  }
}
@media (max-width: 1350px) {
  .top-mv .catch-area2 > img {
    width: 58.3333333333vw;
  }
}
@media (max-width: 1350px) and (max-width: 767px) {
  .top-mv .catch-area2 > img {
    width: min(91.1458333333vw, 350px);
  }
}
@media (max-width: 1230px) {
  .p-btn-group__btns {
    gap: 30px 3.3333%;
  }
  .p-btn-group__btns--col3 > .p-btn-group__btns-item {
    width: 48.3333%;
  }
}
@media (max-width: 1230px) and (max-width: 767px) {
  .p-btn-group__btns {
    gap: 20px 0%;
  }
  .p-btn-group__btns--col3 > .p-btn-group__btns-item {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  .lg-only {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */