/* =========================================
   Top Page – front.css
   ========================================= */

/* =========================================
   FV（ファーストビュー）
   ========================================= */

.top-fv{
  position: relative;
  height: 680px;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: #fdfdfd;
  overflow: hidden;
  padding-top: var(--header-height-pc);
}

.top-fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* 背景画像オーバーレイ（現在は非表示） */
.top-fv__bg::after {
  display: none;
}

.top-fv__inner{
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.top-fv__content{
  width: 100%;
  max-width: 540px;
  /* もし画像の上でも読みやすくするなら、ここに半透明の白背景などを追加できます */
}

.top-fv__title{
  font-family: var(--ff-serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  line-height: 1.8;
  color: var(--c-blue);
  margin: 0 0 24px;
  letter-spacing: 0.05em;
  word-break: normal;
  overflow-wrap: break-word;
}

.top-fv__lead{
  font-family: var(--ff-sans);
  font-size: 18px;
  line-height: 26px;
  color: #666666;
  margin: 0;
  word-break: normal;
  overflow-wrap: break-word;
}

/* =========================================
   LINE CTA（トップ直下） -> 共通の.line-ctaを利用するため固有クラスは削除
   ========================================= */

/* =========================================
   Lineup（メニューラインナップ）
   ========================================= */

.top-lineup{
  padding: 80px 0;
  background: #fff;
}

.top-lineup__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.top-lineup-card{
  display: block;
  background: #fff;
  border: 1px solid #EEF2F6;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 16px rgba(74,127,167,.04);
  padding-top: 24px;
  text-align: center;
}

.top-lineup-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(74,127,167,.12);
  text-decoration: none;
}

.top-lineup-card__header{
  margin-bottom: 20px;
}

.top-lineup-card__title{
  font-family: var(--ff-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-blue);
  margin: 0;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}

.top-lineup-card__title::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: #D1D5DB;
}

.top-lineup-card__img-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 350 / 150;
  background: transparent;
}

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

.top-lineup-card__image-placeholder{
  width: 100%;
  height: 100%;
  background: var(--c-sky-50);
}

.top-lineup-card__btn{
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #E0F2FE;
  color: var(--c-blue);
  font-size: 13px;
  font-weight: normal;
  padding: 8px 16px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background .2s ease;
}

.top-lineup-card:hover .top-lineup-card__btn{
  background: #bae6fd;
}

/* =========================================
   担当者紹介（About）
   ========================================= */

.top-about{
  padding: 80px 0;
  background: var(--c-light-blue);
}

.top-about__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.top-about__images{
  position: relative;
}

.top-about__collage{
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  margin: 0 auto;
}

.top-about__body{}

.top-about__en{
  font-family: var(--ff-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--c-muted);
  margin: 0 0 12px;
  text-align: left;
  display: block;
}

.top-about__lead{
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: normal;
  line-height: 48px;
  color: var(--c-blue);
  margin: 0 0 24px;
}

.top-about__text{
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: #333333;
  margin: 0 0 32px;
}

.top-about__btn-wrap .btn{
  width: 100%;
  max-width: 320px;
  border-radius: 30px;
}

/* =========================================
   Gallery プレビュー
   ========================================= */

.top-gallery{
  padding: 80px 0;
  background: #fff;
}


/* =========================================
   アイテム販売バナー
   ========================================= */

.top-items-banner{
  padding: 80px 0;
  background: var(--c-light-blue);
}

.top-items-banner__link{
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s;
}

.top-items-banner__link:hover{
  transform: translateY(-4px);
  opacity: 0.9;
}

.top-items-banner__img{
  width: 100%;
  height: auto;
  display: block;
}

.top-items-banner__placeholder{
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 960 / 250;
  background: #f4f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #6B7280;
  font-weight: bold;
  text-align: center;
  border: 2px dashed #D1D5DB;
}

/* =========================================
   マップ + アクセス情報
   ========================================= */

/* =========================================
   アクセス情報
   ========================================= */

.top-access-new{
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 80px;
}

.top-access-new__map{
  width: 100%;
  height: 600px;
  position: relative;
  z-index: 1;
}

.top-access-new__map iframe{
  width: 100%;
  height: 100%;
  border: none;
}

.top-access-new__inner{
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: -200px; /* マップとの重なり200px */
}

.top-access-new__card{
  background: #fff;
  padding: 60px 40px;
  width: 100%;
  max-width: 960px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.top-access-new__card .heading{
  margin-bottom: 40px;
}

.top-access-new__content{
  display: flex;
  gap: 40px;
}

.top-access-new__photo-col{
  width: 45%;
  flex-shrink: 0;
}

.top-access-new__photo{
  width: 100%;
  height: auto;
  aspect-ratio: 440 / 280;
  object-fit: cover;
}

.top-access-new__info-col{
  flex-grow: 1;
}

.top-access-new__shopname{
  font-family: var(--ff-sans);
  font-size: 20px;
  color: var(--c-text);
  margin-bottom: 24px;
  font-weight: 700;
}

.top-access-new__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.top-access-new__list li{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #E5E7EB;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.6;
}

.top-access-new__list li:last-child {
  border-bottom: 1px solid #E5E7EB;
}

.top-access-new__list li.align-start{
  align-items: flex-start;
}

.top-access-new__icon{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--c-blue);
}

.top-access-new__text-group{
  display: flex;
  flex-direction: column;
}

.top-access-new__text-group .note{
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 4px;
}

.top-access-new__list a{
  color: var(--c-blue);
  text-decoration: underline;
}
.top-access-new__list a:hover{
  text-decoration: none;
}

.top-access-new__br-sp{
  display: none;
}

.top-access__ameblo{
  margin-top: 12px;
  font-size: 13px;
}

/* =========================================
   公式アカウント・SNS
   ========================================= */

.top-blog-header {
  margin-bottom: 0;
}

.top-blog-header__title {
  font-family: var(--ff-sans);
  font-size: 20px;
  font-weight: bold;
  color: var(--c-text);
  margin: 0 0 8px;
}

.top-blog-header__desc {
  font-size: 14px;
  font-family: var(--ff-sans);
  color: var(--c-muted);
  margin: 0;
}

.top-blog-list {
  display: flex;
  flex-direction: column;
}

.top-blog-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-areas:
    "img title"
    "img date"
    "img desc";
  gap: 0 20px;
  padding: 32px 0;
  border-bottom: 1px dotted #ccc;
  text-decoration: none;
  color: var(--c-text);
  transition: opacity 0.2s;
}

.top-blog-item:hover {
  opacity: 0.8;
  text-decoration: none;
}

.top-blog-item__img {
  grid-area: img;
  width: 160px;
  height: 160px;
}

.top-blog-item__img img,
.top-blog-item__img .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-blog-item__img .placeholder {
  background: #eee;
}

.top-blog-item__title {
  grid-area: title;
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: bold;
  color: var(--c-blue);
  margin: 0 0 8px;
  line-height: 1.5;
  align-self: end;
}

.top-blog-item__date {
  grid-area: date;
  font-size: 12px;
  color: var(--c-muted);
  font-family: var(--ff-en);
  margin: 0 0 12px;
}

.top-blog-item__desc {
  grid-area: desc;
  font-family: var(--ff-sans);
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  align-self: start;
}

/* Button */
.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  padding: 14px 40px;
  border: 1px solid var(--c-blue);
  border-radius: 999px;
  color: var(--c-blue);
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  background: #fff;
  transition: all 0.3s ease;
}

.btn-outline-blue svg {
  width: 18px;
  height: 18px;
}

.btn-outline-blue:hover {
  background: var(--c-light-blue);
}

/* ReFa Authorized Dealer */
.top-refa {
  padding: 80px 0;
  background: #f8fafc;
}

.top-refa__header {
  text-align: center;
  margin-bottom: 40px;
}

.top-refa__en {
  display: block;
  font-family: var(--ff-en);
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.top-refa__title {
  font-family: var(--ff-serif);
  font-size: 32px;
  color: var(--c-blue);
  margin-bottom: 24px;
  line-height: 1.3;
}

.top-refa__lead {
  font-size: 16px;
  color: var(--c-text);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.refa-br-sp {
  display: none;
}

.top-refa__images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.top-refa__image-item {
  flex-shrink: 1;
}

.top-refa__image-item img {
  height: 230px;
  width: auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.top-refa__placeholder {
  height: 230px;
  width: 300px;
  max-width: 100%;
  background: #eef2f5;
  color: #90a4ae;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-en);
  font-size: 14px;
  border: 1px dashed #cfd8dc;
}

.top-refa__btn-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.top-refa__note {
  font-size: 12px;
  color: #78909c;
  margin: 0;
}

/* SNS Cards */
.top-sns-cards {
  display: flex;
  gap: 24px;
}

.sns-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 16px 24px;
  text-decoration: none;
  color: var(--c-text);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #eee;
}

.sns-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-decoration: none;
}

.sns-card--ig { border-color: #EF7B65; }
.sns-card--fb { border-color: #3064F6; }

.sns-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns-card__icon svg {
  width: 100%;
  height: 100%;
}

.sns-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sns-card__label {
  font-weight: bold;
  font-size: 20px;
  color: #333333;
  margin: 0;
  line-height: 1;
}

.sns-card__id {
  font-size: 32px;
  font-weight: bold;
  color: #333333;
  margin: 0;
  line-height: 1.1;
}

.sns-card__arrow {
  width: 20px;
  height: 20px;
}
.sns-card--ig .sns-card__arrow { color: #EF7B65; }
.sns-card--fb .sns-card__arrow { color: #3064F6; }

/* =========================================
   Special Contents
   ========================================= */

.top-special {
  padding: 56px 0;
  background: #fff;
}

.top-special__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.special-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: transparent;
  transition: opacity 0.2s, transform 0.2s;
  gap: 6px;
}

.special-card:hover {
  opacity: 0.85;
  text-decoration: none;
  transform: translateY(-2px);
}

.special-card__img {
  width: 100%;
  aspect-ratio: 420 / 210;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  border-radius: 4px;
  overflow: hidden;
}

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

.special-card__text {
  background: #E8F1F6; /* light blue */
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--c-blue);
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: normal;
  border-radius: 4px;
}

.special-card__text svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* =========================================
   Responsive (SP ≤ 767px)
   ========================================= */

@media (max-width: 767px){

  /* FV */
  .top-fv{
    height: 560px;
    min-height: 560px;
    padding-top: var(--header-height-sp);
    padding-bottom: 40px;
    align-items: flex-end; /* 下の方に配置 */
  }

  .top-fv__inner{
    padding: 0 10px;
    justify-content: flex-start;
  }

  .fv-br-pc {
    display: none;
  }

  .top-fv__content {
    text-align: left;
  }

  .top-fv__title{
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 10px;
  }

  .top-fv__lead{
    font-size: 16px;
    line-height: 24px;
  }

  /* Lineup */
  .top-lineup{ padding: 56px 0; }
  .top-lineup__grid{ grid-template-columns: 1fr; gap: 16px; }

  /* About */
  .top-about{ padding: 56px 0; }
  .top-about__inner{ display: flex; flex-direction: column; gap: 0; align-items: stretch; }
  .top-about__body{ display: contents; }
  .top-about__en{ order: 1; margin-bottom: 0; text-align: left; }
  .top-about__lead{ order: 2; font-size: 26px; line-height: 1.8; margin-bottom: 24px; text-align: left; }
  .top-about__text{ order: 3; margin-bottom: 32px; text-align: left; }
  .top-about__images{ order: 4; margin-top: 0; margin-bottom: 32px; }
  .top-about__btn-wrap{ order: 5; text-align: center; }

  /* Gallery */
  .top-gallery__tabs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-bottom: none;
    overflow-x: visible;
  }
  .top-gallery__tab{
    width: 100%;
    border-bottom: 1px solid #E5E7EB;
  }
  .top-gallery__grid{ grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Items */
  .top-items-banner{ padding: 40px 0; }
  .top-items-banner__placeholder{ aspect-ratio: 1; }

  /* Access */
  .top-access-new{
    padding: 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .top-access-new__map{
    position: relative;
    height: 320px;
    order: 1;
  }
  .top-access-new__inner{
    padding: 0;
    order: 2;
    margin-top: 0;
  }
  .top-access-new__card{
    border-radius: 0;
    box-shadow: none;
    padding: 40px 10px;
  }
  .top-access-new__content{
    flex-direction: column;
    gap: 24px;
  }
  .top-access-new__photo-col{
    width: 100%;
  }
  .top-access-new__photo{
    aspect-ratio: 440 / 280;
  }
  .top-access-new__br-sp{
    display: block;
  }

  /* Social Media (Blog / SNS) */
  .top-social-media {
    padding: 56px 0;
  }
  .top-blog-item {
    grid-template-columns: 100px 1fr;
    grid-template-areas:
      "img title"
      "img date"
      "desc desc";
    gap: 0 16px;
    padding: 24px 0;
  }
  .top-blog-item__img {
    width: 100px;
    height: 100px;
  }
  .top-blog-item__title {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .top-blog-item__date {
    margin-bottom: 0;
  }
  .top-blog-item__desc {
    margin-top: 12px;
  }
  .top-sns-cards {
    flex-direction: column;
    gap: 16px;
  }
  .sns-card__label {
    font-size: 16px;
  }
  .sns-card__id {
    font-size: 24px;
  }

  .top-special__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ReFa */
  .top-refa {
    padding: 56px 0;
  }
  .top-refa__title {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .top-refa__lead {
    font-size: 14px;
    text-align: center;
    padding: 0 16px;
  }
  .refa-br-sp {
    display: block;
  }
  .top-refa__images {
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
    align-items: center;
  }
  .top-refa__image-item {
    width: 100%;
    max-width: 320px;
  }
  .top-refa__image-item img {
    width: 100%;
    height: auto;
  }
  .top-refa__placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .top-fv__inner{ padding: 60px 20px; }
  .top-lineup__grid{ grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .top-gallery__grid{ grid-template-columns: repeat(3, 1fr); }
}
