@charset "utf-8";

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:        #FFFFFF;
  --bg:           #F7F6F4;
  --bg-dark:      #EEECEA;
  --border:       #DEDAD6;
  --border-dark:  #C4BFBA;
  --text-main:    #181614;
  --text-sub:     #4E4A46;
  --text-light:   #8A8480;
  --accent:       #1A3A5C;
  --accent-mid:   #2A5080;
  --accent-light: #E6EDF5;
  --red:          #FF0004;
  --max-w:        1280px;
  --pad:          64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Serif JP', serif;
  background: var(--white);
  color: var(--text-main);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* container 幅上書き */
.container {
  max-width: var(--max-w) !important;
  padding-left:  var(--pad) !important;
  padding-right: var(--pad) !important;
}


/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: rgba(255,255,255,0.97) !important;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 0;
}

/* ナビ全体の内側ラッパー（幅合わせ） */
#mainNav .nav-inner {
  max-width: var(--max-w);
  height: 82px;
}

/* ロゴ */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 0;
  /* ハンバーガーに押しつぶされないように縮小を許可 */
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}
.logo-wrap img {
  display: block;
  height: 34px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-div {
  width: 1px;
  height: 24px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* ナビリンク */
#mainNav .nav-link {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub) !important;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  white-space: nowrap;
  padding: 0;
}



#mainNav .nav-item { margin-left: 32px; }
#mainNav .nav-link:hover { color: #C5C5C5 !important; }

/* CTAボタン */
#mainNav .nav-cta {
  padding: 8px 22px !important;
  background: var(--accent);
  color: var(--white) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s !important;
  line-height: 1.5;
}
#mainNav .nav-cta:hover { background: var(--accent-mid) !important; }

/* ハンバーガーボタン（Bootstrap の .navbar-toggler を上書き） */
.navbar-toggler {
  border: none !important;
  padding: 4px !important;
  box-shadow: none !important;
  background: none !important;
  width: 44px;
  height: 44px;
  /* 絶対に縮まないようにする */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.navbar-toggler:focus { box-shadow: none !important; }
.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
/* 開いた状態 (aria-expanded="true" がついたとき) */
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-brand{
  padding:0 !important;
  margin:0 !important;
}

/* SP メニュー展開時のスタイル */
@media (max-width: 991px) {
   #mainNav .nav-inner{
    max-width: var(--max-w);
    height: 82px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
  }

  /* ロゴ画像を小さくしてハンバーガーが収まるようにする */
    .logo-wrap{
    flex: 1;
    min-width: 0;
    min-height: 82px;
  }
    .navbar-toggler{
    margin-left: auto;
  }

  .logo-wrap img { height: 20px; }
  .logo-div { height: 14px; }

  #navMenu{
    position:absolute;
    top:82px;
    left:0;
    width:100vw;
    background:#fff;
    border-bottom:1px solid var(--border);
    z-index:999;
  }
  
   #mainNav{
  position:fixed;
  width:100%;
}
  
   #navMenu .nav-item{
    width:100%;
    margin:0;
    border-top:1px solid var(--border);
  }

   #navMenu .nav-link{
    display:block;
    width:100%;
    text-align:center;
    padding:20px !important;
    border:none;
  }
  
  #navMenu .nav-cta{
    background:none;
    color:var(--text-sub) !important;
    padding:20px !important;
  }
}

/* 極小スマホ (375px以下) */
@media (max-width: 375px) {
  .logo-wrap img { height: 16px; }
  .logo-wrap { gap: 6px; }
  .logo-div { height: 12px; }
}


/* ============================================================
   HERO
   ============================================================ */
#hero {
  margin-top: 68px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background:
radial-gradient(
  circle at top right,
  rgba(0,0,0,0.03),
  transparent 40%
),
linear-gradient(
  180deg,
  #ffffff 0%,
  #f4f4f4 100%
);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 620px;
  align-items: center;
  min-height: 540px;
}

.hero-text {
  padding: 80px 30px 80px 0;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #FFFFFF;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  margin-bottom: 20px;
}

#hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.hero-model {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.16em;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.1;
  color: var(--text-main);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-image {
  height: 100%;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  max-width: 100%;
  max-height: 600px;
  width: auto;
  object-fit: contain;
  display: block;
}

.blue-square-list {
    list-style: none; /* デフォルトの黒丸を消す */
    padding: 0;
    margin: 0;
  }

  /* リスト項目ごとの設定 */
  .blue-square-list li {
    display: flex;       /* 横並びにして位置崩れを防ぐ */
    align-items: flex-start; /* 2行になっても四角の位置を上部に固定 */
    font-size: 0.9rem;     /* 画面や端末に合わせて自動調整される単位 */
    line-height: 1.6;    /* 行間の設定 */
    margin-bottom: 0.75em; /* 文字の大きさに比例した下マージン */
    color: #333333;      /* 本文の文字色（目に優しいダークグレー） */
  }

  /* 疑似要素で「青い四角」を自作する */
  .blue-square-list li::before {
    content: "";         /* 空の要素を作る */
    display: inline-block;
    flex-shrink: 0;      /* スマホ画面で四角が潰れるのを防ぐ */
    
    /* 四角のサイズ指定（文字の大きさに比例して自動縮小） */
    width: 0.6em;
    height: 0.6em;
    background-color: #0066cc; /* おしゃれな青色（アクセシビリティ考慮） */
    
    /* 四角の位置微調整（文字の1行目の高さに合わせる） */
    margin-top: 0.5em;
    margin-right: 0.75em;
  }
  

@media (max-width: 960px) {

  :root {
    --pad: 32px;
  }

  .hero-inner {
    grid-template-columns: 1fr 420px;
    min-height: 500px;
  }

  #hero h1 {
    font-size: 52px;
  }

  .hero-text {
    padding: 60px 20px 60px 0;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-image {
    min-height: auto;
    padding: 20px;
  }

  .hero-image img {
    max-width: 100%;
    max-height: 420px;
    opacity: 1;
    position: static;
    transform: none;
  }

}


@media (max-width: 768px) {

  .hero-inner {
    display: flex;
    flex-direction: column;
  }

  .hero-image {
    order: -1;
    padding-top: 40px;
  }

  .hero-image img {
    max-width: 80%;
  }

  .hero-text {
    padding: 0 var(--pad) 60px;
  }

}
/* ---- SP (≤560px) ---- */
@media (max-width: 560px) {

:root{
    --pad:20px;
  }

  #hero {
    margin-top: 30px;
  }

  .hero-inner {
    min-height: auto;
    flex-direction: column;        /* 画像→テキストの順に */
  }

  .hero-image {
    position: relative;
    inset: auto;
    min-height: auto;      /* height固定をやめる */
    height: auto;          /* 画像サイズに合わせて伸びるように */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px var(--pad) 16px;
    background: none;
    z-index: 0;
    order: -1;
  }

  .hero-image img {
    position: static;
    transform: none;
    width: auto;
    max-width: 100%;        /* 65% → 85% */
    max-height: 320px;     /* 180px → 260px */
    opacity: 1;
    margin: 0 auto;
    display: block;
    /*filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));*/
  }

  .hero-text {
    min-height: auto;
    padding: 0 var(--pad) 52px;   /* 上余白は画像が担うので不要 */
    position: relative;
    z-index: 2;
  }

  .hero-label {
    margin-bottom: 14px;
  }

  #hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .hero-model {
    font-size: 12px;
    margin-bottom: 16px;
    letter-spacing: 0.12em;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .blue-square-list li {
    font-size: 0.82rem;
  }
  

}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 13px 36px;
  background: var(--accent);
  color: var(--white) !important;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  border-radius: 0;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-mid); color: var(--white) !important; }

.btn-ghost {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.1em;
  padding: 12px 35px;
  border: 1px solid var(--accent);
  /*border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;*/
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 0.5; color: var(--accent); }


/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 100px 0; }

.sec-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.sec-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.sec-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-sub);
  max-width: 540px;
  line-height: 2;
  margin-bottom: 52px;
}


/* ============================================================
   PRODUCT SECTION
   ============================================================ */
#products { background: var(--white); }

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}
@media (max-width: 740px) {
  .product-card { grid-template-columns: 1fr; }
  .product-info { border-left: none !important; border-top: 1px solid var(--border); }
}

.product-visual {
  /*background: var(--bg);*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.product-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  /*background: var(--accent);*/
}
.product-visual img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.10));
  transition: transform 0.5s ease;
}
.product-visual img:hover { transform: scale(1.03); }


.product-thumbs{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  width:100%;
  margin-top:10px;
}

.product-thumbs .thumb{
  width:70px;
  height:70px;
  object-fit:contain;
  border:1px solid var(--border);
  padding:4px;
  background:#fff;
  cursor:pointer;
  transition:.25s;
}

.product-thumbs .thumb:hover{
  border-color:var(--accent);
}

.product-thumbs .thumb.active{
  border:2px solid var(--accent);
}

#mainProductImage{
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
}


.product-info {
  padding: 32px 24px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.product-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  margin-bottom: 14px;
  width: fit-content;
}
.product-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 52px;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 30px;
}
.product-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
  flex: 1;
}
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 10px 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 12.5px;
  font-weight: 300;
  vertical-align: top;
}
.spec-table td:first-child {
  width: 38%;
  color: var(--text-light);
  padding-right: 12px;
}
.spec-table td:last-child { color: var(--text-main); font-weight: 400; }

.price-block {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.02em;
}
.price-note {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
}


/* ============================================================
   OPTIONS SECTION
   ============================================================ */
#features { background: var(--bg); }

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
}

.options-grid02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-top: none;
}


@media (max-width: 820px) {
  .options-grid { grid-template-columns: 1fr 1fr; }
  .options-grid02 { grid-template-columns: 1fr 1fr; }
  .option-card:nth-child(2n) { border-right: none; }
  .option-card:nth-child(n+3) { border-top: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .options-grid { grid-template-columns: 1fr; }
  .options-grid02 { grid-template-columns: 1fr; }
  .option-card { border-right: none !important; border-top: 1px solid var(--border) !important; }
  .option-card:first-child { border-top: none !important; }
}

.option-card {
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
  position: relative;
}
.option-card:last-child { border-right: none; }
.option-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.option-card:hover::before { transform: scaleX(1); }
.option-card:hover { background: var(--accent-light); }

.option-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.option-img {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.option-img img {
  max-height: 210px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

.option-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.option-desc {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.9;
  flex: 1;
  margin-bottom: 20px;
}
.option-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 14px;
}
.option-price small {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  margin-left: 4px;
}
.option-link {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.option-link::after { content: '→'; }
.option-link:hover { gap: 10px; }


/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact { background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
}

.contact-note {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 2.1;
  margin-bottom: 36px;
}
.contact-meta { border-top: 1px solid var(--border); }
.meta-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.meta-key {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-light);
  text-transform: uppercase;
  width: 80px;
  flex-shrink: 0;
}
.meta-val {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-main);
}

/* フォーム */
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.req { color: #B03030; margin-left: 4px; font-size: 10px; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 11px 14px;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  border-radius: 0;
  line-height: 1.6;
  box-shadow: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: none;
}
.form-row textarea { resize: vertical; min-height: 110px; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 540px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.24em;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--accent-mid); }


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #111827;
  color: #6B7280;
  padding: 52px 0 32px;
  border-top: 3px solid var(--accent);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}


@media (max-width: 600px) {

.footer-top{
  flex-direction: column; gap: 24px;
}

.footer-inner {
  padding: 0 28px;
}

}

.f-logo img{
    width: 20%;
    display: block;
    margin-bottom: 15px;
}

@media (max-width: 600px) {

.f-logo img{
    width: 30%;
}

}

/*.f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #F9FAFB;
}
.f-logo span {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 300;
  color: #6B7280;
  letter-spacing: 0.08em;
  margin-top: 5px;
}*/
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 300;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #6B7280; }
.footer-copy {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 300;
  color: #FFFFFF;
  letter-spacing: 0.06em;
}



/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}