@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap");
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font: 100% "M PLUS 1p", sans-serif;
  color: #000;
}
@media (width < 1100px) {
  body {
    padding-bottom: 54px;
  }
}

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

dl, dd, dt {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

p {
  font-weight: 400;
}

a:hover {
  opacity: 0.8;
}

.container {
  width: min(100% - 40px, 1640px);
  margin-inline: auto;
}

.inner {
  width: min(100%, 1260px);
  margin-inline: auto;
}

.box-inner {
  padding: 0 20px;
}

.font-color_pink {
  color: #FB8EB2;
}

.font-color_blue {
  color: #81C7EF;
}

.font-color_green {
  color: #8CC777;
}

.color-danger {
  color: #bf4040;
}

@media (width >= 1100px) {
  .sp-nav {
    display: none;
  }
}
#home #header {
  z-index: 2;
}
@media (width < 768px) {
  #home #header {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
  }
}
@media (width < 1100px) {
  #home #header .nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
  }
  #home #header .nav.js-active {
    transform: translateX(0);
  }
}
@media (width >= 599px) {
  #home #header.js-scroll {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 2;
  }
}

#page #header {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 2;
}
#page #header.js-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

#header {
  padding-bottom: 25px;
}
@media (width < 1100px) {
  #header {
    padding: 15px 0;
  }
}
#header .header-inner {
  padding: 0 20px;
}
@media (width < 1100px) {
  #header .header-inner {
    padding: 0 0 0 20px;
  }
}
#header .header-box {
  display: flex;
}
#header .site-desc {
  white-space: nowrap;
  font-size: 12px;
  padding: 15px 0;
  margin: 0;
}
@media (width < 1100px) {
  #header .site-desc {
    padding-top: 0;
  }
}
@media (width < 600px) {
  #header .site-desc {
    display: none;
  }
}
#header .site-logo {
  max-width: 200px;
  margin: 0;
}
#header .site-logo .logo {
  display: block;
}
@media (width < 600px) {
  #header .site-logo {
    width: 120px;
  }
}
#header .site-nav {
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
@media (width < 1100px) {
  #header .site-nav {
    padding: 0 15px;
    border-left: solid #eee;
  }
}
#header .contact-nav {
  display: flex;
  justify-content: end;
}
@media (width < 1100px) {
  #header .contact-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  #header .contact-nav .contact-nav__item {
    flex: 1;
    border-radius: 0;
    font-size: 15px;
  }
  #header .contact-nav .contact-nav__item .contact-nav__link {
    padding: 16px 10px;
    justify-content: center;
  }
  #header .contact-nav .contact-nav__item.tel-nav {
    font-size: 16px;
  }
  #header .contact-nav .contact-nav__item .tel-icon {
    min-width: 18px;
    height: 18px;
  }
  #header .contact-nav .recruit-nav {
    display: none;
  }
}
#header .contact-nav__item {
  font-weight: 500;
  background: #ccc;
  border-radius: 0 0 6px 6px;
  font-size: min(1.5714285714vw,22px);
}
#header .contact-nav__item.tel-nav {
  background-color: #8CC777;
  font-size: 24px;
  font-size: min(1.5714285714vw,22px);
}
#header .contact-nav__item.tel-nav a {
  color: #fff;
  text-decoration: none;
}
#header .contact-nav__item.mail-nav {
  background-color: #FB8EB2;
}
#header .contact-nav__item.recruit-nav {
  background-color: #81C7EF;
}
#header .contact-nav__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  padding: 8px 20px;
  gap: 10px;
}
#header .tel-icon {
  display: block;
  min-width: 28px;
  height: 28px;
  background: url(../images/call.svg) no-repeat center/contain;
}
#header .mail-icon {
  display: block;
  min-width: 21px;
  height: 15px;
  background: url(../images/envelope.svg) no-repeat center/contain;
}
#header .recruit-icon {
  display: block;
  min-width: 19px;
  height: 21px;
  background: url(../images/user.svg) no-repeat center/contain;
}
#header .nav {
  margin-top: auto;
  padding: 0 20px 0 20px;
}
@media (width < 1100px) {
  #header .nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out;
    background: rgba(255, 246, 235, 0.95);
    z-index: 2;
  }
  #header .nav.js-active {
    transform: translateX(0);
  }
}
#header .global-nav {
  display: flex;
  justify-content: end;
  gap: 0 80px;
}
@media (width < 1490px) {
  #header .global-nav {
    gap: 0 40px;
  }
}
@media (width < 1100px) {
  #header .global-nav {
    flex-direction: column;
    padding: 100px 0 0 0;
    gap: 10px;
  }
}
#header .global-nav__item {
  font-size: min(1.1428571429vw,16px);
  font-weight: 500;
  white-space: nowrap;
}
@media (width < 1100px) {
  #header .global-nav__item {
    font-size: 18px;
  }
}
#header .global-nav__link {
  color: #000;
  text-decoration: none;
}
@media (width < 1100px) {
  #header .global-nav__link {
    display: block;
    padding: 6px 0;
  }
}
@media (width < 1100px) {
  #header #humberger {
    position: relative;
    height: 20px;
    width: 28px;
    display: inline-block;
    margin: auto 0 auto auto;
    cursor: pointer;
    z-index: 3;
  }
  #header #humberger div {
    position: absolute;
    left: 0;
    height: 2px;
    width: 28px;
    background-color: #57453C;
    border-radius: 2px;
    display: inline-block;
    box-sizing: border-box;
  }
  #header #humberger div:nth-of-type(1) {
    bottom: 20px;
  }
  #header #humberger div:nth-of-type(2) {
    bottom: 10px;
  }
  #header #humberger div:nth-of-type(3) {
    bottom: 0;
  }
  #header #humberger.js-active div:nth-of-type(1) {
    transform: rotate(-45deg);
    bottom: 10px;
  }
  #header #humberger.js-active div:nth-of-type(2) {
    display: none;
  }
  #header #humberger.js-active div:nth-of-type(3) {
    transform: rotate(45deg);
    bottom: 10px;
  }
}
@media (width < 599px) {
  #header {
    position: relative;
    z-index: 1000;
  }
  #header.js-scroll {
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}

#hero {
  position: relative;
  height: 100%;
}
#hero .mv-slider {
  top: 0;
  left: 0;
  z-index: -1;
}
#hero .mv-slider {
  width: 100%;
  height: 100%;
}
#hero .mv-slider .swiper-slide {
  aspect-ratio: 1920/760;
}
@media (width < 768px) {
  #hero .mv-slider .swiper-slide {
    aspect-ratio: 375/285;
  }
}
#hero .mv-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero .hero-box {
  position: relative;
  padding: 40px 20px;
  margin: 0 auto;
}
@media (width >= 600px) {
  #hero .hero-box::before {
    content: "";
    display: block;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    right: 0;
    top: 0;
    width: 100vw;
    height: 100%;
  }
}
@media (width < 599px) {
  #hero .hero-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    margin: 60vw 0 0 0;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  }
}
#hero .hero-text {
  position: relative;
  font-size: max(26px, min(3vw, 30px));
  color: #57453C;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  z-index: 1;
}
@media (width < 599px) {
  #hero .hero-text {
    font-size: 5vw;
  }
  #hero .hero-text .sp-none {
    display: none;
  }
}
#hero .hero-inner {
  position: absolute;
}
@media (width > 840px) {
  #hero .hero-inner {
    width: 66%;
    bottom: calc(40% - 120px);
  }
}
@media (width < 1099px) {
  #hero .hero-inner {
    width: 100%;
    bottom: calc(40% - 120px);
  }
}
#hero .hero-inner .hero-text-inner {
  width: min(100% - 40px, 1260px);
  margin-inline: auto;
}
@media (width < 600px) {
  #hero .hero-inner {
    bottom: 40px;
  }
}
#hero .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
}
.section-inner {
  padding: 80px 0;
}
@media (width < 600px) {
  .section-inner {
    padding: 60px 0;
  }
}

.section-heading {
  margin: 0 0 40px 0;
}

.section-title {
  font-size: 40px;
  text-align: center;
  color: #57453C;
  font-weight: 500;
  margin: 0;
}
@media (width < 600px) {
  .section-title {
    font-size: 26px;
  }
}

.section-title__label {
  font-size: 24px;
  display: block;
}
@media (width < 600px) {
  .section-title__label {
    font-size: 18px;
  }
}

.section-text {
  font-size: max(14px, min(3vw, 18px));
  text-align: center;
  margin: 1.2em 0 0 0;
  line-height: 1.8;
}
@media (width < 840px) {
  .section-text {
    text-align: left;
  }
  .section-text br {
    display: none;
  }
}

a.btn,
.btn {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  cursor: pointer;
}
a.btn .arrow-right,
.btn .arrow-right {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 0.1em solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  right: 10px;
  top: 40%;
}
a.btn:hover,
.btn:hover {
  opacity: 0.8;
}

.primary-btn {
  font-size: max(16px, min(3vw, 20px));
  background-color: #897469;
  color: #fff;
  border-radius: 6px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.secondary-btn {
  font-size: max(16px, min(3vw, 20px));
  background-color: #81C7EF;
  color: #fff;
  border-radius: 6px;
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
}

.btn.tertiary-btn {
  font-size: max(16px, min(3vw, 20px));
  background-color: #fff;
  color: #57453C;
  border-radius: 6px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.btn.tertiary-btn .arrow-right {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 0.1em solid #57453C;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  right: 10px;
  top: 40%;
}

.movie-icon {
  display: block;
  min-width: 23px;
  height: 19px;
  background: url(../images/movie-w.svg) no-repeat center/contain;
}

#about .section-inner {
  padding: 90px 0 0 0;
}
@media (width < 600px) {
  #about .section-inner {
    padding: 40px 0 0 0;
  }
}

.about-box {
  display: grid;
  grid-template-columns: 60vw 1fr;
  background: url(../images/bg.jpg) no-repeat center/cover;
}
@media (width < 1200px) {
  .about-box {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 840px) {
  .about-box {
    display: flex;
    flex-direction: column;
  }
}

.about-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 40px 50px;
  display: grid;
  align-items: center;
}
@media (width < 600px) {
  .about-content {
    padding: 30px 25px;
  }
}

.about-heading {
  font-size: min(2.8571428571vw,40px);
  font-weight: 500;
  color: #57453C;
  line-height: 1.4;
  margin: 0 0 25px 0;
}
@media (width < 840px) {
  .about-heading {
    text-align: center;
    font-size: 30px;
  }
}
@media (width < 600px) {
  .about-heading {
    font-size: 26px;
  }
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
}
.about-text p:last-of-type {
  margin-bottom: 0;
}
@media (width < 1200px) {
  .about-text p {
    font-size: 16px;
  }
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 40px;
  padding-top: 40px;
}
@media (width < 600px) {
  .service-list {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 20px;
    gap: 60px 40px;
  }
}
.service-list .service-item {
  display: flex;
  flex-direction: column;
}
.service-list .service-name {
  font-size: max(20px, min(3vw, 26px));
  margin: 0;
  text-align: center;
  font-weight: 500;
}
.service-list .service-img {
  padding: 20px 0;
}
.service-list .service-img .img {
  display: block;
}
.service-list .service-text {
  font-size: max(14px, min(3vw, 18px));
  margin: 0 0 30px 0;
}
.service-list .primary-btn {
  margin-top: auto;
}

#interview {
  border-top: solid 2px rgba(137, 116, 105, 0.3);
  border-bottom: solid 2px rgba(137, 116, 105, 0.3);
}
#interview .section-heading {
  margin-bottom: 25px;
}
#interview .interview-img {
  padding-top: 35px;
}
#interview .interview-img .img {
  display: block;
}

#information {
  background: url(../images/bg.jpg) no-repeat center/cover;
}

.info-textarea p {
  font-size: max(14px, min(3vw, 16px));
}
.info-textarea p:last-of-type {
  margin: 0;
}
.info-textarea p:first-of-type {
  margin-top: 0;
}
.info-textarea .info-title {
  font-size: max(16px, min(3vw, 18px));
}

#inquiries .inquiry-list {
  display: grid;
  grid-gap: 12px;
}
#inquiries .inquiry-list__item {
  display: grid;
  align-items: center;
}
#inquiries .inquiry-list__inner {
  padding: 50px 20px;
}
#inquiries .inquiry-name {
  font-size: max(30px, min(3vw, 50px));
  color: #fff;
  text-align: center;
  margin: 0 0 16px 0;
}
#inquiries .inquiry-text {
  font-size: max(16px, min(2.5vw, 26px));
  color: #fff;
  text-align: center;
  border-top: solid 1px #fff;
  padding-top: 12px;
  margin: 0 auto 16px auto;
  max-width: max-content;
}
#inquiries .secondary-btn {
  max-width: 300px;
  margin-bottom: 8px;
}
#inquiries .recruit-icon {
  display: block;
  min-width: 19px;
  height: 21px;
  background: url(../images/user.svg) no-repeat center/contain;
}
#inquiries .camera-icon {
  display: block;
  min-width: 23px;
  height: 19px;
  background: url(../images/movie.svg) no-repeat center/contain;
}
@media (width >= 600px) {
  #inquiries .inquiry-list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  #inquiries .inquiry-list__item.corporate, #inquiries .inquiry-list__item.review {
    grid-column: 1;
  }
  #inquiries .inquiry-list__item.recruit {
    grid-column: 2;
    grid-row: 1/3;
  }
}
#inquiries .inquiry-list__item.corporate {
  background: url(../images/img-007.jpg) no-repeat center bottom/cover;
}
#inquiries .inquiry-list__item.review {
  background: url(../images/img-008.jpg) no-repeat center/cover;
}
#inquiries .inquiry-list__item.recruit {
  background: url(../images/img-009.jpg) no-repeat center/cover;
}
#inquiries .contact-box {
  padding: 40px 0 0 0;
}
#inquiries .contact-text {
  font-size: max(20px, min(3.5vw, 50px));
  color: #57453C;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 1.4;
}
#inquiries .tel-btn {
  font-size: max(26px, min(3.5vw, 50px));
  background: #8CC777;
  color: #fff;
  border-radius: 6px;
}
#inquiries .mail-btn {
  font-size: max(24px, min(3.5vw, 45px));
  background: #FB8EB2;
  color: #fff;
  border-radius: 6px;
}
#inquiries .tel-icon {
  display: block;
  min-width: 49px;
  height: 49px;
  background: url(../images/call.svg) no-repeat center/contain;
}
#inquiries .mail-icon {
  display: block;
  min-width: 44px;
  height: 32px;
  background: url(../images/envelope.svg) no-repeat center/contain;
}
@media (width < 768px) {
  #inquiries .tel-icon {
    min-width: 25px;
    height: 25px;
  }
  #inquiries .mail-icon {
    min-width: 22px;
    height: 16px;
  }
}
@media (width < 600px) {
  #inquiries .contact-text {
    margin-bottom: 20px;
  }
  #inquiries .tel-btn {
    margin-bottom: 15px;
  }
}
@media (width >= 600px) {
  #inquiries .contact-btn {
    display: flex;
    gap: 15px;
  }
  #inquiries .contact-btn .btn {
    flex: 1;
  }
}

#facility {
  border-top: solid 2px rgba(137, 116, 105, 0.3);
}
#facility .facility-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 35px;
}
@media (width < 741px) {
  #facility .facility-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
#facility .facility-list__item {
  display: flex;
  flex-direction: column;
}
#facility .facility-name {
  font-size: max(24px, min(3vw, 30px));
  font-weight: 500;
  margin: 0 0 15px 0;
}
#facility .facility-photo .img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}
#facility .more-btn {
  font-size: max(16px, min(3vw, 20px));
  border-radius: 6px;
  max-width: 300px;
  width: 100%;
  margin: auto auto 0 auto;
  color: #fff;
}
#facility .saijuen .facility-photo {
  border: solid 6px #FB8EB2;
}
#facility .saijuen .more-btn {
  background: #FB8EB2;
}
#facility .aozora .facility-photo {
  border: solid 6px #81C7EF;
}
#facility .aozora .more-btn {
  background: #81C7EF;
}
#facility .wakaba .facility-photo {
  border: solid 6px #8CC777;
}
#facility .wakaba .more-btn {
  background: #8CC777;
}
#facility .facility-text {
  font-size: max(14px, min(3vw, 18px));
  line-height: 1.6;
  margin-bottom: 30px;
}

#footer .footer-inner {
  background: rgba(248, 205, 182, 0.14);
  padding: 100px 0;
}
@media (width < 768px) {
  #footer .footer-inner {
    padding: 50px 0;
  }
}
@media (width >= 768px) {
  #footer .footer-box {
    display: flex;
  }
  #footer .footer-nav {
    display: flex;
    flex: 1;
    gap: 0 120px;
  }
}
@media (600px <= width < 841px) {
  #footer .footer-box {
    flex-direction: column;
    align-items: center;
    gap: 40px 0;
  }
  #footer .footer-address .site-logo {
    margin: 0 auto 15px auto;
  }
  #footer .footer-address p {
    text-align: center;
  }
  #footer .footer-address .footer-btn {
    justify-content: center;
  }
}
#footer .footer-address {
  max-width: 480px;
  width: 100%;
}
@media (width < 1199px) {
  #footer .footer-nav {
    gap: 0 60px;
  }
  #footer .footer-address {
    max-width: 400px;
  }
}
#footer .site-logo {
  max-width: 200px;
  margin-bottom: 15px;
}
#footer .address,
#footer .tel {
  margin: 0;
}
#footer .footer-btn {
  display: flex;
  gap: 6px;
  padding-top: 15px;
}
#footer .btn.footer-btn__link {
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 30px;
}
#footer .footer-btn__link.corp {
  background: #57453C;
}
#footer .footer-btn__link.contact {
  background: #FB8EB2;
}
#footer .nav-list__item {
  font-size: 14px;
}
#footer .nav-list__item:not(:last-of-type) {
  margin-bottom: 10px;
}
#footer .nav-list__item ul {
  margin-left: 0.8em;
}
#footer .nav-list__link {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #57453C;
}
#footer .nav-list__link::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 7px;
  height: 7px;
  border: 0.1em solid #57453C;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
@media (width < 600px) {
  #footer .nav-list {
    margin-top: 40px;
  }
}
#footer .copyright {
  font-size: 12px;
  background: #57453C;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.bread {
  padding: 15px 0;
  background: #eee;
}
.bread .bread-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bread .bread-list__item {
  font-size: max(12px, min(3vw, 14px));
}
.bread .bread-list__item:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0.4em;
  height: 0.4em;
  border: 2px solid #57453C;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-left: 6px;
}
.bread .bread-list__link {
  color: #57453C;
}

#contents .section-inner {
  padding: 0;
}

.page-heading {
  padding: 100px 0;
  background: #feeaea;
  margin-bottom: 40px;
}
@media (width < 600px) {
  .page-heading {
    padding: 40px 0;
    margin-bottom: 25px;
  }
}

.page-heading__wakaba {
  background: rgba(140, 199, 119, 0.3019607843);
}

.page-heading__aozora {
  background: rgba(129, 199, 239, 0.231372549);
}

.page-title {
  font-size: max(26px, min(6vw, 50px));
  text-align: center;
  color: #57453C;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.page-title__label {
  font-size: max(20px, min(3vw, 40px));
  display: block;
}

.guide-list .guide-list__item {
  display: flex;
  width: 100%;
  gap: 0 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #ccc;
}
@media (width < 600px) {
  .guide-list .guide-list__item {
    flex-direction: column;
  }
}
.guide-list .guide-list__item .guide-name {
  font-size: max(20px, min(3vw, 24px));
  font-weight: 500;
  margin: 0;
}
.guide-list .guide-list__item.saijuen .guide-name {
  color: #FB8EB2;
}
.guide-list .guide-list__item.aozora .guide-name {
  color: #81C7EF;
}
.guide-list .guide-list__item.wakaba .guide-name {
  color: #8CC777;
}
.guide-list .guide-list__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.guide-list .guide-picture {
  max-width: 300px;
  aspect-ratio: 16/9;
}
.guide-list .guide-picture .img {
  display: block;
  height: 100%;
  object-fit: cover;
}
@media (width < 600px) {
  .guide-list .guide-picture {
    max-width: 100%;
  }
}
.guide-list .guide-box {
  flex: 1;
}
@media (width < 600px) {
  .guide-list .guide-box {
    padding-top: 15px;
  }
}
.guide-list .more-btn {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 10px;
  font-size: 16px;
  background-color: #897469;
  color: #fff;
  border-radius: 6px;
  max-width: 180px;
  width: 100%;
  margin: 0 0 0 auto;
}

@media (width <= 750px) {
  #interview-page .section-inner {
    padding-bottom: 0;
  }
}

.slider {
  position: relative;
}

.slick-video {
  width: 100%;
  margin: auto;
  background: #000;
}
.slick-video.slick-current video {
  opacity: 1;
}

.slick-video video,
.slick-video img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.7;
  transition: opacity 0.5s;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.thumbnail {
  margin-top: 50px;
}
@media (width <= 750px) {
  .thumbnail {
    margin-top: 25px;
  }
}
.thumbnail .slick-track {
  display: flex;
  gap: 20px;
}
@media (width <= 750px) {
  .thumbnail .slick-track {
    gap: 10px;
  }
}

.thumbnail-img {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 350px;
  cursor: pointer;
}
.thumbnail-img.slick-current img {
  border: solid 10px #81C7EF;
}
@media (width <= 750px) {
  .thumbnail-img.slick-current img {
    border: solid 5px #81C7EF;
  }
}

.thumbnail-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slick-arrow {
  cursor: pointer;
}

@media (width > 750px) {
  .prev-icon {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 50px;
    height: 50px;
    border: 12px solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(25%) rotate(-135deg);
    position: absolute;
    top: 45%;
    left: 10%;
    z-index: 1;
  }
  .next-icon {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 50px;
    height: 50px;
    border: 12px solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    position: absolute;
    top: 45%;
    right: 10%;
    z-index: 1;
  }
}
.columns2 {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px 40px;
  padding-bottom: 60px;
}
@media (width < 841px) {
  .columns2 {
    display: flex;
    flex-direction: column-reverse;
  }
}
.columns2 .sidebar .sidebar-menu:not(:last-of-type) {
  margin-bottom: 40px;
}
.columns2 .sidebar .sidebar-menu__title {
  font-size: 18px;
  font-weight: 500;
  color: #57453C;
  text-align: center;
  background: #eee;
  padding: 15px;
}
.columns2 .sidebar .sidebar-menu__item {
  font-size: 14px;
  font-weight: 500;
  border-bottom: solid 1px #ccc;
}
.columns2 .sidebar .sidebar-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  text-decoration: none;
  color: #57453C;
}
.columns2 .sidebar .menu-icon .img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}
@media (width < 841px) {
  .columns2 .sidebar {
    padding-top: 40px;
  }
}

.page-contents p {
  font-size: max(14px, min(3vw, 16px));
  line-height: 1.8;
  margin: 0 0 1.5em 0;
}
.page-contents h3 {
  font-size: max(22px, min(3vw, 28px));
  color: #57453C;
  font-weight: 500;
  margin: 40px 0 20px 0;
  padding: 10px 0;
  border-bottom: solid 1px #57453C;
}
.page-contents h4 {
  font-size: max(18px, min(3vw, 20px));
  color: #da5d26;
  margin: 0 0 1em 0;
}
.page-contents h5 {
  font-size: max(16px, min(3vw, 18px));
  border-left: solid 3px #555;
  color: #555;
  padding: 0 0 0 10px;
  margin: 0 0 1em 0;
}
.page-contents ul {
  margin-bottom: 1.5em;
}
.page-contents ul li {
  margin-bottom: 0.5em;
  display: flex;
  font-size: max(14px, min(3vw, 16px));
}
.page-contents ul li::before {
  content: "◆";
  display: inline-block;
  color: #81C7EF;
  margin-right: 0.5em;
}
.page-contents ol {
  margin: 0 0 0 1.5em;
  padding: 0;
}
.page-contents ol li:not(:last-of-type) {
  margin-bottom: 1em;
}
.page-contents .text-link {
  color: #57453C;
}
.page-contents .step-list {
  display: flex;
  gap: 15px;
}
@media (width < 1200px) {
  .page-contents .step-list {
    flex-direction: column;
  }
}
.page-contents .step-list .step-list__item {
  background: #ffefd9;
  padding: 1em;
  border-radius: 6px;
  flex: 1;
}
.page-contents .step-list .step-list__item dt {
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}
.page-contents .step-list .step-list__item dd {
  font-size: max(14px, min(3vw, 16px));
}
.page-contents .step-list .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #57453C;
  align-self: center;
}
@media (width < 1200px) {
  .page-contents .step-list .arrow {
    border-width: 20px 20px 0 20px;
    border-color: #57453C transparent transparent transparent;
  }
}
.page-contents .photo-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 0 0 40px 0;
}
.page-contents .photo-box .photo-item {
  text-align: center;
}
@media (width < 600px) {
  .page-contents .photo-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-contents .floor-item {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  align-items: center;
  gap: 15px;
}
@media (width < 600px) {
  .page-contents .floor-item {
    grid-template-columns: 45px 1fr;
    gap: 15px;
  }
}
.page-contents .floor-num {
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  background: #57453C;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 999px;
}
@media (width < 600px) {
  .page-contents .floor-num {
    width: 45px;
    height: 45px;
  }
}
.page-contents .floor-text {
  font-size: max(14px, min(3vw, 16px));
}
@media (width < 600px) {
  .page-contents .floor-map {
    grid-area: 2/1/3/3;
    text-align: center;
  }
}
.page-contents .map img {
  display: block;
  margin: 0 auto;
}
@media (width > 600px) {
  .page-contents .map {
    background: #eee;
    padding: 20px;
  }
}

.figure-list .figure {
  margin: 0;
  padding: 0;
}
@media (width > 1199px) {
  .figure-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.figure-list .figure-item {
  border: solid 5px #eee;
}
.figure-list .figure-item h4 {
  font-size: max(18px, min(3vw, 24px));
  margin: 0;
  padding: 15px 15px 0 15px;
  text-align: center;
  font-weight: 500;
}
@media (width <= 750px) {
  .figure-list .figure-item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.notes-box {
  background: rgba(255, 7, 7, 0.0509803922);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 40px;
}
.notes-box .notes-inner {
  max-width: 767px;
  margin: 0 auto;
}
.notes-box .notes-title {
  font-size: max(16px, min(3vw, 20px));
  text-align: center;
  font-weight: 500;
  margin: 0 0 10px 0;
}
.notes-box .notes-subtitle {
  font-size: max(20px, min(3vw, 26px));
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 20px 0;
}
@media (width <= 440px) {
  .notes-box .notes-subtitle span {
    display: block;
  }
}
.notes-box h3 {
  margin: 0 0 15px 0;
  padding-top: 0;
  font-size: max(16px, min(3vw, 20px));
}
.notes-box ol {
  margin: 0 0 2em 1.5em;
  padding: 0;
}
.notes-box ol li {
  margin-bottom: 10px;
  font-size: 14px;
}
.notes-box .notes-name {
  text-align: right;
  margin: 0;
}

.voice-list .voice-item {
  background: #ffefd9;
  padding: 1em;
  border-radius: 6px;
}
.voice-list .voice-item:not(:last-of-type) {
  margin-bottom: 15px;
}
.voice-list .voice-text {
  margin: 0;
  line-height: 2;
}
.voice-list .voice-text .line {
  background: linear-gradient(transparent 90%, #dcac81 90%);
}

.recruit-tbl,
.page-tbl {
  display: grid;
  grid-template-columns: 8em 1fr;
}
.recruit-tbl:not(:last-of-type),
.page-tbl:not(:last-of-type) {
  margin-bottom: 25px;
}
@media (width <= 599px) {
  .recruit-tbl,
  .page-tbl {
    grid-template-columns: 1fr;
  }
}
.recruit-tbl .tbl-th,
.recruit-tbl .tbl-td,
.page-tbl .tbl-th,
.page-tbl .tbl-td {
  padding: 15px;
  border-bottom: solid 1px #ccc;
}
.recruit-tbl .tbl-th,
.page-tbl .tbl-th {
  font-weight: 500;
}
@media (width <= 599px) {
  .recruit-tbl .tbl-th,
  .page-tbl .tbl-th {
    border: 0;
    padding-bottom: 0;
  }
}
.recruit-tbl .tbl-td,
.page-tbl .tbl-td {
  font-size: 14px;
}
.recruit-tbl .tbl-box,
.page-tbl .tbl-box {
  display: grid;
  grid-template-columns: 4em 1fr;
  gap: 6px 5px;
  margin: 10px 0;
  padding: 1em;
  background: #fef8f5;
}
.recruit-tbl ul,
.page-tbl ul {
  margin: 0;
}
.recruit-tbl ul li,
.page-tbl ul li {
  margin-bottom: 8px;
  display: flex;
  gap: 5px;
  font-size: 14px;
}
.recruit-tbl ul li:not(:last-of-type),
.page-tbl ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.recruit-tbl ul li div,
.page-tbl ul li div {
  flex: 1;
}
.recruit-tbl ul li .ul-label,
.page-tbl ul li .ul-label {
  display: inline-block;
  width: 15em;
}
@media (width <= 599px) {
  .recruit-tbl ul li .ul-label,
  .page-tbl ul li .ul-label {
    width: 100%;
  }
}
@media (width <= 599px) {
  .recruit-tbl ul li .ul-text,
  .page-tbl ul li .ul-text {
    display: block;
    width: 100%;
    text-align: right;
  }
}
.recruit-tbl ol,
.page-tbl ol {
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
  counter-reset: counter;
}
.recruit-tbl ol li,
.page-tbl ol li {
  margin-bottom: 8px;
  display: flex;
  gap: 5px;
}
.recruit-tbl ol li::before,
.page-tbl ol li::before {
  content: "(" counter(counter) ")";
  counter-increment: counter;
  display: inline-block;
}
.recruit-tbl ol li span,
.page-tbl ol li span {
  display: inline-block;
  width: 10em;
}

.page-tbl {
  grid-template-columns: 12em 1fr;
}
@media (width <= 599px) {
  .page-tbl {
    grid-template-columns: 1fr;
  }
}

.privacy-box dt {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.privacy-box dd {
  margin-bottom: 1.5em;
  font-size: 14px;
}

.page-contents h4.access-title {
  font-size: max(16px, min(3vw, 16px));
  margin: 0;
}

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

.iframe-box {
  width: 100%;
  aspect-ratio: 16/9;
}
.iframe-box iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.form_tbl {
  display: grid;
  grid-template-columns: 14em 1fr;
}
@media (width <= 599px) {
  .form_tbl {
    grid-template-columns: repeat(1, 1fr);
  }
}
.form_tbl dt, .form_tbl dd {
  padding: 10px 0;
}
.form_tbl dt {
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  vertical-align: text-top;
  padding-top: 1.5em;
}
.form_tbl dt .must {
  background: #e84545;
  color: #fff;
  display: inline-block;
  padding: 2px 4px;
  margin-left: 6px;
  font-size: 12px;
}
@media (width <= 599px) {
  .form_tbl dt {
    padding: 0;
  }
}
.form_tbl dd input, .form_tbl dd textarea, .form_tbl dd select {
  font-size: 16px;
  -webkit-appearance: none;
  border: solid 1px #ccc;
  padding: 10px 10px;
  width: 100%;
}
.form_tbl dd li span {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  font-size: 14px;
}
.form_tbl dd .error {
  font-size: 14px;
  color: #ff0000;
}
@media (width <= 599px) {
  .form_tbl dd {
    padding-bottom: 1.5em;
  }
}
.form_tbl .postal-form {
  display: flex;
  gap: 5px;
  align-items: center;
}
@media (width > 599px) {
  .form_tbl .postal-form #postal {
    width: 8em;
  }
}

button, [type=submit], [type=button] {
  -webkit-appearance: none;
  border: 0;
}

.confirmation_div {
  padding: 40px 0;
}
.confirmation_div [type=submit], .confirmation_div [type=button] {
  max-width: 300px;
  width: 100%;
  margin: 0;
}
@media (width < 600px) {
  .confirmation_div [type=submit], .confirmation_div [type=button] {
    margin: 0 auto;
  }
  .confirmation_div [type=button] {
    margin-bottom: 20px;
  }
}
@media (width > 599px) {
  .confirmation_div {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}

.retiree-info-section {
  border-top: solid 2px rgba(137, 116, 105, 0.3);
  padding: 40px 0 60px 0;
}
.retiree-info-section .retiree-info__item-title {
  margin: 0;
}
.retiree-info-section .retiree-info {
  max-width: 1100px;
  margin-inline: auto;
}
.retiree-info-section .retiree-info__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  padding: 2em 0 0 0;
}
@media (max-width: 840px) {
  .retiree-info-section .retiree-info__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 460px;
    margin-inline: auto;
  }
}
.retiree-info-section .retiree-info__item-title {
  font-size: max(16px, min(3vw, 20px));
  font-weight: 500;
  text-align: center;
  margin: 0 0 0.5em 0;
}
.retiree-info-section .retiree-info__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: solid 2px #57453c;
  font-size: max(16px, min(2vw, 20px));
  font-weight: 500;
  text-decoration: none;
  color: #57453c;
  padding: 1em 1em;
}
@media (max-width: 599px) {
  .retiree-info-section .retiree-info__link {
    font-size: 4vw;
  }
}
.retiree-info-section .pdf-icon {
  display: block;
  min-width: 40px;
  height: 40px;
  background: url(../images/icon-pdf.svg) no-repeat center/contain;
}
@media (max-width: 599px) {
  .retiree-info-section .pdf-icon {
    min-width: 30px;
    height: 30px;
  }
}