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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul[role=list],
ol[role=list],
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration: none;
}

img,
picture {
  max-width: 100%;
}

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
button {
  margin: 0;
  padding: 0;
  padding-inline: 0;
}

/*********************************
	LAYOUT
*********************************/
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
  background: #1c1c1c;
}

.inner {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}

a {
  color: #fff;
  text-decoration: unset;
}
a:hover {
  opacity: 0.8;
}

h1,
h2,
h3,
h4 {
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
}

.chapter_title {
  font-size: 5rem;
  font-weight: 500;
  padding-bottom: 80px;
  line-height: 1.2;
  letter-spacing: 3px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 480px) {
  .chapter_title {
    font-size: 3.5rem;
    padding-bottom: 30px;
  }
}
.chapter_title .small {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 20px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  line-height: 2;
}
.chapter_title:after {
  content: url(../img/heading_ornament.png);
  display: block;
}

.lead {
  font-size: 1.5rem;
  line-height: 2;
}

.header {
  overflow-x: hidden;
  position: relative;
}
.header__wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 60px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header__wrap-left {
  flex-basis: auto;
}
.header__wrap-left.show {
  text-shadow: 0 0 10px #000;
}
.header__wrap-right {
  flex-basis: auto;
}
@media screen and (max-width: 1024px) {
  .header__wrap.pc {
    display: none;
  }
}
.header__link {
  display: flex;
  gap: 50px;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .header__link {
    flex-direction: column;
    padding: 0 10px 20px;
    gap: 20px;
  }
}
.header__link-menu {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__link-menu:not(:last-child) {
    border-bottom: 1px solid;
  }
}
.header__link-menu:after {
  content: "/";
  position: absolute;
  right: -25px;
  top: 3px;
}
@media screen and (max-width: 1024px) {
  .header__link-menu:after {
    content: none;
  }
}
.header__link-menu:last-of-type::after {
  content: none;
}
.header__link-menu--link {
  font-size: 1.4rem;
  font-family: "Libre Baskerville", serif;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .header__link-menu--link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
  }
}
.header__link-menu--link .jp {
  display: block;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.1rem;
}
.header__contact {
  background: linear-gradient(rgba(80, 4, 207, 0.8), rgba(130, 4, 207, 0.8));
  text-align: center;
  padding: 15px 20px;
  border-radius: 0 0 3px 3px;
}
.header__contact-title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.6rem;
}
.header__contact-adrs {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.5rem;
}
.header__menubtn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__menubtn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    width: 60px;
    height: 60px;
    padding: 10px;
  }
  .header__menubtn .border {
    display: block;
    width: 40px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
    position: relative;
  }
  .header__menubtn.show .border {
    transform: rotate(20deg);
  }
  .header__menubtn.show .border:last-of-type {
    transform: rotate(-20deg);
    top: -12px;
  }
}
.header__sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__sp {
    display: block;
    position: fixed;
    top: -100%;
    background: rgba(28, 28, 28, 0.9411764706);
    z-index: 3;
    width: 100%;
    padding: 20px;
    height: 100%;
    transition: all 0.3s;
  }
  .header__sp.show {
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .header__sp .header__contact-tel {
    display: block;
    text-align: center;
  }
  .header__sp .header__contact-tel .title {
    font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  }
}

.mv {
  position: relative;
  height: 100svh;
}
.mv__title {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .mv__title {
    padding: 0 10%;
  }
}
.mv__title-catch {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
.mv__slider.swiper-container {
  position: relative;
  height: 100%;
}
.mv__slider.swiper-container .swiper-slide {
  background-size: cover;
  background-position: center center;
}
.mv__slider.swiper-container .swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
}
.mv__slider.swiper-container .slide-1 {
  background-image: url("../img/main_01_pc.png");
}
.mv__slider.swiper-container .slide-2 {
  background-image: url("../img/main_02_pc.jpg");
}
.mv__slider.swiper-container .slide-3 {
  background-image: url("../img/main_03_pc.jpg");
}
@media only screen and (max-width: 480px) {
  .mv__slider.swiper-container .slide-1 {
    background-image: url("../img/main_01_sp.jpg");
  }
  .mv__slider.swiper-container .slide-2 {
    background-image: url("../img/main_02_sp.jpg");
  }
  .mv__slider.swiper-container .slide-3 {
    background-image: url("../img/main_03_sp.jpg");
  }
}
.mv__h1 {
  position: absolute;
  bottom: 60px;
  right: 60px;
  font-size: 1.4rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  opacity: 0.6;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .mv__h1 {
    right: 0;
    left: 0;
    bottom: 100px;
    margin: auto;
    text-align: center;
  }
}

.sp_fixed {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp_fixed {
    display: flex;
    position: fixed;
    z-index: 2;
    bottom: 0;
  }
  .sp_fixed > section a {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 5px 15px;
  }
  .sp_fixed__tel {
    background: rgba(80, 0, 207, 0.8);
  }
  .sp_fixed__map {
    background: rgba(130, 4, 207, 0.9);
  }
}

.message {
  padding-top: 100px;
}
@media screen and (max-width: 480px) {
  .message__intro {
    padding: 0 20px;
  }
}
.message__intro .chapter_title {
  padding-bottom: 40px;
}
.message__intro-lead {
  max-width: 650px;
  margin: 0 auto;
}
.message__intro-lead:first-of-type {
  margin-bottom: 1em;
}
.message__intro-lead:last-of-type {
  margin-bottom: 40px;
}
.message__intro-img {
  margin: 0 auto 150px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .message__intro-img {
    margin: 0 calc(50% - 50vw) 80px;
    width: 100vw;
  }
  .message__intro-img img {
    width: 100%;
  }
}
.message__slider {
  overflow: hidden;
}
.message__slider .swiper-wrapper {
  transition-timing-function: linear;
}
.message__slider .swiper-slide {
  aspect-ratio: 4/3;
  margin-right: 1em;
  overflow: hidden;
}
.message__slider .swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.message__feature {
  background: url(../img/feature_bg.jpg);
  background-size: cover;
  background-position: bottom center;
  padding: 250px 0 180px;
}
@media screen and (max-width: 480px) {
  .message__feature {
    padding: 100px 0;
  }
}
.message__feature-wrap {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
}
.message__feature-wrap:first-of-type {
  margin-bottom: 120px;
}
@media screen and (max-width: 480px) {
  .message__feature-wrap:first-of-type {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .message__feature-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .message__feature-wrap:last-of-type {
    flex-direction: column-reverse;
  }
}
.message__feature-img {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .message__feature-img {
    width: 90%;
  }
}
.message__feature-info {
  width: 40%;
  padding: 40px;
  border: 1px solid #525252;
  background: rgba(28, 28, 28, 0.4901960784);
}
@media screen and (max-width: 1024px) {
  .message__feature-info {
    margin: 0 auto;
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .message__feature-info {
    padding: 30px 20px;
  }
}
.message__feature-info--title {
  font-size: 4.2rem;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .message__feature-info--title {
    font-size: 2.5rem;
  }
}
.message__feature-info--title .jp {
  font-size: 1.8rem;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  .message__feature-info--title .jp {
    font-size: 1.6rem;
  }
}

.about {
  padding: 150px 0;
  background: url(../img/about_bg.jpg);
  background-size: cover;
  background-position: top;
}
@media screen and (max-width: 480px) {
  .about {
    padding: 100px 20px;
  }
}
.about__info {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .about__info {
    flex-direction: column;
    align-items: center;
  }
}
.about__info-table {
  text-align: left;
}
.about__info-table th {
  padding-right: 1.5em;
}
@media screen and (max-width: 480px) {
  .about__info-table th {
    display: block;
    width: 100%;
    padding: 1em 0 0.5em;
  }
  .about__info-table td {
    display: block;
    width: 100%;
    border-bottom: 1px solid #525252;
    padding-bottom: 1em;
  }
}
.about__tel {
  gap: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .about__tel {
    flex-direction: column;
    align-items: center;
  }
}
.about__tel-logo {
  max-width: 200px;
}
.about__tel-telnum {
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
}
.about__pay {
  text-align: center;
}
.about__pay .chapter_title {
  padding-bottom: 40px;
}
.about__pay-wrap {
  width: 100%;
  max-width: 500px;
  display: inline-block;
  border: 1px solid #525252;
  padding: 60px;
}

#maps {
  width: 100%;
  height: 450px;
}

.recruit {
  background: url(../img/recruit_bg.jpg);
  background-size: cover;
  background-position: bottom;
  padding: 150px 20px;
}
@media screen and (max-width: 480px) {
  .recruit {
    padding: 100px 20px;
  }
}
.recruit .chapter_title {
  padding-bottom: 80px;
}
.recruit__lead {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .recruit__lead {
    text-align: left;
  }
}
.recruit__btn {
  background-image: url(../img/recruit_banner_bg_pc.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 930px;
  margin: 0 auto;
  padding: 70px 0;
  outline: 1px solid #525252;
  outline-offset: 15px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .recruit__btn {
    width: 90%;
    text-align: center;
    padding: 70px 20px;
  }
}
@media screen and (max-width: 480px) {
  .recruit__btn {
    background-image: url(../img/recruit_banner_bg_sp.jpg);
  }
}
.recruit__btn:after {
  content: "";
  border: 10px solid #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.recruit__btn-title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .recruit__btn-title {
    font-size: 2.5rem;
  }
}
.recruit__btn-lead {
  margin-bottom: 10px;
}

.gallery {
  padding-bottom: 100px;
  border-bottom: 1px solid #525252;
}
.gallery__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .gallery__wrap {
    max-width: 510px;
  }
}
@media screen and (max-width: 480px) {
  .gallery__wrap {
    max-width: unset;
    padding: 0 30px;
  }
}
.gallery__wrap-img {
  width: calc(25% - 5px);
  aspect-ratio: 1/1;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .gallery__wrap-img {
    width: calc(50% - 5px);
  }
}
.gallery__wrap-img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer {
  padding: 70px 0 50px;
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 50px 0 70px;
  }
}
.footer__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .footer__info {
    flex-direction: column;
    padding: 0 30px;
    gap: 30px;
  }
}
.footer__info-logo {
  width: 160px;
}
.footer__info-tel_title {
  font-size: 1.3rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
}
@media screen and (max-width: 480px) {
  .footer__info-tel_title {
    display: none;
  }
}
.footer__info-tel {
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .footer__info-tel {
    display: none;
  }
}
.footer__info-table {
  text-align: left;
}
.footer__info-table th {
  padding-right: 1.5em;
}
.footer__copy {
  color: #525252;
  font-size: 1.2rem;
  text-align: center;
}

.pc_hide {
  display: none !important;
}

@media screen and (max-width: 480px) {
  .pc_hide {
    display: block !important;
  }
  .sp_hide {
    display: none !important;
  }
}/*# sourceMappingURL=common.css.map */