@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
}

.global_head {
  margin: 0 !important;
}

body {
  font-family: "Helvetica Neue", "Noto Sans JP", sans-serif;
  background: #f7f7f7;
  color: #222;
  margin: 0;
  line-height: 1.7;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
@media only screen and (min-width: 768px) {
  .site-nav {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .site-nav {
    justify-content: right;
  }
}
.site-nav__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
  align-items: flex-start;
  justify-content: center;
  min-width: 44px;
  color: #222;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-nav__label {
  font-size: 0.75rem;
}
.site-nav__bar {
  margin: 0 auto;
  width: 25px;
  height: 2px;
  border-radius: 1px;
  background: #222;
  display: block;
}
.site-nav__panel {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: white;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 22px;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
}
.site-nav__panel.is-open {
  max-height: 500px;
  opacity: 1;
  padding: 14px 22px 20px;
}
.site-nav__panel ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-nav__panel a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.site-nav__panel a:hover, .site-nav__panel a:focus {
  color: #a50606;
}
.site-nav__heading {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #a50606;
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .site-nav {
    position: sticky;
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-nav__toggle {
    display: none;
  }
  .site-nav__panel {
    display: block;
    position: static;
    width: auto;
    padding: 0;
    box-shadow: none;
    border-bottom: none;
    background: transparent;
    max-height: none;
    opacity: 1;
    overflow: visible;
  }
  .site-nav__panel ul {
    flex-direction: row;
    gap: 18px;
    margin: 0;
  }
  .site-nav__panel a {
    font-size: 0.9rem;
  }
  .site-nav__heading {
    margin-right: 12px;
    font-size: 0.85rem;
  }
}

h1, h2, h3 {
  font-family: "Didot", "Bodoni MT", serif;
}

@media only screen and (min-width: 768px) {
  .wrap {
    max-width: 1000px;
    margin: 0 auto;
  }
}

.hero {
  background: #272727;
  padding: 50px 20px;
  text-align: center;
  color: white;
}
.hero__content {
  max-width: 900px;
  margin: 0 auto;
}
.hero__content h1 {
  font-size: 3rem;
  letter-spacing: 1px;
  margin: 0 auto;
}
.hero__content h1 span {
  color: #ffecb7;
}
.hero__content p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.hero__content p a {
  color: #ff4c4c;
  text-decoration: none;
}

.section-title {
  text-align: center;
  margin: 60px 0 30px;
  font-size: 2.2rem;
}

.feature {
  margin-top: 32px;
  padding: 0 20px;
}
.feature__item {
  scroll-margin-top: 90px;
  background: white;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.feature__item::after {
  content: "";
  display: table;
  clear: both;
}
.feature__media {
  margin: 0 24px 16px 0;
}
@media only screen and (min-width: 768px) {
  .feature__media {
    float: right;
  }
}
@media only screen and (max-width: 767px) {
  .feature__media {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.feature__content {
  flex: 1;
}
.feature__content h3 {
  margin: 25px 0px 0px;
}
@media only screen and (min-width: 768px) {
  .feature__content h3 {
    font-size: 2.5em;
    line-height: 2.5rem;
  }
}
.feature__content h4 {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .feature__content {
    min-width: 400px;
  }
}

.items {
  padding: 0 20px 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.items__feature {
  scroll-margin-top: 90px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 24px 24px 28px;
  margin-bottom: 32px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
  position: relative;
}
.items__feature:last-child {
  margin-bottom: 0;
}
.items__feature::after {
  content: "";
  display: table;
  clear: both;
}
.items__feature h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.items__feature p {
  margin-bottom: 14px;
}
.items__content {
  flex: 1;
}
.items__content h3 {
  margin: 25px 0px 0px;
}
@media only screen and (min-width: 768px) {
  .items__content h3 {
    font-size: 2.5em;
    line-height: 2.5rem;
  }
}
.items__content h4 {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .items__content {
    min-width: 400px;
  }
}
.items__media {
  margin: 0 0 16px 24px;
}
@media only screen and (min-width: 768px) {
  .items__media {
    float: right;
    max-width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .items__media {
    margin: 0 0 16px 0;
  }
}

.carousel {
  position: relative;
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
@media only screen and (min-width: 768px) {
  .carousel {
    max-height: 560px;
    height: fit-content;
    width: 400px;
  }
}
.carousel__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 100%;
  user-select: none;
  pointer-events: none;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  font-size: 18px;
  transition: background 0.2s ease, transform 0.1s ease;
}
.carousel__nav:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.05);
}
.carousel__nav--prev {
  left: 10px;
}
.carousel__nav--next {
  right: 10px;
}
.carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.carousel__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}
.carousel__track.is-dragging {
  transition: none;
  cursor: grabbing;
}

.about {
  max-width: 1000px;
  margin: 32px auto;
  padding: 0 20px;
  display: grid;
  gap: 10px;
}
@media (min-width: 900px) {
  .about {
    grid-template-columns: 1fr 1fr;
  }
}
.about__block {
  background: white;
  padding: 25px 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.about__block h2 {
  font-family: "Didot", "Bodoni MT", serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  line-height: 2rem;
}
.about__block p {
  margin-bottom: 15px;
}

.footer {
  text-align: center;
  padding: 40px 0;
  color: #666;
  font-size: 0.9rem;
}/*# sourceMappingURL=style.css.map */