@charset "utf-8";

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;

  background: transparent; /* ← 最初は透明 */
  transition: all 0.4s ease;
}

/* スクロール後 */
.header.is-scrolled {
  background: #ffffffbb;
}

.header__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  margin: 0;
  flex-shrink: 0;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
}

.header__logo a {
  display: inline-block;
  color: #111;
  text-decoration: none;
}

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav-list a {
  color: #111;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  transition: opacity 0.3s;
}

.header__nav-list a:hover {
  opacity: 0.6;
}

.header__contact {
  flex-shrink: 0;
}

.header__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 28px;
  padding: 0 14px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 0.6rem;
  line-height: 1;
  letter-spacing: 0.12em;
  transition: opacity 0.3s;
}

.header__contact-btn:hover {
  opacity: 0.8;
}

.header__logo {
  margin: 0;
  flex-shrink: 0;
}

.header__logo a {
  display: block;
}

.header__logo img {
  display: block;
  height: 22px; /* ←ここでサイズ統一 */
  width: auto;
}












.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;

}

.hero__slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 132px);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.6s ease, visibility 1.6s ease;
  z-index: 1;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.03);
}

.hero__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 132px;
  z-index: 5;

}

.hero__inner {
  width: min(100%, 1280px);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero__lead {
  max-width: 620px;
}

.hero__lead p {
  margin: 0;
  color: #5b5b5b;

  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.hero__title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.hero__title {
  margin: 0;
  color: #111;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}



.hero__progress {
  position: relative;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.hero__progress-svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.hero__progress-bg {
  fill: none;
  stroke: #d8d8d8;
  stroke-width: 1;
}

.hero__progress-bar {
  fill: none;
  stroke: #8f8f8f;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.08s linear;
}

.hero__progress-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #b5b5b5;
  transform: translate(-50%, -50%);
}

.hero__progress:hover .hero__progress-bg {
  stroke: #bdbdbd;
}

.hero__progress:hover .hero__progress-bar {
  stroke: #6f6f6f;
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero__slider {
  height: calc(100vh - 132px);
  position: relative;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 132px;

}

.hero__inner {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero__lead p {
  margin: 0;
  color: #666;
  font-size: 12px;
}

.hero__title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__title {
  font-size: 28px;
  font-family: serif;
}

/* 円ボタン */
.hero__progress {
  width: 56px;
  height: 56px;
  border: none;
  background: none;
  position: relative;
  cursor: pointer;
}

.hero__progress svg {
  transform: rotate(-90deg);
}

.hero__progress-bg {
  fill: none;
  stroke: #ddd;
  stroke-width: 1;
}

.hero__progress-bar {
  fill: none;
  stroke: #999;
  stroke-width: 1.2;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
}

.hero__progress-center {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #aaa;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}










.value-section {
  padding: 120px 20px 80px;
}

.value-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.value-section__head {
  text-align: center;
  margin-bottom: 72px;
}

.value-section__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #111;
}

.value-section__lead {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #333;
}

.value-section__gallery {
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  gap: 28px;
  align-items: start;
}

.value-section__image {
  overflow: hidden;
}

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

/* 高さ調整 */
.value-section__image--left {
  margin-top: 160px;
  height: 360px;
}

.value-section__image--center {
  height: 520px;
}

.value-section__image--right {
  height: 300px;
}



.value-section__gallery {
  position: relative;
  overflow: hidden;
}

/* 白カーテン */
.value-section__gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(0%);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 5;
}

/* 開く状態 */
.value-section__gallery.is-open::after {
  transform: translateX(100%);
}






.service {

  padding: 100px 30px ;
}

.service__inner {
  max-width: 1360px;
  margin: 0 auto;
}

.service__head {
  margin-bottom: 34px;
}

.service__title {
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #111;
}

.service__title span {
  display: inline-block;
  margin-left: 8px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: #222;
  vertical-align: middle;
}

.service__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.92fr;
  grid-template-rows: 260px 260px; /* ← ここで右2段の高さを固定 */
  gap: 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.service-card--large {
  grid-row: 1 / 3;
  min-height: 520px;
}

.service-card--small {
  min-height: 260px;
}

.service-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.34) 0%,
    rgba(0, 0, 0, 0.14) 24%,
    rgba(0, 0, 0, 0.02) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.service-card__content {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.service-card__content--bottom {
  left: 28px;
  right: 140px;
  bottom: 26px;
}

.service-card__content--left {
  left: 28px;
  bottom: 26px;
  right: 28px;
}

.service-card__title {
  margin: 0 0 14px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  box-sizing: border-box;
}

/* 左大カードの矢印ボタン */
.service-card__arrow {
  position: absolute;
  right: 18px;
  bottom: 22px;
  z-index: 3;
  width: 78px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-card__arrow span {
  font-size: 1.35rem;
  line-height: 1;
  transform: translateY(-1px);
}

.service-card__arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(2px);
}

.service-card:hover .service-card__image {
  transform: scale(1.03);
}

.service-card__image {
  transition: transform 0.7s ease;
}




.news {
  padding: 100px 30px;
}

.news__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.news__head {
  margin-bottom: 28px;
}

.news__title {
  margin: 0;
  font-family: "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.news__title span {
  display: inline;
  margin-left: 10px;
  font-size: 0.85rem;
  font-family: sans-serif;
  color: #555;
}

/* リスト */
.news__list {
  border-top: 1px solid #cfcfcf;
}

.news__item {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #cfcfcf;
  text-decoration: none;
  color: #111;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
}

.news__tag {
  border: 1px solid #aaa;
  padding: 3px 10px;
  font-size: 0.7rem;
}

.news__text {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.news__arrow {
  width: 36px;
  height: 20px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.news__item:hover .news__arrow {
  transform: translateX(4px);
  transition: 0.2s;
}


.news__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 800px; /* ← 逆にする */
  gap: 40px;
}


.news__list {
  grid-column: 2;
}


/* タイトルは横いっぱい使う */
.news__head {
  grid-column: 1 / -1;
}



















.about {
  padding: 96px 30px 28px;
}

.about__inner {
  max-width: 1360px;
  margin: 0 auto;
}

.about__head {
  margin-bottom: 72px;
}

.about__title {
  margin: 0;
  font-family: "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #111;
}

.about__title span {
  display: inline-block;
  margin-left: 8px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #222;
  vertical-align: middle;
}

.about__body {
  max-width: 760px;
  margin-bottom: 48px;
}

.about__lead {
  margin: 0 0 26px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #111;
}

.about__text p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 2.25;
  letter-spacing: 0.06em;
  color: #111;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__image {
  width: 100%;
  overflow: hidden;
}

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


.about__image {
  position: relative;
  overflow: hidden;
}

/* 白カーテン */
.about__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(0%);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 2;
}

/* 開く */
.about__image.is-open::after {
  transform: translateX(100%);
}

/* 画像の動き */
.about__image img {
  transform: translateX(40px);
  opacity: 0;
  transition: all 1s ease;
}

/* 表示 */
.about__image.is-open img {
  transform: translateX(0);
  opacity: 1;
}







.message {
  padding: 96px 30px;
}

.message__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  column-gap: 140px;
  align-items: center;
}

.message__image {
  width: 100%;
}

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

.message__content {
  max-width: 620px;
}

.message__title {
  margin: 0 0 44px;
  font-family: "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #111;
}

.message__title span {
  display: inline-block;
  margin-left: 8px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #222;
  vertical-align: middle;
}

.message__text p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: #222;
}

.message__text p:last-child {
  margin-bottom: 0;
}


.message__image {
  position: relative;
  overflow: hidden;
}

/* 白カーテン */
.message__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(0%);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 2;
}

/* 開く */
.message__image.is-open::after {
  transform: translateX(100%);
}

/* 画像 */
.message__image img {
  transform: translateX(-40px) scale(1.05);
  opacity: 0;
  transition: all 1s ease;
}

/* 表示 */
.message__image.is-open img {
  transform: translateX(0) scale(1);
  opacity: 1;
}












.company {
  padding: 96px 30px;
}

.company__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 56px;
  align-items: center;
}

.company__content {
  padding-left: 10px;
}

.company__title {
  margin: 0 0 42px;
  font-family: "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #111;
}

.company__title span {
  display: inline-block;
  margin-left: 8px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #222;
  vertical-align: middle;
}

.company__text {
  margin-bottom: 48px;
}

.company__text p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: 0.06em;
  color: #222;
}

.company__text p:last-child {
  margin-bottom: 0;
}

.company__button {
  width: 72px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.company__button span {
  font-size: 1.3rem;
  line-height: 1;
  transform: translateY(-1px);
}

.company__button:hover {
  transform: translateX(4px);
  opacity: 0.88;
}

.company__gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 1.1fr 0.7fr; /* ← ココが肝 */
  gap: 10px;
}

.company__image {
  flex: 1;
  overflow: hidden;
}

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




.company__gallery {
  position: relative;
  overflow: hidden;
}

/* 白カーテン */
.company__gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 3;
}

.company__gallery.is-open::after {
  transform: translateX(100%);
}

/* 各画像の出現 */
.company__image {
  opacity: 0;
  transform: translateX(36px);
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.company__gallery.is-open .company__image {
  opacity: 1;
  transform: translateX(0);
}

/* 少しずつ遅らせる */
.company__gallery.is-open .company__image:nth-child(1) {
  transition-delay: 0.12s;
}
.company__gallery.is-open .company__image:nth-child(2) {
  transition-delay: 0.24s;
}
.company__gallery.is-open .company__image:nth-child(3) {
  transition-delay: 0.36s;
}
.company__gallery.is-open .company__image:nth-child(4) {
  transition-delay: 0.48s;
}









.footer {
  background: #636363;
  padding: 56px 20px 24px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer__logo {
  margin-bottom: 28px;
  font-family: "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.18em;
  color: #fff;
}

.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 52px;
}

.footer__nav a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
}

.footer__subnav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__subnav a {
  font-size: 0.64rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
}

.footer__nav a:hover,
.footer__subnav a:hover {
  opacity: 0.7;
}


.footer__logo {
  margin-bottom: 28px;
}

.footer__logo img {
  width: 140px;   /* ← 基本サイズ */
  height: auto;
  display: block;
  margin: 0 auto;
}














.company-info {
  padding: 100px 30px;
}

.company-info__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 800px;
  gap: 40px;
}

/* タイトル */
.company-info__head {
  grid-column: 1 / -1;
}

.company-info__title {
  margin: 0 0 40px;
  font-family: "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.company-info__title span {
  margin-left: 8px;
  font-size: 0.9rem;
  font-family: sans-serif;
  color: #666;
}

/* テーブル全体 */
.company-info__table {
  grid-column: 2;
  position: relative;
}

上のライン
.company-info__table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #bfbfbf;
}

/* 行 */
.company-info__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 26px 0;
  border-bottom: 1px solid #d5d5d5;
}

/* 左ラベル */
.company-info__label {
  font-size: 0.85rem;
  color: #9a9a9a;
}

/* 右テキスト */
.company-info__value {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}

.company-info__line {

  height: 1px;
  background: #bfbfbf;

  margin: 40px 0 60px; /* ← 上下余白 */

  position: relative;
  left: 50%;
  transform: translateX(-50%);
}













.contact-page {
  padding: 100px 30px 120px;
}

.contact-page__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-page__head {
  margin-bottom: 32px;
}

.contact-page__title {
  margin: 0;
  font-family: "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #111;
  white-space: nowrap;
}

.contact-page__title span {
  display: inline;
  margin-left: 8px;
  font-size: 0.85rem;
  font-family: sans-serif;
  color: #555;
  letter-spacing: 0.04em;
}

.contact-page__line {
  height: 1px;
  background: #bdbdbd;
  margin-bottom: 54px;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: start;
}

.contact-page__subheading {
  margin: 0 0 28px;
  font-family: "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #111;
}

.contact-page__info p {
  margin: 0;
  font-size: 12px;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: #222;
}

.contact-form__group {
  margin-bottom: 24px;
}

.contact-form__group label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #111;
}

.contact-form__group input,
.contact-form__group textarea {
  width: 100%;
  border: 1px solid #b9b9b9;
  border-radius: 6px;
  background: #fff;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #111;
  box-sizing: border-box;
  outline: none;
  appearance: none;
}

.contact-form__group input {
  height: 46px;
}

.contact-form__group textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  border-color: #888;
}

.contact-form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 14px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #111;
  cursor: pointer;
}

.contact-form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #b9b9b9;
  border-radius: 4px;
  appearance: none;
  background: #fff;
  position: relative;
  flex-shrink: 0;
}

.contact-form__check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 9px;
  border-right: 1.5px solid #111;
  border-bottom: 1.5px solid #111;
  transform: rotate(45deg);
}

.contact-form__note {
  margin: 0 0 34px;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #666;
}

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

.contact-form__submit button {
  min-width: 170px;
  height: 36px;
  padding: 0 32px;
  border: none;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.5em;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-form__submit button:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}














.service-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #000;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

/* うっすら暗くして文字を見やすく */
.service-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.18);
}

.service-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px 80px;
  display: flex;
  align-items: flex-end;
}

.service-hero__content {
  color: #fff;
}

.service-hero__title {
  margin: 0 0 34px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.service-hero__tags {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;

}

.service-hero__tags span {
  min-width: 120px;
  height: 40px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  background: rgba(255, 255, 255, 0.03);
  margin-left: -1px;
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .service-hero {
    min-height: 620px;
  }

  .service-hero__inner {
    padding: 0 32px 40px;
  }

  .service-hero__title {
    margin-bottom: 24px;
    font-size: 52px;
  }

  .service-hero__tags span {
    min-width: 180px;
    height: 54px;
    font-size: 22px;
    padding: 0 18px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .service-hero {
    height: 75vh;
    min-height: 520px;
  }

  .service-hero__inner {
    padding: 0 20px 28px;
  }

  .service-hero__title {
    margin-bottom: 18px;
    font-size: 34px;
    letter-spacing: 0.06em;
  }

  .service-hero__tags {
    gap: 10px;
  }

  .service-hero__tags span {
    min-width: auto;
    width: calc(50% - 5px);
    height: 46px;
    font-size: 16px;
    margin-left: 0;
  }

  .service-hero__tags span:last-child {
    width: 100%;
  }
}




.service-intro {

  padding: 140px 0 120px;
}

.service-intro__inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 32px;
}

.service-intro__heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.service-intro__title {
  margin: 0;
  color: #2b2b2b;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.service-intro__text {
  margin-top: 44px;
}

.service-intro__text p {
  margin: 0;
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0.08em;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

.service-intro__text p + p {
  margin-top: 22px;
}

.service-intro__images {
  margin-top: 92px;
  display: grid;
  grid-template-columns: 0.9fr 0.76fr 1.32fr;
  gap: 16px;
  align-items: start;
}

.service-intro__image {
  overflow: hidden;
}

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

.service-intro__image--left {
  margin-top: 0;
  aspect-ratio: 0.92 / 0.86;
}

.service-intro__image--center {
  margin-top: 32px;
  aspect-ratio: 0.72 / 1.12;
}

.service-intro__image--right {
  margin-top: 0;
  aspect-ratio: 1.02 / 0.98;
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .service-intro {
    padding: 100px 0 90px;
  }

  .service-intro__inner {
    padding: 0 24px;
  }

  .service-intro__title {
    font-size: 34px;
  }

  .service-intro__text {
    margin-top: 32px;
  }

  .service-intro__text p {
    font-size: 14px;
    line-height: 2.2;
  }

  .service-intro__images {
    margin-top: 70px;
    gap: 14px;
  }

  .service-intro__image--center {
    margin-top: 24px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .service-intro {
    padding: 72px 0 72px;
  }

  .service-intro__inner {
    padding: 0 20px;
  }

  .service-intro__title {
    font-size: 26px;
    line-height: 1.8;
  }

  .service-intro__text {
    margin-top: 24px;
  }

  .service-intro__text p {
    font-size: 13px;
    line-height: 2.1;
  }

  .service-intro__text p br {
    display: none;
  }

  .service-intro__images {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-intro__image--left,
  .service-intro__image--center,
  .service-intro__image--right {
    margin-top: 0;
    aspect-ratio: 1.2 / 1;
  }
}












.flow {
  padding: 100px 0;
  overflow: hidden;
}

.flow__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* 線 */
.flow__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #cfcfcf;
}

/* 横並び */
.flow__items {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 0;
}

.flow__item {
  position: relative;
  width: 25%;
  text-align: center;
  padding-top: 38px; /* 文字を下げるための余白 */
}

/* 丸は線のど真ん中固定 */
.flow__dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #cfcfcf;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  z-index: 2;
}

/* 文字だけアニメーションさせる */
.flow__body {
  opacity: 0;
  transform: translateY(20px);
}

.flow__title {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 14px;
  letter-spacing: 0.05em;
  color: #111;
}

.flow__text {
  font-size: 12px;
  line-height: 1.9;
  color: #666;
  margin: 0;
}

/* ===== アニメーション ===== */

.flow.active .flow__line {
  animation: lineGrow 1.2s ease forwards;
}

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* 線をゆっくりに */
.flow.active .flow__line {
  animation: lineGrow 2s ease forwards;
}

/* 丸の出る間隔を広げる */
.flow.active .flow__item:nth-child(1) .flow__dot {
  animation: dotPop 0.5s ease forwards;
  animation-delay: 0.8s;
}
.flow.active .flow__item:nth-child(2) .flow__dot {
  animation: dotPop 0.5s ease forwards;
  animation-delay: 1.3s;
}
.flow.active .flow__item:nth-child(3) .flow__dot {
  animation: dotPop 0.5s ease forwards;
  animation-delay: 1.8s;
}
.flow.active .flow__item:nth-child(4) .flow__dot {
  animation: dotPop 0.5s ease forwards;
  animation-delay: 2.3s;
}

/* テキストはさらに少し遅らせる */
.flow.active .flow__item:nth-child(1) .flow__body {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 1.0s;
}
.flow.active .flow__item:nth-child(2) .flow__body {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 1.5s;
}
.flow.active .flow__item:nth-child(3) .flow__body {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 2.0s;
}
.flow.active .flow__item:nth-child(4) .flow__body {
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 2.5s;
}

@keyframes dotPop {
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






.service-detail {
  padding: 140px 0;
}

.service-detail__inner {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.service-detail__item {
  display: grid;
   grid-template-columns: 260px 1px 1fr; /* ←ここが本質 */
  column-gap: 64px;
  align-items: center;
  min-height: 180px;
  padding: 36px 0;

  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.service-detail__item + .service-detail__item {
  margin-top: 32px;
}

.service-detail__item.is-show {
  opacity: 1;
  transform: translateY(0);
}

.service-detail__col {
  min-width: 0;
}

.service-detail__col--left {
  padding-right: 12px;
}

.service-detail__col--right {
  padding-left: 12px;
}

.service-detail__title {
  margin: 0 0 10px;
  color: #111;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.service-detail__en {
  margin: 0;
  color: #9a9a9a;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.service-detail__divider {
  width: 1px;
  height: 110px;
  background: #cfcfcf;
  justify-self: center;
  align-self: center;
}

.service-detail__text {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.08em;
}









.works {
  padding: 120px 0;
}

.works__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
}

/* 左 */
.works__nav {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.works__nav-item {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.works__nav-item.is-active {
  color: #111;
  font-weight: 500;
}

/* 右グリッド */
.works__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 40px;
}

.works__card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.works__title {
  margin: 12px 0 6px;
  font-size: 15px;
}

.works__tag {
  font-size: 11px;
  border: 1px solid #aaa;
  padding: 3px 10px;
}




.works__nav {
  position: sticky;
  top: 120px;
  height: fit-content;
  position: relative;
}

/* 矢印 */
.works__nav-arrow {
  position: absolute;
  left: -16px;
  top: 0;
  width: 10px;
  height: 10px;
  background: #111;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: top 0.35s ease;
}

/* テキスト */
.works__nav-item {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
  transition: all 0.3s;
  position: relative;
}

.works__nav-item.is-active {
  color: #111;
}

.works__nav-arrow {
  transform: translateY(6px); /* テキスト中央合わせ */
}

.works {
  position: relative; /* ← これ追加 */
}

.works__nav {
  position: sticky;
  top: 120px;
}

.works__nav {
  position: sticky;
  top: 120px;
  height: fit-content;
  position: relative;
}

.works__nav-arrow {
  position: absolute;
  left: -16px;
  top: 0;
  width: 10px;
  height: 10px;
  background: #111;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
  transition: top 0.35s ease;
}


.works {
  position: relative;
  padding: 120px 0;
}

.works__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 160px 1fr;
  column-gap: 56px;
  align-items: start;
}

.works__nav {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.works__nav-list {
  position: relative;
}

.works__nav-arrow {
  position: absolute;
  left: -16px;
  top: 0;
  width: 10px;
  height: 10px;
  background: #111;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
  transition: top 0.35s ease;
}

.works__nav-item {
  font-size: 13px;
  color: #888;
  margin: 0 0 14px;
  transition: color 0.3s ease;
}

.works__nav-item.is-active {
  color: #111;
  font-weight: 500;
}