@charset "UTF-8";
html {
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
}

body {
  color: #000;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

li {
  list-style: none;
}

section {
  padding-top: 80px;
}

.section-title {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 16px;
}

.sub-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1;
}

.wrapper {
  width: 100%;
  max-width: 1046px;
  margin: 0 auto;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl, figure) {
  margin: 0;
  padding: 0;
}

.header {
  position: fixed;
  width: 100%;
  height: 50px;
  background: #fff;
  z-index: 1000;
}
.header .container {
  max-width: 1294px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header .logo img {
  display: block;
  height: 23.28px;
  width: auto;
}
.header .nav-menu ul {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .nav-menu a {
  font-size: 18px;
  font-weight: 500;
  font-family: "El Messiri", sans-serif;
  transition: color 0.3s;
}
.header .nav-menu a:hover {
  color: #007bff;
}
.header .nav-sns {
  display: flex;
  gap: 24px;
}
.header .nav-sns a {
  font-family: "roboto";
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0;
  transition: color 0.3s;
}
.header .nav-sns a:hover {
  color: #007bff;
}

.main-visual {
  position: relative;
  height: 603px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.main-visual .mv-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.main-visual .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.main-visual .slide.active {
  opacity: 1;
}
.main-visual .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual .mv-inner {
  position: relative;
  z-index: 2;
  max-width: 425px;
}
.main-visual .mv-inner .mv-title {
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  padding: 13px 0 8px;
}
.main-visual .mv-inner .mv-title img {
  display: block;
  width: 388px;
  height: auto;
}
.main-visual .mv-inner .mv-title::before, .main-visual .mv-inner .mv-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #fff;
}
.main-visual .mv-inner .mv-title::before {
  top: 0;
}
.main-visual .mv-inner .mv-title::after {
  bottom: 0;
}
.main-visual .mv-inner .mv-sub {
  font-size: 31.81px;
  line-height: 41.2px;
  color: #F7F7F7;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}
.main-visual .mv-inner .mv-sub span {
  font-size: 27.57px;
}
.main-visual .mv-label {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1;
  border-left: 1px solid #fff;
  color: #fff;
  z-index: 2;
}
.main-visual .mv-dots {
  position: absolute;
  right: 23px;
  top: 516px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}
.main-visual .mv-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.main-visual .mv-dots .dot.active {
  background: #fff;
  transform: scale(1.3);
}

.about {
  padding-top: 80px;
  /* 1366px以下では5枚だけにして -100% 動かす */
}
.about .about-head {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  font-family: "El Messiri", sans-serif;
  margin-bottom: 72.77px;
}
.about .about-head .aub-title {
  margin-bottom: 32px;
}
.about .about-head .about-text {
  font-size: 17px;
  line-height: 1.7;
  color: #111;
}
.about .about-slider {
  --gap: 40px;
  --duration: 36s;
  overflow: hidden;
  position: relative;
}
.about .about-slider .slider-item {
  display: flex;
  gap: var(--gap);
  width: -moz-max-content;
  width: max-content;
  animation: marquee var(--duration) linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 1366px) {
  .about .about-slider .slider-item {
    animation: marquee-small var(--duration) linear infinite;
  }
  @keyframes marquee-small {
    to {
      transform: translateX(-100%);
    }
  }
}

.item {
  width: 283px;
  height: 392px;
  overflow: hidden;
  flex: 0 0 auto;
}
.item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.item:nth-child(5n+1) {
  transform: translateY(-37px);
}

.item:nth-child(5n+2) {
  transform: translateY(37px);
}

.item:nth-child(5n+3) {
  transform: translateY(-37px);
}

.item:nth-child(5n+4) {
  transform: translateY(37px);
}

.item:nth-child(5n+5) {
  transform: translateY(-37px);
}

.item:nth-child(10n+6) {
  transform: translateY(37px);
}

.item:nth-child(10n+7) {
  transform: translateY(-37px);
}

.item:nth-child(10n+8) {
  transform: translateY(37px);
}

.item:nth-child(10n+9) {
  transform: translateY(-37px);
}

.item:nth-child(10n+10) {
  transform: translateY(37px);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}/*# sourceMappingURL=style.css.map */