@charset "UTF-8";
html {
  font-size: 1px;
  overflow-x: hidden;
}
html.lock {
  overflow-y: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  max-width: 100vw;
  min-height: 100vh;
  color: #3E3E3E;
  font-size: 16rem;
  overflow: hidden;
  background-color: #FCFAF7;
}

select,
input,
textarea,
button {
  font: inherit;
}

img,
svg {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  transition: 0.3s linear;
  backface-visibility: hidden;
}
a.tel_link {
  pointer-events: none;
}
a.line {
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #3E3E3E;
}
a.line:hover {
  border-bottom: 1px solid transparent;
}

main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

.inner {
  width: 1200rem;
  margin-left: auto;
  margin-right: auto;
}

.s_inner {
  width: 960rem;
  margin-left: auto;
  margin-right: auto;
}

.mt_l {
  margin-top: 100rem;
}

.mt_m {
  margin-top: 60rem;
}

.mt_s {
  margin-top: 20rem;
}

.fz_l {
  font-size: 1.2em;
}

.fz_s {
  font-size: 0.8em;
}

.ta_center {
  text-align: center;
}

.fwb {
  font-weight: bold;
}

.font_co {
  font-family: "Cormorant Infant", serif;
  font-weight: bold;
}

.font_san {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", Meiryo, "sans-serif", sans-serif;
}

.font_zen {
  font-family: "Zen Maru Gothic", sans-serif;
}

.c_red {
  color: #E55151;
}

.c_orange {
  color: #EC6949;
}

.c_blue {
  color: #082fa4;
}

.btn_more a {
  width: 250rem;
  height: 70rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EC6949;
  font-weight: bold;
  font-size: 18rem;
  position: relative;
  background-color: #fff;
  border-radius: 100rem;
  padding-left: 30rem;
  transition: 0.3s;
  font-family: "Zen Maru Gothic", sans-serif;
  overflow: hidden;
}
.btn_more a span {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.btn_more a::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 20rem;
  transform: translateY(-50%);
  width: 30rem;
  height: 30rem;
  background: url(../img/ico_arrow.svg) no-repeat center right/contain;
  box-sizing: border-box;
  border-radius: 20rem;
  transition: 0.3s;
  z-index: 1;
}
.btn_more a::after {
  content: "";
  background: #EC6949;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  transition: 0.3s;
  border-radius: 100rem;
}
.btn_more a:hover {
  color: #fff;
  padding-left: 0;
  padding-right: 30rem;
}
.btn_more a:hover::before {
  left: calc(100% - 50rem);
  background: url(../img/ico_arrow02.svg) no-repeat center right/contain;
}
.btn_more a:hover::after {
  width: 100%;
}

.btn_more_s a {
  position: relative;
  font-size: 18rem;
  color: #EC6949;
  padding-left: 42rem;
  font-weight: bold;
}
.btn_more_s a::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30rem;
  height: 30rem;
  background: url(../img/ico_arrow.svg) no-repeat center right/contain;
  box-sizing: border-box;
  z-index: 1;
}

main {
  margin-top: 120rem;
}

header {
  position: fixed;
  width: 100%;
  height: 120rem;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: #FCFAF7;
  line-height: 1.6;
}
header .header_wrap {
  width: 100%;
  height: 100%;
  padding-left: 30rem;
  padding-right: 30rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FCFAF7;
}
header .header_wrap .logo_wrap {
  display: flex;
  align-items: center;
}
header .header_wrap .logo_wrap img {
  height: 51rem;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header_wrap .header_content {
  width: 1150rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50rem;
  margin-left: 50rem;
}
header .header_wrap .header_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 28rem;
}
header .header_wrap .header_nav ul li {
  height: 45rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_wrap .header_nav ul li a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-bottom: 2rem solid transparent;
  transition: 0.3s;
}
header .header_wrap .header_nav ul li a:hover {
  border-bottom: 2rem solid #EC6949;
}
header .header_wrap .header_nav ul li.mega_select {
  transition: 0.3s;
  border-bottom: 2rem solid transparent;
}
header .header_wrap .header_nav ul li.mega_select:hover {
  border-bottom: 2rem solid #EC6949;
}
header .header_wrap .header_btn {
  display: flex;
  gap: 10rem;
}
header .header_wrap .header_btn .btn_wrap a {
  width: 200rem;
  height: 70rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18rem;
  font-weight: bold;
  border-radius: 100rem;
  position: relative;
  padding-left: 20rem;
  transition: 0.3s;
  overflow: hidden;
}
header .header_wrap .header_btn .btn_wrap a span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
header .header_wrap .header_btn .btn_wrap a::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 20rem;
  transform: translateY(-50%);
  width: 30rem;
  height: 30rem;
  border-radius: 40rem;
  z-index: 1;
  transition: 0.3s;
}
header .header_wrap .header_btn .btn_wrap a::after {
  content: "";
  background: #fff;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  transition: 0.3s;
  border-radius: 40rem;
}
header .header_wrap .header_btn .btn_wrap a:hover {
  padding-left: 0;
  padding-right: 10rem;
}
header .header_wrap .header_btn .btn_wrap a:hover::before {
  left: calc(100% - 50rem);
}
header .header_wrap .header_btn .btn_wrap a:hover::after {
  width: 100%;
}
header .header_wrap .header_btn .btn_wrap.request a {
  background-color: #747474;
  border: 1px solid #747474;
}
header .header_wrap .header_btn .btn_wrap.request a::before {
  background: url(../img/ico_arrow_request.svg) no-repeat center right/contain;
}
header .header_wrap .header_btn .btn_wrap.request a:hover {
  color: #747474;
}
header .header_wrap .header_btn .btn_wrap.request a:hover::before {
  background: url(../img/ico_arrow_request02.svg) no-repeat center right/contain;
}
header .header_wrap .header_btn .btn_wrap.reserve a {
  background-color: #EC6949;
  border: 1px solid #EC6949;
}
header .header_wrap .header_btn .btn_wrap.reserve a::before {
  background: url(../img/ico_arrow_reserve.svg) no-repeat center right/contain;
}
header .header_wrap .header_btn .btn_wrap.reserve a:hover {
  color: #EC6949;
}
header .header_wrap .header_btn .btn_wrap.reserve a:hover::before {
  background: url(../img/ico_arrow_reserve02.svg) no-repeat center right/contain;
}

.mega_menu_wrap .mega_menu {
  position: fixed;
  top: 120rem;
  left: 0;
  background-color: #FCFAF7;
  opacity: 0;
  width: 100%;
  padding-top: 42rem;
  padding-bottom: 42rem;
  transform: translateY(-100%);
  z-index: 99;
  transition: 0.5s;
}
.mega_menu_wrap .mega_menu.mega_in {
  transform: translateY(0);
  opacity: 0.9;
}
.mega_menu_wrap .mega_menu ul {
  display: flex;
  justify-content: center;
  gap: 115rem;
}
.mega_menu_wrap .mega_menu ul + ul {
  margin-top: 30rem;
}
.mega_menu_wrap .mega_menu ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: 0.3s;
}
.mega_menu_wrap .mega_menu ul li a .img_wrap {
  width: 140rem;
}
.mega_menu_wrap .mega_menu ul li a .img_wrap img {
  height: 93rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10rem;
}
.mega_menu_wrap .mega_menu ul li a .text {
  padding-left: 50rem;
  position: relative;
}
.mega_menu_wrap .mega_menu ul li a .text::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 10rem;
  transform: translateY(-50%);
  width: 30rem;
  height: 30rem;
  background: url(../img/ico_arrow.svg) no-repeat center right/contain;
  box-sizing: border-box;
}
.mega_menu_wrap .mega_menu ul li a:hover {
  opacity: 0.7;
}
.mega_menu_wrap .mega_menu.menu02 ul {
  gap: 0;
}
.mega_menu_wrap .mega_menu.menu02 ul li {
  width: 480rem;
}
.mega_menu_wrap .mega_menu.menu02 ul li a {
  justify-content: left;
}

.mv {
  padding-top: 40rem;
  width: 100%;
  position: relative;
  z-index: 2;
}
.mv::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: 0;
  width: 34.0625vw;
  height: 39.1666666667vw;
  background: url(../img/mv_item.png) no-repeat center top/contain;
}
.mv .mv_img_wrap {
  width: 64.21875vw;
  position: relative;
}
.mv .mv_img_wrap .mv_tit {
  position: absolute;
  top: 3.4375vw;
  right: -305rem;
  font-weight: bold;
  font-size: 48rem;
  height: 100%;
  writing-mode: vertical-rl;
}
.mv .mv_img_wrap .mv_tit p {
  font-size: 25rem;
  margin-left: 40rem;
  padding-left: 5rem;
  border-left: 1px solid #000;
  height: -moz-fit-content;
  height: fit-content;
  letter-spacing: 0.2em;
}
.mv .mv_img_wrap .mv_tit p .number {
  display: inline-block;
  line-height: 1;
  transform: translateX(3rem) rotate(-90deg);
}
.mv .mv_img_wrap .mv_tit h2 {
  padding-top: 40rem;
  line-height: 1.8;
  letter-spacing: 0.25em;
}
.mv .mv_img_wrap .mv_tit h2 span {
  display: inline-block;
  margin-top: 80rem;
}
.mv .mv_img_wrap .mv_img img {
  border-top-right-radius: 40rem;
  border-bottom-right-radius: 40rem;
}
.mv .mv_position {
  position: absolute;
  right: 0;
  bottom: -210rem;
  width: 22.7083333333vw;
}
.mv .mv_position img {
  border-top-left-radius: 40rem;
  border-bottom-left-radius: 40rem;
}

.common_tit .en {
  line-height: 1;
}
.common_tit .en img {
  height: 17rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.common_tit h2 {
  margin-top: 5rem;
  font-weight: bold;
  font-size: 28rem;
}

.about_top {
  margin-top: 145rem;
  position: relative;
  z-index: 1;
}
.about_top .content_wrap {
  padding-left: 60rem;
  position: relative;
}
.about_top .content_wrap .content_flex {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 1;
  max-width: 1710rem;
  width: 100%;
}
.about_top .content_wrap .content_flex::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1710rem;
  height: 100%;
  background-color: #E2F2EE;
  z-index: -1;
  border-top-left-radius: 40rem;
  border-bottom-left-radius: 40rem;
}
.about_top .content_wrap .content_flex .text_area {
  width: 40.625vw;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100rem;
  padding-bottom: 100rem;
}
.about_top .content_wrap .content_flex .text_area .text_wrap {
  width: 480rem;
  margin-left: auto;
  margin-right: auto;
}
.about_top .content_wrap .content_flex .text_area .text {
  margin-top: 15rem;
  line-height: 2;
}
.about_top .content_wrap .content_flex .text_area .btn_more {
  margin-top: 30rem;
}
.about_top .content_wrap .content_flex .img_area {
  width: 46.3541666667vw;
  position: relative;
}
.about_top .content_wrap .content_flex .img_area .img_wrap {
  width: 890rem;
  position: absolute;
  left: 0;
  top: 0;
}
.about_top .content_wrap .content_flex .img_area .img_wrap img {
  min-height: 400rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 40rem;
  border-bottom-left-radius: 40rem;
}
.about_top .content_wrap.reverse {
  padding-left: 0;
  padding-right: 60rem;
}
.about_top .content_wrap.reverse .content_flex {
  margin-left: 0;
  margin-right: auto;
  flex-direction: row-reverse;
  width: 100%;
}
.about_top .content_wrap.reverse .content_flex::before {
  left: auto;
  right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 40rem;
  border-bottom-right-radius: 40rem;
}
.about_top .content_wrap.reverse .content_flex .img_area .img_wrap {
  top: -50rem;
  left: auto;
  right: 0;
}
.about_top .content_wrap.reverse .content_flex .img_area .img_wrap img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 40rem;
  border-bottom-right-radius: 40rem;
}
.about_top .content_wrap.about01 {
  z-index: 3;
}
.about_top .content_wrap.about01::before {
  position: absolute;
  content: "";
  display: block;
  top: -144rem;
  left: 42rem;
  width: 165rem;
  height: 367rem;
  background: url(../img/pic_about_item01.png) no-repeat center top;
  z-index: -1;
}
.about_top .content_wrap.about01 .content_flex .img_area .img_wrap {
  top: 100rem;
}
.about_top .content_wrap.about02 {
  z-index: 2;
  margin-top: 145rem;
}
.about_top .content_wrap.about02::before {
  position: absolute;
  content: "";
  display: block;
  bottom: -80rem;
  right: -50rem;
  width: 121rem;
  height: 122rem;
  background: url(../img/pic_about_item02.png) no-repeat center top;
  z-index: -1;
}
.about_top .content_wrap.about02 .content_flex .text_area .common_tit {
  margin-top: 0;
}
.about_top .content_wrap.about02 .content_flex .img_area {
  width: 50vw;
}
.about_top .content_wrap.about02 .content_flex .img_area .img_wrap {
  width: 960rem;
}
.about_top .content_wrap.about03 {
  z-index: 1;
  margin-top: 80rem;
}
.about_top .content_wrap.about03::before {
  position: absolute;
  content: "";
  display: block;
  top: -150rem;
  left: 0;
  width: 256rem;
  height: 626rem;
  background: url(../img/pic_about_item03.png) no-repeat center top;
  z-index: -1;
}
.about_top .content_wrap.about03 .content_flex {
  max-width: 1440rem;
}
.about_top .content_wrap.about03 .content_flex .text_area .text_wrap {
  width: 375rem;
}
.about_top .content_wrap.about03 .content_flex .text_area .common_tit {
  margin-top: 20rem;
}
.about_top .content_wrap.about03 .content_flex .text_area .btn_more a {
  width: 270rem;
}
.about_top .content_wrap.about03 .content_flex .img_area .img_wrap {
  top: 105rem;
}

.facility_top {
  margin-top: 100rem;
  position: relative;
  z-index: 1;
}
.facility_top::before {
  position: absolute;
  content: "";
  display: block;
  top: 168rem;
  left: 88rem;
  width: 125rem;
  height: 192rem;
  background: url(../img/pic_facility_item01.png) no-repeat center top/contain;
  z-index: -1;
}
.facility_top::after {
  position: absolute;
  content: "";
  display: block;
  top: 335rem;
  right: 0;
  width: 200rem;
  height: 165rem;
  background: url(../img/pic_facility_item02.png) no-repeat center top/contain;
  z-index: -1;
}
.facility_top .flex_wrap {
  margin-top: 35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 55rem 0;
}
.facility_top .flex_wrap .box {
  width: 570rem;
}
.facility_top .flex_wrap .box .img_area {
  position: relative;
}
.facility_top .flex_wrap .box .img_area .img_wrap img {
  border-radius: 40rem;
}
.facility_top .flex_wrap .box .img_area .btn_more {
  position: absolute;
  left: 8rem;
  bottom: 10rem;
}
.facility_top .flex_wrap .box .img_area .btn_more a {
  width: 302rem;
  height: 60rem;
  background-color: #FCFAF7;
  color: #3E3E3E;
}
.facility_top .flex_wrap .box .img_area .btn_more a:hover {
  color: #FCFAF7;
}
.facility_top .flex_wrap .box .text {
  margin-top: 18rem;
}

.news_top {
  position: relative;
  margin-top: 70rem;
  line-height: 1.6;
}
.news_top .top_bg_area {
  position: relative;
  width: 100%;
  height: 438rem;
  z-index: -1;
}
.news_top .top_bg_area .top_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.news_top .top_bg_area .top_bg img {
  height: 438rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_top .top_bg_area.fixed .top_bg {
  position: fixed;
  top: 120rem;
}

.news_area {
  position: relative;
  z-index: 2;
  background-color: #FCFAF7;
  padding-top: 40rem;
}
.news_area::before, .news_area::after {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
}
.news_area::before {
  bottom: 150rem;
  left: 92rem;
  width: 134rem;
  height: 167rem;
  background: url(../img/pic_news_item01.png) no-repeat center top/contain;
}
.news_area::after {
  top: 0;
  right: 0;
  width: 205rem;
  height: 202rem;
  background: url(../img/pic_news_item02.png) no-repeat center top/contain;
}
.news_area .news_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1360rem;
  padding-right: 80rem;
  width: 100%;
  padding-bottom: 50rem;
}
.news_area .news_wrap .news_side {
  width: 380rem;
}
.news_area .news_wrap .news_side .news_menu {
  padding-top: 38rem;
  padding-bottom: 45rem;
  padding-left: 65rem;
  padding-right: 65rem;
  background-color: #E2F2EE;
  border-radius: 40rem;
}
.news_area .news_wrap .news_side .news_menu .common_tit .en img {
  height: 21rem;
}
.news_area .news_wrap .news_side .news_menu .menu_wrap {
  margin-top: 30rem;
}
.news_area .news_wrap .news_side .news_menu .menu_wrap ul li {
  font-weight: bold;
  position: relative;
}
.news_area .news_wrap .news_side .news_menu .menu_wrap ul li + li {
  margin-top: 20rem;
}
.news_area .news_wrap .news_side .news_menu .btn_more {
  margin-top: 30rem;
}
.news_area .news_wrap .news_side .photo_album {
  padding-top: 38rem;
  padding-bottom: 45rem;
  padding-left: 65rem;
  padding-right: 65rem;
  background-color: #E2F2EE;
  border-radius: 40rem;
  margin-top: 40rem;
}
.news_area .news_wrap .news_side .photo_album .btn_more {
  margin-top: 30rem;
}
.news_area .news_wrap .news_side .photo_album .btn_more a {
  text-align: center;
}
.news_area .news_wrap .news_content {
  margin-top: 75rem;
  padding-left: 30rem;
  width: 890rem;
}
.news_area .news_wrap .news_content .content_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50rem 0;
}
.news_area .news_wrap .news_content .content_wrap .box {
  width: 270rem;
}
.news_area .news_wrap .news_content .content_wrap .box a .img_wrap {
  overflow: hidden;
  border-radius: 40rem;
  height: 200rem;
}
.news_area .news_wrap .news_content .content_wrap .box a .img_wrap img {
  transition: 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.news_area .news_wrap .news_content .content_wrap .box a:hover .img_wrap img {
  opacity: 0.8;
  transform: scale(1.05);
}
.news_area .news_wrap .news_content .content_wrap .box .text_wrap {
  margin-top: 12rem;
}
.news_area .news_wrap .news_content .content_wrap .box .text_wrap .category_wrap {
  display: flex;
  font-size: 14rem;
}
.news_area .news_wrap .news_content .content_wrap .box .text_wrap .category_wrap .date {
  padding-right: 10rem;
  margin-right: 10rem;
  border-right: 1px solid #707070;
}
.news_area .news_wrap .news_content .content_wrap .box .text_wrap .category_wrap .category {
  color: #EC6949;
}
.news_area .news_wrap .news_content .content_wrap .box .text_wrap .tit {
  margin-top: 10rem;
}

.sns_top {
  padding-top: 40rem;
  padding-bottom: 40rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  gap: 45rem;
}
.sns_top .sns_wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250rem;
  height: 70rem;
  border: 1px solid #EC6949;
  border-radius: 100rem;
  font-size: 18rem;
  font-weight: bold;
  position: relative;
  color: #EC6949;
  padding-left: 20rem;
  transition: 0.3s;
}
.sns_top .sns_wrap a:hover {
  opacity: 0.7;
}
.sns_top .sns_wrap a::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transform: translateY(-50%);
  width: 35rem;
  height: 35rem;
  left: 30rem;
}
.sns_top .sns_wrap a::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  right: 10rem;
  transform: translateY(-50%);
  width: 30rem;
  height: 30rem;
  z-index: 1;
  background: url(../img/ico_arrow_reserve.svg) no-repeat center right/contain;
}
.sns_top .sns_wrap.insta a::before {
  background: url(../img/ico_insta_orange.svg) no-repeat center top/contain;
}
.sns_top .sns_wrap.facebook a::before {
  background: url(../img/ico_facebook_orange.svg) no-repeat center top/contain;
}

.message_top {
  padding-top: 115rem;
  background-color: #FCFAF7;
}
.message_top .flex_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200rem;
  margin-left: auto;
  margin-right: auto;
}
.message_top .flex_wrap .text_wrap {
  position: relative;
  z-index: 1;
  line-height: 2;
}
.message_top .flex_wrap .text_wrap::before {
  position: absolute;
  content: "";
  display: block;
  top: -54rem;
  left: -80rem;
  width: 106rem;
  height: 106rem;
  background: url(../img/pic_message_item01.png) no-repeat center top/contain;
  z-index: -1;
}
.message_top .flex_wrap .text_wrap::after {
  position: absolute;
  content: "";
  display: block;
  bottom: -45rem;
  left: -45rem;
  width: 60rem;
  height: 60rem;
  background: url(../img/pic_message_item02.png) no-repeat center top/contain;
  z-index: -1;
}
.message_top .flex_wrap .text_wrap .text {
  margin-top: 25rem;
}
.message_top .flex_wrap .text_wrap .text.fwb {
  font-size: 18rem;
}
.message_top .flex_wrap .text_wrap .text .name {
  font-size: 18rem;
}
.message_top .flex_wrap .img_wrap {
  width: 325rem;
  position: relative;
  z-index: 1;
}
.message_top .flex_wrap .img_wrap::before {
  position: absolute;
  content: "";
  display: block;
  bottom: 57rem;
  right: -56rem;
  width: 85rem;
  height: 85rem;
  background: url(../img/pic_message_item03.png) no-repeat center top/contain;
  z-index: -1;
}

.recruit_top {
  padding-top: 180rem;
  background-color: #FCFAF7;
}
.recruit_top .recruit_wrap {
  padding-left: 13.0208333333vw;
  position: relative;
  z-index: 1;
}
.recruit_top .recruit_wrap::before, .recruit_top .recruit_wrap::after {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
}
.recruit_top .recruit_wrap::before {
  top: 150rem;
  left: 30rem;
  width: 125rem;
  height: 191rem;
  background: url(../img/pic_recruit_item01.png) no-repeat center top/contain;
}
.recruit_top .recruit_wrap::after {
  bottom: -110rem;
  right: 0;
  width: 200rem;
  height: 165rem;
  background: url(../img/pic_recruit_item02.png) no-repeat center top/contain;
}
.recruit_top .recruit_wrap .flex_wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  max-width: 1560rem;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  gap: 30rem;
}
.recruit_top .recruit_wrap .flex_wrap::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: -7.8125vw;
  width: 1710rem;
  height: 100%;
  background: #FFE9D6;
  border-top-left-radius: 40rem;
  border-bottom-left-radius: 40rem;
  z-index: -1;
}
.recruit_top .recruit_wrap .flex_wrap .text_wrap {
  padding-top: 60rem;
  padding-bottom: 60rem;
  width: 32.8125vw;
}
.recruit_top .recruit_wrap .flex_wrap .text_wrap .text {
  margin-top: 30rem;
  font-size: 18rem;
  line-height: 2;
}
.recruit_top .recruit_wrap .flex_wrap .text_wrap .btn_more {
  margin-top: 35rem;
}
.recruit_top .recruit_wrap .flex_wrap .text_wrap .btn_more a {
  background-color: #18A3A8;
  border: 2px solid #18A3A8;
  color: #fff;
}
.recruit_top .recruit_wrap .flex_wrap .text_wrap .btn_more a::before {
  background: url(../img/ico_arrow_apply.svg) no-repeat center top/contain;
  border: 2px solid #18A3A8;
}
.recruit_top .recruit_wrap .flex_wrap .text_wrap .btn_more a::after {
  background: #fff;
}
.recruit_top .recruit_wrap .flex_wrap .text_wrap .btn_more a:hover {
  color: #18A3A8;
  background-color: #fff;
}
.recruit_top .recruit_wrap .flex_wrap .img_area {
  width: 790rem;
  position: relative;
}
.recruit_top .recruit_wrap .flex_wrap .img_area .img_wrap {
  position: absolute;
  left: 0;
  top: -40rem;
  width: 790rem;
}
.recruit_top .recruit_wrap .flex_wrap .img_area .img_wrap img {
  border-top-left-radius: 40rem;
  border-bottom-left-radius: 40rem;
}

.vacant {
  position: relative;
  background-color: #FCFAF7;
}
.vacant::before {
  position: absolute;
  content: "";
  display: block;
  bottom: 180rem;
  left: 5rem;
  width: 83rem;
  height: 88rem;
  background: url(../img/pic_vacant_item.png) no-repeat center top/contain;
}
.vacant .flex_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding-top: 120rem;
  padding-bottom: 130rem;
  position: relative;
}
.vacant .situation th {
  padding: 20rem;
}
.vacant .situation td {
  padding: 20rem;
  width: 150rem;
  text-align: center;
  border: solid #707070;
  border-width: 1px 0;
}
.vacant .situation td:nth-of-type(1) {
  width: 300rem;
  text-align: left;
}
.vacant .ttl_vacant {
  width: 160rem;
  font-size: 18rem;
}
.vacant .ttl_vacant span {
  font-size: 28rem;
  font-weight: bold;
  display: block;
  margin: 0 0 40rem;
}
.vacant .situation {
  width: 870rem;
}
.vacant .possible {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 40rem 0 0;
}
.vacant .possible li {
  margin: 0 0 0 40rem;
}

.to_top {
  position: fixed;
  z-index: 999;
  right: 30rem;
  bottom: 70rem;
  display: none;
  transform: rotate(-90deg);
  border-radius: 50%;
  border: 1px solid #747474;
}
.to_top img {
  width: 70rem;
}
.to_top a {
  transition: 0.3s;
}
.to_top a:hover {
  opacity: 0.7;
}

footer {
  background-color: #FCFAF7;
  line-height: 1.6;
}
footer .footer_contact {
  padding-top: 50rem;
  padding-bottom: 43rem;
  background-color: #F0F0F0;
}
footer .footer_contact .flex_wrap {
  display: flex;
  justify-content: space-between;
  width: 1200rem;
  margin-left: auto;
  margin-right: auto;
}
footer .footer_contact .flex_wrap .text_wrap .text {
  margin-top: 40rem;
  font-size: 18rem;
}
footer .footer_contact .flex_wrap .tel_area {
  width: 480rem;
}
footer .footer_contact .flex_wrap .tel_area .tel_wrap {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-top: 18rem;
  padding-bottom: 18rem;
  display: flex;
  gap: 15rem;
  align-items: center;
}
footer .footer_contact .flex_wrap .tel_area .tel_wrap .tel_text {
  padding-left: 5rem;
  font-size: 15rem;
  font-weight: bold;
}
footer .footer_contact .flex_wrap .tel_area .tel_wrap .icon {
  width: 58rem;
}
footer .footer_contact .flex_wrap .tel_area .tel_wrap .tel {
  font-weight: bold;
  font-size: 40rem;
}
footer .footer_btn {
  display: flex;
  gap: 20rem;
  margin-top: 32rem;
}
footer .footer_btn .btn_wrap a {
  width: 230rem;
  height: 70rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18rem;
  font-weight: bold;
  border-radius: 100rem;
  position: relative;
  padding-left: 20rem;
  transition: 0.3s;
  overflow: hidden;
}
footer .footer_btn .btn_wrap a span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
footer .footer_btn .btn_wrap a::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 10rem;
  transform: translateY(-50%);
  width: 30rem;
  height: 30rem;
  border-radius: 40rem;
  z-index: 1;
  transition: 0.3s;
}
footer .footer_btn .btn_wrap a::after {
  content: "";
  background: #fff;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  transition: 0.3s;
  border-radius: 40rem;
}
footer .footer_btn .btn_wrap a:hover {
  padding-left: 0;
  padding-right: 10rem;
}
footer .footer_btn .btn_wrap a:hover::before {
  left: calc(100% - 50rem);
}
footer .footer_btn .btn_wrap a:hover::after {
  width: 100%;
}
footer .footer_btn .btn_wrap.request a {
  background-color: #747474;
  border: 1px solid #747474;
}
footer .footer_btn .btn_wrap.request a::before {
  background: url(../img/ico_arrow_request.svg) no-repeat center right/contain;
}
footer .footer_btn .btn_wrap.request a:hover {
  color: #747474;
}
footer .footer_btn .btn_wrap.request a:hover::before {
  background: url(../img/ico_arrow_request02.svg) no-repeat center right/contain;
}
footer .footer_btn .btn_wrap.reserve a {
  background-color: #EC6949;
  border: 1px solid #EC6949;
}
footer .footer_btn .btn_wrap.reserve a::before {
  background: url(../img/ico_arrow_reserve.svg) no-repeat center right/contain;
}
footer .footer_btn .btn_wrap.reserve a:hover {
  color: #EC6949;
}
footer .footer_btn .btn_wrap.reserve a:hover::before {
  background: url(../img/ico_arrow_reserve02.svg) no-repeat center right/contain;
}
footer .footer_wrap {
  padding-top: 40rem;
  padding-bottom: 30rem;
}
footer .footer_wrap .flex_wrap {
  display: flex;
  justify-content: space-between;
}
footer .footer_wrap .flex_wrap .company .logo_wrap {
  width: 210rem;
}
footer .footer_wrap .flex_wrap .company .address,
footer .footer_wrap .flex_wrap .company .tel {
  font-size: 14rem;
}
footer .footer_wrap .flex_wrap .company .address {
  margin-top: 20rem;
}
footer .footer_wrap .flex_wrap .company .sns_wrap {
  display: flex;
  margin-top: 23rem;
  gap: 22rem;
}
footer .footer_wrap .flex_wrap .company .sns_wrap .img_wrap img {
  width: 32rem;
}
footer .footer_wrap .flex_wrap .footer_nav {
  display: flex;
  gap: 40rem;
}
footer .footer_wrap .flex_wrap .footer_nav ul li {
  margin-top: 12rem;
  font-size: 14rem;
}
footer .footer_wrap .flex_wrap .footer_nav ul li.head {
  margin-top: 0;
  font-weight: bold;
  padding-left: 15rem;
  position: relative;
  line-height: 1;
  padding-bottom: 10rem;
  font-size: 16rem;
}
footer .footer_wrap .flex_wrap .footer_nav ul li.head::before {
  position: absolute;
  content: "";
  display: block;
  top: 1rem;
  left: 0;
  width: 3rem;
  height: 16rem;
  background: #000;
  border-radius: 20rem;
}
footer .footer_wrap .flex_wrap .footer_nav ul li a {
  transition: 0.3s;
}
footer .footer_wrap .flex_wrap .footer_nav ul li a:hover {
  opacity: 0.7;
}
footer .footer_wrap .pdf_wrap {
  margin-top: 40rem;
  border: 1px solid #707070;
  height: 80rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80rem;
}
footer .footer_wrap .pdf_wrap .text_wrap {
  font-size: 14rem;
}
footer .footer_wrap .pdf_wrap .pdf_list {
  display: flex;
  gap: 12rem;
}
footer .footer_wrap .pdf_wrap .pdf_list ul li {
  font-size: 14rem;
  position: relative;
  padding-left: 1.2em;
}
footer .footer_wrap .pdf_wrap .pdf_list ul li::before {
  position: absolute;
  content: "▶︎";
  display: block;
  top: 0;
  left: 0;
}
footer .footer_wrap .pdf_wrap .pdf_list ul li + li {
  margin-top: 8rem;
}
footer .footer_wrap .copy {
  margin-top: 42rem;
  font-size: 14rem;
  text-align: center;
}

.mv_under {
  text-align: center;
  position: relative;
}
.mv_under:after {
  content: "";
  position: absolute;
  top: -50rem;
  left: 0;
  right: -650rem;
  margin: auto;
  width: 102rem;
  height: 101rem;
  background: url(/assets/img/pic_deco10.svg) no-repeat top left/100%;
  z-index: -1;
  pointer-events: none;
}
.mv_under:before {
  content: "";
  position: absolute;
  top: 85rem;
  right: 0;
  width: 1621rem;
  height: 295rem;
  background: url(/assets/img/pic_deco_mvunder.png) no-repeat top/contain;
  z-index: -1;
}
.mv_under .mv_tit .en img {
  width: auto;
  height: 22rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv_under .mv_tit h1 {
  font-size: 48rem;
  font-weight: bold;
  margin: 10rem 0 0;
}
.mv_under .text {
  margin: 30rem 0 0;
  line-height: 2;
}
.mv_under .about {
  position: relative;
  width: 450rem;
  margin: 100rem 0 0;
  padding: 100rem 0 0;
}
.mv_under .about .detail {
  text-align: left;
  margin: 0 0 80rem;
}
.mv_under .about .detail:after {
  content: "";
  position: absolute;
  bottom: 20rem;
  left: 230rem;
  background: url(/assets/img/pic_deco11.svg) no-repeat center top/contain;
  width: 95rem;
  height: 88rem;
}
.mv_under .about .btn_more {
  width: 220rem;
}
.mv_under .about .btn_more a {
  height: auto;
  background: none;
  width: 220rem;
}
.mv_under .about .btn_more a:hover {
  width: 220rem;
}
.mv_under .about .btn_more a:hover:before {
  width: 100%;
  padding: 20rem 0;
}
.mv_under .about .btn_more a:before {
  left: 0;
}
.mv_under .about .swiper_outer {
  position: absolute;
  top: 0;
  left: 500rem;
  width: 1060rem;
}
.mv_under .about .swiper_outer .swipe_main {
  overflow: hidden;
  border-radius: 40rem;
}
.mv_under .about .swiper_outer .swiper-button-prev {
  top: auto;
  bottom: -60rem;
  right: 460rem;
  left: auto;
}
.mv_under .about .swiper_outer .swiper-button-prev:after {
  content: "";
  background: url(/assets/img/ico_arrow.svg) no-repeat center top/100%;
  width: 30rem;
  height: 30rem;
  transform: scaleX(-1);
}
.mv_under .about .swiper_outer .swiper-button-next {
  top: auto;
  bottom: -60rem;
  right: 340rem;
  left: auto;
}
.mv_under .about .swiper_outer .swiper-button-next:after {
  content: "";
  background: url(/assets/img/ico_arrow.svg) no-repeat center top/100%;
  width: 30rem;
  height: 30rem;
}
.mv_under .about .swiper_outer .swiper-pagination {
  bottom: -50rem;
  right: 400rem;
  left: auto;
  width: auto;
}

.breadcrumb {
  width: 1600rem;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  margin-right: 3em;
  padding: 1.5em 50rem;
}
.breadcrumb li:after {
  content: "＞";
  display: inline-block;
  margin-left: 8rem;
  margin-right: 8rem;
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb li a {
  text-decoration: underline;
}
.breadcrumb li a:hover {
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
}

#page_top header .header_wrap .header_nav ul li.nav_top,
#page_company header .header_wrap .header_nav ul li.nav_care,
#page_medical header .header_wrap .header_nav ul li.nav_care,
#page_visit header .header_wrap .header_nav ul li.nav_care,
#page_news header .header_wrap .header_nav ul li.nav_news,
#page_recruit header .header_wrap .header_nav ul li.nav_recruit {
  border-bottom: 2rem solid #EC6949;
}

@media screen and (min-width: 681px) {
  .sp_block {
    display: none !important;
  }
}
@media screen and (max-width: 1500px) {
  .mv .mv_img_wrap .mv_tit {
    top: 0.5208333333vw;
  }
}
@media screen and (max-width: 1380px) {
  .news_area .news_wrap {
    max-width: 100%;
    padding-right: 20rem;
  }
  .news_area .news_wrap .news_side .news_menu {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .news_area .news_wrap .news_side .photo_album {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  footer .footer_wrap .pdf_wrap {
    width: 1000rem;
    margin-left: auto;
    margin-right: auto;
  }
  footer .footer_wrap .pdf_wrap .text_wrap {
    width: 260rem;
  }
}
@media screen and (max-width: 1279px) {
  html {
    font-size: 0.0781860829vw;
  }
}
@media screen and (max-width: 680px) {
  .sp_none {
    display: none !important;
  }
  html {
    font-size: 0.2666666667vw;
  }
  body {
    line-height: 1.6;
    font-size: 14rem;
  }
  img {
    width: 100%;
  }
  .inner {
    width: 335rem;
  }
  .s_inner {
    width: 335rem;
  }
  .mt_l {
    margin-top: 80rem;
  }
  .mt_m {
    margin-top: 40rem;
  }
  .mt_s {
    margin-top: 16rem;
  }
  .btn_more a {
    width: 295rem;
    height: 70rem;
    font-size: 16rem;
    padding-left: 30rem;
  }
  .btn_more_s a {
    font-size: 16rem;
    padding-left: 46rem;
  }
  main {
    margin-top: 63rem;
  }
  header {
    height: 63rem;
  }
  header .header_wrap {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  header .header_wrap .logo_wrap img {
    width: auto;
    height: 34rem;
  }
  header .header_wrap .hm_btn_wrap {
    padding-top: 15rem;
    width: 50rem;
    text-align: center;
    position: relative;
  }
  header .header_wrap .hm_btn_wrap .hm_btn {
    width: 24rem;
    height: 19rem;
    transition: 0.5s;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  header .header_wrap .hm_btn_wrap .hm_btn span {
    display: block;
    width: 100%;
    height: 2rem;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: 0.5s;
  }
  header .header_wrap .hm_btn_wrap .hm_btn span:nth-child(1) {
    top: 0;
  }
  header .header_wrap .hm_btn_wrap .hm_btn span:nth-child(2) {
    top: 8rem;
    transition: 0.5s;
  }
  header .header_wrap .hm_btn_wrap .hm_btn span:nth-child(3) {
    bottom: 0;
  }
  header .header_wrap .hm_btn_wrap .hm_btn.active span:nth-child(1) {
    top: 8rem;
    transform: rotate(45deg);
  }
  header .header_wrap .hm_btn_wrap .hm_btn.active span:nth-child(2) {
    opacity: 0;
  }
  header .header_wrap .hm_btn_wrap .hm_btn.active span:nth-child(3) {
    bottom: 8rem;
    transform: rotate(-45deg);
  }
  header .header_wrap .hm_btn_wrap .hm_text {
    font-size: 12rem;
    margin-top: 2rem;
  }
  header .header_wrap .sp_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    padding-top: 75rem;
    background-color: #FBF9F6;
    padding-left: 40rem;
    padding-right: 40rem;
    transition: 0.5s;
    z-index: -1;
    padding-bottom: 40rem;
    overflow-y: auto;
  }
  header .header_wrap .sp_menu.in {
    transform: translateX(0);
  }
  header .header_wrap .sp_menu .nav_menu ul li {
    padding-top: 12rem;
    padding-bottom: 12rem;
    font-size: 16rem;
    border-bottom: 1px solid #707070;
    position: relative;
    padding-right: 25rem;
    font-weight: 500;
  }
  header .header_wrap .sp_menu .nav_menu ul li::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 16rem;
    height: 9rem;
    background: url(../img/ico_arrow_black.svg) no-repeat center top/contain;
  }
  header .header_wrap .sp_menu .nav_menu ul li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  header .header_wrap .sp_menu .nav_menu ul li.accordion_menu::before {
    display: none;
  }
  header .header_wrap .sp_menu .nav_menu ul li.accordion_menu .accordion_btn .accordion_toggle {
    position: absolute;
    top: 16rem;
    right: 0;
    width: 16rem;
    height: 16rem;
  }
  header .header_wrap .sp_menu .nav_menu ul li.accordion_menu .accordion_btn .accordion_toggle span {
    position: absolute;
    left: 0;
    top: 8rem;
    display: block;
    width: 16rem;
    height: 1px;
    background-color: #707070;
    transition: 0.5s;
  }
  header .header_wrap .sp_menu .nav_menu ul li.accordion_menu .accordion_btn .accordion_toggle span:nth-child(2) {
    transform: rotate(-90deg);
  }
  header .header_wrap .sp_menu .nav_menu ul li.accordion_menu .accordion_btn.open .accordion_toggle span:nth-child(2) {
    transform: rotate(0deg);
  }
  header .header_wrap .sp_menu .nav_menu ul li.accordion_menu .accordion_list {
    display: none;
    margin-top: 15rem;
  }
  header .header_wrap .sp_menu .nav_menu ul li.accordion_menu .accordion_list p {
    font-size: 14rem;
    padding-left: 30rem;
    position: relative;
  }
  header .header_wrap .sp_menu .nav_menu ul li.accordion_menu .accordion_list p::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 0rem;
    transform: translateY(-50%);
    width: 20rem;
    height: 20rem;
    background: url(../img/ico_arrow.svg) no-repeat center right/contain;
    box-sizing: border-box;
  }
  header .header_wrap .sp_menu .nav_menu ul li.accordion_menu .accordion_list p + p {
    margin-top: 10rem;
  }
  header .header_wrap .sp_menu .nav_menu ul li.accordion_menu .accordion_list p:last-child {
    margin-bottom: 14rem;
  }
  header .header_wrap .header_btn {
    display: block;
    padding-top: 0;
    margin-top: 35rem;
  }
  header .header_wrap .header_btn .btn_wrap {
    display: block;
  }
  header .header_wrap .header_btn .btn_wrap a {
    width: 295rem;
    font-size: 16rem;
    padding-left: 20rem;
  }
  header .header_wrap .header_btn .btn_wrap.reserve {
    margin-top: 20rem;
  }
  .mega_menu_wrap {
    display: none;
  }
  .mv {
    padding-top: 30rem;
  }
  .mv::before {
    top: auto;
    bottom: 60rem;
    left: 26rem;
    width: 380rem;
    height: 374rem;
    background: url(../img/mv_item_sp.png) no-repeat center top/contain;
  }
  .mv .mv_img_wrap {
    width: 100%;
    position: relative;
    padding-bottom: 160rem;
  }
  .mv .mv_img_wrap .mv_tit {
    top: -10rem;
    right: 20rem;
    font-size: 28rem;
  }
  .mv .mv_img_wrap .mv_tit p {
    font-size: 14rem;
    margin-left: 7rem;
    letter-spacing: 0.2em;
  }
  .mv .mv_img_wrap .mv_tit p .number {
    transform: translateX(2rem) rotate(-90deg);
  }
  .mv .mv_img_wrap .mv_tit h2 {
    padding-top: 18rem;
    line-height: 1.2;
    letter-spacing: 0.35em;
  }
  .mv .mv_img_wrap .mv_tit h2 span {
    display: block;
    margin-top: 40rem;
  }
  .mv .mv_img_wrap .mv_img {
    width: 240rem;
  }
  .mv .mv_img_wrap .mv_img img {
    border-top-right-radius: 20rem;
    border-bottom-right-radius: 20rem;
  }
  .mv .mv_position {
    position: absolute;
    right: 0;
    bottom: -32rem;
    width: 265rem;
  }
  .mv .mv_position img {
    border-radius: 20rem;
  }
  .common_tit .en img {
    width: auto;
    height: 17rem;
  }
  .common_tit h2 {
    margin-top: 4rem;
    font-size: 20rem;
  }
  .about_top {
    margin-top: 0;
    position: relative;
    z-index: 1;
  }
  .about_top .content_wrap {
    padding-left: 20rem;
    position: relative;
  }
  .about_top .content_wrap + .content_wrap {
    margin-top: 50rem;
  }
  .about_top .content_wrap + .content_wrap .content_flex {
    padding-top: 30rem;
  }
  .about_top .content_wrap + .content_wrap .content_flex .common_tit {
    margin-top: 0;
  }
  .about_top .content_wrap .content_flex {
    display: block;
    max-width: 100%;
    width: 355rem;
    background-color: #E2F2EE;
    border-top-left-radius: 20rem;
    border-bottom-left-radius: 20rem;
    padding-top: 47rem;
    padding-bottom: 30rem;
    padding-left: 20rem;
  }
  .about_top .content_wrap .content_flex::before {
    display: none;
  }
  .about_top .content_wrap .content_flex .text_area {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .about_top .content_wrap .content_flex .text_area .text_wrap {
    width: 100%;
  }
  .about_top .content_wrap .content_flex .text_area .text_wrap .common_tit h2 {
    margin-top: 10rem;
  }
  .about_top .content_wrap .content_flex .text_area .text {
    margin-top: 20rem;
    line-height: 1.8;
    padding-right: 20rem;
  }
  .about_top .content_wrap .content_flex .text_area .btn_more {
    margin-top: 25rem;
  }
  .about_top .content_wrap .content_flex .img_area {
    width: 100%;
    margin-top: 20rem;
  }
  .about_top .content_wrap .content_flex .img_area .img_wrap {
    width: 100%;
    position: relative;
  }
  .about_top .content_wrap .content_flex .img_area .img_wrap img {
    min-height: 0;
    border-top-left-radius: 20rem;
    border-bottom-left-radius: 20rem;
  }
  .about_top .content_wrap.reverse {
    padding-left: 0;
    padding-right: 20rem;
  }
  .about_top .content_wrap.reverse .content_flex {
    padding-left: 0;
    padding-right: 20rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 20rem;
    border-bottom-right-radius: 20rem;
  }
  .about_top .content_wrap.reverse .content_flex::before {
    display: none;
  }
  .about_top .content_wrap.reverse .content_flex .text_area .text_wrap .common_tit {
    padding-left: 35rem;
    margin-top: 0;
  }
  .about_top .content_wrap.reverse .content_flex .text_area .text_wrap .common_tit h2 {
    margin-top: 0;
  }
  .about_top .content_wrap.reverse .content_flex .text_area .text_wrap .text {
    padding-left: 40rem;
    padding-right: 20rem;
  }
  .about_top .content_wrap.reverse .content_flex .text_area .btn_more {
    padding-left: 40rem;
  }
  .about_top .content_wrap.reverse .content_flex .img_area .img_wrap {
    top: -50rem;
    left: auto;
    right: 0;
  }
  .about_top .content_wrap.reverse .content_flex .img_area .img_wrap img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 20rem;
    border-bottom-right-radius: 20rem;
  }
  .about_top .content_wrap.about01 {
    z-index: 3;
  }
  .about_top .content_wrap.about01::before {
    top: -78rem;
    left: -45rem;
    width: 88rem;
    height: 197rem;
    background: url(../img/pic_about_item01_sp.png) no-repeat center top/contain;
  }
  .about_top .content_wrap.about01 .content_flex .img_area .img_wrap {
    top: auto;
  }
  .about_top .content_wrap.about02 {
    margin-top: 50rem;
  }
  .about_top .content_wrap.about02::before {
    display: none;
  }
  .about_top .content_wrap.about02 .content_flex .text_area .common_tit {
    margin-top: 0;
  }
  .about_top .content_wrap.about02 .content_flex .text_area .common_tit h2 {
    margin-top: 0;
  }
  .about_top .content_wrap.about02 .content_flex .img_area {
    width: 100%;
  }
  .about_top .content_wrap.about02 .content_flex .img_area .img_wrap {
    width: 100%;
    top: auto;
  }
  .about_top .content_wrap.about03 {
    z-index: 1;
    margin-top: 50rem;
  }
  .about_top .content_wrap.about03::before {
    display: none;
  }
  .about_top .content_wrap.about03 .content_flex {
    max-width: 100%;
  }
  .about_top .content_wrap.about03 .content_flex .text_area .text_wrap {
    width: 100%;
  }
  .about_top .content_wrap.about03 .content_flex .text_area .common_tit {
    margin-top: 0;
  }
  .about_top .content_wrap.about03 .content_flex .text_area .common_tit h2 {
    margin-top: 0;
  }
  .about_top .content_wrap.about03 .content_flex .text_area .btn_more a {
    width: 295rem;
  }
  .about_top .content_wrap.about03 .content_flex .img_area .img_wrap {
    top: auto;
  }
  .facility_top {
    margin-top: 80rem;
  }
  .facility_top .common_tit {
    text-align: center;
  }
  .facility_top::before {
    top: 82rem;
    left: -4rem;
    width: 397rem;
    height: 47rem;
    background: url(../img/pic_facility_item01_sp.png) no-repeat center top/contain;
  }
  .facility_top::after {
    display: none;
  }
  .facility_top .flex_wrap {
    margin-top: 20rem;
    display: block;
    width: 335rem;
    margin-left: auto;
    margin-right: auto;
  }
  .facility_top .flex_wrap .box {
    width: 100%;
  }
  .facility_top .flex_wrap .box + .box {
    margin-top: 40rem;
  }
  .facility_top .flex_wrap .box .img_area {
    position: relative;
  }
  .facility_top .flex_wrap .box .img_area .img_wrap img {
    border-radius: 20rem;
  }
  .facility_top .flex_wrap .box .img_area .btn_more {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 15rem;
  }
  .facility_top .flex_wrap .box .img_area .btn_more a {
    width: 100%;
    height: auto;
    background-color: transparent;
    overflow: inherit;
    justify-content: left;
    padding-left: 40rem;
  }
  .facility_top .flex_wrap .box .img_area .btn_more a::before {
    left: 0;
  }
  .facility_top .flex_wrap .box .img_area .btn_more a::after {
    display: none;
  }
  .facility_top .flex_wrap .box .text {
    margin-top: 14rem;
  }
  .news_top {
    margin-top: 40rem;
  }
  .news_top .top_bg_area {
    height: 170rem;
  }
  .news_top .top_bg_area .top_bg img {
    width: auto;
    height: 170rem;
  }
  .news_top .top_bg_area.fixed .top_bg {
    top: 63rem;
  }
  .news_area {
    padding-top: 22rem;
    padding-left: 20rem;
    padding-right: 20rem;
    padding-bottom: 30rem;
  }
  .news_area::before, .news_area::after {
    display: none;
  }
  .news_area .news_wrap {
    display: block;
    max-width: 100%;
    width: 100%;
    padding-bottom: 30rem;
    padding-top: 40rem;
    background-color: #E2F2EE;
    border-radius: 20rem;
    padding-left: 20rem;
    padding-right: 20rem;
  }
  .news_area .news_wrap .btn_more {
    margin-top: 30rem;
  }
  .news_area .news_wrap .news_side {
    width: 100%;
  }
  .news_area .news_wrap .news_side .news_menu {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    border-radius: 0;
  }
  .news_area .news_wrap .news_side .news_menu .common_tit {
    text-align: center;
  }
  .news_area .news_wrap .news_side .news_menu .menu_wrap {
    margin-top: 32rem;
    overflow-x: scroll;
    /* SimpleBarのカスタムスタイル */
  }
  .news_area .news_wrap .news_side .news_menu .menu_wrap .simplebar-scrollbar {
    background-color: #EC6949 !important;
  }
  .news_area .news_wrap .news_side .news_menu .menu_wrap .simplebar-scrollbar::before {
    display: none;
  }
  .news_area .news_wrap .news_side .news_menu .menu_wrap .simplebar-track {
    background-color: #fff;
  }
  .news_area .news_wrap .news_side .news_menu .menu_wrap .simplebar-track.simplebar-horizontal {
    height: 3rem;
  }
  .news_area .news_wrap .news_side .news_menu .menu_wrap ul {
    width: -moz-max-content;
    width: max-content;
    display: flex;
    gap: 25rem;
    padding-bottom: 20rem;
  }
  .news_area .news_wrap .news_side .news_menu .menu_wrap ul li + li {
    margin-top: 0;
  }
  .news_area .news_wrap .news_content {
    margin-top: 25rem;
    padding-left: 0;
    width: 100%;
  }
  .news_area .news_wrap .news_content .content_wrap {
    gap: 25rem 0;
  }
  .news_area .news_wrap .news_content .content_wrap .box {
    width: 140rem;
  }
  .news_area .news_wrap .news_content .content_wrap .box a .img_wrap {
    border-radius: 20rem;
    height: 100rem;
  }
  .news_area .news_wrap .news_content .content_wrap .box .text_wrap {
    margin-top: 8rem;
    line-height: 1.4;
  }
  .news_area .news_wrap .news_content .content_wrap .box .text_wrap .category_wrap {
    display: block;
    font-size: 10rem;
  }
  .news_area .news_wrap .news_content .content_wrap .box .text_wrap .category_wrap .date {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }
  .news_area .news_wrap .news_content .content_wrap .box .text_wrap .tit {
    margin-top: 2rem;
  }
  .news_area .news_wrap.photo {
    margin-top: 30rem;
  }
  .news_area .news_wrap.photo .photo_album {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    border-radius: 20rem;
    margin-top: 0;
    background-color: transparent;
  }
  .news_area .news_wrap.photo .photo_album .common_tit {
    text-align: center;
    width: auto;
  }
  .sns_top {
    display: block;
    padding-top: 30rem;
    padding-bottom: 30rem;
  }
  .sns_top .sns_wrap a {
    width: 295rem;
    font-size: 16rem;
    padding-left: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
  .sns_top .sns_wrap a::before {
    left: 45rem;
  }
  .sns_top .sns_wrap a::after {
    right: 20rem;
  }
  .sns_top .sns_wrap + .sns_wrap {
    margin-top: 30rem;
  }
  .message_top {
    padding-top: 50rem;
  }
  .message_top .flex_wrap {
    display: block;
    width: 100%;
    position: relative;
  }
  .message_top .flex_wrap .text_wrap {
    width: 100%;
    line-height: 1.6;
  }
  .message_top .flex_wrap .text_wrap .common_tit {
    text-align: center;
  }
  .message_top .flex_wrap .text_wrap::before, .message_top .flex_wrap .text_wrap::after {
    display: none;
  }
  .message_top .flex_wrap .text_wrap .text {
    margin-top: 20rem;
    padding-left: 20rem;
    padding-right: 20rem;
    font-size: 16rem;
  }
  .message_top .flex_wrap .text_wrap .text.fwb {
    font-size: 20rem;
    margin-top: 35rem;
    padding-right: 0;
  }
  .message_top .flex_wrap .text_wrap .text.fwb .c_orange {
    color: #3E3E3E;
  }
  .message_top .flex_wrap .text_wrap .text.name_text {
    margin-top: 35rem;
    font-size: 16rem;
  }
  .message_top .flex_wrap .text_wrap .text.name_text .name {
    font-size: 16rem;
  }
  .message_top .flex_wrap .img_wrap {
    width: 130rem;
    position: absolute;
    bottom: -30rem;
    right: 20rem;
  }
  .message_top .flex_wrap .img_wrap::before {
    display: none;
  }
  .recruit_top {
    padding-top: 90rem;
    padding-left: 20rem;
  }
  .recruit_top .recruit_wrap {
    padding-left: 20rem;
    background-color: #FFE9D6;
    border-bottom-left-radius: 20rem;
    border-top-left-radius: 20rem;
    padding-top: 40rem;
    padding-bottom: 40rem;
  }
  .recruit_top .recruit_wrap::before, .recruit_top .recruit_wrap::after {
    display: none;
  }
  .recruit_top .recruit_wrap .flex_wrap {
    display: block;
    z-index: 1;
    max-width: 100%;
  }
  .recruit_top .recruit_wrap .flex_wrap::before {
    display: none;
  }
  .recruit_top .recruit_wrap .flex_wrap .text_wrap {
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
  }
  .recruit_top .recruit_wrap .flex_wrap .text_wrap .common_tit .en img {
    height: 12rem;
  }
  .recruit_top .recruit_wrap .flex_wrap .text_wrap .text {
    margin-top: 25rem;
    font-size: 14rem;
    line-height: 1.4;
    padding-right: 20rem;
  }
  .recruit_top .recruit_wrap .flex_wrap .text_wrap .btn_more {
    margin-top: 30rem;
    padding-right: 20rem;
  }
  .recruit_top .recruit_wrap .flex_wrap .text_wrap .btn_more a {
    width: 250rem;
    margin-left: auto;
    margin-right: auto;
  }
  .recruit_top .recruit_wrap .flex_wrap .img_area {
    width: 100%;
    margin-top: 30rem;
  }
  .recruit_top .recruit_wrap .flex_wrap .img_area .img_wrap {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }
  .recruit_top .recruit_wrap .flex_wrap .img_area .img_wrap img {
    border-top-left-radius: 20rem;
    border-bottom-left-radius: 20rem;
  }
  .vacant {
    margin: 0;
  }
  .vacant::before {
    display: none;
  }
  .vacant .flex_wrap {
    justify-content: center;
    padding-top: 60rem;
    padding-bottom: 70rem;
  }
  .vacant .ttl_vacant {
    text-align: center;
    margin: 0 0 30rem;
    font-size: 12rem;
  }
  .vacant .ttl_vacant .font_zen {
    display: block;
    font-weight: bold;
    font-size: 20rem;
    margin-bottom: 10rem;
  }
  .vacant .situation {
    width: 100%;
    font-size: 16rem;
  }
  .vacant .situation th {
    padding: 10rem 0;
  }
  .vacant .situation td {
    padding: 10rem 0;
    width: 50rem;
    vertical-align: middle;
  }
  .vacant .situation td:nth-of-type(1) {
    width: 100rem;
  }
  .vacant .possible {
    display: flex;
    justify-content: space-between;
    margin: 15rem 0 0;
    font-size: 15rem;
  }
  .vacant .possible li {
    margin: 0;
  }
  .to_top {
    right: 16rem;
    bottom: 40rem;
  }
  .to_top img {
    width: 40rem;
  }
  footer .footer_contact {
    text-align: center;
    padding-top: 50rem;
    padding-bottom: 45rem;
  }
  footer .footer_contact .flex_wrap {
    display: block;
    width: 300rem;
  }
  footer .footer_contact .flex_wrap .text_wrap {
    width: 100%;
  }
  footer .footer_contact .flex_wrap .text_wrap .common_tit {
    text-align: center;
  }
  footer .footer_contact .flex_wrap .text_wrap .common_tit .en img {
    height: 13rem;
  }
  footer .footer_contact .flex_wrap .text_wrap .text {
    margin-top: 30rem;
    font-size: 16rem;
  }
  footer .footer_contact .flex_wrap .tel_area {
    width: 100%;
    margin-top: 30rem;
  }
  footer .footer_contact .flex_wrap .tel_area .tel_wrap {
    padding-top: 40rem;
    padding-bottom: 12rem;
    display: flex;
    gap: 5rem;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  footer .footer_contact .flex_wrap .tel_area .tel_wrap .tel_text {
    padding-left: 0;
    font-size: 15rem;
    font-weight: bold;
    position: absolute;
    top: 15rem;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    white-space: nowrap;
  }
  footer .footer_contact .flex_wrap .tel_area .tel_wrap .icon {
    width: 52rem;
  }
  footer .footer_contact .flex_wrap .tel_area .tel_wrap .tel {
    font-size: 30rem;
  }
  footer .footer_btn {
    display: block;
    margin-top: 32rem;
  }
  footer .footer_btn .btn_wrap a {
    width: 295rem;
    height: 70rem;
    font-size: 16rem;
    padding-left: 10rem;
  }
  footer .footer_btn .btn_wrap a::before {
    left: 20rem;
  }
  footer .footer_btn .btn_wrap a:hover::after {
    display: none;
  }
  footer .footer_btn .btn_wrap + .btn_wrap {
    margin-top: 20rem;
  }
  footer .footer_wrap {
    padding-top: 20rem;
    padding-bottom: 30rem;
  }
  footer .footer_wrap .flex_wrap {
    display: block;
  }
  footer .footer_wrap .flex_wrap .company .logo_wrap {
    width: 315rem;
  }
  footer .footer_wrap .flex_wrap .company .address,
  footer .footer_wrap .flex_wrap .company .tel {
    font-size: 14rem;
  }
  footer .footer_wrap .flex_wrap .company .address {
    margin-top: 22rem;
  }
  footer .footer_wrap .flex_wrap .footer_nav {
    display: block;
    margin-top: 40rem;
  }
  footer .footer_wrap .flex_wrap .footer_nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8rem 25rem;
  }
  footer .footer_wrap .flex_wrap .footer_nav ul + ul {
    margin-top: 25rem;
  }
  footer .footer_wrap .flex_wrap .footer_nav ul li {
    margin-top: 0;
    font-size: 12rem;
  }
  footer .footer_wrap .flex_wrap .footer_nav ul li.head {
    width: 100%;
    padding-left: 10rem;
    padding-bottom: 0;
    font-size: 14rem;
    padding-bottom: 8rem;
  }
  footer .footer_wrap .flex_wrap .footer_nav ul li.head::before {
    top: 1rem;
    width: 3rem;
    height: 16rem;
    border-radius: 20rem;
  }
  footer .footer_wrap .pdf_wrap {
    margin-top: 20rem;
    height: auto;
    display: block;
    padding-top: 18rem;
    padding-bottom: 25rem;
    padding-left: 20rem;
    padding-right: 20rem;
    width: 100%;
  }
  footer .footer_wrap .pdf_wrap .text_wrap {
    font-size: 12rem;
    width: 100%;
  }
  footer .footer_wrap .pdf_wrap .pdf_list {
    display: block;
    gap: 0;
  }
  footer .footer_wrap .pdf_wrap .pdf_list ul li {
    font-size: 12rem;
    padding-left: 1.2em;
    margin-top: 8rem;
  }
  footer .footer_wrap .pdf_wrap .pdf_list ul li + li {
    margin-top: 8rem;
  }
  footer .footer_wrap .sns_wrap {
    display: flex;
    margin-top: 25rem;
    gap: 22rem;
  }
  footer .footer_wrap .sns_wrap .img_wrap img {
    width: 32rem;
  }
  .mv_under {
    padding-top: 30rem;
  }
  .mv_under:before {
    top: 0;
    right: -30rem;
    width: 369rem;
    height: 328rem;
    background: url(/assets/img/pic_deco_mvunder_sp.png) no-repeat top/contain;
  }
  .mv_under:after {
    display: none;
  }
  .mv_under .mv_tit {
    position: relative;
    z-index: 1;
  }
  .mv_under .mv_tit .en img {
    height: 20rem;
  }
  .mv_under .mv_tit h1 {
    font-size: 28rem;
    margin: 0;
  }
  .mv_under .text {
    margin: 20rem 10rem 30rem;
  }
  .breadcrumb {
    width: 100%;
    padding: 1em 20rem;
  }
}/*# sourceMappingURL=style.css.map */