@charset "UTF-8";
/* color */
/* font */
/* animation */
@keyframes popup {
  0% {
    transform: translateY(25%);
    -webkit-transform: translateY(25%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
.scrollIn {
  transform: translateY(25%);
  -webkit-transform: translateY(25%);
  opacity: 0;
}
.scrollIn.show {
  animation: popup 1.8s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

@keyframes fadein {
  0% {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
.fadeIn {
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  opacity: 0;
}
.fadeIn.show {
  animation: fadein 2s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

@keyframes fadein-sp {
  0% {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 0.4;
  }
}
.fadeIn-sp {
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  opacity: 0;
}
.fadeIn-sp.show {
  animation: fadein-sp 4s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

/* common */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  padding: 0;
  margin: 0;
  color: #32281e;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  padding: 0;
  margin: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
  margin: 0;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #32281e;
  transition: all 0.3s;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

input,
select,
button,
textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
}

input:focus,
textarea:focus {
  outline: none; /* デフォルトのアウトラインを削除 */
  appearance: none;
  -webkit-appearance: none; /* iOSのデフォルトのスタイルをリセット */
  box-shadow: none; /* フォーカス時のボックスシャドウを削除 */
}

input[type=radio] {
  -webkit-appearance: none; /* iOSのデフォルトのスタイルをリセット */
  -moz-appearance: none; /* Firefoxのデフォルトのスタイルをリセット */
  appearance: none; /* その他のブラウザでのデフォルトスタイルをリセット */
  outline: none; /* フォーカス時の青いアウトラインを削除 */
  box-shadow: none; /* フォーカス時のボックスシャドウを削除 */
  -webkit-tap-highlight-color: transparent; /* タップ時の青い背景を消す */
}

input:-internal-autofill-selected {
  appearance: menulist-button;
  background-image: none !important;
  background-color: #fff !important; /* 背景を白に設定 */
  color: fieldtext !important;
}

.pc {
  display: none;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.section_inner {
  width: 100%;
  padding: 0 3rem;
}

.section_ttl {
  margin-bottom: 3rem;
}

.section_headtxt {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 2rem;
}

/* reCAPTCHAバッジを非表示にする */
.grecaptcha-badge {
  visibility: hidden;
}

.webp .header {
  background: url("../img/common/bg.webp");
}

.no-webp .header {
  background: url("../img/common/bg.jpg");
}

.header-pc {
  display: none;
}

.header-sp {
  height: 64px;
}
.header-sp .hamburger {
  width: 44px;
  height: 44px;
  background: #e64d55;
  border-radius: 10px;
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-out;
  z-index: 999;
  cursor: pointer;
}
.header-sp .hamburger.active {
  transition: all 0.1s ease-out;
}
.header-sp .hamburger.active div span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.header-sp .hamburger.active div span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-sp .hamburger.active div span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header-sp .hamburger div {
  width: 18px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header-sp .hamburger div span {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-out;
}
.header-sp .logo {
  display: block;
  width: 160px;
  position: absolute;
  top: 17px;
  left: 20px;
}
.header-sp .logo:hover img {
  opacity: 0.9;
}

.header_nav_wrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 6.5rem 3rem 10rem;
  overflow-y: scroll;
  display: none;
  background: #ffe8ea;
  z-index: 998;
  overscroll-behavior-y: contain;
}
.header_nav_wrap .header_nav {
  margin-bottom: 4rem;
}
.header_nav_wrap .header_nav .header_nav_item {
  border-bottom: 1px solid #e64d55;
}
.header_nav_wrap .header_nav .header_nav_item a {
  color: #32281e;
  display: block;
  padding: 1.2rem 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.84px;
  line-height: 24px;
}
.header_nav_wrap .header_nav .header_nav_item a:hover {
  opacity: 0.7;
}
.header_nav_wrap .header_nav .header_nav_item .header_nav_sub_list {
  margin-bottom: 2rem;
}
.header_nav_wrap .header_nav .header_nav_item .header_nav_sub_list .header_nav_sub_item {
  margin-bottom: 1rem;
}
.header_nav_wrap .header_nav .header_nav_item .header_nav_sub_list .header_nav_sub_item a {
  font-size: 1.4rem;
  letter-spacing: 0.84px;
  line-height: 24px;
  padding: 0 1rem;
}
.header_nav_wrap .header_tel {
  display: none;
}
.header_nav_wrap .header_btn {
  display: none;
}
.header_nav_wrap .close_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: #fff;
  background-color: #ef858c;
  border: none;
  width: 122px;
  height: 40px;
  border-radius: 22px;
  margin: 4rem auto 0;
  cursor: pointer;
}

.main {
  position: relative;
  min-height: calc(100vh - 64px - 233.8px);
}

.sidetab {
  position: fixed;
  right: 0;
  top: 120px;
  width: 50px;
  height: auto;
  border-radius: 20px 0 0 20px;
  z-index: 10;
}

.home .sidetab {
  box-shadow: 0px 0px 20px rgba(230, 77, 85, 0.5);
}

.btn_toTop {
  opacity: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: auto;
  z-index: 10;
  transition: opacity 0.3s ease-out;
}
.btn_toTop.visible {
  opacity: 1;
}

.home .btn_toTop {
  filter: drop-shadow(0px 0px 20px rgba(230, 77, 85, 0.5));
}

.cta_section {
  background: #ef858c;
  color: #fff;
  padding: 6rem 0 8rem;
}

.cta_txt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  margin-bottom: 1rem;
}

.cta_txt-small {
  text-align: center;
  font-size: 1.4rem;
}

.cta_btns {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

.cta_btn {
  background: #fff;
  border-radius: 50px;
  width: 100%;
  max-width: 400px;
  height: 100px;
  color: #32281e;
  margin: 30px auto 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cta_btn .cta_btn_inner {
  position: relative;
  margin-left: 33px;
}
.cta_btn.contact {
  flex-direction: row;
}
.cta_btn.contact img {
  width: 24px;
  height: auto;
  position: absolute;
  top: 2px;
  left: -33px;
  transition: 0.3s;
}
.cta_btn.contact img:nth-of-type(2) {
  opacity: 0;
}
.cta_btn.contact p {
  font-size: 1.8rem;
  font-weight: 500;
}
.cta_btn.tel {
  flex-direction: column;
}
.cta_btn.tel .cta_btn_telTxt-top {
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 500;
}
.cta_btn.tel .cta_btn_telTxt-num {
  position: relative;
  margin-left: 31px;
}
.cta_btn.tel .cta_btn_telTxt-num img {
  width: 24.13px;
  height: auto;
  position: absolute;
  top: 8px;
  left: -31px;
  transition: 0.3s;
}
.cta_btn.tel .cta_btn_telTxt-num img:nth-of-type(2) {
  opacity: 0;
}
.cta_btn.tel .cta_btn_telTxt-num p {
  font-size: 24px;
  font-weight: 700;
}
.cta_btn.tel .cta_btn_telTxt-button {
  font-size: 12px;
  margin-top: 3px;
  font-weight: 500;
}
.cta_btn:hover {
  background: #32281e;
  color: #fff;
}
.cta_btn:hover .cta_btn_inner img:nth-of-type(1),
.cta_btn:hover .cta_btn_telTxt-num img:nth-of-type(1) {
  opacity: 0;
}
.cta_btn:hover .cta_btn_inner img:nth-of-type(2),
.cta_btn:hover .cta_btn_telTxt-num img:nth-of-type(2) {
  opacity: 1;
}

.cta_right {
  width: 50%;
  max-width: 219.42px;
  margin: 0 auto;
}

.cta_section_footer {
  padding-bottom: 0;
}
.cta_section_footer .cta_wrap {
  padding-bottom: 30%;
}

.webp .cta_section_footer_wrap {
  background: url("../img/common/houses.webp") no-repeat;
  background-size: 154%;
  background-position-y: bottom;
  background-position-x: center;
}

.no-webp .cta_section_footer_wrap {
  background: url("../img/common/houses.png") no-repeat;
  background-size: 154%;
  background-position-y: bottom;
  background-position-x: center;
}

.footer {
  background-color: #32281e;
  color: #fff;
  padding: 2rem;
}
.footer .footer_nav {
  display: none;
}
.footer .footer_info {
  margin-bottom: 4rem;
}
.footer .footer_info .footer_info_logo {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer .footer_info .footer_info_contact address {
  font-size: 1.2rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.footer .footer_info .footer_info_contact address a {
  color: #fff;
}
.footer .footer_info .footer_txtlink {
  color: #fff;
  font-size: 1rem;
}
.footer .copyright small {
  font-size: 0.9rem;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .section_inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .section_ttl {
    margin-bottom: 5rem;
  }
  .main {
    min-height: calc(100vh - 64px - 511.17px);
  }
  .cta_btns {
    flex-direction: row;
    justify-content: space-between;
    width: auto;
    max-width: 850px;
    margin: 3rem auto;
  }
  .cta_btn {
    width: calc((100% - 30px) / 2);
    margin: 0;
  }
  .webp .cta_section_footer_wrap {
    background-size: 120%;
  }
  .no-webp .cta_section_footer_wrap {
    background-size: 120%;
  }
  .cta_section_footer .cta_wrap {
    padding-bottom: 20%;
  }
  .footer {
    color: #fff;
    padding: 5rem 3rem;
  }
  .footer .footer_nav {
    display: block;
    margin-bottom: 5rem;
    border-bottom: 1px solid #fff;
    padding-bottom: 3rem;
  }
  .footer .footer_nav_list {
    display: flex;
    justify-content: space-between;
    max-width: 588px;
    min-width: 540px;
  }
  .footer .footer_nav_block {
    margin-top: -2.4rem;
  }
  .footer .footer_nav_item {
    margin-top: 2.4rem;
  }
  .footer .footer_nav_item a {
    color: #fff;
    font-size: 1.4rem;
  }
  .footer .footer_nav_item a:hover {
    opacity: 0.9;
  }
  .footer .footer_nav_item.facebook a {
    display: flex;
    align-items: center;
  }
  .footer .footer_nav_item.facebook a img {
    margin-right: 9px;
  }
}
@media screen and (min-width: 1000px) {
  .main {
    min-height: calc(100vh - 108px - 333.47px);
  }
  .header-sp {
    display: none;
  }
  .webp .header-pc {
    background: url("../img/common/bg.webp");
  }
  .no-webp .header-pc {
    background: url("../img/common/bg.jpg");
  }
  .header-pc {
    width: 100%;
    height: 108px;
    padding: 0 30px;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 100;
  }
  .header-pc .logo {
    width: 218px;
    height: auto;
    position: initial;
  }
  .header-pc .logo .small {
    display: block;
  }
  .header-pc .logo .regular {
    display: none;
  }
  .header-pc .header_nav_wrap {
    padding: 0 7px 0 22px;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    background: #fff;
    border-radius: 34px;
    height: 68px;
    width: auto;
    position: absolute;
    right: 30px;
    top: 20px;
    overflow: visible;
  }
  .header-pc .header_nav {
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
  .header-pc .header_nav .header_nav_list {
    justify-content: space-between;
    padding-right: 20px;
    border-right: 2px solid #f4c6ca;
    height: 34px;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item {
    margin-right: 0;
    border: none;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item a {
    font-size: 1.6rem;
    padding: 0;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item.hasSub {
    position: relative;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item .header_nav_sub_list {
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    position: absolute;
    top: 46px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
    background: #fff0f2;
    border: 2px solid red;
    border-radius: 10px;
    padding: 24px 32px;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item .header_nav_sub_list::before {
    content: "";
    width: 0;
    height: 0;
    border-bottom: 20px solid #e64d55;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item .header_nav_sub_list .header_nav_sub_item:not(:last-child) {
    border-bottom: 1px solid #e64d55;
    padding-bottom: 1rem;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item .header_nav_sub_list .header_nav_sub_item:last-child {
    margin-bottom: 0;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item .header_nav_sub_list .header_nav_sub_item a {
    font-size: 1.8rem;
    font-weight: 400;
    padding: 0;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item:hover .header_nav_sub_list {
    opacity: 1;
    visibility: visible;
  }
  .header-pc .header_tel {
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-pc .header_tel img {
    width: 35.38px;
    height: 27.8px;
    margin-right: 7px;
  }
  .header-pc .header_tel a {
    color: #32281e;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .header-pc .header_btn {
    display: flex;
    background: #e64d55;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 27px;
    height: 54px;
    width: 188px;
    transition: background-color 0.3s, color 0.3s;
  }
  .header-pc .header_btn:hover {
    background-color: #32281e;
    color: #fff;
  }
  .header-pc .close_btn {
    display: none;
  }
  .header-pc .header_nav_list {
    display: flex;
    flex-direction: row;
    justify-content: right;
    height: 70px;
    align-items: center;
    font-weight: bold;
    font-size: 1.4rem;
    width: 310px;
  }
  .header-pc .header_nav_item {
    margin-right: 18px;
  }
  .header-pc .header_nav_item a {
    color: #fff;
  }
  .header-pc .header_nav_item a:hover {
    color: #e64d55;
  }
  .header-pc-small {
    opacity: 0;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    transition: opacity 0.3s ease-out;
  }
  .header-pc-small.visible {
    opacity: 1;
  }
  .header-pc-small .logo {
    width: 218px;
    height: auto;
    position: initial;
  }
  .header-pc-small .logo .small {
    display: block;
  }
  .header-pc-small .logo .regular {
    display: none;
  }
  .header-pc-small .header_nav_wrap {
    height: 40px;
    padding: 0 7px 0 22px;
    border-radius: 27px;
  }
  .header-pc-small .header_nav .header_nav_list {
    height: 24px;
  }
  .header-pc-small .header_nav .header_nav_list .header_nav_item .header_nav_sub_list .header_nav_sub_item a {
    font-size: 1.6rem;
  }
  .header-pc-small .header_tel img {
    width: 26.28px;
    height: 20.65px;
    margin-top: 4px;
  }
  .header-pc-small .header_btn {
    height: 26px;
  }
  .sidetab {
    width: 80px;
  }
  .btn_toTop {
    bottom: 40px;
    right: 40px;
    width: 66px;
  }
  .cta_section {
    padding: 10rem 0;
  }
  .cta_wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .cta_left {
    width: calc(100% - 300px);
  }
  .cta_right {
    width: 219.42px;
    height: 200px;
    margin: 0 50px 0 0;
  }
  .cta_txt {
    font-size: 2.4rem;
  }
  .cta_txt-small {
    font-size: 1.5rem;
  }
  .cta_btns {
    width: auto;
    margin: 3rem 0;
  }
  .cta_btn {
    width: calc((100% - 30px) / 2);
    height: 120px;
    border-radius: 60px;
  }
  .cta_btn.contact img {
    width: 30px;
    left: -41px;
  }
  .cta_btn.contact p {
    font-size: 2.2rem;
  }
  .cta_btn.tel .cta_btn_telTxt-top {
    margin-bottom: 0.8rem;
  }
  .cta_btn.tel .cta_btn_telTxt-num p {
    font-size: 2.6rem;
  }
  .cta_btn.tel .cta_btn_telTxt-button {
    margin-top: 0.8rem;
  }
  .cta_section_footer {
    padding-bottom: 0;
  }
  .footer {
    padding: 10rem 3rem 2rem;
  }
  .footer .footer_inner {
    display: flex;
    justify-content: space-between;
  }
  .footer .footer_nav {
    border-bottom: none;
    width: 50%;
    max-width: 786px;
    padding-bottom: 0;
  }
  .footer .footer_info {
    border-left: 1px solid #fff;
    padding-left: 5rem;
  }
  .footer .footer_info .footer_info_logo {
    font-size: 1.8rem;
  }
  .footer .footer_info .footer_info_contact address {
    font-size: 1.4rem;
  }
  .footer .footer_info .footer_txtlink {
    font-size: 1.2rem;
  }
  .footer .copyright {
    text-align: center;
  }
  .footer .copyright small {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1251px) {
  .header-pc .logo {
    width: 329px;
  }
  .header-pc .logo .small {
    display: none;
  }
  .header-pc .logo .regular {
    display: block;
  }
  .header-pc .header_nav_wrap {
    padding-left: 63px;
  }
  .header-pc .header_nav .header_nav_list {
    padding-right: 30px;
    width: 372px;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item a {
    font-size: 1.8rem;
  }
  .header-pc .header_nav .header_nav_list .header_nav_item .header_nav_sub_list .header_nav_sub_item a {
    font-size: 1.8rem;
  }
  .header-pc .header_tel {
    padding-left: 30px;
  }
  .header-pc .header_tel a {
    font-size: 2.2rem;
  }
  .header-pc .header_btn {
    width: 188px;
    font-size: 1.5rem;
  }
  .header-pc-small .header_nav_wrap {
    padding: 0 7px 0 36px;
  }
  .header-pc-small .header_nav .header_nav_list {
    height: 24px;
  }
  .header-pc-small .header_nav .header_nav_list .header_nav_item .header_nav_sub_list .header_nav_sub_item a {
    font-size: 1.6rem;
  }
  .header-pc-small .header_tel img {
    width: 26.28px;
    height: 20.65px;
    margin-top: 4px;
  }
  .header-pc-small .header_btn {
    height: 26px;
  }
  .footer {
    padding: 10rem 0 2rem;
  }
  .footer .footer_inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer .footer_info {
    margin-right: 9rem;
  }
}
@media screen and (min-width: 1600px) {
  .webp .cta_section_footer_wrap {
    background-size: contain;
  }
  .no-webp .cta_section_footer_wrap {
    background-size: contain;
  }
}
.webp body.home {
  background: url("../img/common/bg.webp");
}

.no-webp body.home {
  background: url("../img/common/bg.jpg");
}

.mv_section {
  height: 100vh;
  margin-top: -6rem;
  position: relative;
}
.mv_section .sp {
  position: relative;
  height: 100vh;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv_section img {
  position: absolute;
}
.mv_section .mv-center {
  width: 80%;
  top: 35px;
  right: 0;
  left: 0;
  margin: auto;
  position: relative;
  z-index: 1;
}
.mv_section .mv-illust-car {
  height: 15%;
  width: auto;
  top: 10%;
  left: 4%;
  animation-delay: 0.3s;
}
.mv_section .mv-illust-eating {
  height: 20%;
  width: auto;
  top: 5%;
  right: -1%;
  animation-delay: 0.6s;
}
.mv_section .mv-illust-cleaning {
  height: 15%;
  width: auto;
  bottom: 5%;
  left: -7%;
  animation-delay: 0.9s;
}
.mv_section .mv-illust-relax {
  height: 13.8%;
  width: auto;
  bottom: 2%;
  right: 1%;
  animation-delay: 1.2s;
}

/* 横長のスマホ用メディアクエリ */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .mv_section {
    height: auto;
    min-height: auto;
    margin-top: 0;
  }
  .mv_section .sp {
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .mv_section .mv-center {
    top: 0;
    width: 34%;
    height: auto;
    position: relative;
  }
  .mv_section .mv-illust-eating {
    width: 26.5%;
    height: auto;
    left: 7%;
    top: 3%;
    animation-delay: 0.3s;
  }
  .mv_section .mv-illust-relax {
    width: 26.5%;
    height: auto;
    top: -3px;
    bottom: auto;
    right: 3%;
    animation-delay: 0.6s;
  }
  .mv_section .mv-illust-car {
    width: 28.8%;
    height: auto;
    top: 50%;
    left: 3%;
    z-index: 1;
    animation-delay: 0.9s;
  }
  .mv_section .mv-illust-cleaning {
    width: 29%;
    height: auto;
    top: 50%;
    right: 5%;
    left: auto;
    animation-delay: 1.2s;
  }
}
.intro_section {
  padding-top: 6rem;
  padding-bottom: 20%;
  margin-bottom: 1rem;
}

.webp .intro_section {
  background: url("../img/common/houses.webp") no-repeat;
  background-size: 154%;
  background-position-y: bottom;
  background-position-x: center;
}

.no-webp .intro_section {
  background: url("../img/common/houses.png") no-repeat;
  background-size: 154%;
  background-position-y: bottom;
  background-position-x: center;
}

.intro_txt {
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.6;
  letter-spacing: 0.1em;
}

.intro_chihuahua {
  width: 120px;
  margin: 3rem auto 0;
}

.features_section {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.features_item {
  position: relative;
}
.features_item:not(:last-child) {
  margin-bottom: 6rem;
}

.features_item_img {
  width: 40%;
  max-width: 254px;
  height: auto;
  margin: 0 auto 20px;
}

.features_item_num {
  position: absolute;
  color: #fff;
  font-weight: 900;
  font-size: 5rem;
  position: absolute;
  top: 0;
  left: 0;
}

.features_item_ttl {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.features_item_ttl ruby {
  ruby-align: center;
}
.features_item_ttl ruby rt {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.1rem;
}

.features_item_txt {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}

.guide_section {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.guide_content {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
}

.guide_content_block:not(:last-child) {
  margin-bottom: 2rem;
}

.guide_content_ttl {
  color: #e64d55;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guide_content_item {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  text-indent: -1em;
  margin-left: 1em;
}
.guide_content_item::before {
  display: inline-block;
  margin-right: 6px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 100%;
  background: #e64d55;
}

.guide_chihuahua {
  width: 120px;
  margin: 0 auto;
}

.flow_section {
  padding-top: 4rem;
  padding-bottom: 16%;
}

.webp .flow_section {
  background: url(../img/common/houses.webp) no-repeat;
  background-size: 154%;
  background-position-y: bottom;
  background-position-x: center;
}

.no-webp .flow_section {
  background: url(../img/common/houses.png) no-repeat;
  background-size: 154%;
  background-position-y: bottom;
  background-position-x: center;
}

.flow_list {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

.flow_item {
  position: relative;
}
.flow_item:not(:last-child) {
  margin-bottom: 4rem;
  border-bottom: 1px solid #ef858c;
  padding-bottom: 4rem;
}

.flow_item_num {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  background: #e64d55;
  width: 4rem;
  height: 4rem;
  text-align: center;
  line-height: 3.7rem;
}

.flow_item_img {
  width: 50%;
  margin: 20px auto 20px;
  height: 177px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow_item_img img {
  height: 100%;
}

.flow_item:nth-child(1) .flow_item_img img {
  width: 138px;
  height: 139px;
}
.flow_item:nth-child(2) .flow_item_img img {
  width: 123px;
  height: 177px;
}
.flow_item:nth-child(3) .flow_item_img img {
  width: 162px;
  height: 133px;
}
.flow_item:nth-child(4) .flow_item_img img {
  width: 159px;
  height: 151px;
}
.flow_item:nth-child(5) .flow_item_img img {
  width: 151px;
  height: 106px;
}
.flow_item:nth-child(6) .flow_item_img img {
  width: 151px;
  height: 109.72px;
}

.flow_item_ttl {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.flow_item_txt {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
}

.flow_btn {
  display: block;
  background: #fff;
  border-radius: 60px;
  width: 100%;
  max-width: 266px;
  height: 50px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #32281e;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow_btn.tel {
  font-size: 22px;
  align-items: center;
}
.flow_btn.tel img {
  margin-right: 0.8rem;
  margin-top: 6px;
  width: 21.72px;
  height: auto;
}

.faq_section {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.faq_content_wrap {
  background: #f7f2f2;
  border-radius: 20px;
  padding: 20px 15px 30px;
}

.faq_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 10px;
}

.faq_content > label {
  order: -1;
  width: calc((100% - 10px) / 2);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #fff;
  color: #32281e;
  cursor: pointer;
  transition: all 0.3s;
}
.faq_content > label.other {
  width: 100%;
}
.faq_content > label:hover {
  background: #ef858c;
  color: #fff;
}
.faq_content > label:has(:checked) {
  background: #ef858c;
  color: #fff;
}

.faq_content > div {
  display: none;
  width: 100%;
  margin-top: 2rem;
}

.faq_content label:has(:checked) + div {
  display: block;
  border-bottom: 1px solid rgba(50, 40, 30, 0.2);
}

.faq_input {
  width: 0;
  height: 0;
  visibility: hidden;
}

.faq_question {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid rgba(50, 40, 30, 0.2);
  padding: 2rem 1rem;
  padding-right: 6rem;
  position: relative;
}
.faq_question.active .faq_question_toggle .inbox span:nth-child(2) {
  display: none;
}
.faq_question:hover {
  cursor: pointer;
}
.faq_question .faq_question_toggle {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 20px;
  height: 20px;
}
.faq_question .faq_question_toggle .inbox {
  width: 100%;
  height: 100%;
  position: relative;
}
.faq_question .faq_question_toggle .inbox span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #32281e;
}
.faq_question .faq_question_toggle .inbox span:nth-child(1) {
  width: 100%;
  height: 1px;
}
.faq_question .faq_question_toggle .inbox span:nth-child(2) {
  width: 1px;
  height: 100%;
}

.faq_question_q {
  color: #ef858c;
  font-size: 2.8rem;
  margin-right: 1.2rem;
  line-height: 0.7;
}

.faq_question_txt {
  font-size: 1.4rem;
  line-height: 1.7;
}

.faq_answer {
  display: none;
}
.faq_answer.active {
  display: block;
}

.faq_answer_inner {
  background: #fff;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
}

.faq_answer_a {
  color: #ef858c;
  font-size: 2.8rem;
  margin-right: 1.2rem;
}

.faq_answer_txt {
  font-size: 1.4rem;
  line-height: 1.7;
}
.faq_answer_txt a {
  color: #e64d55;
}
.faq_answer_txt a:hover {
  opacity: 0.7;
}

.facility_section {
  padding-top: 4rem;
}

.facility_icons_list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -3rem;
  margin-bottom: 4rem;
}

.facility_icons_item {
  text-align: center;
  width: calc((100% - 20px) / 2);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 3rem;
}
.facility_icons_item img {
  width: 50%;
  min-width: 120px;
  display: block;
  margin: 0 auto 1rem;
}

.swiper {
  padding: 0 2rem;
}

.facility_info_list {
  padding-top: 20px;
  align-items: stretch;
}

.facility_info_item {
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  align-self: stretch;
}

.facility_info_vacancy {
  background: #e64d55;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  position: absolute;
  top: -10px;
  right: -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.facility_info_vacancy.no-vacancy {
  font-size: 2rem;
}

.facility_info_vacancy_txt {
  font-size: 16px;
}

.facility_info_vacancy_num {
  font-size: 2.6rem;
}

.facility_info_img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 69.77%;
}
.facility_info_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
}

.facility_info_txt {
  padding: 3rem 2rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.facility_info_name {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.facility_info_table {
  border-spacing: 0 1.5rem;
  border-collapse: separate;
  margin-bottom: 1.5rem;
}
.facility_info_table tr th {
  font-size: 1.4rem;
  font-weight: 700;
  width: 7rem;
  vertical-align: top;
}
.facility_info_table tr td {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  vertical-align: top;
  padding-top: 0;
}

.facility_info_btnWrapper {
  margin-top: auto;
}

.facility_info_btn {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #ef858c;
  border-radius: 24px;
  width: 250px;
  height: 48px;
  font-size: 14px;
}
.facility_info_btn:hover {
  opacity: 0.8;
}

.swiper-button-next,
.swiper-button-prev {
  width: 46px;
  height: 70px;
  z-index: 10; /* 他の要素より前に表示 */
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.swiper-button-prev {
  content: url(../img/top/swiper-button-prev.svg);
  left: -2px;
}

.swiper-button-next {
  content: url(../img/top/swiper-button-next.svg);
  right: -2px;
}

.staff_section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.staff_content {
  background: #f7f2f2;
  padding: 2rem;
  border-radius: 20px;
}

.staff_content_txt {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 2rem;
}

.staff_content_btnArea {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.staff_content_btn {
  display: flex;
  align-items: center;
  height: 100px;
  width: 100%;
  max-width: 375px;
  border-radius: 10px;
  margin-bottom: 2rem;
}
.staff_content_btn img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}
.staff_content_btn p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}
.staff_content_btn.pink-light {
  background: #ef858c;
}
.staff_content_btn.red {
  background: #e64d55;
}
.staff_content_btn:hover {
  opacity: 0.8;
}

.staff_content_btn_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  margin: 0 auto;
  width: 246px;
}

@media screen and (min-width: 768px) {
  .section_headtxt {
    margin-bottom: 5rem;
  }
  .mv_section {
    height: auto;
    margin-top: 0;
  }
  .mv_section .sp {
    display: none;
  }
  .mv_section .pc {
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .mv_section .mv-center {
    top: 0;
    width: 42%;
    height: auto;
    position: relative;
  }
  .mv_section .mv-illust-eating {
    width: 27.5%;
    height: auto;
    left: 8%;
    top: -2%;
    animation-delay: 0.3s;
  }
  .mv_section .mv-illust-relax {
    width: 26.5%;
    height: auto;
    top: -20px;
    bottom: auto;
    right: 6%;
    animation-delay: 0.6s;
  }
  .mv_section .mv-illust-car {
    width: 28.8%;
    height: auto;
    top: 46%;
    left: 3%;
    animation-delay: 0.9s;
  }
  .mv_section .mv-illust-cleaning {
    width: 29%;
    height: auto;
    top: 42%;
    right: 8%;
    left: auto;
    animation-delay: 1.2s;
  }
  .intro_section {
    padding-top: 10rem;
  }
  .webp .intro_section {
    background-size: 120%;
  }
  .no-webp .intro_section {
    background-size: 120%;
  }
  .intro_ttl {
    max-width: 620px;
    width: 55%;
    margin: 0 auto 5rem;
  }
  .intro_txt {
    text-align: center;
    font-size: 1.5rem;
  }
  .features_ttl {
    max-width: 620px;
    width: 50%;
    margin: 0 0 5rem;
  }
  .features_list {
    padding-left: 18%;
  }
  .features_item {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: right;
  }
  .features_item:nth-child(2) {
    flex-direction: row-reverse;
  }
  .features_item:nth-child(2) .features_item_txtArea {
    margin-left: 0;
    margin-right: 4rem;
  }
  .features_item:not(:last-child) {
    margin-bottom: 8rem;
  }
  .features_item_img.first img {
    width: 247px;
    height: auto;
  }
  .features_item_img.second img {
    width: 219px;
    height: auto;
  }
  .features_item_img.third img {
    width: 254px;
    height: auto;
  }
  .features_item_txtArea {
    width: 630px;
    margin-left: 4rem;
  }
  .features_item_num {
    position: relative;
  }
  .guide_section {
    padding-top: 13rem;
    padding-bottom: 7rem;
  }
  .guide_ttl {
    max-width: 507.42px;
    width: 47.5%;
    margin: 0 0 5rem;
  }
  .guide_content {
    padding: 2.5rem 5rem;
    max-width: 1000px;
    position: relative;
  }
  .guide_content_list.support {
    display: flex;
  }
  .guide_content_item_block {
    width: 50%;
    max-width: 366px;
  }
  .guide_content_item_block.support {
    margin-bottom: 2.4rem;
  }
  .guide_chihuahua {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
  }
  .webp .flow_section {
    background-size: 120%;
  }
  .no-webp .flow_section {
    background-size: 120%;
  }
  .flow_section {
    padding-top: 6rem;
    padding-bottom: 18%;
  }
  .flow_ttl {
    max-width: 563.74px;
    width: 47.5%;
    margin: 0 0 5rem;
  }
  .flow_list {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin-top: -5rem;
    margin-bottom: 0;
  }
  .flow_item {
    margin-top: 5rem;
    width: 50%;
  }
  .flow_item:nth-child(odd) {
    padding-right: 2.5rem;
    border-right: 1px solid #ef858c;
    animation-delay: 0;
  }
  .flow_item:nth-child(even) {
    padding-left: 2.5rem;
    animation-delay: 0.3s;
  }
  .flow_item:nth-child(even) .flow_item_num {
    left: 2.5rem;
  }
  .flow_item:not(:last-child) {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .faq_section {
    padding-top: 13rem;
    padding-bottom: 7rem;
  }
  .faq_ttl {
    max-width: 620px;
    width: 55%;
    margin: 0 0 5rem;
  }
  .faq_content_wrap {
    padding: 2.5rem 5rem;
  }
  .faq_content {
    gap: 0;
  }
  .faq_content > label {
    width: 18%;
    max-width: 150px;
    margin-bottom: 0;
  }
  .faq_content > label.other {
    width: 18%;
    max-width: 150px;
  }
  .faq_content label:has(:checked) + div {
    margin-top: 2.5rem;
  }
  .facility_section {
    padding-top: 6rem;
  }
  .facility_ttl {
    max-width: 507.42px;
    width: 47.5%;
    margin: 0 0 5rem;
  }
  .facility_icons_list {
    flex-wrap: nowrap;
    max-width: 700px;
    margin: -3rem auto 4rem;
  }
  .staff_section {
    padding: 13rem 0;
  }
  .staff_ttl {
    max-width: 563.74px;
    width: 47.5%;
    margin: 0 0 5rem;
  }
  .staff_content {
    padding: 2.5rem 5rem;
  }
  .staff_content_btnArea {
    flex-direction: row;
    justify-content: space-between;
  }
  .staff_content_btn {
    width: calc((100% - 5rem) / 2);
  }
  .staff_content_btn p {
    font-size: 1.8rem;
  }
  .staff_content_btn_inner {
    width: auto;
  }
}
@media screen and (min-width: 1000px) {
  .section_head {
    display: flex;
    justify-content: space-between;
  }
  .section_headtxt {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 2;
    max-width: 600px;
    width: 50%;
  }
  .mv_section {
    height: auto;
    padding: 0;
    margin-top: 7.5rem;
  }
  .mv_section img {
    height: auto;
  }
  .intro_section {
    padding-bottom: 13%;
    margin-bottom: 10rem;
  }
  .intro_txt {
    text-align: center;
    font-size: 1.7rem;
    line-height: 2.94;
  }
  .intro_txtArea {
    position: relative;
    text-align: center; /* テキストを中央寄せ */
    padding-bottom: 50px;
  }
  .intro_txt {
    max-width: 800px;
    text-align: center; /* テキストを中央寄せ */
    position: relative; /* .intro_chihuahuaの基準位置にする */
    margin: 0 auto;
  }
  .intro_chihuahua {
    width: 200px;
    height: auto;
    position: absolute;
    top: 100%; /* .intro_txtの下に配置 */
    left: 50%; /* .intro_txtの中央から開始 */
    transform: translate(150%, -110%);
    margin: 0;
  }
  .features_section {
    padding-top: 18rem;
    margin-top: -8rem;
  }
  .features_list {
    padding-left: 20rem;
  }
  .features_item_num {
    font-size: 6rem;
    margin-bottom: 0.6rem;
  }
  .features_item_ttl {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }
  .features_item_txt {
    font-size: 1.5rem;
  }
  .guide_section {
    padding-top: 21rem;
    margin-top: -8rem;
    padding-bottom: 10rem;
  }
  .guide_content {
    padding: 5rem 10rem;
    margin: 0 0 0 auto;
  }
  .guide_content_ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .guide_content_item {
    font-size: 1.5rem;
  }
  .guide_content_block.support {
    margin-bottom: 4.7rem;
  }
  .guide_content_block.target {
    margin-bottom: 0;
  }
  .guide_chihuahua {
    width: 205.83px;
    height: 200px;
    right: 10rem;
  }
  .flow_section {
    padding-top: 10rem;
  }
  .flow_item {
    width: calc((100% - 102px) / 3);
    box-sizing: content-box;
  }
  .flow_item:nth-child(odd) {
    border: none;
    padding: 0;
  }
  .flow_item:nth-child(even) {
    border: none;
    padding: 0;
  }
  .flow_item:nth-child(even) .flow_item_num {
    left: 0;
  }
  .flow_item:nth-child(3n-2) {
    padding-right: 2.5rem;
  }
  .flow_item:nth-child(3n-1) {
    padding: 0 2.5rem;
    border-right: 1px solid #ef858c;
    border-left: 1px solid #ef858c;
  }
  .flow_item:nth-child(3n-1) .flow_item_num {
    left: 2.5rem;
  }
  .flow_item:nth-child(3n) {
    padding-left: 2.5rem;
    padding-right: 0;
    border-right: none;
  }
  .flow_item:nth-child(3n) .flow_item_num {
    left: 2.5rem;
  }
  .flow_item:nth-child(2) {
    animation-delay: 0.3s;
  }
  .flow_item:nth-child(3) {
    animation-delay: 0.6s;
  }
  .flow_item:nth-child(4) {
    animation-delay: 0s;
  }
  .flow_item:nth-child(5) {
    animation-delay: 0.3s;
  }
  .flow_item:nth-child(6) {
    animation-delay: 0.6s;
  }
  .faq_section {
    padding-top: 20rem;
    padding-bottom: 10rem;
  }
  .faq_ttl {
    width: 620px;
    margin: 0 0 5rem;
  }
  .faq_content_wrap {
    padding: 5rem 10rem;
    max-width: 1000px;
    margin: 0 0 0 auto;
  }
  .faq_content > label {
    height: 60px;
    font-size: 1.6rem;
  }
  .faq_content label:has(:checked) + div {
    margin-top: 5rem;
  }
  .faq_question {
    padding: 3.4rem 2rem;
  }
  .faq_question .faq_question_toggle {
    width: 3rem;
    height: 3rem;
    top: 3.4rem;
  }
  .faq_question_q {
    font-size: 4rem;
    margin-right: 2rem;
  }
  .faq_question_txt {
    font-size: 1.8rem;
  }
  .faq_answer_inner {
    padding: 3.8rem 2rem;
  }
  .faq_answer_a {
    font-size: 4rem;
    margin-right: 2rem;
  }
  .facility_section {
    padding-top: 10rem;
  }
  .facility_headtxt {
    margin-bottom: 5rem;
  }
  .facility_icons_list {
    max-width: 1000px;
    margin: -3rem auto 8rem;
  }
  .facility_icons_item {
    font-size: 1.8rem;
  }
  .facility_icons_item img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 2rem;
  }
  .staff_content {
    max-width: 1000px;
    padding: 5rem 10rem;
    margin: 0 0 0 auto;
  }
  .staff_content_txt {
    font-size: 1.5rem;
  }
  .staff_content_btn p {
    font-size: 2rem;
  }
  .staff_section {
    padding: 20rem 0;
  }
}
@media screen and (min-width: 1251px) {
  .section_inner {
    padding: 0;
  }
  .mv_section {
    padding: 0 7%;
  }
  .intro_chihuahua {
    width: 200px;
    height: auto;
    right: 7%;
  }
  .flow_headtxt {
    width: 600px;
  }
  .flow_item {
    width: calc((100% - 202px) / 3);
  }
  .flow_item:nth-child(3n-2) {
    padding-right: 5rem;
  }
  .flow_item:nth-child(3n-1) {
    padding: 0 5rem;
  }
  .flow_item:nth-child(3n-1) .flow_item_num {
    left: 5rem;
  }
  .flow_item:nth-child(3n) {
    padding-left: 5rem;
  }
  .flow_item:nth-child(3n) .flow_item_num {
    left: 5rem;
  }
  .facility_info_vacancy {
    width: 90px;
    height: 90px;
  }
  .facility_info_vacancy_txt {
    font-size: 1.8rem;
  }
  .facility_info_vacancy_num {
    font-size: 3rem;
  }
  .facility_info_name {
    font-size: 2rem;
  }
  .facility_info_vacancy.no-vacancy {
    font-size: 2.4rem;
  }
  .swiper {
    padding: 0 5.5rem;
    max-width: 1490px;
    box-sizing: content-box;
  }
  .facility_info_item {
    width: 394px;
  }
}
@media screen and (min-width: 1600px) {
  .webp .intro_section,
  .no-webp .intro_section,
  .webp .flow_section,
  .no-webp .flow_section {
    background-size: contain;
  }
  .swiper-button-prev {
    left: 24px;
  }
  .swiper-button-next {
    right: 24px;
  }
}/*# sourceMappingURL=top.css.map */