html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  color: #333;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
}

li {
  line-height: 32px;
}

i {
  font-size: 16px;
}

/* クラス */

.fade-in {
  visibility: hidden;
  opacity: 0;
}

.from-left {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
}

.from-top {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-32px);
}

.to-bottom {
  visibility: hidden;
  opacity: 0;
  transform: translateY(64px);
}

.active {
  visibility: visible;
  opacity: 1;
  transform: translate(0);
  transform: scale(1);
}

.off {
  display: none;
}

.fixed {
  overflow: hidden;
}

.shadow {
  position: absolute;
  top: 20%;
  left: 10%;
  z-index: -8;
  width: 80%;
  height: 80%;
  box-shadow: 0 0 96px rgba(0, 0, 0, 0.48);
}

.clickable {
  cursor: pointer;
}

.unclickable {
  pointer-events: none;
}

.underLine {
  text-decoration: underline;
}

.no-break {
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

.pc {
  display: none;
}

.opened {
  height: 128px !important;
}

.parallax {
  width: 100%;
  position: absolute;
  left: 0;
  transform: translateY(0);
  will-change: transform;
}

/* ドロワー */

#drawer {
  position: fixed;
  top: 0;
  z-index: 16;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

/* クローズボタン */

#btn-close {
  position: relative;
  width: 64px;
  height: 64px;
  cursor: pointer;
  pointer-events: auto;
}

#btn-close span {
  display: block;
  position: absolute;
  left: 20px;
  width: 24px;
  height: 2px;
  background-color: #81b441;
}

#btn-close span:nth-child(1) {
  top: 31px;
  transform: rotate(-45deg);
}

#btn-close span:nth-child(2) {
  top: 31px;
  transform: rotate(45deg);
}

/* ドロワーメニュー */

.drawer-menu {
  width: 100%;
  height: 100%;
  padding: 32px;
  overflow: auto;
  pointer-events: auto;
}

.drawer-menu .sub-title {
  position: relative;
}

.drawer-menu .sub-title::after {
  position: absolute;
  top: 32px;
  left: 114px;
  width: 142px;
  height: 1px;
  background-color: #81b441;
  content: "";
}

.drawer-language {
  display: flex;
  justify-content: space-between;
  width: 104px;
}

.drawer-language li {
  width: 32px;
  text-align: center;
}

.language-bar {
  width: 64px;
  height: 1px;
  background-color: #81b441;
  transition: 0.2s ease-out;
  transition-delay: 0.1s;
}

.language-space {
  width: 100%;
  height: 128px;
}

/* ドロワー背景 */

#drawerBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  transition: 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

/* ヘッダー */

#header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100%;
  height: 64px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  transition: 0.2s ease-out;
}

.header-wrapper_01 {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/*オープンボタン*/

#btn-open {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  cursor: pointer;
}

#btn-open span {
  position: absolute;
  display: block;
  width: 2px;
  background-color: #81b441;
  transition: 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

#btn-open span:nth-child(1) {
  top: 27px;
  left: 24px;
  height: 14px;
  transition-delay: 0.1s;
}

#btn-open span:nth-child(2) {
  top: 21px;
  left: 31px;
  height: 20px;
}

#btn-open span:nth-child(3) {
  top: 24px;
  left: 38px;
  height: 17px;
  transition-delay: 0.05s;
}

/* ロゴ */

.logo {
  width: 96px;
  height: 64px;
  margin: 0 auto;
  background-image: url(../img/common/logo_01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo a {
  display: block;
  width: 100%;
  height: 100%;
}

/* グローバルメニュー */

.global {
  position: absolute;
  right: 0;
  display: flex;
}

.global li {
  line-height: 64px;
}

.global a {
  display: block;
  line-height: 64px;
  margin: 0 12px;
}

.global-menu {
  display: flex;
  position: relative;
  padding: 0 12px;
}

.global-reservation {
  display: none;
  position: relative;
  padding: 0 12px;
}

#btn-language {
  position: relative;
  width: 64px;
  height: 64px;
  background-image: url(../img/common/language.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30%;
  cursor: pointer;
}

#btn-language::before,
.global-reservation::before {
  position: absolute;
  top: 20px;
  left: 0;
  content: "";
  background-color: #333;
  width: 1px;
  height: 24px;
}

.header-wrapper_02 {
  display: flex;
  height: 64px;
}

.global-language-wrapper {
  position: relative;
  padding: 8px 0 24px;
  margin: 0 auto;
}

.global-language {
  display: flex;
  justify-content: space-between;
  width: 256px;
}

.global-language li {
  width: 64px;
  line-height: 32px;
  text-align: center;
}

.global-language-wrapper .language-bar {
  position: absolute;
  top: 40px;
}

/* トップ */

#top {
  width: 100%;
  height: 100%;
}

/* スワイパー */

.mv01 .swiper {
  width: 100%;
  height: 100%;
}

.mv01 .swiper-pagination {
  position: absolute;
  z-index: 2;
  top: 64px;
  bottom: 0;
  left: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
}

.mv01 .swiper-pagination-bullet {
  display: block;
  width: 16px;
  height: 2px;
  margin-left: 0 !important;
  border-radius: 0;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #fff;
}

.mv01 .swiper-pagination-bullet:not(:first-child) {
  margin-top: 14px;
}

.mv01 .swiper-pagination-bullet-active {
  width: 32px;
  background-color: #81b441;
}

.mv01 .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}

.mv01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.mv01 .slide {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.mv01 .slide-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mv01 .slide-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 6s 1s linear;
  transform: translateX(-1.5%) scale(1.2);
}

.mv01 .slide-media-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 6s 1s linear;
  transform: translateX(-1.5%) scale(1.2);
}

.top_01 {
  background-image: url(../img/top/top_01.webp);
}

.top_02 {
  background-image: url(../img/top/top_02.webp);
}

.top_03 {
  background-image: url(../img/top/top_03.webp);
}

.top_04 {
  background-image: url(../img/top/top_04.webp);
}

.top_05 {
  background-image: url(../img/top/top_05.webp);
}

.top_06 {
  background-image: url(../img/top/top_06.webp);
}

.mv01 .slide-title,
.mv01 .slide-text,
.mv01 .slide-link {
  -webkit-animation: 3s cubic-bezier(0.2, 1, 0.2, 1) both;
  animation: 3s cubic-bezier(0.2, 1, 0.2, 1) both;
  opacity: 0;
}

.mv01 .slide-title {
  color: #81b441;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.mv01 .slide-text {
  color: #fff;
  margin: 32px auto 32px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.96);
}

.mv01 .slide-link {
  color: #fff;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.96);
}

.mv01 .slide-button,
.mv02 .slide-button {
  letter-spacing: 0.1em;
  display: inline-block;
}

.mv01 .slide-button::before,
.mv02 .slide-button::before {
  display: inline-block;
  width: 64px;
  height: 1px;
  margin: -2px 16px 0 0;
  content: "";
  vertical-align: middle;
  background-color: #81b441;
}

.mv01 .swiper-slide[class*="-active"] .slide-media-img {
  transition-delay: 0s;
  transform: translateX(1.5%) scale(1.05);
}

.mv01 .swiper-slide.anm-started .slide-title,
.mv01 .swiper-slide.anm-started .slide-text,
.mv01 .swiper-slide.anm-started .slide-link {
  -webkit-animation-name: mv01-fadeIn;
  animation-name: mv01-fadeIn;
}

.mv01 .swiper-slide.anm-finished .slide-title,
.mv01 .swiper-slide.anm-finished .slide-text,
.mv01 .swiper-slide.anm-finished .slide-link {
  -webkit-animation-name: mv01-fadeOut;
  animation-name: mv01-fadeOut;
}

@-webkit-keyframes mv01-fadeIn {
  0% {
    transform: translateY(96px);
    opacity: 0;
  }

  100% {
    transform: translateY(32px);
    opacity: 1;
  }
}

@keyframes mv01-fadeIn {
  0% {
    transform: translateY(96px);
    opacity: 0;
  }

  100% {
    transform: translateY(32px);
    opacity: 1;
  }
}

@-webkit-keyframes mv01-fadeOut {
  0% {
    transform: translateY(32px);
    opacity: 1;
  }

  100% {
    transform: translateY(-32px);
    opacity: 0;
  }
}

@keyframes mv01-fadeOut {
  0% {
    transform: translateY(32px);
    opacity: 1;
  }

  100% {
    transform: translateY(-32px);
    opacity: 0;
  }
}

/* メインコンテンツ */

.wrapper {
  width: 100%;
}

.article-title-center {
  width: 100%;
  line-height: 160px;
  text-align: center;
}

.article-title-side {
  line-height: 96px;
}

.sub-title {
  line-height: 64px;
}

/* ニュース */

#news {
  width: 100%;
  padding: 64px 0;
}

.heading {
  padding: 8px 16px;
  font-weight: 600;
}

.news-contents {
  padding: 0 16px;
  font-size: 12px;
}

/* スワイパー */

.mv02 .swiper {
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mv02 .swiper-slide {
  width: 320px;
}

.mv02 .slide {
  position: relative;
  width: 320px;
  height: 480px;
  background-color: #fff;
}

.mv02 .slide-media {
  width: 320px;
  height: 320px;
}

.mv02 .slide-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mv02 .slide-media-img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news_01 {
  background-image: url(../img/news/news_01.webp);
}

.news_02 {
  background-image: url(../img/news/news_02.webp);
}

.news_03 {
  background-image: url(../img/news/news_03.webp);
}

.mv02 .swiper-controller {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: space-around;
  width: 960px;
  height: 160px;
  margin: 0 auto;
}

.mv02 .swiper-pagination {
  position: relative;
  display: flex;
  justify-content: flex-start;
  bottom: 0;
  margin: 0 auto 0 0;
}

.mv02 .swiper-pagination-bullet {
  width: 16px;
  height: 3px;
  border-radius: 0;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #333;
}

.mv02 .swiper-pagination-bullet-active {
  width: 40px;
  background-color: #81b441;
}

.mv02 .swiper-button-prev,
.mv02 .swiper-button-next {
  position: relative;
  flex-shrink: 0;
  top: 0;
  display: grid;
  place-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.mv02 .swiper-button-prev::before,
.mv02 .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.05), -8px -8px 12px #fff;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
  transform: scale(1.2);
}

.mv02 .swiper-button-prev::after,
.mv02 .swiper-button-next::after {
  width: 12px;
  height: 12px;
  content: "";
  border: solid #81b441;
  border-width: 3px 3px 0 0;
}

.mv02 .swiper-button-prev::after {
  margin-left: 4px;
  transform: rotate(-135deg);
}

.mv02 .swiper-button-next::after {
  margin-right: 4px;
  transform: rotate(45deg);
}

.mv02 .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* フィロゾフィー */

#philosophy {
  width: 100%;
  height: 100svh;
  min-height: 768px;
  background-image: url(../img/philosophy/philosophy_01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.philosophy-contents {
  position: relative;
  width: 45%;
  min-width: 265px;
  top: 96px;
  left: 10%;
  color: #fff;
}

.philosophy-text {
  font-size: 16px;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.96);
}

/* リクルート */

#recruit {
  width: 100%;
  /* padding: 64px 0 96px; */
  padding-top: 64px;
}

.recruit-wrapper {
  display: flex;
  flex-wrap: wrap;
  /* width: 960px; */
  width: 100%;
  max-width: 832px;
  margin: 0 auto;
}

.recruit-contents {
  position: relative;
  width: 320px;
  margin: 0 auto 96px;
}

.recruit-wrapper > .recruit-contents:nth-child(2):last-child {
  /* margin: 0 auto; */
}

.recruit-media {
  position: relative;
  width: 320px;
  height: 320px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.recruit-title {
  line-height: 96px;
}

.recruit_01 {
  background-image: url(../img/recruit/recruit_01.webp);
}

.recruit_02 {
  background-image: url(../img/recruit/recruit_02.webp);
}

/* コンタクト */

#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-image: url(../img/contact/contact_01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 960px;
  height: 480px;
  margin-top: 64px;
  border-radius: 16px;
  background-color: #fff;
  overflow: hidden;
}

.contact-contents {
  width: 256px;
  padding: 0 32px;
}

.contact-map {
  width: 640px;
  height: 480px;
}

/* フッター */

footer {
  width: 100%;
  background: #f8f8f8;
}

.footer-wrapper {
  width: 960px;
  margin: 0 auto;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 96px;
}

.footer-logo {
  width: 96px;
  height: 64px;
  padding: 0 32px;
  background-image: url(../img/common/logo_01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-title {
  padding: 36px 0 24px;
}

.footer-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.footer-container::before {
  position: absolute;
  content: "";
  background-color: #ccc;
  top: 0;
  width: 100%;
  height: 1px;
}

.footer-container::after {
  position: absolute;
  content: "";
  background-color: #ccc;
  bottom: 0;
  width: 100%;
  height: 1px;
}

.footer-contents {
  width: 256px;
  padding: 32px;
}

.footer-saryo {
  position: relative;
  width: 256px;
  padding: 32px;
}

.footer-saryo::before {
  position: absolute;
  content: "";
  background-color: #ccc;
  top: 32px;
  left: 0;
  width: 1px;
  height: 256px;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
}

.copyright-wrapper {
  font-size: 10px;
  text-align: center;
  line-height: 24px;
}

/* メディアクリエ */

@media (max-width: 1023px) {
  #btn-open {
    display: block;
  }

  .logo {
    margin: 0 auto;
  }

  .global-menu {
    display: none;
  }

  #btn-language::before {
    display: none;
  }

  .mv01 .slide-media-img {
    transform: translateX(-3%) scale(1.5);
  }

  .mv01 .slide-title {
    font-size: 48px;
  }

  .mv01 .pc {
    display: block;
  }

  .mv01 .mobile {
    display: none;
  }

  .mv02 .swiper-controller {
    width: calc(100% - 64px);
  }

  #contact {
    height: 1088px;
  }

  .contact-wrapper {
    width: calc(100% - 64px);
    height: 896px;
    margin: 0;
  }

  .contact-contents {
    height: 384px;
    padding: 0 0 32px 32px;
  }

  .contact-map {
    width: 100%;
  }

  .footer-wrapper {
    width: calc(100% - 64px);
  }

  .footer-contents {
    width: calc(50% - 64px);
    min-width: 256px;
  }

  .footer-saryo {
    width: 100%;
  }

  .footer-saryo::before {
    top: 0;
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 703px) {
  .slide-shift {
    background-position: 71.5% !important;
  }

  .footer-saryo {
    width: calc(100% - 64px);
  }

  .footer-contents:nth-child(2) {
    margin-top: -32px;
  }
}

@media (max-width: 351px) {
  .footer-contents {
    padding-right: calc(100% - 320px);
  }

  .footer-saryo {
    width: calc(100% - 32px);
  }
}
