@charset "UTF-8";
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-weight: 400;
  font-family: "Kosugi Maru", sans-serif;
  color: rgb(65, 65, 65);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 14.4px;
  }
}
@media screen and (max-width: 374px) {
  html, body {
    font-size: 12.8px;
  }
}

body {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-repeat: repeat;
  background-image: url("../../images/bg-image.png");
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1rem;
  font-weight: 400;
}

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

.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 2;
  width: 15px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
  background-color: rgb(113, 113, 113);
}

input[type=submit],
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none;
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
  border-radius: 5px;
}

section {
  padding: 100px 0;
}
section.section-bottom {
  padding-bottom: 0;
}

.contents-wrapper {
  width: calc(100% - 100px);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contents-wrapper {
    width: calc(100% - 40px);
  }
}
.contents-wrapper.mini {
  max-width: 1075px;
}
.contents-wrapper.big {
  max-width: 1500px;
  width: 100%;
}

.ipad-block {
  display: none;
}
@media (max-width: 1023px) {
  .ipad-block {
    display: block;
  }
}

@media (max-width: 1023px) {
  .ipad-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.main-contents {
  text-align: left;
  word-wrap: break-word;
  line-height: 200%;
}
.main-contents p:not(:last-child) {
  margin-bottom: 15px;
}
.main-contents img:not(.emoji) {
  width: 50% !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .main-contents img:not(.emoji) {
    width: 100% !important;
  }
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.clear {
  clear: both;
}

img, iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

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

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

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

.color-black {
  color: rgb(0, 0, 0);
}

.color-white {
  color: rgb(255, 255, 255);
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.block-item {
  display: block;
}

.inlineblock-item {
  display: inline-block;
}

.inline-item {
  display: inline;
}

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

.right-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.white-space {
  white-space: nowrap;
}

figure {
  margin: 0;
  padding: 0;
}

.icon-title {
  margin-bottom: 80px;
  font-size: 1.8rem;
  text-align: center;
}
.icon-title::before {
  margin: 0 auto 10px;
  content: "";
  display: block;
  width: 27px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.icon-title.house::before {
  background-image: url("../../images/house.svg");
}
.icon-title.mail::before {
  background-image: url("../../images/mail-icon.svg");
}
.icon-title.blog::before {
  background-image: url("../../images/blog-icon.svg");
}

.normal-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.normal-title.icon {
  position: relative;
}
.normal-title.icon::before {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
  content: "";
  display: block;
  width: 78px;
  aspect-ratio: 78/74;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/title-icon.svg");
}
.normal-title.icon span {
  position: relative;
  z-index: 2;
}
.normal-title.line {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.normal-title.line::after {
  content: "";
  height: 2px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-size: 20px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-image: linear-gradient(to right, rgb(239, 181, 111) 11px, transparent 10px);
}
.normal-title.center {
  text-align: center;
}

.top-btn {
  display: block;
  width: 100%;
  max-width: 210px;
  background-color: rgb(239, 181, 111);
  text-align: center;
  padding: 15px 10px;
  border-radius: 50px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.05em;
}
.top-btn.center {
  margin-inline: auto;
}
.top-btn:hover {
  background-color: rgb(255, 237, 216);
  color: rgb(239, 181, 111);
}

.side-btn {
  position: fixed;
  bottom: 10%;
  right: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 10px;
  padding: 30px 20px;
  border-radius: 10px 0 0 10px;
  border: 2px solid rgb(239, 181, 111);
  border-right: none;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .side-btn {
    display: none;
  }
}
.side-btn img {
  width: 40px;
}
.side-btn span {
  font-size: 1.5rem;
  color: rgb(65, 65, 65);
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.side-btn:hover {
  background-color: rgb(255, 237, 216);
}

.menu-list {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
}
.menu-list > li {
  padding-bottom: 15px;
}
.menu-list a {
  color: rgb(65, 65, 65);
}
.menu-list .hovertrigger {
  position: relative;
}
.menu-list .hovercontent {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 150px;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 2px 5px rgba(196, 196, 196, 0.25);
          box-shadow: 0px 2px 5px rgba(196, 196, 196, 0.25);
}
.menu-list .sub-menu {
  padding: 10px;
}
.menu-list .sub-menu li:not(:last-child) {
  margin-bottom: 5px;
}

.hovercontent {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}

.hovertrigger:hover .hovercontent {
  max-height: var(--max-height);
}

.sp-navigation {
  display: none;
}
@media screen and (max-width: 1185px) {
  .sp-navigation {
    display: block;
  }
}

.drawer--right .drawer-hamburger {
  top: 20px;
}
@media screen and (max-width: 767px) {
  .drawer--right .drawer-hamburger {
    top: 12px;
  }
}
.drawer--right .drawer-nav {
  top: 106px;
  padding: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/nav-bg.jpg");
}
@media screen and (max-width: 767px) {
  .drawer--right .drawer-nav {
    top: 77px;
  }
}
.drawer--right .drawer-nav li {
  padding-bottom: 0;
  width: 100%;
}
@media screen and (max-width: 1185px) {
  .drawer--right .drawer-nav .hovercontent {
    display: none;
  }
}
.drawer--right.drawer-open button.drawer-hamburger {
  right: 0;
}

.news-list.top {
  margin-bottom: 50px;
}
.news-list.top li:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .news-list.top a {
    padding-right: 20px;
  }
}
.news-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: rgb(65, 65, 65);
}
@media screen and (max-width: 767px) {
  .news-list a {
    position: relative;
  }
}
.news-list .time {
  color: rgb(113, 113, 113);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  width: 100px;
  font-size: 0.9rem;
}
.news-list .title {
  position: relative;
  padding-right: 10px;
  width: calc(100% - 100px - 10px);
}
@media screen and (max-width: 767px) {
  .news-list .title {
    width: 100%;
    position: static;
  }
}
.news-list .title::after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 5px;
  aspect-ratio: 1/2;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/arrow.svg");
}
@media screen and (max-width: 767px) {
  .news-list .title::after {
    right: 15px;
  }
}
.news-list .title span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list.archive li:not(:last-child) {
  margin-bottom: 10px;
}
.news-list.archive li:nth-child(odd) a {
  background-color: rgb(255, 255, 255);
}
.news-list.archive a {
  padding: 25px 40px;
}
@media screen and (max-width: 767px) {
  .news-list.archive a {
    padding: 25px 20px;
  }
}
.news-list.blog a {
  gap: 20px 50px;
  position: relative;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 20px 40px;
}
@media screen and (max-width: 1023px) {
  .news-list.blog a {
    gap: 20px;
    padding: 20px 20px 30px;
  }
}
.news-list.blog .image-box {
  width: 220px;
}
@media screen and (max-width: 767px) {
  .news-list.blog .image-box {
    width: 100%;
  }
}
.news-list.blog .text-box {
  width: calc(100% - 220px - 50px);
}
@media screen and (max-width: 1023px) {
  .news-list.blog .text-box {
    width: calc(100% - 220px - 20px);
  }
}
@media screen and (max-width: 767px) {
  .news-list.blog .text-box {
    width: 100%;
  }
}
.news-list.blog .title {
  position: static;
}
.news-list.blog .title::after {
  right: 20px;
  width: 15px;
}
@media screen and (max-width: 767px) {
  .news-list.blog .title::after {
    display: none;
  }
}
.news-list.blog .blog-category-list {
  margin-bottom: 10px;
}
.news-list.blog .title {
  width: 100%;
  margin-top: 15px;
}

.blog-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px 25px;
}
@media screen and (max-width: 1023px) {
  .blog-category-list {
    gap: 5px;
  }
}
.blog-category-list span,
.blog-category-list a {
  display: block;
  min-width: 95px;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0px 4px 18px rgba(221, 214, 197, 0.64);
          box-shadow: 0px 4px 18px rgba(221, 214, 197, 0.64);
}
.blog-category-list .all {
  background-color: rgb(113, 113, 113);
  color: rgb(255, 255, 255);
}

.facility-list .image-box {
  margin-bottom: 25px;
}
.facility-list img {
  height: auto;
  aspect-ratio: 340/385;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.facility-list .text-box {
  color: rgb(65, 65, 65);
}
.facility-list.archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 80px;
}
@media screen and (max-width: 1200px) {
  .facility-list.archive {
    gap: 50px 30px;
  }
}
@media screen and (max-width: 767px) {
  .facility-list.archive {
    gap: 40px 30px;
  }
}
.facility-list.archive .facility-list-box {
  width: calc((100% - 160px) / 3);
}
@media screen and (max-width: 1200px) {
  .facility-list.archive .facility-list-box {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 1023px) {
  .facility-list.archive .facility-list-box {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .facility-list.archive .facility-list-box {
    width: 100%;
  }
}

.facility-color {
  margin-bottom: 10px;
  color: rgb(65, 65, 65);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
  .facility-color {
    letter-spacing: 0.2em;
  }
}
.facility-color .circle {
  display: inline-block;
  width: 22px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  vertical-align: middle;
  -webkit-box-shadow: 0px 0px 6px rgba(65, 65, 65, 0.5);
          box-shadow: 0px 0px 6px rgba(65, 65, 65, 0.5);
}
.facility-color span {
  vertical-align: middle;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  padding: 0 40px;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 2px 5px rgba(196, 196, 196, 0.25);
          box-shadow: 0px 2px 5px rgba(196, 196, 196, 0.25);
}
@media screen and (max-width: 1185px) {
  header {
    padding: 5px 60px 5px 40px;
  }
}
@media screen and (max-width: 1100px) {
  header {
    padding: 5px 60px 5px 20px;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 5px 60px 5px 5px;
  }
}
header .contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.header-logo a {
  color: rgb(65, 65, 65);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .header-logo a {
    font-size: 0.8rem;
  }
}
.header-logo img {
  margin: 0;
  width: 114px;
}
@media screen and (max-width: 767px) {
  .header-logo img {
    width: 80px;
  }
}
.header-logo span {
  display: block;
  padding-top: 20px;
}

.header-menu {
  padding-top: 15px;
}
@media screen and (max-width: 1185px) {
  .header-menu {
    padding-top: 0;
  }
}
.header-menu .contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
}
@media screen and (max-width: 1185px) {
  .header-menu .contact-link {
    gap: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .header-menu .contact-link {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .header-menu .contact-link {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .header-menu .contact-link .btn span {
    display: none;
  }
}
@media screen and (max-width: 1185px) {
  .header-menu .menu-list {
    display: none;
  }
}
.header-menu .menu-list .contact {
  display: none;
}

.contact-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.contact-link a::before {
  content: "";
  display: block;
  width: 23px;
  aspect-ratio: 1/1;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.contact-link a.tel {
  color: rgb(65, 65, 65);
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .contact-link a.tel {
    font-size: 1.2rem;
  }
}
.contact-link a.tel::before {
  -webkit-mask-image: url("../../images/tel.svg");
          mask-image: url("../../images/tel.svg");
  background-color: rgb(65, 65, 65);
}
.contact-link a.btn {
  color: rgb(255, 255, 255);
  padding: 10px 30px;
  border-radius: 40px;
}
.contact-link a.contact {
  background-color: rgb(251, 128, 11);
}
.contact-link a.contact::before {
  -webkit-mask-image: url("../../images/mail.svg");
          mask-image: url("../../images/mail.svg");
  background-color: rgb(255, 255, 255);
}
.contact-link a.line {
  background-color: rgb(6, 199, 85);
}
.contact-link a.line::before {
  background-image: url("../../images/line.svg");
}

.sp-link-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
  display: none;
  -webkit-box-shadow: 0px -3px 5px rgba(196, 196, 196, 0.25);
          box-shadow: 0px -3px 5px rgba(196, 196, 196, 0.25);
}
@media screen and (max-width: 767px) {
  .sp-link-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sp-link-wrapper .contact-link {
  display: contents;
}
.sp-link-wrapper a {
  width: 25%;
  gap: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sp-link-wrapper a.btn {
  border-radius: 0;
}
.sp-link-wrapper a.tel {
  background-color: rgb(255, 255, 255);
}
.sp-link-wrapper .vacancy {
  border: 1px solid rgb(239, 181, 111);
  background-color: rgb(239, 181, 111);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sp-link-wrapper .vacancy::before {
  content: "";
  display: block;
  width: 23px;
  aspect-ratio: 1/1;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: rgb(255, 255, 255);
  -webkit-mask-image: url("../../images/house.svg");
          mask-image: url("../../images/house.svg");
}
.sp-link-wrapper span {
  display: none;
  color: transparent;
}

.footer-wrapper {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, transparent), color-stop(25%, rgb(255, 237, 216)));
  background: linear-gradient(to bottom, transparent 25%, rgb(255, 237, 216) 25%);
}

.footer-recruit-wrapper {
  margin-bottom: 95px;
  position: relative;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  overflow: hidden;
  padding: 100px 30px 80px;
}
@media screen and (max-width: 1023px) {
  .footer-recruit-wrapper {
    padding: 100px 30px 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer-recruit-wrapper {
    padding: 80px 20px 30px;
    margin-bottom: 50px;
  }
}
.footer-recruit-wrapper .bg-image {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer-recruit-wrapper .inner-box {
  position: relative;
  z-index: 2;
}

.footer-recruit-message {
  margin-bottom: 60px;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .footer-recruit-message {
    letter-spacing: 0.05em;
    margin-bottom: 30px;
  }
}

.footer-recruit-link {
  max-width: 800px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .footer-recruit-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-recruit-link p {
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .footer-recruit-link p {
    line-height: 30px;
  }
}

.orange-text {
  color: rgb(251, 128, 11);
}

.footer-contact-wrapper {
  margin-bottom: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .footer-contact-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact-wrapper {
    margin-bottom: 50px;
  }
}

.footer-contact-message {
  font-size: 2.5rem;
  line-height: 70px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .footer-contact-message {
    font-size: 2rem;
    line-height: 40px;
  }
}

.footre-contact-link-wrapper {
  max-width: 435px;
}
.footre-contact-link-wrapper p {
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  text-align: center;
}
.footre-contact-link-wrapper .contact-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px 20px;
}
@media screen and (max-width: 767px) {
  .footre-contact-link-wrapper .contact-link {
    gap: 10px;
  }
}
.footre-contact-link-wrapper .tel span {
  font-size: 2rem;
}
.footre-contact-link-wrapper .btn {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 767px) {
  .footre-contact-link-wrapper .btn {
    width: 100%;
    max-width: 210px;
  }
}

.footer-main-wrapper {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.footer-main-wrapper::before {
  margin-bottom: 50px;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-size: 20px 2px;
  background-image: linear-gradient(to right, rgb(255, 255, 255) 11px, transparent 10px);
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (max-width: 1023px) {
  .footer-main-wrapper::before {
    margin-bottom: 30px;
  }
}
.footer-main-wrapper .logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer-main-wrapper .logo-wrapper img {
  width: 165px;
  margin: 0;
}
@media screen and (max-width: 1073px) {
  .footer-main-wrapper .logo-wrapper img {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .footer-main-wrapper .logo-wrapper img {
    width: 95px;
  }
}
.footer-main-wrapper .text {
  padding-top: 30px;
}
@media screen and (max-width: 1023px) {
  .footer-main-wrapper .text {
    padding-top: 20px;
    font-size: 0.9rem;
  }
}
.footer-main-wrapper p:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (max-width: 1023px) {
  .footer-main-wrapper p:not(:last-child) {
    margin-bottom: 10px;
  }
}
.footer-main-wrapper .menu-list {
  max-width: 510px;
}
@media screen and (max-width: 1023px) {
  .footer-main-wrapper .menu-list {
    display: none;
  }
}
.footer-main-wrapper .hovercontent {
  display: none;
}

.copy-right {
  font-size: 0.7rem;
  padding: 20px;
  text-align: center;
  color: rgb(255, 255, 255);
  background-color: rgb(65, 65, 65);
}
@media screen and (max-width: 767px) {
  .copy-right {
    padding-bottom: 60px;
  }
}

.yellow-text {
  color: rgb(245, 224, 40);
}

.hidden-wrapper {
  overflow: hidden;
}

.fv-section {
  padding: 0;
}
.fv-section .contents-wrapper {
  position: relative;
  height: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .fv-section .contents-wrapper {
    height: 750px;
  }
}
@media screen and (max-width: 767px) {
  .fv-section .contents-wrapper {
    height: 550px;
  }
}
.fv-section .contents-wrapper img {
  position: absolute;
  width: 35%;
}
.fv-section img.fv-image1 {
  max-width: 400px;
  top: 0;
  left: 20%;
}
@media screen and (max-width: 767px) {
  .fv-section img.fv-image1 {
    width: 55%;
    left: 5%;
    top: 3%;
    max-width: 300px;
  }
}
.fv-section .fv-image2 {
  max-width: 285px;
  top: 130px;
  right: 5%;
}
@media screen and (max-width: 1023px) {
  .fv-section .fv-image2 {
    right: 0;
    top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .fv-section .fv-image2 {
    max-width: 180px;
  }
}
.fv-section .fv-image3 {
  max-width: 340px;
  bottom: 15%;
  left: 5%;
}
@media screen and (max-width: 1130px) {
  .fv-section .fv-image3 {
    bottom: 8%;
  }
}
@media screen and (max-width: 1023px) {
  .fv-section .fv-image3 {
    bottom: 4%;
  }
}
@media screen and (max-width: 767px) {
  .fv-section .fv-image3 {
    bottom: 7%;
    max-width: 200px;
  }
}
.fv-section img.fv-image4 {
  max-width: 390px;
  bottom: 0;
  right: 15%;
}
@media screen and (max-width: 1023px) {
  .fv-section img.fv-image4 {
    right: 12%;
  }
}
@media screen and (max-width: 767px) {
  .fv-section img.fv-image4 {
    right: 6%;
    width: 45%;
    max-width: 200px;
  }
}

.fv-title {
  text-align: center;
}
.fv-title .big {
  margin-bottom: 30px;
  font-size: 2.6rem;
  display: block;
}
@media screen and (max-width: 1023px) {
  .fv-title .big {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 767px) {
  .fv-title .big {
    font-size: 1.8rem;
  }
}
.fv-title .big-text {
  font-size: 3.2rem;
}
@media screen and (max-width: 1023px) {
  .fv-title .big-text {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .fv-title .big-text {
    font-size: 2.8rem;
    line-height: 1.2;
  }
}
.fv-title .big-text.two {
  font-size: 3rem;
}
@media screen and (max-width: 1023px) {
  .fv-title .big-text.two {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .fv-title .big-text.two {
    font-size: 2.3rem;
  }
}
.fv-title .small {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .fv-title .small {
    font-size: 1.1rem;
  }
}

.top-first-message-section {
  padding-bottom: 200px;
}
@media screen and (max-width: 1023px) {
  .top-first-message-section .contents-wrapper {
    width: 100%;
  }
}

.top-first-message-wrapper {
  margin-bottom: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .top-first-message-wrapper {
    padding-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .top-first-message-wrapper {
    padding: 0 20px;
    margin-bottom: 50px;
  }
}
.top-first-message-wrapper .fv-title {
  text-align: left;
}
.top-first-message-wrapper .fv-title .big-text {
  line-height: 90px;
}
@media screen and (max-width: 767px) {
  .top-first-message-wrapper .fv-title .big-text {
    line-height: 60px;
  }
}
.top-first-message-wrapper .fv-title .big {
  margin-bottom: 0;
}
.top-first-message-wrapper p {
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .top-first-message-wrapper p {
    line-height: 29px;
  }
}

.first-message-point-wrapper {
  max-width: 900px;
  margin: auto;
  display: -ms-grid;
  display: grid;
  gap: 50px;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1023px) {
  .first-message-point-wrapper {
    overflow: scroll;
    -ms-grid-columns: 270px 30px 270px 30px 270px;
    grid-template-columns: repeat(3, 270px);
    gap: 30px;
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .first-message-point-wrapper {
    -ms-grid-columns: 250px 20px 250px 20px 250px;
    grid-template-columns: repeat(3, 250px);
    padding: 0 20px;
    gap: 20px;
  }
}
.first-message-point-wrapper img {
  margin-bottom: 20px;
  width: 55px;
}
.first-message-point-wrapper .point-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.first-message-point-wrapper .point-box.yellow {
  padding: 16px 5px 9px 17px;
  background-image: url("../../images/yellow-ball.png");
}
.first-message-point-wrapper .point-box.blue {
  padding: 11px 5px 14px 17px;
  background-image: url("../../images/blue-ball.png");
}
.first-message-point-wrapper .point-box.pink {
  padding: 9px 19px 16px 3px;
  background-image: url("../../images/pink-ball.png");
}
.first-message-point-wrapper .inner-box {
  padding: 40px 10px 20px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  aspect-ratio: 1/1;
  text-align: center;
}
.first-message-point-wrapper .point-title {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.first-message-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 70px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .first-message-link {
    margin-top: 50px;
  }
}

.top-facility-section {
  padding-top: 0;
  position: relative;
  background-color: rgb(255, 255, 255);
}
.top-facility-section::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -80px;
  content: "";
  display: block;
  width: 150%;
  height: 450px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  z-index: -1;
  -webkit-box-shadow: 0px 0px 12.5px rgb(241, 228, 210) inset;
          box-shadow: 0px 0px 12.5px rgb(241, 228, 210) inset;
}

.swiper.facility-swiper {
  overflow: visible;
  margin-bottom: 100px;
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  .swiper.facility-swiper {
    padding: 0 20px;
    margin-bottom: 50px;
  }
}

.vacancy-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/vacancy-bg.png");
}

.vacancy-wrapper {
  padding: 50px 54px;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  -webkit-box-shadow: 0px 4px 18px rgba(206, 221, 197, 0.64);
          box-shadow: 0px 4px 18px rgba(206, 221, 197, 0.64);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .vacancy-wrapper {
    max-width: 500px;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .vacancy-wrapper {
    padding: 50px 20px;
  }
}
.vacancy-wrapper .vacancy-link {
  position: relative;
  width: calc((100% - 30px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  max-width: 416px;
  padding-right: 35px;
}
@media screen and (max-width: 1110px) {
  .vacancy-wrapper .vacancy-link {
    max-width: 380px;
  }
}
@media screen and (max-width: 1023px) {
  .vacancy-wrapper .vacancy-link {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .vacancy-wrapper .vacancy-link {
    padding-right: 20px;
  }
}
.vacancy-wrapper .vacancy-link:not(.full)::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 11px;
  aspect-ratio: 11/20;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/arrow.svg");
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .vacancy-wrapper .vacancy-link:not(.full)::after {
    width: 9px;
  }
}
.vacancy-wrapper .vacancy-link.full {
  pointer-events: none;
}
.vacancy-wrapper .vacancy-link:hover::after {
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
}
.vacancy-wrapper .vacancy-link .facility-color {
  margin-bottom: 0;
}
.vacancy-wrapper .vacancy-link .vacancy-item {
  display: block;
  border-radius: 10px;
  min-width: 168px;
  background-color: rgb(251, 128, 11);
  padding: 10px;
  text-align: center;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .vacancy-wrapper .vacancy-link .vacancy-item {
    min-width: 115px;
    font-size: 0.9rem;
  }
}
.vacancy-wrapper .vacancy-link .vacancy-item.full {
  background-color: rgb(199, 199, 199);
}

.top-post-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 80px 40px;
}
.top-post-wrapper .post-box {
  width: calc((100% - 40px) / 2);
  position: relative;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 70px 40px 30px;
  -webkit-filter: drop-shadow(0px 4px 18px rgba(221, 214, 197, 0.64));
          filter: drop-shadow(0px 4px 18px rgba(221, 214, 197, 0.64));
}
@media screen and (max-width: 1023px) {
  .top-post-wrapper .post-box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-post-wrapper .post-box {
    padding: 70px 20px 20px;
  }
}
.top-post-wrapper .post-box.news {
  padding-top: 110px;
}
@media screen and (max-width: 1023px) {
  .top-post-wrapper .post-box.news {
    padding-top: 70px;
  }
}
.top-post-wrapper .post-inner {
  position: relative;
  z-index: 2;
}
.top-post-wrapper .icon-title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -60px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  width: 50%;
  padding: 30px 10px;
  max-width: 265px;
}
.top-post-wrapper .blog-category-list {
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.pink-text {
  color: rgb(235, 151, 180);
}

.blue-text {
  color: rgb(151, 205, 235);
}

.mv-section {
  padding-top: 250px;
  padding-bottom: 0;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .mv-section {
    padding-top: 150px;
  }
}
.mv-section p {
  line-height: 1.2;
}

.mv-title {
  margin-bottom: 20px;
}
.mv-title::before {
  margin: 0 auto;
  content: "";
  display: block;
  width: 102px;
  aspect-ratio: 102/82;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/fv-bg.png");
}
.mv-title span {
  display: block;
  margin-top: -20px;
  font-size: 2rem;
}

.about-message-section .fv-title {
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .about-message-section .fv-title {
    margin-bottom: 100px;
  }
}

.about-message-wrapper {
  position: relative;
}
.about-message-wrapper p {
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .about-message-wrapper p {
    line-height: 25px;
  }
}
.about-message-wrapper .text-box {
  position: relative;
  z-index: 2;
}
.about-message-wrapper .text-box p:not(:last-child) {
  margin-bottom: 40px;
}
.about-message-wrapper .image-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  max-width: 428px;
}
@media screen and (max-width: 1023px) {
  .about-message-wrapper .image-box {
    top: -50px;
  }
}
@media screen and (max-width: 767px) {
  .about-message-wrapper .image-box {
    position: static;
    width: 70%;
    margin: 20px auto 0;
  }
}
.about-message-wrapper.greeting .text-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.about-message-wrapper.greeting .image-box {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .about-message-wrapper.greeting .image-box {
    position: absolute;
  }
}
.about-message-wrapper.greeting .blue {
  width: 55%;
  margin-right: 0;
}
.about-message-wrapper.greeting .orange {
  width: 40%;
  margin-left: 0;
}
.about-message-wrapper .name {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.about-message-wrapper .name span {
  line-height: 1.2em;
  display: block;
}
.about-message-wrapper .name .big {
  font-size: 1.5rem;
}

.about-company-section {
  padding-top: 350px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .about-company-section {
    padding-top: 200px;
  }
}
@media screen and (max-width: 1023px) {
  .about-company-section {
    padding-top: 100px;
  }
}
.about-company-section .bg-image {
  position: absolute;
  top: 0;
  left: 0;
}

.company-wrapper {
  position: relative;
  z-index: 2;
  max-width: 995px;
  margin: auto;
  padding: 100px 65px 70px;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  -webkit-filter: drop-shadow(0px 4px 18px rgba(221, 214, 197, 0.64));
          filter: drop-shadow(0px 4px 18px rgba(221, 214, 197, 0.64));
}
@media screen and (max-width: 1023px) {
  .company-wrapper {
    padding: 100px 35px 50px;
  }
}
@media screen and (max-width: 1023px) {
  .company-wrapper {
    padding: 60px 35px 50px;
  }
}
.company-wrapper .normal-title {
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 50%;
  padding: 60px 10px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30%;
  text-align: center;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 1023px) {
  .company-wrapper .normal-title {
    padding: 30px 10px;
    width: 50%;
  }
}
.company-wrapper .detail-wrapper {
  margin-bottom: 0;
}
.company-wrapper .detail-inner .detail-title,
.company-wrapper .detail-inner .detail-contents {
  border-color: rgb(65, 65, 65);
}

.service-page-link-wrapper {
  max-width: 785px;
  margin: 95px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .service-page-link-wrapper {
    gap: 10px;
  }
}
.service-page-link-wrapper a {
  width: calc((100% - 40px) / 3);
  max-width: 210px;
  padding: 10px;
  color: rgb(65, 65, 65);
  border-radius: 20px;
  background-color: rgb(250, 222, 188);
}
@media screen and (max-width: 767px) {
  .service-page-link-wrapper a {
    width: calc((100% - 10px) / 2);
  }
}
.service-page-link-wrapper a:hover {
  background-color: rgb(245, 224, 40);
}

.dot-list li,
.dot-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.dot-list li::before,
.dot-text::before {
  content: "";
  display: block;
  margin-top: 2px;
  width: 15px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  background-color: rgb(151, 205, 235);
}
.dot-list li > span,
.dot-text > span {
  width: calc(100% - 15px - 20px);
}

.support-section .contents-wrapper {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .support-section .contents-wrapper.mini {
    width: 100%;
  }
}
.support-section .image-box {
  position: absolute;
  top: 30%;
  right: 0;
  width: 30%;
  max-width: 220px;
}
@media screen and (max-width: 767px) {
  .support-section .image-box {
    width: 55%;
  }
}
.support-section .yellow {
  margin-right: 0;
  width: 45%;
}
.support-section .blue {
  width: 60%;
  margin-left: 0;
}

.support-box {
  line-height: 1.2;
}
.support-box:not(:last-child) {
  margin-bottom: 50px;
}

.support-message {
  text-align: center;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .support-message {
    line-height: 30px;
  }
}

.day-flow-wrapper {
  background-color: rgb(255, 255, 255);
  padding: 60px 50px;
  border-radius: 20px;
}
@media screen and (max-width: 1023px) {
  .day-flow-wrapper {
    max-width: 500px;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .day-flow-wrapper {
    padding: 50px 20px;
  }
}
.day-flow-wrapper .flow-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .day-flow-wrapper .flow-inner {
    gap: 30px;
  }
}
.day-flow-wrapper .flow-inner::after {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: block;
  height: 3px;
  width: 95%;
  background-color: rgb(255, 237, 216);
}
@media screen and (max-width: 1023px) {
  .day-flow-wrapper .flow-inner::after {
    width: 3px;
    height: 95%;
    bottom: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
}
.day-flow-wrapper .flow-box {
  position: relative;
  z-index: 2;
  min-width: 88px;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 1023px) {
  .day-flow-wrapper .flow-box {
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    min-height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .day-flow-wrapper .flow-box {
    min-height: 50px;
  }
}
.day-flow-wrapper img {
  width: auto;
  height: 45px;
  margin-bottom: 17px;
}
@media screen and (max-width: 1023px) {
  .day-flow-wrapper img {
    margin: 0;
    height: auto;
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .day-flow-wrapper img {
    width: 40px;
  }
}
.day-flow-wrapper p {
  background-color: rgb(255, 255, 255);
}
.day-flow-wrapper .time {
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .day-flow-wrapper .time {
    margin-bottom: 0;
  }
}
.day-flow-wrapper .time::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/flow-icon/time.svg");
}
.day-flow-wrapper .time span {
  vertical-align: middle;
}

.target-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 20px 30px;
}
@media screen and (max-width: 1023px) {
  .target-wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .target-wrapper .dot-text {
    font-size: 1rem;
  }
}

.need-wrapper {
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 50px 40px;
}
@media screen and (max-width: 767px) {
  .need-wrapper {
    padding: 40px 20px;
  }
}
.need-wrapper .need-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px 20px;
}
@media screen and (max-width: 767px) {
  .need-wrapper .need-inner {
    gap: 30px;
  }
}
.need-wrapper .need-inner img {
  width: 185px;
}
.need-wrapper .need-inner .dot-list {
  max-width: 588px;
  width: 65%;
}
@media screen and (max-width: 767px) {
  .need-wrapper .need-inner .dot-list {
    width: 100%;
  }
  .need-wrapper .need-inner .dot-list li {
    font-size: 1rem;
  }
}
.need-wrapper .other-need {
  width: 100%;
  font-size: 1.1rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .need-wrapper .other-need {
    font-size: 1rem;
  }
}
.need-wrapper .other-need::before {
  margin-bottom: 35px;
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-size: 20px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-image: linear-gradient(to right, rgb(239, 181, 111) 11px, transparent 10px);
}
.need-wrapper .other-need > span {
  display: block;
  padding: 0 50px;
}
@media screen and (max-width: 1023px) {
  .need-wrapper .other-need > span {
    padding: 0;
  }
}

.cost-section .contents-wrapper {
  position: relative;
}
.cost-section .green {
  position: absolute;
  top: 0;
  right: 0;
  width: 97px;
}
.cost-section .orange {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 148px;
}

.cost-table {
  position: relative;
  z-index: 2;
  max-width: 865px;
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .cost-table {
    width: 100%;
  }
}
.cost-table tr:not(:last-child) {
  border-bottom: 1px solid rgb(255, 237, 216);
}
.cost-table tr:last-child th {
  background-color: rgb(239, 181, 111);
}
.cost-table tr:last-child td {
  font-size: 1.5rem;
  background-color: rgb(255, 237, 216);
}
.cost-table th, .cost-table td {
  font-weight: 400;
  padding: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cost-table th, .cost-table td {
    padding: 20px 5px;
  }
}
.cost-table th {
  width: 295px;
  background-color: rgb(250, 222, 188);
}
@media screen and (max-width: 767px) {
  .cost-table th {
    width: 135px;
  }
}
.cost-table td {
  background-color: rgb(255, 255, 255);
}

.faq-section .normal-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .faq-section .normal-title {
    margin-bottom: 30px;
  }
}

.faq-tab-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1100px) {
  .faq-tab-wrapper {
    gap: 40px 10px;
  }
}
@media screen and (max-width: 1023px) {
  .faq-tab-wrapper {
    gap: 10px;
  }
}

.tab_item {
  padding: 10px 20px;
  border-radius: 20px;
  min-width: 160px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .tab_item {
    width: calc((100% - 20px) / 3);
  }
}
.tab_item.yellow {
  background-color: rgb(255, 247, 208);
}
.tab_item.yellow:hover {
  background-color: rgb(245, 224, 40);
}
.tab_item.pink {
  background-color: rgb(253, 232, 243);
}
.tab_item.pink:hover {
  background-color: rgb(235, 151, 180);
}
.tab_item.blue {
  background-color: rgb(217, 230, 242);
}
.tab_item.blue:hover {
  background-color: rgb(151, 205, 235);
}
.tab_item.orange {
  background-color: rgb(250, 222, 188);
}
.tab_item.orange:hover {
  background-color: rgb(239, 181, 111);
}
.tab_item.green {
  background-color: rgb(209, 235, 222);
}
.tab_item.green:hover {
  background-color: rgb(161, 225, 135);
}

.faq-tab-wrapper input:checked + .tab_item.yellow {
  background-color: rgb(245, 224, 40);
}
.faq-tab-wrapper input:checked + .tab_item.pink {
  background-color: rgb(235, 151, 180);
}
.faq-tab-wrapper input:checked + .tab_item.blue {
  background-color: rgb(151, 205, 235);
}
.faq-tab-wrapper input:checked + .tab_item.orange {
  background-color: rgb(239, 181, 111);
}
.faq-tab-wrapper input:checked + .tab_item.green {
  background-color: rgb(161, 225, 135);
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  width: 100%;
  display: none;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .tab_content {
    margin-top: 30px;
  }
}

.faq-wrapper {
  background-color: rgb(255, 255, 255);
  border: 1px solid;
  border-radius: 15px;
}
.faq-wrapper:not(:last-child) {
  margin-bottom: 15px;
}
.faq-wrapper .q-text {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 30px 40px;
}
@media screen and (max-width: 1023px) {
  .faq-wrapper .q-text {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 767px) {
  .faq-wrapper .q-text {
    gap: 15px;
  }
}
.faq-wrapper .q-text::before {
  content: "";
  display: block;
  width: 39px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60%;
  background-image: url("../../images/q-text.svg");
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .faq-wrapper .q-text::before {
    width: 25px;
  }
}
.faq-wrapper .q-text span {
  pointer-events: none;
}
.faq-wrapper .q-text span:not(.plus) {
  width: calc(100% - 39px - 20px - 40px);
}
@media screen and (max-width: 767px) {
  .faq-wrapper .q-text span:not(.plus) {
    width: calc(100% - 25px - 10px - 30px);
  }
}
.faq-wrapper .q-text span.plus {
  position: relative;
  width: 20px;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .faq-wrapper .q-text span.plus {
    width: 10px;
  }
}
.faq-wrapper .q-text span.plus::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.faq-wrapper .q-text.is-open span.plus::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.faq-wrapper .a-text {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  line-height: 1.2;
}
.faq-wrapper .a-text span {
  display: block;
  padding: 0 40px 30px 100px;
}
@media screen and (max-width: 1023px) {
  .faq-wrapper .a-text span {
    padding: 0 20px 30px 80px;
  }
}
@media screen and (max-width: 767px) {
  .faq-wrapper .a-text span {
    padding: 0 20px 30px;
  }
}

.tab_content.yellow .faq-wrapper {
  border-color: rgb(245, 224, 40);
}
.tab_content.yellow .q-text .plus,
.tab_content.yellow .q-text .plus::before, .tab_content.yellow .q-text::before {
  background-color: rgb(245, 224, 40);
}
.tab_content.pink .faq-wrapper {
  border-color: rgb(235, 151, 180);
}
.tab_content.pink .q-text .plus,
.tab_content.pink .q-text .plus::before, .tab_content.pink .q-text::before {
  background-color: rgb(235, 151, 180);
}
.tab_content.blue .faq-wrapper {
  border-color: rgb(151, 205, 235);
}
.tab_content.blue .q-text .plus,
.tab_content.blue .q-text .plus::before, .tab_content.blue .q-text::before {
  background-color: rgb(151, 205, 235);
}
.tab_content.orange .faq-wrapper {
  border-color: rgb(239, 181, 111);
}
.tab_content.orange .q-text .plus,
.tab_content.orange .q-text .plus::before, .tab_content.orange .q-text::before {
  background-color: rgb(239, 181, 111);
}
.tab_content.green .faq-wrapper {
  border-color: rgb(161, 225, 135);
}
.tab_content.green .q-text .plus,
.tab_content.green .q-text .plus::before, .tab_content.green .q-text::before {
  background-color: rgb(161, 225, 135);
}

#house-tab:checked ~ #house-tab_content,
#life-tab:checked ~ #life-tab_content,
#visit-tab:checked ~ #visit-tab_content,
#other-tab:checked ~ #other-tab_content,
#cost-tab:checked ~ #cost-tab_content {
  display: block;
}

.recruit-message-section {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .recruit-message-section {
    padding-bottom: 80px;
  }
}
.recruit-message-section .contents-wrapper {
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit-message-section .contents-wrapper {
    padding: 0;
  }
}
.recruit-message-section .recruit-message {
  position: absolute;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .recruit-message-section .recruit-message {
    opacity: 0.5;
  }
}
.recruit-message-section .recruit-message.left {
  top: 0;
  left: 50px;
  max-width: 290px;
}
@media screen and (max-width: 1023px) {
  .recruit-message-section .recruit-message.left {
    top: -40px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-message-section .recruit-message.left {
    top: -80px;
    left: -30px;
  }
}
.recruit-message-section .recruit-message.right {
  bottom: -50px;
  right: -50px;
  max-width: 400px;
}
@media screen and (max-width: 1250px) {
  .recruit-message-section .recruit-message.right {
    bottom: -100px;
  }
}
@media screen and (max-width: 1023px) {
  .recruit-message-section .recruit-message.right {
    bottom: -90px;
  }
}
.recruit-message-section .normal-title {
  margin-bottom: 70px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .recruit-message-section .normal-title {
    margin-bottom: 50px;
  }
}

.recruit-message-text {
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit-message-text {
    line-height: 25px;
    text-align: left;
  }
  .recruit-message-text .inlineblock-item {
    display: inline;
  }
}

.recruit-job-section {
  position: relative;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 1023px) {
  .recruit-job-section {
    padding-top: 0;
  }
}
.recruit-job-section::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -80px;
  content: "";
  display: block;
  width: 150%;
  height: 450px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  z-index: -1;
  -webkit-box-shadow: 0px 0px 12.5px rgb(241, 228, 210) inset;
          box-shadow: 0px 0px 12.5px rgb(241, 228, 210) inset;
}
.recruit-job-section .recruit-job-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 30px;
}
.recruit-job-section .recruit-job-list li:nth-child(even) {
  width: calc(45% - 30px);
}
@media screen and (max-width: 1023px) {
  .recruit-job-section .recruit-job-list li:nth-child(even) {
    width: 100%;
  }
}
.recruit-job-section .recruit-job-list li:nth-child(odd) {
  width: 55%;
}
@media screen and (max-width: 1023px) {
  .recruit-job-section .recruit-job-list li:nth-child(odd) {
    width: 100%;
  }
}

.recruit-contents-section .contents-wrapper {
  padding-top: 70px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .recruit-contents-section .contents-wrapper {
    padding-top: 0;
  }
}
.recruit-contents-section .orange {
  position: absolute;
  width: 150px;
  top: -150px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .recruit-contents-section .orange {
    width: 100px;
  }
}
.recruit-contents-section .blue {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .recruit-contents-section .blue {
    top: auto;
    bottom: -60px;
    width: 70px;
  }
}

.contact-tel-wrapper {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 70px;
}
@media screen and (max-width: 1023px) {
  .contact-tel-wrapper {
    gap: 30px 50px;
  }
}
@media screen and (max-width: 767px) {
  .contact-tel-wrapper {
    gap: 50px;
    margin-bottom: 50px;
  }
}
.contact-tel-wrapper .contact-tel-message {
  width: 100%;
  text-align: center;
}
.contact-tel-wrapper a.tel span {
  font-size: 1.5rem;
}
.contact-tel-wrapper a.line {
  margin: 0 auto;
  max-width: 285px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-wrapper {
  border-radius: 20px;
  padding: 100px 50px;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .form-wrapper {
    padding: 50px 25px;
  }
}
.form-wrapper .form-box {
  margin-bottom: 50px;
}
.form-wrapper .form-box:last-child {
  margin-bottom: 80px;
}
.form-wrapper .form-box .title {
  margin-bottom: 10px;
}
.form-wrapper .form-box .title.must::after {
  content: "必須";
  color: rgb(255, 255, 255);
  font-size: 0.8rem;
  margin-left: 14px;
  display: inline-block;
  padding: 2px 10px;
  background-color: rgb(235, 151, 180);
}
.form-wrapper .text-common {
  display: block;
  width: 100%;
  border-radius: 10px;
  background-color: rgb(231, 231, 231);
  padding: 15px 10px;
  border: none;
  outline: none;
}
.form-wrapper a {
  color: rgb(65, 65, 65);
  border-bottom: 1px solid rgb(65, 65, 65);
}
.form-wrapper a:hover {
  border-color: transparent;
}
.form-wrapper .button-submit {
  margin: 0 auto;
  opacity: 0.3;
  display: block;
  width: 280px;
  background-color: rgb(251, 128, 11);
  color: rgb(255, 255, 255);
  padding: 15px;
  border-radius: 50px;
  border: 1px solid rgb(251, 128, 11);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-family: "Kosugi Maru", sans-serif;
}
.form-wrapper .button-submit.active {
  opacity: 1;
}
.form-wrapper .button-submit.active:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(251, 128, 11);
}

.policy-wrapper:not(:last-child) {
  margin-bottom: 50px;
}
.policy-wrapper .polisy-title {
  margin-bottom: 20px;
}
.policy-wrapper .polisy-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  background-color: rgb(65, 65, 65);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
}
.policy-wrapper .polisy-title span {
  font-size: 1.4rem;
  vertical-align: middle;
}
.policy-wrapper p {
  line-height: 1.2;
}

.sidebar-box {
  width: 150px;
  margin: 0 0 100px auto;
}
@media screen and (max-width: 767px) {
  .sidebar-box {
    margin-bottom: 50px;
  }
}
.sidebar-box .sidebar-title {
  margin-bottom: 10px;
}
.sidebar-box select {
  display: block;
  width: 100%;
}

.wp-pagenavi {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 50px;
  }
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  border: none;
  color: rgb(65, 65, 65);
  vertical-align: middle;
}
.wp-pagenavi a.current, .wp-pagenavi span.current {
  padding: 5px 10px;
  background-color: rgb(255, 255, 255);
}
.wp-pagenavi a .arrow, .wp-pagenavi span .arrow {
  width: 10px;
  aspect-ratio: 10/16;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/black-arrow.svg");
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.wp-pagenavi a .arrow.left, .wp-pagenavi span .arrow.left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.wp-pagenavi a .arrow.left:hover, .wp-pagenavi span .arrow.left:hover {
  -webkit-transform: translateX(-5px) rotate(180deg);
          transform: translateX(-5px) rotate(180deg);
}
.wp-pagenavi a .arrow.right:hover, .wp-pagenavi span .arrow.right:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.wp-pagenavi a:hover {
  color: rgb(251, 128, 11);
}

.post-title-wrapper {
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 2px solid rgb(245, 224, 40);
}
.post-title-wrapper time {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgb(113, 113, 113);
}
.post-title-wrapper .post-title {
  margin-top: 15px;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.post-title-wrapper .blog-category-list {
  margin-bottom: 10px;
}

.post-single-wrapper {
  padding: 0 40px;
}
@media screen and (max-width: 1023px) {
  .post-single-wrapper {
    padding: 0;
  }
}
.post-single-wrapper .post-image {
  margin-bottom: 40px;
}
.post-single-wrapper .main-contents {
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.single-pager {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .single-pager {
    margin-top: 50px;
  }
}
.single-pager .top-btn {
  width: 210px;
}
.single-pager .pager-box {
  width: 38px;
}
.single-pager .arrow-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-pager .arrow-button::before {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 10/16;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/black-arrow.svg");
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-pager .arrow-button.left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.single-pager .arrow-button.left:hover {
  -webkit-transform: translateX(-5px) rotate(180deg);
          transform: translateX(-5px) rotate(180deg);
}
.single-pager .arrow-button.right:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.blog-link-wrapper {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px 10px;
}
@media screen and (max-width: 767px) {
  .blog-link-wrapper {
    margin-bottom: 50px;
  }
}
.blog-link-wrapper .blog-category-list {
  padding-top: 26px;
  width: calc(100% - 150px - 30px);
}
@media screen and (max-width: 767px) {
  .blog-link-wrapper .blog-category-list {
    padding-top: 0;
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.blog-link-wrapper .sidebar-box {
  margin-bottom: 0;
}

.facility-message-wrapper {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .facility-message-wrapper {
    margin-bottom: 50px;
  }
}
.facility-message-wrapper p {
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .facility-message-wrapper p {
    line-height: 25px;
  }
}
.facility-message-wrapper p:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .facility-message-wrapper p:not(:last-child) {
    margin-bottom: 20px;
  }
}

.facility-single-wrapper .image-box {
  margin-bottom: 80px;
  position: relative;
}
.facility-single-wrapper .swiper-slide {
  height: auto;
}
.facility-single-wrapper .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.facility-single-wrapper .main-swiper {
  margin-bottom: 20px;
}
.facility-single-wrapper .main-swiper img {
  border-radius: 20px;
  max-height: 588px;
}
@media screen and (max-width: 1023px) {
  .facility-single-wrapper .main-swiper img {
    max-height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .facility-single-wrapper .main-swiper img {
    max-height: 250px;
    border-radius: 10px;
  }
}
.facility-single-wrapper .sub-swiper img {
  border-radius: 10px;
  max-height: 120px;
}
@media screen and (max-width: 767px) {
  .facility-single-wrapper .sub-swiper img {
    border-radius: 5px;
    max-height: 60px;
  }
}
.facility-single-wrapper .swiper-button-next,
.facility-single-wrapper .swiper-button-prev {
  top: auto;
  bottom: 60px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .facility-single-wrapper .swiper-button-next,
  .facility-single-wrapper .swiper-button-prev {
    bottom: 30px;
    width: 30px;
    height: 30px;
  }
}
.facility-single-wrapper .swiper-button-next svg,
.facility-single-wrapper .swiper-button-prev svg {
  display: none;
}
.facility-single-wrapper .swiper-button-next::before,
.facility-single-wrapper .swiper-button-prev::before {
  content: "";
  display: block;
  width: 10px;
  aspect-ratio: 10/18;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/arrow.svg");
}
.facility-single-wrapper .swiper-button-prev {
  -webkit-transform: translate(-50%, 50%) scale(-1, 1);
          transform: translate(-50%, 50%) scale(-1, 1);
}
.facility-single-wrapper .swiper-button-next {
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}

.detail-wrapper {
  margin-bottom: 60px;
}

.detail-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.detail-inner:not(:last-child) {
  margin-bottom: 30px;
}
.detail-inner .detail-title {
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(245, 224, 40);
  width: 210px;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (max-width: 1023px) {
  .detail-inner .detail-title {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .detail-inner .detail-title {
    width: 100%;
    padding-bottom: 15px;
    color: rgb(251, 128, 11);
    border-bottom: none;
  }
}
.detail-inner .detail-contents {
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(227, 210, 195);
  width: calc(100% - 210px);
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .detail-inner .detail-contents {
    width: calc(100% - 180px);
  }
}
@media screen and (max-width: 767px) {
  .detail-inner .detail-contents {
    width: 100%;
    border-bottom: 1px solid rgb(245, 224, 40);
  }
}

.single-google-map iframe {
  height: 380px;
}
@media screen and (max-width: 767px) {
  .single-google-map iframe {
    height: 300px;
  }
}
/*# sourceMappingURL=main.css.map */