@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;
  }
}
.page-ttl_section {
  padding: 4rem 0;
}

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

.page-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
}

.breadcrumb .list {
  display: flex;
  flex-direction: row;
}
.breadcrumb .list .item {
  color: #716c6d;
  font-size: 1.2rem;
}
.breadcrumb .list .item a {
  color: #716c6d;
  font-size: 1.2rem;
}
.breadcrumb .list .item a::after {
  content: ">";
  margin: 0 5px;
  color: #716c6d;
}

.page-ttl_txt {
  margin: 3rem 0 1.4rem;
}
.page-ttl_txt p {
  font-size: 1.4rem;
  line-height: 2;
}

.page-ttl.facility {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-ttl_vacancy {
  display: inline-block;
  background: #e64d55;
  border-radius: 6px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.4444;
  font-weight: 700;
  height: 26px;
  padding: 3px 12px;
  margin-top: 1.5rem;
}

@media screen and (min-width: 430px) {
  .page-ttl.facility {
    display: flex;
    flex-direction: row;
  }
  .page-ttl_facility {
    margin-right: 2rem;
  }
  .page-ttl_vacancy {
    margin-top: 0;
  }
}
.facility_top_section {
  padding-bottom: 3.2rem;
}

.facility_top_images {
  margin-bottom: 4rem;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.swiper-wrapper::before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
}

.swiper-horizontal {
  border-radius: 10px;
}

.swiper-slide .caption {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  background: #e64d55;
  color: #fff;
  width: 28%;
  height: 9%;
  font-size: 1.4rem;
  border-radius: 10px 0 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  max-height: 50px;
  min-height: 26px;
  z-index: 1;
}

/* swiper-slideの設定 */
.swiper-slide {
  position: relative;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  background-color: #fff; /* 画像外の背景色を白に設定 */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* アスペクト比を固定するためのコンテナ */
.aspect-ratio-box {
  position: relative;
  width: 100%;
  padding-top: 66.6666666667%; /* アスペクト比を16:9に設定（必要に応じて調整） */
  overflow: hidden;
}

/* 画像をコンテナ内で中央配置 */
.aspect-ratio-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain; /* アスペクト比を維持しつつ、中央配置 */
  border-radius: 10px;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ef858c;
  border: 1px solid #fff;
}

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

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

.thumb-wrapper {
  margin-top: 1rem;
  display: -ms-grid;
  display: grid;
  gap: 2.6rem 0.5rem;
  -ms-grid-columns: 1fr 0.5rem 1fr 0.5rem 1fr 0.5rem 1fr;
  grid-template-columns: repeat(4, 1fr); /*均等4カラム指定*/
}

.thumb-media {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 62.06%;
  cursor: pointer;
}
.thumb-media.thumb-media-active {
  cursor: default;
}
.thumb-media:hover {
  opacity: 0.9;
}
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-media .cap {
  background: #958b8b;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 4px 0;
}

.facility_top_videos {
  margin-top: -2rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

.video_item {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-top: 2rem;
}
.video_item iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.facility_top_txt p {
  font-size: 1.4rem;
  line-height: 2;
}
.facility_top_txt p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.facility_info_section {
  background: #f7f2f2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.facility_info_content {
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  padding: 1.6rem;
}

.facility_info_table {
  width: 100%;
  border-collapse: collapse;
}
.facility_info_table tr:not(:last-child) {
  border-bottom: 1px solid #f7f2f2;
}
.facility_info_table th,
.facility_info_table td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 2;
  vertical-align: middle;
}
.facility_info_table th {
  text-align: left;
  color: #e64d55;
  font-weight: 500;
  min-width: 11rem;
  width: 30%;
}
.facility_info_table td {
  font-weight: 400;
}

.facility_access_section {
  background: #fff;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.facility_access_content {
  display: flex;
  flex-direction: column;
}

.facility_access_map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.6666%;
  margin-bottom: 2rem;
  border-radius: 10px;
}
.facility_access_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.facility_access_txt_ttl {
  color: #e64d55;
  font-size: 1.6rem;
  line-height: 1.7;
  border-bottom: 1px solid #f7f2f2;
  padding-bottom: 0.6rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.facility_access_txt_content {
  font-size: 1.4rem;
  line-height: 2;
}

.facility_others_section {
  background: #ffcdcd;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.facility_others_ttl {
  background: #e64d55;
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  width: 80%;
  max-width: 32rem;
  height: 4.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -6rem auto 3rem;
}

.facility_others_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: -1rem;
  max-width: 570px;
}

.facility_others_item {
  width: calc((100% - 1rem) / 2);
  max-width: 280px;
  background: #fff;
  border-radius: 10px;
  margin-top: 1rem;
}
.facility_others_item a {
  display: block;
  padding: 1rem;
  border-radius: 10px;
}
.facility_others_item a:hover {
  opacity: 0.7;
}

.facility_others_item_img {
  border-radius: 6px;
  margin-bottom: 1rem;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.66%;
}
.facility_others_item_img img {
  border-radius: 6px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.facility_others_item_ttl {
  text-align: center;
  color: #ef858c;
  margin-bottom: 1rem;
}
.facility_others_item_ttl .small {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.45;
}
.facility_others_item_ttl .place {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.42;
}

.facility_others_item_txt {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6666;
  color: #32281e;
}

.recruit_section_ttl {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
}
.recruit_section_ttl img {
  width: 40px;
  height: 40px;
  margin-right: 5px;
}
.recruit_section_ttl p {
  color: #ef858c;
  font-size: 1.5rem;
}

.sewanin_section {
  padding: 4.4rem 0;
  background: #f7f2f2;
}

.sekininsya_section {
  padding: 5rem 0;
  background: #fff;
}

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

.recruit_section_content {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  padding: 1.6rem;
}
.recruit_section_content.sewanin {
  background: #fff;
}
.recruit_section_content.sewanin .recruit_section_table tr:not(:last-child) {
  border-bottom: 1px solid #f7f2f2;
}
.recruit_section_content.sekininsya {
  background: #f7f2f2;
}
.recruit_section_content.sekininsya .recruit_section_table tr:not(:last-child) {
  border-bottom: 1px solid rgba(113, 108, 109, 0.2);
}
.recruit_section_content .recruit_section_table {
  width: 100%;
  border-collapse: collapse;
}
.recruit_section_content .recruit_section_table th,
.recruit_section_content .recruit_section_table td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 2;
  vertical-align: middle;
}
.recruit_section_content .recruit_section_table th {
  text-align: left;
  color: #e64d55;
  font-weight: 500;
  min-width: 9rem;
  width: 20%;
}
.recruit_section_content .recruit_section_table td {
  font-weight: 400;
}

.privacypolicy_section {
  padding-bottom: 10rem;
}

.privacypolicy_block:not(:last-child) {
  margin-bottom: 4.5rem;
}

.privacypolicy_ttl {
  color: #e64d55;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.privacypolicy_txt {
  font-size: 1.4rem;
  line-height: 2;
}

.contact_tel {
  margin-top: 1rem;
}

.contact_tel_icon {
  width: 20px;
  height: 20px;
  vertical-align: baseline;
  margin-right: 2px;
}

.contact_tel_num a {
  font-size: 2.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #e64d55;
}

.contact_tel_time {
  font-size: 1.2rem;
  vertical-align: text-bottom;
}

.contact_tel_direct {
  font-size: 1.5rem;
}
.contact_tel_direct a {
  font-family: "Poppins", sans-serif;
  color: #32281e;
}

.from_wrap {
  border-top: 1px solid #f7f2f2;
  padding-top: 6rem;
  padding-bottom: 10rem;
}

.form {
  width: 100%;
  max-width: 796px;
  margin: 0 auto;
}
.form .form-item:not(:last-child) {
  margin-bottom: 2.4rem;
}
.form .form-item p {
  display: flex;
  flex-direction: column;
}
.form .form-label {
  color: #e64d55;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  display: block;
  margin-bottom: 0.8rem;
}
.form .form-label .required {
  font-size: 1.2rem;
  margin-left: 0.4rem;
  font-weight: 900;
}
.form input[type=text],
.form input[type=tel],
.form input[type=email],
.form select,
.form textarea {
  width: 100%;
  border: 1px solid #adadad;
  border-radius: 6px;
  height: 48px;
  font-size: 1.6rem;
  line-height: 1.7;
  padding: 1rem;
  background: #fff;
}
.form input[type=text]:focus,
.form input[type=tel]:focus,
.form input[type=email]:focus,
.form select:focus,
.form textarea:focus {
  border: 2px solid #ef858c;
}
.form input[type=text],
.form input[type=tel],
.form input[type=email],
.form select,
.form .wpcf7-form-control-wrap {
  max-width: 400px;
}
.form .textarea .wpcf7-form-control-wrap {
  max-width: 600px;
}
.form textarea {
  height: 180px;
  max-width: 600px;
}
.form input[type=radio],
.form input[type=checkbox] {
  /* コンテンツの流れから切り離す */
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.form select {
  color: #32281e;
}
.form select:invalid {
  color: #707070;
}
.form select option {
  color: #32281e;
}
.form select option:first-child {
  color: #707070;
}
.form .form-item.pulldown p span.wpcf7-form-control-wrap {
  position: relative;
}
.form .form-item.pulldown p span.wpcf7-form-control-wrap::before {
  display: block;
  position: absolute;
  top: 29px;
  right: 13px;
  width: 0;
  height: 0;
  margin-top: -8.67px;
  border-width: 8.67px 5px 0 5px; /* 高さ: 8.67px, 幅: 10px (5px + 5px) */
  border-style: solid;
  border-color: #767676 transparent transparent transparent;
  content: "";
  pointer-events: none;
  z-index: 10;
}
.form .hope-facility {
  display: flex;
  flex-direction: column;
}
.form .hope-facility .wpcf7-list-item {
  margin: 0 0 1rem;
}
.form .hope-facility .wpcf7-list-item.first {
  display: none;
}
.form .hope-facility .wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 400;
  color: #32281e;
  /* ラジオボタンが選択されたとき */
}
.form .hope-facility .wpcf7-list-item label input[type=radio] {
  /* ラジオボタンを非表示にする */
  display: none;
}
.form .hope-facility .wpcf7-list-item label span {
  position: relative;
  padding-left: 40px;
}
.form .hope-facility .wpcf7-list-item label span::before, .form .hope-facility .wpcf7-list-item label span::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.form .hope-facility .wpcf7-list-item label span::before {
  background-color: #fff;
  border: 1px solid #adadad;
  width: 20px;
  height: 20px;
  left: 5px;
}
.form .hope-facility .wpcf7-list-item label span::after {
  background-color: #32281e;
  opacity: 0;
  width: 10px;
  height: 10px;
  left: 11px;
  transition: opacity 0.2s;
}
.form .hope-facility .wpcf7-list-item label input[type=radio]:checked + span::after {
  opacity: 1;
}
.form .form-privacypolicy {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 3.2rem;
}
.form .form-privacypolicy p label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 400;
  color: #32281e;
  /* ラジオボタンが選択されたとき */
}
.form .form-privacypolicy p label input[type=radio] {
  display: none;
}
.form .form-privacypolicy p label span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #32281e;
  position: relative;
  padding-left: 40px;
}
.form .form-privacypolicy p label span::before, .form .form-privacypolicy p label span::after {
  content: "";
  display: block;
  position: absolute;
}
.form .form-privacypolicy p label span::before {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #adadad;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
.form .form-privacypolicy p label span::after {
  border-bottom: 2px solid #32281e;
  border-left: 2px solid #32281e;
  opacity: 0;
  height: 5px;
  width: 10px;
  transform: rotate(-45deg);
  top: 5px;
  left: 10px;
}
.form .form-privacypolicy p label span a {
  color: #2962ff;
}
.form .form-privacypolicy p label span a:hover {
  opacity: 0.9;
}
.form .form-privacypolicy p label input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.form .form-submit {
  text-align: center;
}
.form .form-submit input {
  width: 100%;
  max-width: 384px;
  height: 60px;
  border-radius: 40px;
  border: none;
  background: #e64d55;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
}
.form .form-submit input:disabled {
  opacity: 0.3;
}
.form .form-submit .wpcf7-spinner {
  display: none;
}
.form .reCAPTCHA {
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 3.2rem;
}
.form .reCAPTCHA a {
  color: #2962ff;
}
.form .reCAPTCHA a:hover {
  opacity: 0.9;
}

/* フォームのエラーメッセージ */
.wpcf7-not-valid-tip {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #e64d55;
}

@media screen and (min-width: 768px) {
  .facility_top_section {
    padding-bottom: 6.4rem;
  }
  .facility_top_images {
    margin-bottom: 6rem;
  }
  .swiper-slide .caption {
    font-size: 2rem;
  }
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 34.57px;
    height: 60px;
  }
  .thumb-wrapper {
    margin-top: 2rem;
    gap: 3.4rem 0.6rem;
    -ms-grid-columns: 1fr 0.6rem 1fr 0.6rem 1fr 0.6rem 1fr;
    grid-template-columns: repeat(6, 1fr);
  }
  .facility_top_videos {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 6rem;
  }
  .facility_top_videos.one-video {
    justify-content: center;
  }
  .video_item_wrap {
    width: 46.5%;
  }
  .facility_top_txt p {
    font-size: 1.5rem;
  }
  .facility_top_txt p:not(:last-child) {
    margin-bottom: 2rem;
  }
  .facility_info_section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .facility_info_content {
    padding: 1.2rem 3rem;
  }
  .facility_info_table th,
  .facility_info_table td {
    font-size: 1.6rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
  }
  .facility_info_table th {
    padding-left: 2rem;
    width: 26rem;
  }
  .facility_info_table td {
    padding-right: 2rem;
  }
  .facility_access_section {
    padding-top: 8rem;
    padding-bottom: 12rem;
  }
  .facility_access_content {
    flex-direction: row;
    justify-content: space-between;
  }
  .facility_access_map_wrap {
    width: 66.6666%;
  }
  .facility_access_txt {
    width: 28.8888%;
  }
  .facility_others_section {
    padding-top: 7rem;
    padding-bottom: 6.3rem;
  }
  .facility_others_ttl {
    height: 6rem;
    font-size: 2.8rem;
    margin: -10rem auto 4rem;
  }
  .facility_others_list {
    max-width: 100%;
  }
  .facility_others_item {
    width: calc((100% - 2rem) / 3);
    margin-bottom: 0;
  }
  .facility_others_item a {
    padding: 2rem;
  }
  .facility_others_item_img {
    margin-bottom: 2rem;
  }
  .facility_others_item_ttl .small {
    font-size: 2rem;
  }
  .facility_others_item_ttl .place {
    font-size: 2.6rem;
  }
  .facility_others_item_txt p {
    font-size: 1.5rem;
  }
  .recruit_section_ttl {
    margin-bottom: 1.5rem;
  }
  .recruit_section_ttl img {
    width: 50px;
    height: 50px;
    margin-right: 8px;
  }
  .recruit_section_ttl p {
    color: #ef858c;
    font-size: 2rem;
  }
  .facility_access_txt_ttl {
    font-size: 1.8rem;
    padding-bottom: 0.8rem;
    margin-bottom: 2rem;
  }
  .facility_access_txt_content {
    font-size: 1.5rem;
  }
  .sewanin_section {
    padding: 6.6rem 0;
  }
  .sekininsya_section {
    padding: 7.5rem 0;
  }
  .recruit_section_content {
    padding: 1.2rem 3rem;
  }
  .recruit_section_content .recruit_section_table th,
  .recruit_section_content .recruit_section_table td {
    font-size: 1.6rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .recruit_section_content .recruit_section_table th {
    width: 18rem;
    padding-left: 2rem;
  }
  .recruit_section_content .recruit_section_table td {
    padding-right: 2rem;
  }
  .from_wrap {
    padding-bottom: 20rem;
  }
  .form input[type=text],
  .form input[type=tel],
  .form input[type=email],
  .form select,
  .form textarea {
    font-size: 1.6rem;
  }
  .form .hope-facility .wpcf7-list-item label {
    font-size: 2rem;
  }
  .form .form-label {
    font-size: 2rem;
  }
  .form .form-item p {
    flex-direction: row;
    width: 100%;
  }
  .form .form-item:not(:last-child) {
    margin-bottom: 4.8rem;
  }
  .form .form-item p > .form-label {
    width: 200px;
  }
  .form .wpcf7-form-control-wrap {
    width: calc(100% - 200px);
  }
  .form .reCAPTCHA {
    font-size: 1.2rem;
  }
  /* フォームのエラーメッセージ */
  .wpcf7-not-valid-tip {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1000px) {
  .page-ttl_section {
    padding: 6rem 0;
  }
  .section_inner-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
  }
  .page-ttl {
    font-size: 3.2rem;
    margin-bottom: 6rem;
  }
  .page-ttl_txt {
    margin: 6rem 0 2.8rem;
  }
  .page-ttl_txt p {
    font-size: 1.5rem;
  }
  .page-ttl_facility {
    margin-right: 3.8rem;
  }
  .page-ttl_vacancy {
    width: 84px;
    height: 36px;
    font-size: 1.8rem;
    padding-top: 4px;
  }
  .swiper-horizontal {
    border-radius: 20px;
  }
  .swiper-slide .caption {
    font-size: 2.2rem;
    height: 50px;
    border-radius: 20px 0 20px 0;
  }
  .swiper-slide img {
    border-radius: 20px;
  }
  .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    margin: 0 7px !important;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 17px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 46px;
    height: 70px;
  }
  .thumb-wrapper {
    margin-top: 3rem;
  }
  .thumb-media .cap {
    font-size: 1.4rem;
    height: 27px;
  }
  .facility_top_images {
    margin-bottom: 8rem;
  }
  .facility_top_videos {
    margin-bottom: 8rem;
  }
  .recruit_section_ttl {
    margin-bottom: 2rem;
  }
  .recruit_section_ttl img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
  .recruit_section_ttl p {
    color: #ef858c;
    font-size: 2.4rem;
  }
  .sewanin_section {
    padding: 8.8rem 0;
  }
  .sekininsya_section {
    padding: 10.6rem 0 20.2rem;
  }
  .recruit_section_ttl_bottom {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 5.2rem;
  }
  .recruit_section_content .recruit_section_table th {
    width: 26rem;
    padding-left: 2rem;
  }
  .recruit_section_content .recruit_section_table td {
    padding-right: 2rem;
  }
  .privacypolicy_section {
    padding-bottom: 17rem;
  }
  .privacypolicy_block:not(:last-child) {
    margin-bottom: 6.5rem;
  }
  .privacypolicy_ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .privacypolicy_txt {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=page.css.map */