@charset "utf-8";

/* ------------ SET ------------ */
html,
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #4D4D4D;
}

* {
  font-size: inherit;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

p {
  margin-bottom: 1.6em;
}

a {
  color: #4D4D4D;
  transition: all 0.2s ease;
}

a:hover {
  color: #ffee02
}

@media screen and (max-width: 800px) {}





/* ------------ HEADER ------------ */
#header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 3px 50px;
  background-color: #000000;


}

#header .logo img {
  width: 50px;
}

/* ロゴリンクを重ねる土台にする */
#header .logo .logo-link {
  position: relative;
  display: inline-block;
  width: 50px;
  /* ←今のロゴ幅に合わせる */
  height: auto;
}

/* 2枚の画像を同じ場所に重ねる */
#header .logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ホバー用ロゴは最初は非表示 */
#header .logo .logo-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease, filter 0.3s ease;
}

/* 通常ロゴもフェードできるように */
#header .logo .logo-normal {
  transition: opacity 0.25s ease, filter 0.3s ease;
}

/* hoverで差し替え + 発光 */
#header .logo .logo-link:hover .logo-normal {
  opacity: 0;
}

#header .logo .logo-link:hover .logo-glow {
  opacity: 1;

  /* メニューと同じ“光”感（ロゴ版） */
  filter:
    drop-shadow(0 6px 20px rgba(255, 255, 255, 0.7)) drop-shadow(0 16px 60px rgba(255, 238, 2, 0.6)) drop-shadow(0 30px 120px rgba(255, 238, 2, 0.4));
}

#header .menu {
  list-style: none;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  font-size: 1.0em;
  font-weight: 300;
}

#header .menu a {
  display: block;
  text-decoration: none;
  font-weight: 300;
  color: #ffffff;
  position: relative;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

#header .menu a:hover {
  color: #ffee02;
  transform: perspective(100px) translateZ(20px);
  filter: drop-shadow(0 8px 18px rgba(255, 255, 255, 0.18));
  text-shadow:
    /* 文字の輪郭を明るく */
    0 5px 20px rgba(255, 255, 255, 1),

    /* 下から立ち上がる光 */
    0 10px 20px rgba(255, 255, 255, 0.9),
    0 24px 80px rgba(255, 238, 2, 0.8),
    0 50px 160px rgba(255, 238, 2, 0.6);
}

#header .menu a.contact {
  background-color: #b4b4b4;
  color: #4D4D4D;
  padding: 10px 20px;
  font-size: 0.8em;
  border-radius: 25px;
  font-weight: bolder;
}

#header .menu a.contact:hover {
  transform: translateY(-2px);
  background-color: #ffee02;

  box-shadow:
    0 6px 20px rgba(255, 255, 255, 0.7),
    0 16px 60px rgba(255, 238, 2, 0.6),
    0 30px 120px rgba(255, 238, 2, 0.4);
  text-shadow:
    0 2px 6px rgba(255, 255, 255, 0.9);
}

#header .hamb {
  display: none;
}

/* チェックボックスは隠す（@mediaの外でOK） */
.menu-toggle {
  display: none;
}

@media screen and (max-width: 800px) {

  #header {
    padding: 15px 15px;
  }

  #header .logo img {
    width: 120px;
  }

  /* スマホのナビは最初は上に隠す */
  #header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 10000;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }

  /* ✅ チェックONなら表示 */
  #header .menu-toggle:checked~nav {
    transform: translateY(0);
  }

  /* ✅ ハンバーガー（label）表示 */
  #header .hamb {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #b4b4b4;
    width: 44px;
    height: 44px;
    border-radius: 100vh;

    background-image: url(../images/icon-menu.png);
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;

    z-index: 10001;
    /* navより上に */
    cursor: pointer;
  }

  /* ✅ チェックONなら×に切替（ここがポイント） */
  #header .menu-toggle:checked~.hamb {
    background-image: url(../images/icon-close.png);
  }

  /* メニュー縦並び */
  #header .menu {
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
}




/* ------------ FOOTER ------------ */
footer {
  background-color: #ffffff;
  color: #000000;
  font-size: 0.8em;
  text-align: center;
  padding: 10px;
}

.list-breadcrumbs {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  font-size: 0.8em;
  padding: 5px 20px;
  gap: 5px;
  flex-wrap: wrap;
}

.list-breadcrumbs li::after {
  content: '>';
  padding-left: 5px;
}

.list-breadcrumbs li:last-child:after {
  display: none;
}

@media screen and (max-width: 800px) {}





/* ------------ COMMON ------------ */
.container {
  padding-left: 0px;
  /*中身が画面端にくっつかないための「内側の余白」 */
  padding-right: 0px;
  /*中身が画面端にくっつかないための「内側の余白」 */
  max-width: 1280px;
  /*画面が広くても 1280px以上は広がらない */
  margin-left: auto;
  /*左右中央寄せ */
  margin-right: auto;
  /*左右中央寄せ */
}

.container.narrow {
  max-width: 920px;
  /*通常の .container より細いバージョン .container をベースに横幅だけを 920pxに上書き*/
}

.list-news {
  display: grid;
  /*グリッドレイアウトを使う */
  grid-template-columns: auto 1fr;
  /*左：内容に応じた幅（例：日付）右：残り全部（タイトル） */
  gap: 20px;
  /*列と行のすき間 */
}

.block-button {
  /*ボタン全体の配置を制御するラッパー */
  text-align: right;
  /*中のボタンを右寄せ */
  margin-top: 30px;
  /*上の要素との間合い */
}

.block-button a {
  /*共通ボタンの見た目定義 */
  position: relative;
  background-color: #212121;
  color: #ffffff;
  padding: 10px 40px 10px 20px;
  /*右を広めにして 矢印画像のスペース確保 */
  font-size: 0.8em;
  border-radius: 12px;
  display: inline-block;
  /*padding やサイズが効く */
  text-decoration: none;
  background-image: url(/images/icon-arrow.png);
  /*右側に矢印アイコンを表示 */
  background-size: 15px;
  background-position: right 15px center;
  /*右から15px、上下中央 */
  z-index: 2;
}

.block-button a:hover {
  /*マウスを乗せたときの色変更 */
  background-color: #F44336;
}

.block-page-title {
  /*ページ最上部のタイトル帯 何をしている？
ページ最上部のタイトル帯使われ方下層ページのタイトルAbout / Contact / News など*/
  text-align: center;
  background-color: #F5F5F5;
  padding-top: 40px;
  padding-bottom: 40px;
  font-weight: bold;
}


.block-page {
  /*ページ全体の上下余白 */
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 800px) {

  /*画面幅が800px以下のときだけ適用 */
  .container {
    /*PC：80pxスマホ：40px👉 狭い画面では余白を減らす */
    padding-left: 40px;
    padding-right: 40px;
  }

  .block-button {
    text-align: center;
  }
}





/* ------------ HOME ------------ */
/* ========== BASE ========== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  /* 最終的にグレーへ */
  cursor: none;

}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  position: relative;
}

/* セクションを隙間なく積む（marginは禁止） */
.section {
  padding: 120px 0;
}

.section__title {
  position: relative;
  text-align: center;
  margin-top: 350px;
  margin-right: 0;
  margin-bottom: 64px;
  margin-left: 0;

  padding-top: 100px;
  font-size: 40px;
  font-weight: 300;
  transition: text-shadow .25s ease;
  color: #000;
  z-index: 2;
}

.section__title:hover {
  color: #fffb01;
  text-shadow:
    0 10px 20px rgba(255, 255, 255, 0.9),
    0 24px 80px rgba(255, 238, 2, 0.8),
    0 50px 160px rgba(255, 238, 2, 0.6);
  z-index: 2;
}

/* ========== BUTTONS ========== */
.btn-wrap {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 700;

  background: #e2e2e2;
  color: #4D4D4D;

  transition:
    color .3s ease,
    background-color .3s ease,
    box-shadow .4s ease,
    text-shadow .4s ease,
    transform .2s ease;
}

/* 発光ボタン（headerのcontactと同系統） */
.btn--glow:hover {
  background-color: #ffee02;
  color: #000;

  box-shadow:
    0 6px 20px rgba(255, 255, 255, 0.7),
    0 16px 60px rgba(255, 238, 2, 0.6),
    0 30px 120px rgba(255, 238, 2, 0.4);

  text-shadow:
    0 5px 20px rgba(255, 255, 255, 1),
    0 10px 20px rgba(255, 255, 255, 0.9),
    0 24px 80px rgba(255, 238, 2, 0.8),
    0 50px 160px rgba(255, 238, 2, 0.6);

  transform: translateY(-2px);
}

/* ========== ① FIRST VIEW（黒） ========== */
.first {
  background: linear-gradient(to bottom, #000 0%, #b4b4b4 100%);
  padding: 140px 0 160px;
  /* タイトルの余白 */


}

/* ===== 光るマウスカーソル ===== */
#glow-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  pointer-events: none;
  /* クリックを邪魔しない */
  transform: translate(-50%, -50%);
  z-index: 9999;
  opacity: 0.70;
  /* ← 0.2〜0.6で好み調整 */

  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 238, 2, 0.6) 30%,
      rgba(255, 238, 2, 0.2) 55%,
      rgba(255, 238, 2, 0.0) 70%);

  filter: blur(2px);
}

.glow-target {
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  /* 普段は影なし */
  transition: text-shadow 0.06s linear;
}

.fv-title {
  margin: 0;
  position: relative;
  color: #fff;
}

.fv-title-name1,
.fv-title-name2 {
  display: block;
  font-family: "Codystar", sans-serif;
  font-weight: 300; /* 300 or 400 好みで */
  font-size: clamp(36px, 18vw, 160px);
  font-weight: bolder;
  opacity: .9;
  letter-spacing: clamp(0.05em, 0.4vw, 0.15em);
  text-shadow: -30px 30px 150px rgba(0, 0, 0, .27);
  margin-bottom: 0.3em; 
}

.fv-title-copy {
  display: block;
  margin: 0px 0;
  font-size: clamp(14px, 2.2vw, 26px);
  line-height: 1.7;
  text-align: center;
  font-weight: 300;
  text-shadow: -30px 30px 150px rgba(0, 0, 0, .27);
}

.fv-title-name1 {
  margin-top: 0px;
}

.fv-title-name2 {
  text-align: right;
  margin-top: 0px;
}

/* ========== ② SECOND VIEW（黒→グレー） ========== */
.second {
  /* ここで黒→グレーに変化 */
  background: linear-gradient(to bottom, #b4b4b4 0%, #000 100%);
  padding: 0;
  /* 隙間なし */

}

.second__inner {
  position: relative;
  min-height: 1400px;
  /* s3が1000pxに来ても余裕 */
  padding: 200px 0 240px;
}

/* しずく共通（重ねるため） */
.sizuku {
  position: absolute;
  pointer-events: none;
}

/* s3：1000pxから中央に置く */
.s3 {
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 70%);
  z-index: 1;
  /* 背景側 */
}

/* s3の上に文章 */
.sv-lead {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  /* 文字を上へ */
  max-width: 520px;
  margin: 0;
  text-align: center;
  line-height: 1.9;
  color: #4D4D4D;
  font-size: clamp(12px, 1.1vw, 14px);
}

.sv-catchcopy {
  position: absolute;
  top: 1000px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  /* 文字を上へ */
  max-width: 90vw;
  margin: 0;
  margin-top: 200px;
  font-family: "New Tegomin", sans-serif;
  text-align: center;
  line-height: 1.9;
  color: #ffffff;
  font-size: 50px;
  white-space: normal;
  /* 念のため */
  word-break: keep-all;
}

/* =========================
   SP調整：しずく回転＋テキストを中へ
========================= */
@media (max-width: 800px) {

  .second__inner {
    min-height: 900px;
    /* スマホは短く */
    padding: 140px 0 140px;
  }

  /* しずく：右に90度回転して中央へ */
  .s3 {
    top: 140px;
    /* ここで上下位置を調整 */
    left: 50%;
    width: min(520px, 95vw);
    /* 回転後も画面に収まるように */
    transform-origin: center;
    transform: translateX(-50%) rotate(90deg);
    z-index: 1;
  }

  /* リード文：しずくの“中”に入るように位置と幅を調整 */
  .sv-lead {
    top: 170px;
    /* ←しずくに合わせて微調整する場所 */
    left: 50%;
    transform: translateX(-50%);
    max-width: 78vw;
    /* しずく内に収めるため少し細く */
    padding: 0 8px;
    /* 端が当たるのを防ぐ保険 */
    line-height: 1.85;
    font-size: clamp(10px, 2.8vw, 12px);
    z-index: 2;
  }

  /* キャッチコピー：しずく内の下側へ */
  .sv-catchcopy {
    top: 1000px;
    /* ←ここも微調整ポイント */
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    /* PC用の200pxはスマホでは邪魔 */
    max-width: 92vw;
    line-height: 1.25;
    font-size: clamp(20px, 6.5vw, 30px);
    z-index: 2;
    text-align: center;
    word-break: keep-all;
  }
   .fv-title-name1,
  .fv-title-name2 {
    font-size: clamp(28px, 14vw, 92px); /* ← 上限を下げる */
    letter-spacing: 0.06em;             /* ← 詰める（ここ超重要） */
    padding: 0 12px;                    /* ← 端に当たらないように */
    line-height: 1.05;                  /* ← ついでに締める */
    box-sizing: border-box;
  }
  .fv-title-name2 {
   margin-top: 0.4em; 
  }
}

/* ========== ③ SERVICE（グレー） ========== */
.section--service {
  background: linear-gradient(to bottom, #000 0%, #b4b4b4 100%);
  padding-top: 300px;
  padding-bottom: 150px;

}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* 画面が狭いときに崩れない */
@media (max-width: 850px) {
  .services {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section__title {
    color: #ffee00;
  }
}

.service-card__media {
  position: relative;
}

.service-card__img {
  width: 100%;
  display: block;
  filter: drop-shadow(0px 44px 50px #ADADAD);
  margin-top: 100px;
}

.service-card__body {
  position: absolute;
  inset: 0;
  padding: 38px 30px 50px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.service-card__text {
  margin: 30px 0 0;
  font-size: 15px;
  line-height: 1.9;
}

.service-card__title {

  margin-top: 20px;
  line-height: 1.1;
}

.service-card__title-en {
  display: block;
  font-size: 15px;
  letter-spacing: .08em;
  padding: 5px;
  color: #dfd003;
}

.service-card__title-ja {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #6e6127;
}

/* ========== ④ PROFILE（グレー） ========== */
.section--profile {
  background: linear-gradient(to bottom, #b4b4b4 0%, #000 100%);
  padding-top: 0px;
  padding-bottom: 120px;
}

.profile__inner {
  position: relative;
  min-height: 900px;
  padding: 120px 0;
  text-align: center;
}



/* 写真は中央（2000pxという指定があるけど、セクション単体で組むなら中央配置が安定） */
.profile__photo {
  width: min(380px, 28vw);
  margin: 100px auto 40px;
  position: relative;
  z-index: 2;
}

/* テキストは写真の下 */
.profile__text {
  margin: 50px 0 100px;
  line-height: 1.9;
  font-size: 13px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

@media (max-width: 800px) {
  .profile__photo {
    width: min(380px, 50vw);
    margin: 100px auto 40px;
    position: relative;
    z-index: 2;
  }

  .btn--glow {
    margin-left: 30%;
    margin-right: 30%;
  }
}

/* ========== ⑤ CONTACT（グレー） ========== */

.section--contact {
  background: linear-gradient(to bottom, #000 0%, #ffffff 100%);
  padding-top: 70px;
  padding-bottom: 300px;
  position: relative;
  z-index: 3;
}

/* しずく（PC） */
.section--contact .s8 {
  position: absolute;
  top: 380px;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 70%);
  z-index: 0;
  pointer-events: none;
}

/* テキスト（PC） */
.section--contact .contact__text {
  text-align: center;
  line-height: 2;
  margin: 100px 0 100px;
  font-weight: 300;
  color: #000;
  position: relative;
  z-index: 2;
}

/* ボタンは前面 */
.section--contact .btn-wrap,
.section--contact .btn {
  position: relative;
  z-index: 5;
}

/* ===== スマホ調整：しずくの上にテキストを載せる ===== */
@media (max-width: 800px) {



  .section--contact {
    padding-top: 40px;
    padding-bottom: 100px;
  }

  /* しずく＆重ね要素の基準 */
  .section--contact .container {
    position: relative;
    min-height: 760px;
    /* しずく＋ボタンが入る高さ（必要なら調整） */
  }

  /* containerを基準にして中身を縦並び */
  .contact__text {
    position: relative;
    min-height: 500px;
    /* しずく＋テキストが収まる高さ */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    /* しずく上部の中に入れる */
    padding-left: 25vw;
    padding-right: 10px;
    box-sizing: border-box;
  }

  /* しずくは背景として配置 */
  .section--contact .s8 {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, 70vw);
    z-index: 0;
    pointer-events: none;
  }

  /* タイトルは通常フローでOK（重ねない） */
  .section--contact .section__title {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    line-height: 1.1;
  }

  /* 本文も通常フローで、しずく内に収める */
  .section--contact .contact__text {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    width: min(320px, 80vw);
    text-align: center;
    line-height: 1.65;
    font-size: 0.9em;
    /* 収まり優先で少し小さめ */
    color: #111;
  }

  /* ボタンも通常フローで本文の近くに */
  .section--contact .btn-wrap {
    position: relative;
    z-index: 2;
    margin-top: 10px;
  }

}

/* 矢印の位置（余白）は “リンク側” に持たせる */
.arrow-link {
  position: relative;
  /* 2枚重ねの土台として必要 */
  display: block;
  width: 4%;
  margin: 0 auto 10px;
  /* footerとの間合い10px */
}

/* 2枚とも同サイズに */
.arrow,
.arrow-glow {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.25s ease, filter 0.3s ease;
}

/* 光る方を上に重ねる */
.arrow-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
}

.arrow {
  opacity: 1;
  z-index: 1;
}

/* hoverで差し替え */
.arrow-link:hover .arrow {
  opacity: 0;
}

.arrow-link:hover .arrow-glow {
  opacity: 1;
  filter:
    drop-shadow(0 6px 20px rgba(255, 255, 255, 0.7)) drop-shadow(0 16px 60px rgba(255, 238, 2, 0.6)) drop-shadow(0 30px 120px rgba(255, 238, 2, 0.4));
}

/* ===== CONTACT：スマホ最適化 ===== */
@media (max-width: 600px) {

  /* ページの左右余白 */
  .block-page.container.narrow {
    padding-left: 16px;
    padding-right: 16px;
  }

  .block-page-title {
    font-size: 1.6em;
    margin: 32px 0 16px;
    text-align: center;
  }

  /* テーブルを縦並びフォームに変換 */
  .table-contact {
    width: 100%;
    border-collapse: collapse;
  }

  .table-contact tr,
  .table-contact th,
  .table-contact td {
    display: block;
    width: 100%;
  }

  .table-contact th {
    padding: 14px 0 8px;
    text-align: left;
    font-weight: 600;
  }

  .table-contact td {
    padding: 0 0 14px;
  }

  /* 入力欄を横幅100%に */
  .table-contact input[type="text"],
  .table-contact input[type="email"],
  .table-contact textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 12px;
    font-size: 16px;
    /* iPhoneの自動ズーム防止 */
    border-radius: 10px;
  }

  .table-contact textarea {
    min-height: 160px;
    resize: vertical;
  }

  /* ラジオの行間 */
  .table-contact label {
    display: inline-block;
    line-height: 1.9;
  }

  /* 送信ボタン：押しやすく */
  .btn-wrap {
    margin-top: 18px;
    display: flex;
    justify-content: center;
  }

  .btn {
    width: 100%;
    max-width: 360px;
    padding: 14px 16px;
    font-size: 16px;
  }

  /* パンくず */
  .list-breadcrumbs {
    font-size: 0.85em;
    padding: 12px 16px;
  }

  footer {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85em;
  }
}


/* ------------ ABOUT ------------ */
.abauto-container {
  padding-top: 1px;
  background: linear-gradient(to bottom, #000000 0%, #ffffff 100%);

}

/* 円（器） */
.about-circle {
  width: min(900px, 90vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 50px #EEE7D9;
}

/* 円の中：写真（左下） */
.about-photo {
  position: absolute;
  left: 80px;
  bottom: 0;
  width: 45%;
  max-width: 380px;
  height: auto;
  display: block;
}

/* 円の中：テキスト（右上） */
.about-copy {
  position: absolute;
  top: 120px;
  right: 100px;
  max-width: 320px;
  text-align: left;
}

.name {
  margin: 0 0 16px;
  font-weight: 300;
  font-size: 1.6em;
}

.about-copy p,
.about-text {
  line-height: 2;
  font-weight: 300;
}

.about-stack {
  display: grid;
  gap: 80px;
  /* 円と円の間 */
  justify-items: center;
  padding: 80px 0;
}

/* 既存の about-circle を流用 */
.about-circle--reason {
  background: #fff;
  width: min(800px, 85vw);
  /* ←小さめ */
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 50px #EEE7D9;
}

/* 理由円の中身 */
.reason-copy {
  width: min(750px, 85%);
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 90px 6px;
  /* 円の内側余白 */
  box-sizing: border-box;

  text-align: center;
  /* 見出しも本文も中央揃えなら */
}

/* 長文は中央揃えより左揃えの方が読みやすい場合が多い */
.reason-copy .about-text {
  text-align: center;
  /* ←読みやすさ優先ならON */
}


/* ===== 提供できる価値 セクション ===== */
.section--benefit {
  padding-bottom: 160px;
  /* footerとの自然な余白 */
}

/* ピラミッドの土台 */
.benefit-pyramid {
  width: min(980px, 92vw);
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "top top"
    "left right";
  gap: 60px;
  justify-items: center;
  align-items: start;
  padding: 0 24px;
}

/* 円 */
.benefit-circle {
  width: min(420px, 42vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #ffffff;

  display: grid;
  place-items: center;
  text-align: center;

  padding: 48px 40px;
  /* ← 少し詰める */
  box-sizing: border-box;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 50px #EEE7D9;
}

/* 各位置 */
.benefit-circle--top {
  grid-area: top;
  z-index: 3;
}

.benefit-circle--left {
  grid-area: left;
  margin-top: -80px;
  z-index: 2;
}

.benefit-circle--right {
  grid-area: right;
  margin-top: -80px;
  z-index: 1;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  /* ← ここで間合いを完全制御 */
  text-align: center;
}

.benefit-label {
  margin-bottom: 0px;
  font-size: 1.3em;
  font-weight: 300;
  color: #333;
}

/* 本文 */
.benefit-card__text {
  margin: 0;
  font-size: 1.0em;
  line-height: 1.6;
  /* ← 重要：行間を詰める */
  color: #555;
  font-weight: 300;
}

/* PCでは外側テキストは隠す */
.about-copy--outside,
.reason-copy--outside {
  display: none;
}

/* スマホ */
@media (max-width: 800px) {

  /* 円と円の間隔を調整 */
  .about-stack {
    display: block;
    gap: 28px;
    padding: 40px 0;
  }

  /* プロフィール円：写真だけにする（テキストは外へ） */
  .about-circle {
    width: min(420px, 92vw);
    margin: 40px auto 0;
  }

  /* 写真は円の中央に */
  .about-photo {
    position: static;
    width: 78%;
    max-width: 260px;
    margin: 0 auto;
    display: block;
    padding-top: 36px;
    /* 円の上部に呼吸 */
  }

  /* 円の中のプロフィール文は隠す */
  .about-copy--inside {
    display: none;
  }

  /* 円の外にプロフィール文を表示 */
  .about-copy--outside {
    display: block;
    width: min(520px, 92vw);
    margin: 1200px auto 0;
    text-align: center;
    padding: 0 14px;
    color: #ffffff;
    font-size: 0.9em;
  }

  .about-copy--outside .about-text {
    line-height: 1.9;
    font-size: 0.95em;
    text-align: center;
  }

  /* 理由の円（2つ目の円）を消して、円なし理由文を表示 */
  .about-circle--reason {
    display: none;
    /* ←これで「円は1つだけ」 */
  }

  .reason-copy--outside {
    display: block;
    width: min(520px, 92vw);
    margin: 600px auto 0;
    text-align: center;
    padding: 0 14px;
    color: #ffffff;
    font-size: 0.8em;
  }

  .reason-copy--outside .about-text {
    line-height: 1.9;
    font-size: 0.95em;
  }

  /* 理由の前に余白（要望の「余白あけて」） */
  .reason-copy--outside {
    padding-top: 16px;
  }

  .section__title {
    color: #ffee00;
  }
}

@media (max-width: 800px) {
  .benefit-pyramid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "left"
      "right";
    gap: 28px;
  }

  .benefit-circle {
    width: min(520px, 92vw);
    padding: 36px 24px;
    margin-right: 10%;
  }

  .benefit-circle--left,
  .benefit-circle--right {
    margin-top: 0;
  }

  .section__title {
    color: #ffee00;
  }
}


/* ===== Works base ===== */
.works {
  background: #EAEAEA;
  padding: 120px 0;
}

.works-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.works .section__title {
  text-align: center;
  margin: 0 0 64px;
  font-size: 40px;
  letter-spacing: 0.08em;
}

/* セクション（ホームページ/バナー/ロゴ） */
.works-section {
  margin: 80px 0 120px;
}

.works-title {
  font-size: 20px;
  text-align: center;
  font-weight: 300;
  margin: 150px 0 100px;
  letter-spacing: 0.06em;
}

/* ===== Grid ===== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .works-grid {
    grid-template-columns: 1fr;
  }

  .section__title {
    color: #000;
  }
}

/* ===== Card ===== */
.work-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 50px #EEE7D9;
}

.work-card__link {
  display: block;
  padding: 24px;
}

.work-card__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .25s ease, filter .25s ease;

}

/* 画像ホバー：少し寄る */
.work-card__link:hover .work-card__img {
  transform: scale(1.02);
  filter: brightness(1.03);
}

.work-card__body {
  padding: 22px 22px 26px;
}

.work-card__name {
  margin: 50px 0 10px;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-align: center;
}

.work-card__desc {
  margin: 50px 0 50px;
  font-size: 13px;
  line-height: 1.9;
  color: #333;
  text-align: center;
}

.work-card__meta {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.8;
  color: #444;

}

.work-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #EAEAEA;
  color: #333;
}

/* CTA */
.work-card__cta {
  margin: 0;
}

.work-card__btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: #b4b4b4;
  color: #4D4D4D;
  font-weight: 700;

  transition: background-color .3s ease, box-shadow .3s ease, transform .2s ease;
}

.work-card__btn:hover {
  background: #ffee02;
  transform: translateY(-1px);
  box-shadow:
    0 6px 20px rgba(255, 255, 255, 0.7),
    0 16px 60px rgba(255, 238, 2, 0.6),
    0 30px 120px rgba(255, 238, 2, 0.4);
}

/* ===== バナー一覧 ===== */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 120px;
  align-items: start;
  margin-top: 48px;
}

/* クリック領域 */
.banner-item {
  text-decoration: none;
}

/* ===== バナー：正方形カード（完全固定） ===== */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2列 */
  gap: 64px 120px;
  /* 行 / 列の間隔 */
  justify-items: center;
  /* ← 各箱を中央に */
}

/* 正方形の枠 */
.banner-box {
  width: 100%;
  max-width: 420px;
  /* ← 好きな最大サイズ（重要） */
  aspect-ratio: 1 / 1;
  /* 正方形 */
  overflow: hidden;
  border-radius: 8px;
  background: #eee;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  transition: transform .2s ease, box-shadow .25s ease;
}

/* 画像は必ず枠いっぱい・描けない */
.banner-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* ← ここが超重要 */
  display: block;
}

/* hover */
.banner-item:hover .banner-box {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

/* スマホ */
@media (max-width: 900px) {
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== ロゴ一覧 ===== */
/* ===== ロゴ縦並び ===== */
.logo-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  /* ロゴ同士の間隔 */
  align-items: center;
}

/* ロゴ画像そのもの */
.logo-list img {
  height: 120px;
  /* ← ★ここで「全員同じ高さ」 */
  width: auto;
  /* 横幅は自動（比率維持） */
  max-width: 100%;
  /* はみ出し防止 */
  object-fit: contain;
  display: block;
}



/* ------------ CONTACT ------------ */
.contact_container {
  margin-top: 100px;
  margin-bottom: 100px;
}

.contact_title {
  margin-top: 0;
  padding-top: 100px;
  text-align: center;
}

.table-contact {
  width: 100%;
  border-top: 1px solid #212121;
  margin-bottom: 100px;
  margin-top: 100px;
}

.table-contact tr {
  border-bottom: 1px solid #212121;
}

.table-contact th,
.table-contact td {
  text-align: left;
  padding: 15px;
  font-weight: normal;
}

.table-contact th {
  white-space: nowrap;
  width: 12em;
}

.table-contact th .required {
  font-size: 0.6em;
  vertical-align: top;
  color: #f43636;
  padding-left: 5px;
}

.table-contact input[type="text"] {
  background-color: #eeeeee;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}

.table-contact textarea {
  background-color: #eeeeee;
  width: 100%;
  height: 120px;
  padding: 10px;
  border-radius: 5px;
}

.block-contact-submit {
  text-align: center;
}

.block-contact-submit button {
  background-color: #212121;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.2s ease;
}

.block-contact-submit button:hover {
  background-color: #F44336;
}

@media screen and (max-width: 800px) {

  .table-contact th,
  .table-contact td {
    display: block;
    padding-left: 10%;
    padding-right: 10%;
  }

  .table-contact th {
    padding-bottom: 0;
  }
}
/* ===== CONTACT（SMF版：table-contactのテイストを移植） ===== */
.contact_container{
  margin-top: 10px;
  margin-bottom: 100px;
}

.smf-form{
  width: 100%;
  border-top: 1px solid #212121;
  margin: 10px 0 100px;
}

/* 1行＝1項目（テーブル行っぽく） */
.smf-form .smf-item{
  display: grid;
  grid-template-columns: 12em 1fr; /* table-contact thの幅感 */
  border-bottom: 1px solid #212121;
  padding: 15px;
  gap: 15px;
  align-items: start;
}

/* 左：見出し（th相当） */
.smf-form .smf-item__label{
  white-space: nowrap;
  font-weight: normal;
  text-align: left;
}

/* 必須マーク（赤） */
.smf-form .smf-required{
  font-size: 0.6em;
  vertical-align: top;
  color: #f43636;
  margin-left: 5px;
}

/* 入力欄（td相当） */
.smf-form input[type="text"],
.smf-form input[type="email"],
.smf-form input[type="tel"],
.smf-form textarea{
  background-color: #eeeeee;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  box-sizing: border-box;
}

/* textarea 高さ */
.smf-form textarea{
  min-height: 120px;
}

/* 送信ボタン */
.smf-form .smf-button-control{
  text-align: center;
  margin-top: 24px;
}

.smf-form input[type="submit"],
.smf-form button[type="submit"]{
  background-color: #212121;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.smf-form input[type="submit"]:hover,
.smf-form button[type="submit"]:hover{
  background-color: #F44336;
}
.page .container{
  max-width: 900px;   /* 好みで 800〜1000px */
  margin: 0 auto;     /* 中央寄せ */
  margin-top: 10px;
  padding: 0 24px;    /* 左右余白（スマホでも効く） */
}
/* スマホ：縦積み */
@media screen and (max-width: 800px){
  .smf-form .smf-item{
    grid-template-columns: 1fr;
  }
  .smf-form .smf-item__label{
    white-space: normal;
  }
}


/* ===== blog ===== */
.blog {
  background: #EAEAEA;
  padding-top: 40px;
  /* ←ヘッダー直下が寂しいなら余白はpaddingで作る */
}

.blog .section__title {
  margin-top: 0;
  /* ←これが空白の犯人対策 */
}

.blog-container {
  padding-left: 20%;
  padding-right: 20%;
  padding-bottom: 100px;
}

.list-news {
  display: grid;
  grid-template-columns: auto 3fr;
  row-gap: 16px;
  column-gap: 24px;
}

.list-news dt {
  font-size: 0.9em;
  color: #666;
  white-space: nowrap;
}

.list-news dd {
  margin: 0;
}

@media (max-width: 600px) {

  .list-news {
    grid-template-columns: 1fr;
    /* 1列にする */
    row-gap: 6px;
  }

  .list-news dt {
    grid-column: 1;
    font-size: 0.85em;
    color: #888;
  }

  .list-news dd {
    grid-column: 1;
    margin-bottom: 16px;
    /* 次の記事との間 */
  }

  .section__title {
    color: #000;
  }
}

/* ===== blog entry===== */
.blog-entry {
  background: #EAEAEA;
  padding-top: 40px;
  /* ←ヘッダー直下が寂しいなら余白はpaddingで作る */
}

.blog-entry .section__title {
  margin-top: 0;
  /* ←これが空白の犯人対策 */
}

.blog-entry-container {
  padding-left: 20%;
  padding-right: 20%;
  padding-bottom: 100px;
}

.list-news {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 16px;
  column-gap: 24px;
}

.list-news dt {
  font-size: 0.9em;
  color: #666;
  white-space: nowrap;
}

.list-news dd {
  margin: 0;
}

@media (max-width: 600px) {

  /* ===== 全体 ===== */
  .blog-entry-container {
    padding: 0 16px;
  }

  .block-page.container.narrow {
    padding: 0;
  }

  /* ===== タイトル周り ===== */
  .blog-entry-date {
    font-size: 0.85em;
    color: #777;
    margin-bottom: 8px;
  }

  .blog-entry-title {
    font-size: 1.4em;
    line-height: 1.4;
    margin-bottom: 24px;
  }

  /* ===== 本文 ===== */
  .blog-entry-contents {
    font-size: 0.95em;
    line-height: 1.8;
  }

  .blog-entry-contents p {
    margin-bottom: 1.2em;
  }

  /* 見出し */
  .blog-entry-contents h2 {
    font-size: 1.15em;
    margin: 2em 0 0.8em;
  }

  .blog-entry-contents h3 {
    font-size: 1.05em;
    margin: 1.6em 0 0.6em;
  }

  /* ===== リスト ===== */
  .blog-entry-contents ul,
  .blog-entry-contents ol {
    padding-left: 1.2em;
    margin-bottom: 1.4em;
  }

  .blog-entry-contents li {
    margin-bottom: 0.4em;
  }

  /* ===== 画像 ===== */
  .blog-entry-contents img {
    width: 100%;
    height: auto;
    display: block;
    margin: 24px 0;
  }

  figure {
    margin: 24px 0;
  }

  figcaption {
    font-size: 0.8em;
    color: #666;
    text-align: center;
    margin-top: 6px;
  }

  /* ===== iframe（YouTube） ===== */
  .blog-entry-contents iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 24px 0;
  }

  /* ===== パンくず ===== */
  .list-breadcrumbs {
    font-size: 0.8em;
    padding: 12px 16px;
  }

  /* ===== footer ===== */
  footer {
    font-size: 0.8em;
    padding: 24px 0;
    text-align: center;
  }
   /* ===== title　collar ===== */
  .section__title {
    color: #ffee00;
  }
}

/* 光カーソルを最前面にする */
#glow-cursor{
  position: fixed;
  z-index: 99999;        /* オーバーレイより上に */
  pointer-events: none;  /* クリックを邪魔しない */
}
/* ===== Blog Single (投稿詳細) ===== */

.blog {
  background: #EAEAEA;
  padding: 120px 0;
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog .section__title {
  text-align: center;
  margin: 0 0 64px;
  font-size: 40px;
  letter-spacing: 0.08em;
}

/* セクション（ホームページ/バナー/ロゴ） */
.blog-section {
  margin: 80px 0 120px;
}

.blog-title {
  font-size: 20px;
  text-align: center;
  font-weight: 300;
  margin: 150px 0 100px;
  letter-spacing: 0.06em;
}

/* ===== Grid ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section__title {
    color: #000;
  }
}

/* ===== Card ===== */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 50px #EEE7D9;
}

.blog-card__link {
  display: block;
  padding: 24px;
}

.blog-card__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .25s ease, filter .25s ease;

}

/* 画像ホバー：少し寄る */
.blog-card__link:hover .work-card__img {
  transform: scale(1.02);
  filter: brightness(1.03);
}

.blog-card__body {
  padding: 22px 22px 26px;
}

.blog-card__name {
  margin: 50px 0 10px;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-align: center;
}

.blog-card__desc {
  margin: 50px 0 50px;
  font-size: 13px;
  line-height: 1.9;
  color: #333;
  text-align: center;
}

.blog-card__meta {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.8;
  color: #444;

}

.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #EAEAEA;
  color: #333;
}

/* CTA */
.blog-card__cta {
  margin: 0;
}

.blog-card__btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  background: #b4b4b4;
  color: #4D4D4D;
  font-weight: 700;

  transition: background-color .3s ease, box-shadow .3s ease, transform .2s ease;
}

.blog-card__btn:hover {
  background: #ffee02;
  transform: translateY(-1px);
  box-shadow:
    0 6px 20px rgba(255, 255, 255, 0.7),
    0 16px 60px rgba(255, 238, 2, 0.6),
    0 30px 120px rgba(255, 238, 2, 0.4);
}

/* ===== バナー一覧 ===== */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 120px;
  align-items: start;
  margin-top: 48px;
}

/* クリック領域 */
.banner-item {
  text-decoration: none;
}

/* ===== バナー：正方形カード（完全固定） ===== */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2列 */
  gap: 64px 120px;
  /* 行 / 列の間隔 */
  justify-items: center;
  /* ← 各箱を中央に */
}

/* 正方形の枠 */
.banner-box {
  width: 100%;
  max-width: 420px;
  /* ← 好きな最大サイズ（重要） */
  aspect-ratio: 1 / 1;
  /* 正方形 */
  overflow: hidden;
  border-radius: 8px;
  background: #eee;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  transition: transform .2s ease, box-shadow .25s ease;
}

/* 画像は必ず枠いっぱい・描けない */
.banner-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* ← ここが超重要 */
  display: block;
}

/* hover */
.banner-item:hover .banner-box {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
}

/* スマホ */
@media (max-width: 900px) {
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Contactページだけ：フォームの横幅を制限 */
.page-id-50 .snow-monkey-form,
.page-id-50 .table-contact {
  max-width: 720px;   /* ← 好みで 640〜760px */
  margin-left: auto;
  margin-right: auto;
}
/* Contactページ：Snow Monkey Form を中央・幅制限 */
.page-id-50 .smf {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.page-id-50 .smf-form {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.page-id-50 .container {
  max-width: 800px;
}
.page-id-50 {
  outline: 8px solid red !important;
}

/* Blog/固定ページ用：安全な中央寄せ箱 */
.container--narrow{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
/* ===== Blog一覧：サムネイルサイズ調整 ===== */
.post-card__thumb{
  width: 200px;          /* ← 半分くらい */
  flex: 0 0 90px;
  align-items: center;
}

.post-card__thumb img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
/* ===== Blog一覧：センター寄せ ===== */

/* 記事1件ごとを中央に */
.post-card {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

/* カードの中身を縦＆中央揃え */
.post-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* サムネイルを中央に */
.post-card__thumb {
  width: 300px;          /* 好みで調整 */
  margin-bottom: 50px;
}

/* 画像 */
.post-card__thumb img {
  width: 100%;
  height: 300px;
  display: block;
  border-radius: 10px;
}

/* タイトル */
.post-card__title {
  margin: 0 0 6px;
}

/* 日付 */
.post-card__date {
  font-size: 0.9rem;
  color: #666;
}
/* 投稿詳細（single.php）だけ中央寄せ＆左右余白 */
.single .container{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.single-content figure {
  margin: 60px auto;
  text-align: center;
}

.single-content img {
  max-width: 600px;   /* px指定でもOK */
  width: 100%;
  height: auto;
}
/* ===== 投稿詳細：全体をセンター寄せ ===== */

/* タイトル・日付 */
.single-header {
  text-align: center;
  margin-bottom: 70px;
}

/* 本文全体を中央に */
.single-content {
  max-width: 720px;      /* 読みやすい幅 */
  margin: 0 auto;        /* 中央寄せ */
  text-align: center;    /* 文章も中央に */
}

/* 本文内の段落 */
.single-content p {
   text-align: left;
}

/* 画像はすでに中央寄せしている前提 */
.single-content img {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 40px auto;
  margin-bottom: 100px;
}
