/* ============================================
   FV
============================================ */
.top-page_fv {
  position: relative;
  min-height: 600px;
  max-height: 800px;
  height: 100vh; /* dvh 非対応ブラウザ向けフォールバック */
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
	overflow:hidden;
}
/* FVマスク：中央は円状に抜き、周囲へ向かって少しシャドウ（ヴィネット） */
.top-page_fv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.6) 100%);
}

/* 左右分割スライドショー */
.top-page_fv__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
}

.top-page_fv__col {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

/* SP：左右分割 → 上下（縦）分割 */
@media screen and (max-width: 768px) {
  .top-page_fv__slides {
    flex-direction: column;
  }
  .top-page_fv__col {
    width: 100%;
    height: 50%;
  }
}

.top-page_fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  will-change: opacity;
}
.top-page_fv__slide.is-active {
  opacity: 1;
}
.top-page_fv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 6s ease-out;
  will-change: transform;
}
/* アクティブな間だけゆっくり拡大（フェードと合わせて上品な切り替え） */
.top-page_fv__slide.is-active img {
  transform: scale(1.08);
}
@media (prefers-reduced-motion: reduce) {
  .top-page_fv__slide img,
  .top-page_fv__slide.is-active img {
    transform: none;
    transition: none;
  }
}

/* 確認用ダミースライド（①②③） */
.top-page_fv__slide--dummy {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  font-weight: 700;
  color: #fff;
}
.top-page_fv__col--left  .top-page_fv__slide--dummy:nth-child(1) { background: #2a9d8f; }
.top-page_fv__col--left  .top-page_fv__slide--dummy:nth-child(2) { background: #264653; }
.top-page_fv__col--left  .top-page_fv__slide--dummy:nth-child(3) { background: #1d3557; }
.top-page_fv__col--right .top-page_fv__slide--dummy:nth-child(1) { background: #e76f51; }
.top-page_fv__col--right .top-page_fv__slide--dummy:nth-child(2) { background: #f4a261; }
.top-page_fv__col--right .top-page_fv__slide--dummy:nth-child(3) { background: #e9c46a; }

/* 中央配置（上下左右中央） */
.top-page_fv__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-page_fv__logo {
  width: 520px;
  height: 160px;
  max-width: 90vw;
}
.top-page_fv__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .top-page_fv__logo {
    width: 240px;
    height: 74px;
  }
}

/* ============================================
   お知らせ
============================================ */
.top-page_news {
  padding: 120px 0;
}

.top-page_news__list {
  list-style: none;
  padding: 0;
/*   border-top: 1px solid #e0e0e0; */
}

.top-page_news__item {
  border-bottom: 1px solid #9F9F9F;
}

.top-page_news__link {
  display: flex;
  align-items: center;
  gap: 120px;
  padding: 20px;
  text-decoration: none;
  color: #333;
  transition: opacity 0.2s;
}

.top-page_news__link:hover {
  opacity: 0.6;
}

.top-page_news__date {
  font-size: 16px;
  color: #888;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-page_news__cat {
  font-size: 16px;
  border: 1px solid #333;
  padding: 3px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-page_news__title {
  font-size: 16px;
  line-height: 1.5;
}

/* ============================================
   コンセプト・メッセージ
============================================ */
.top-page_concept {
  padding: 120px 0;
	position:relative;
}
.top-page_concept__inner {
/*   display: flex;
  align-items: center;
  gap: 80px; */
}

.top-page_concept__image {
  flex: 1;
  flex-shrink: 0;
}

.top-page_concept__image-placeholder {
  background: #ddd;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.top-page_concept__body {
  flex: 1;
}

.top-page_concept__lead {
  font-size: 24px;
	font-weight:700;
    line-height: 1.8;
    margin: 80px auto 0 auto;
    text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.6);
}
.top-page_concept__lead i{
	font-style: italic;
	font-weight:700;
}


.top-page_concept__text {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 40px;
}

/* ============================================
   店舗情報
============================================ */
.top-page_shop {
  padding: 120px 0 0px 0;
}
.top-page_shop__inner {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
.top-page_shop__info {
  flex: 1;
  min-width: 0;
}
.top-page_shop__media {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* バイリンガル情報テーブル */
.top-page_shop__table {
  width: 100%;
  border-collapse: collapse;
}
.top-page_shop__table th,
.top-page_shop__table td {
  padding: 18px 8px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}
.top-page_shop__table tr:first-child th,
.top-page_shop__table tr:first-child td {
  border-top: 1px solid #e0e0e0;
}
.top-page_shop__table th {
  width: 32%;
  font-weight: 700;
}
.top-page_shop__label-ja,
.top-page_shop__value-ja {
  display: block;
  font-size: 15px;
  line-height: 1.7;
}
.top-page_shop__value-ja {
  font-weight: 400;
}
.top-page_shop__label-en,
.top-page_shop__value-en {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.6;
  color: #999;
}
.top-page_shop__value a {
  color: #17645E;
  text-decoration: none;
}

/* サムネ付きスライドショー */
.top-page_shop__gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.top-page_shop__main {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
}
.top-page_shop__main-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.top-page_shop__main-item.is-active {
  opacity: 1;
}
.top-page_shop__main-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ダミー（実画像未登録時の確認用） */
.top-page_shop__main-item--dummy {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 88px;
  font-weight: 700;
  color: #fff;
}
.top-page_shop__main-item--dummy:nth-child(1) { background: #2a9d8f; }
.top-page_shop__main-item--dummy:nth-child(2) { background: #264653; }
.top-page_shop__main-item--dummy:nth-child(3) { background: #1d3557; }
.top-page_shop__main-item--dummy:nth-child(4) { background: #e76f51; }
.top-page_shop__main-item--dummy:nth-child(5) { background: #e9c46a; }

.top-page_shop__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
}
.top-page_shop__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  background: none;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}
.top-page_shop__thumb:hover {
  opacity: 1;
}
.top-page_shop__thumb.is-active {
  opacity: 1;
  border-color: #17645E;
}
.top-page_shop__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top-page_shop__thumb-dummy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  background: #264653;
}

/* 地図 */
.top-page_shop__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 4px;
  overflow: hidden;
}
.top-page_shop__map iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* ============================================
   会社概要
============================================ */
.top-page_company {
  padding: 100px 0;
  background: #f9f9f6;
}

.top-page_company__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.top-page_company__table th,
.top-page_company__table td {
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.top-page_company__table th {
  width: 180px;
  color: #888;
  font-weight: 400;
}

.top-page_company__table tbody tr:first-child th,
.top-page_company__table tbody tr:first-child td {
  border-top: 1px solid #e0e0e0;
}

.top-page_company__table td a {
  color: #333;
  text-decoration: none;
}


@media screen and (max-width: 1024px) {
	.top-page_shop__inner {
		flex-direction: column;
		gap: 40px;
	}
	.top-page_concept__lead {
        font-size: 20px;
    }
}
@media screen and (max-width: 768px) {
	.top-page_concept {
    padding: 60px 0;
}
	.top-page_shop {
    padding: 60px 0;
}
	.top-page_shop__table th {
		width: 38%;
	}
	.top-page_shop__label-ja,
	.top-page_shop__value-ja {
		font-size: 14px;
	}
	.top-page_shop__photos img {
		height: 80px;
	}
	.top-page_shop__photos img:first-child {
		height: 180px;
	}
.top-page_concept__lead {
        font-size: 18px;
        margin: 40px auto 0 auto;
	}
	.top-page_news {
    padding: 60px 0;
}
.top-page_news__link {
	padding: 12px 0;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
}

@media screen and (max-width: 640px) {
	.top-page_concept__lead {
        font-size: 15px;
    }
}
/* ============================================
   ご挨拶
============================================ */
.top-page_greeting {
  position: relative;
  background: #1a1a1a;
  color: #fff;
  padding: 90px 0 100px;
  overflow: hidden;
}
/* 見出し（ダーク背景用に色を上書き） */
.top-page_greeting .c-section-head__sub {
  color: #c8b78a;
}
.top-page_greeting .c-section-head__title {
  color: #fff;
}
/* コーナー装飾（右上・左下） */
.top-page_greeting__corner {
  position: absolute;
  width: 162px;
  height: 162px;
  background: url("../img/greeting-corner.svg") no-repeat center / contain;
  pointer-events: none;
  z-index: 2;
}
.top-page_greeting__corner--tr {
  top: 0;
  right: 0;
}
.top-page_greeting__corner--bl {
  bottom: 0;
  left: 0;
}
/* 中身 */
.top-page_greeting__inner {
  position: relative;
  text-align: center;
}
/* 背景の薄いロゴ */
.top-page_greeting__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  max-width: 90%;
  z-index: 0;
  pointer-events: none;
}
.top-page_greeting__bg img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1; /* 画像側でフェード済みのためCSSでは薄くしない */
}
.top-page_greeting__text,
.top-page_greeting__logo {
  position: relative;
  z-index: 1;
}
.top-page_greeting__text {
  color: #fff;
  line-height: 2.2;
}
.top-page_greeting__text--ja {
  font-size: 16px;
}
.top-page_greeting__text--en {
  font-size: 14px;
  line-height: 2;
}
.top-page_greeting__logo {
  margin: 48px auto;
  width: 280px;
  max-width: 70%;
}
.top-page_greeting__logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .top-page_greeting {
    padding: 60px 0 70px;
  }
  .top-page_greeting__corner {
    width: 88px;
    height: 88px;
  }
  /* モバイルは強制改行を解除して自然に折り返す */
  .top-page_greeting__text br {
    display: none;
  }
  .top-page_greeting__text--ja {
    font-size: 14px;
    line-height: 2;
  }
  .top-page_greeting__text--en {
    font-size: 13px;
    line-height: 1.9;
  }
  .top-page_greeting__logo {
    margin: 32px auto;
    width: 220px;
  }
  .top-page_greeting__bg {
    width: 300px;
  }
}

/* ============================================
   メニュー
============================================ */
.top-page_menu {
  padding: 120px 0 40px 0;
}
.top-page_menu__text {
  text-align: center;
}
.top-page_menu__text--ja {
  font-size: 16px;
  line-height: 2.2;
}
.top-page_menu__text--en {
  max-width: 1024px;
  margin: 32px auto 0;
  color: #666;
  font-size: 14px;
  line-height: 1.9;
}
.top-page_menu .c-more {
  margin-top: 48px;
}
.top-page_menu__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-top: 80px;
}
.top-page_menu__photos img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
/* 1・3枚目を少し下げてジグザグ配置 */
.top-page_menu__photos li:nth-child(odd) {
  transform: translateY(40px);
}
@media screen and (max-width: 768px) {
  .top-page_menu {
    padding: 60px 0;
  }
  /* モバイルは強制改行を解除して自然に折り返す */
  .top-page_menu__text--ja br {
    display: none;
  }
  .top-page_menu__text--ja {
    font-size: 14px;
    line-height: 2;
  }
  .top-page_menu__text--en {
    margin-top: 24px;
    font-size: 13px;
  }
  .top-page_menu .c-more {
    margin-top: 36px;
  }
  .top-page_menu__photos {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
  }
  .top-page_menu__photos li:nth-child(odd) {
    transform: none;
  }
}

/* ============================================
   インスタグラム
============================================ */
.top-page_instagram {
  padding: 120px 0;
}
.top-page_instagram__account {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.top-page_instagram__account a {
  color: #17645E;
  text-decoration: none;
}
.top-page_instagram__account a:hover {
  text-decoration: underline;
}
.top-page_instagram__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
}
.top-page_instagram__link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  aspect-ratio: 1 / 1;
}
.top-page_instagram__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.top-page_instagram__link:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}
@media screen and (max-width: 768px) {
  .top-page_instagram {
    padding: 60px 0;
  }
  .top-page_instagram__account {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .top-page_instagram__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
