@charset "UTF-8";
/* -----------------------------
  変数定義
----------------------------- */
:root {
  /* カラー */
  --color-primary: #F7FA37;
  --color-secondary: #02163E;
  --color-accent: #D9D9D9;
  --color-text: #000;
  --color-link: #006ad6;
  --color-white: #fff;
  --color-gray: #D9D9D9;
  --color-footer: #02163E;

  /* レイアウト */
  --width-content: 1200px;
  --width-narrow: 770px;
  --space-unit: 15px;
  --space-section: 45px;

  /* その他 */
  --duration: 0.7s;
}

/* -----------------------------
  ベース
----------------------------- */
body {
  font-family: "YuGothic", "游ゴシック Medium", "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  overflow-x: hidden;
}

.mv-ttl-font {
  font-family: "Kaisei Tokumin", serif;
  font-weight: 400;
  font-style: normal;
}
.hina-mincho-regular {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

#luxy {
  position: relative;
  width: 100%;
  min-height: 100vh;
  /* height: 100%を削除してmin-heightに */
}

.luxy-el {
  position: relative;
  will-change: transform;
}

/* -----------------------------
  レイアウト
----------------------------- */
.wrapper {
  width: var(--width-content);
  margin: 0 auto;
  position: relative;
  padding: 0 var(--space-unit);
  box-sizing: border-box;
}

/* -----------------------------
  共通コンポーネント
----------------------------- */
.sec-ttl {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  padding-bottom: var(--space-section);
}

.lead {
  font-size: 17px;
  line-height: calc(26 / 17);
  text-align: left;
}

/* ボタン */
a.btn_13 {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 380px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  background: #F7FA37;
  color: #000;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}

a.btn_13::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 2em;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
  width: 10px;
  height: 1px;
  background: #000;
}

a.btn_13::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: #000;
}

a.btn_13:hover {
  background: #D9D9D9;
  color: #000;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  a.btn_13 {
    width: 280px;
    padding: 1rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  a.btn_13 {
    width: 100%;
  }
}


/* -----------------------------
  ヘッダー
----------------------------- */
  header {
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
  }
  .logo img {
      width: auto;
      height: 60px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4cc 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-right: 8px;
  }

  .logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .nav-center {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
    margin: 0 40px;
  }

  .nav-item {
    position: relative;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .nav-item:hover {
    color: #00c4cc;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .cta-button {
    background-color: #333;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s;
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: #555;
  }

  .menu-button {
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    position: relative;
    z-index: 1001;
  }

  .menu-button:hover {
    background-color: #555;
  }

  .menu-button.open {
    background-color: #333;
  }

  .menu-line {
    width: 20px;
    height: 2px;
    background-color: white;
    border-radius: 1px;
    transition: all 0.3s;
  }

  .menu-button.open .menu-line:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
  }

  .menu-button.open .menu-line:nth-child(2) {
    opacity: 0;
  }

  .menu-button.open .menu-line:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
  }

  .mobile-menu {
    position: fixed;
    top: 50%;
    /* 上から50% */
    left: 50%;
    /* 左から50% */
    transform: translate(-50%, -50%) scale(0);
    /* 中央配置 + 最初は縮小 */
    width: 900px;
    max-width: 90%;
    height: 80vh;
    background-color: #fff;
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    /* 角丸にするとオシャレ */
  }

  .mobile-menu.open {
    transform: translate(-50%, -50%) scale(1);
      /* 開いた時は通常サイズ */
  }

  .mobile-menu-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    display: none;
    /* この1行だけ残す */
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    z-index: 1002;
  }

  .mobile-menu.open .mobile-menu-header {
    display: flex;
  }

  .mobile-menu-content {
    padding: 100px 60px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px 40px;
  }

  .menu-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .menu-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
  }

  .menu-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background-color: #333;
    transition: width 0.3s ease;
  }
  .menu-section-title:hover::after {
    width: 100%;
  }

  .menu-section-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
    display: block;
  }

  .menu-section-link:hover {
    color: #00c4cc;
  }

  .menu-section-sublink {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    display: block;
    padding-left: 16px;
  }

  .menu-section-sublink:hover {
    color: #00c4cc;
  }

  .menu-section-sublink::before {
    content: '－';
    margin-right: 8px;
  }

  /* .menu-cta {
    margin-top: 20px;
  } */

  .menu-cta-link {
    color: #fff;
    background-color: #333;
    border-radius: 6px;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
  }
  .cta-button i {
    color: white;
    margin-left: 6px;
    vertical-align: middle;
  }

  .menu-cta-link:hover {
    color: #00c4cc;
  }

  @media (max-width: 1100px) {
    .nav-center {
      gap: 20px;
    }

    .nav-item {
      font-size: 15px;
      padding: 8px 8px;
    }
  }

  @media (max-width: 900px) {
    .nav-center .nav-item:nth-child(n+4) {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .header-container {
      padding: 12px 20px;
    }

    .nav-center {
      display: none;
    }

    .mobile-menu-content {
      grid-template-columns: 1fr;
      padding: 100px 30px 60px;
    }
  }
/* -----------------------------
  メインビジュアル
----------------------------- */
.mv-block {
  position: relative;
  overflow: hidden;
}

.mv-area {
  min-height: 100svh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.mv-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  z-index: 1;
  pointer-events: none;
}

.mv-area .top-img {
  width: 80%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100px;
  position: absolute;
  margin: auto;
}

.ttl-box {
  text-align: center;
  position: relative;
}

.ttl-box::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -60px;
  width: 120%;
  height: 140%;
  background: linear-gradient(to top,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0));
  z-index: -1;
}

.mv-ttl {
  font-size: 36px;
  font-weight: bold;
  position: absolute;
  z-index: 2;
  text-align: left;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0em;
  top: 350px;
}

/* 奥にあるくっきりとした葉 */
.leaves {
  position: absolute;
  width: 26vw;
  max-width: 600px;
  z-index: 2;
}

.leaves01 {
  left: -80px;
  bottom: 45%;
}

.leaves02 {
  right: -80px;
  top: 35%;
}

.leaves img,
.leaves-b img {
  margin: 0;
  display: block;
}

/* 手前にあるぼかしのかかった葉 */
.leaves-b {
  position: absolute;
  width: 30vw;
  max-width: 600px;
  z-index: 3;
}

.leaves-b01 {
  left: -10px;
  top: -10px;
}

.leaves-b02 {
  right: -50px;
  top: 0px;
}

.leaves-b03 {
  left: -10px;
  bottom: -10px;
}

.leaves-b04 {
  right: -20px;
  bottom: 5px;
}

/* 大画面用（1600px以上） */
@media (min-width: 1600px) {
  .mv-area {
      min-height: 80svh;
    }
  .mv-area .top-img {
      width: 100%;
      top: 130px;
  }
  .leaves {
    width: 30vw;
  }
  .leaves01 {
      left: -20px;
    }

  .leaves02 {
    right: -180px;
  }
  .leaves-b {
    width: 35vw;
  }
  .leaves-b01 {
    left: -50px;
  }

  .leaves-b02 {
    right: -200px;
  }

  .leaves-b03 {
    left: -50px;
  }

  .leaves-b04 {
    right: -150px;
  }
}

/* -----------------------------
  セクション01
----------------------------- */
.aboutus-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 100px;
}

.box {
  width:100%;
  display: flex;
  align-items: stretch;
  margin-bottom: 30px;
  background: var(--color-white);
  gap: 30px;
}


.box-img {
  width: 50%;
}
.box-content {
  display: flex;
  align-items: center;
  padding: 0 var(--space-unit);
  width: 50%;
  color: var(--color-text);
}
.box-ttl {
  font-size: 26px;
  font-weight: bold;
  padding-bottom: 30px;
}
.box-txt {
  /* font-size: 16px;
  line-height: calc(26 / 16); */
  padding-bottom: 30px;
}
.sec01_btn {
 margin-left: 80%;
}
.sec-01 {
  padding-bottom: var(--space-section);
}
/* -----------------------------
   お知らせ（共通・全体）
----------------------------- */

/* --- 共通：見出しの黄色い四角 --- */
.sec-ttl {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: left;
}

.square {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #F7FA37;
  /* ロゴの黄色 */
  flex-shrink: 0;
}

/* --- レイアウト設定 --- */
.news-section {
  padding: 50px 0;
}

.news-list {
  border-top: 1px solid #eee;
}

.news-item {
  border-bottom: 1px solid #eee;
}

.news-link {
  display: flex;
  align-items: center;
  padding: 25px 0;
  text-decoration: none;
  color: #000;
  position: relative;
  transition: background-color 0.3s ease;
}

.news-link:hover {
  background-color: #fafafa;
}

.news-date {
  font-size: 14px;
  width: 130px;
  color: #888;
  flex-shrink: 0;
}

.news-title {
  font-size: 16px;
  flex-grow: 1;
  padding-right: 40px;
  line-height: 1.6;
}

/* --- 詳細ページ（single.php）全体のレイアウト --- */
.single-post-container {
  padding: 100px 0;
  background-color: #f5f5f5;
}

/* 記事を包むカード本体 */
.post-card {
  max-width: 900px;
  margin: 50px auto;
  background: #fff;
  padding: 60px 50px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 記事タイトル */
.post-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: left;
}

/* 投稿日時 */
.post-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
  display: block;
  border-bottom: 2px solid #F7FA37;
  /* 黄色の下線でアクセント */
  padding-bottom: 10px;
}

/* 本文エリア */
.post-content {
  line-height: 1.8;
  font-size: 16px;
  color: #333;
  margin-bottom: 60px;
}

/* スマホ対応の調整 */
@media screen and (max-width: 767px) {
  .single-post-container {
    padding: 60px 20px;
  }

  .post-card {
    padding: 30px 20px;
  }

  .post-title {
    font-size: 24px;
  }
}

/* --- NEWタグ --- */
.new-tag {
  display: inline-block;
  padding: 2px 8px;
  background: #F7FA37;
  border-radius: 3px;
  font-size: 11px;
  font-weight: bold;
  margin-left: 10px;
}

/* --- 矢印 --- */
.news-link::after {
  content: '';
  position: absolute;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.news-link:hover::after {
  transform: translateX(5px) rotate(45deg);
}

/* -----------------------------
   ボタン設定（トップ・一覧・詳細 共通）
----------------------------- */

/* ボタンの親要素：中央寄せ */
.news-btn-area,
.post-footer {
  text-align: center;
  width: 100%;
  margin: 50px 0;
}

/* ボタン本体のデザイン統一 */
.news-btn,
.back-link {
  display: inline-block;
  width: 260px;
  /* ボタンの横幅 */
  padding: 16px 0;
  /* ボタンの高さ調整 */
  background-color: #F7FA37;
  /* ロゴの黄色 */
  color: #000;
  /* 文字色 */
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #e0e000;
  /* 黄色に馴染む薄い線 */
  transition: all 0.3s ease;
  line-height: 1;
  cursor: pointer;
}

.news-btn:hover,
.back-link:hover {
  opacity: 0.8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #000;
}

/* -----------------------------
   ページネーション & スマホ対応
----------------------------- */

.pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.pagination .nav-links {
  display: flex;
  gap: 10px;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: background 0.3s;
}

.pagination .page-numbers.current {
  background: #F7FA37;
  border-color: #F7FA37;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .news-link {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }

  .news-date {
    margin-bottom: 8px;
  }

  .news-btn,
  .back-link {
    width: 100%;
    /* スマホではボタンを横いっぱいに */
    max-width: 300px;
  }
}
/* --- お知らせ一覧ページ（archive.php） --- */

.archive-container {
  padding: 100px 0;
  background-color: #f9f9f9;
  /* 背景を少しグレーに */
}

/* 一覧用のカードを包むエリア */
.news-cards-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* カード同士の間隔 */
}

/* 各お知らせカード */
.news-card-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card-item:hover {
  transform: translateY(-3px);
  /* 浮き上がる演出 */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-card-link {
  display: flex;
  align-items: center;
  padding: 30px;
  text-decoration: none;
  color: #333;
  position: relative;
}

.news-card-date {
  font-size: 14px;
  color: #888;
  width: 120px;
  flex-shrink: 0;
}

.news-card-title {
  font-size: 18px;
  font-weight: bold;
  flex-grow: 1;
  line-height: 1.5;
}

/* 右側の矢印をカード内にも配置 */
.news-card-link::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid #888;
  border-right: 2px solid #888;
  transition: transform 0.3s ease;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
  .news-card-link {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px 40px 20px 20px;
    }

    .news-card-date {
      margin-bottom: 8px;
      width: auto;
    }
    .news-card-title {
      font-size: 16px;
      padding-right: 0;
    }
}

/* -----------------------------
  パララックス01/02
----------------------------- */
.parallax-wrap {
  position: relative;
  height: 60vh;
  overflow: hidden;
  margin-bottom: 10vh;
}

.parallax01{
  height: 80vh;
  background: url("../img/parallax01.jpg") center / cover no-repeat;
}

.parallax02 {
  height: 110vh;
  background: url("../img/parallax02.jpg") center / cover no-repeat;
}

/* -----------------------------
  セクション02
----------------------------- */
.sec-02 {
  padding-bottom: var(--space-section);
}

.content-box {
  display: flex;
  gap: 5%;
}

.business-box {
  width: 50%;
  text-decoration: none;
  /* aタグの下線を消す */
  color: #000;
  display: block;
  /* 領域全体をクリック可能に */
}

/* 画像をはみ出さないように囲う枠 */
.img-viewport {
  overflow: hidden;
  /* ズームした画像がはみ出ないようにする */
  margin-bottom: 10px;
}

.business-box img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: transform 0.5s ease;
  /* ズームの速度 */
}

/* 1. 画像ズーム：親(business-box)がホバーされたら中身のimgを拡大 */
.business-box:hover img {
  transform: scale(1.08);
}

.link-ttl {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 20px 16px 0;
  /* 右側に矢印用の余白を確保 */
  font-weight: bold;
  font-size: 20px;
  border-bottom: 1px solid #000;
}

/* 左の黄色い四角 */
.link-ttl .label {
  position: relative;
  padding-left: 28px;
}

.link-ttl .label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #F7FA37;
  transform: translateY(-50%);
}

/* ===== 矢印のデザイン設定 ===== */

/* 矢印共通の動き設定 */
.link-ttl::before,
.link-ttl::after {
  content: '';
  position: absolute;
  background: #000;
  transition: transform 0.25s cubic-bezier(.4, 0, .2, 1);
}

/* 矢印の先（斜めの線） */
.link-ttl::before {
  top: 43%;
  right: 18px;
  width: 10px;
  height: 1px;
  transform: translateY(-50%) rotate(45deg);
}

/* 矢印の線（横棒） */
.link-ttl::after {
  top: 50%;
  right: 20px;
  width: 90px;
  height: 1px;
  transform: translateY(-50%);
}

/* 2. 矢印の連動：親(business-box)がホバーされたら矢印を動かす */
.business-box:hover .link-ttl::before {
  transform: translateY(-50%) translateX(10px) rotate(45deg);
}

.business-box:hover .link-ttl::after {
  transform: translateY(-50%) translateX(10px);
}
/* -----------------------------
  セクション03
----------------------------- */
.sec-03-ttl {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  padding: 20px 0;
}
.notification-box {
  width: 100%;
  background: transparent;
  /* 透明に */
  position: relative;
  z-index: 1;
}
.notification-box .box {
  margin: 30px 0;
  background: transparent;
  /* 透明に */
  position: relative;
}
.box-content {
  background: transparent;
  /* 透明に */
}

/* 上下の線 */
.sec-03-ttl::before,
.sec-03-ttl::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: #000;
  transform: translateX(-50%);
}

.sec-03-ttl::before {
  top: 0;
}

.sec-03-ttl::after {
  bottom: 0;
}

/* 左の黄色い四角 */
.sec-03-ttl .square {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  margin-right: 10px;
}
.sec-03 {
  padding-bottom: var(--space-section);
  position: relative;
  overflow: visible;
}
.sec-03 .wrapper {
  position: relative;
  z-index: 1;
  /* コンテンツを前面に */
}
.bg-shape {
  position: absolute;
  opacity: 0.15;
  z-index: -1;
  animation: float 10s ease-in-out infinite;
}

.donut {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 90px solid var(--color-primary);
  /* ← 色と太さを調整 */
  top: 5%;
  left: -5%;
}
.sec-03 .diamond2 {
  left: 10%;
  width: 200px;
  height: 200px;
}
@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -40px);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* -----------------------------
  セクション04
----------------------------- */
.sec-04 {
  padding-bottom: var(--space-section);
  position: relative;
  overflow: visible;
}
.sec-04 .wrapper {
  position: relative;
  z-index: 1;
  /* コンテンツを前面に */
}
.office-box {
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-bottom: 60px;
  background: var(--color-white);
  padding-top: 100px;
  gap: 30px;
  background: transparent;
}
.office-txt {
  width: 100%;
}
.office-txt a {
  margin-top: 30px;
}

.office-img {
  width: 65%;
}
.bg-shape {
  position: absolute;
  opacity: 0.15;
  z-index: -1;
  animation: float 10s ease-in-out infinite;
}

.diamond {
  width: 300px;
  height: 300px;
  background: transparent;
  border: 90px solid var(--color-primary);
  border-radius: 40px;
  top: 30%;
  right: -0%;
  animation: floatDiamond 12s ease-in-out infinite;
  /* 専用アニメーション */
}
.diamond2 {
  width: 200px;
  height: 200px;
  background: #f7f7f7;
  border: none;
  border-radius: 40px;
  top: 60%;
  right: 10%;
  animation: floatDiamond2 14s ease-in-out infinite;
  opacity: 1;
}

/* ひし形専用のアニメーション */
@keyframes floatDiamond {
  0% {
    transform: translate(0, 0) rotate(45deg);
  }

  50% {
    transform: translate(30px, -40px) rotate(45deg);
  }

  100% {
    transform: translate(0, 0) rotate(45deg);
  }
}
@keyframes floatDiamond2 {
0%,
  100% {
    transform: translate(0, 0) rotate(45deg);
  }

  30% {
    transform: translate(-25px, 30px) rotate(50deg);
  }

  60% {
    transform: translate(25px, -25px) rotate(40deg);
  }

  80% {
    transform: translate(-15px, 15px) rotate(48deg);
  }
    
  
}
/* -----------------------------
  セクション05
----------------------------- */
.sec-05 {
  position: relative;
  overflow: hidden;
}

.sec-05 .office-box {
  margin-bottom: 100px;
  position: relative;
  z-index: 10;
}
.office-box {
  background: transparent;
}
.office-box .box {
  background: transparent;
}

.recruit-images {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  /* 重複してた2行目は削除 */
  min-height: 700px;
}

/* 以下は現状のままでOK */
.recruit-images img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-images .img-center {
  width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  top: 0px;
}

.recruit-images .img-left {
  position: absolute;
  width: 25%;
  left: 0;
  top: 200px;
  z-index: 2;
}

.recruit-images .img-right {
  position: absolute;
  width: 25%;
  right: 0;
  top: 150px;
  z-index: 2;
}

.recruit-images .luxy-el {
  will-change: transform;
}
/* ドーナツ型 */
.sec-05 .bg-shape.donut {
  width: 250px;
  height: 250px;
  border: 70px solid #f7f7f7;
  border-radius: 50%;
  top: 10%;
  left: 5%;
  opacity: 1;
  animation: float-donut 8s ease-in-out infinite;
}

/* ダイヤモンド型 */
.sec-05 .bg-shape.diamond {
  width: 150px;
  height: 150px;
  transform: rotate(45deg);
  top: 70%;
  left: 25%;
  border-radius: 30px;
  animation: float-diamond 10s ease-in-out infinite;
}

/* ドーナツのふわふわアニメーション */
@keyframes float-donut {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(30px, -20px) rotate(5deg);
  }

  50% {
    transform: translate(-20px, -40px) rotate(-3deg);
  }

  75% {
    transform: translate(-30px, -20px) rotate(4deg);
  }
}

/* ダイヤモンドのふわふわアニメーション */
@keyframes float-diamond {

  0%,
  100% {
    transform: translate(0, 0) rotate(45deg);
  }

  30% {
    transform: translate(-25px, 30px) rotate(50deg);
  }

  60% {
    transform: translate(25px, -25px) rotate(40deg);
  }

  80% {
    transform: translate(-15px, 15px) rotate(48deg);
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .sec-05 .bg-shape.donut {
    width: 120px;
    height: 120px;
    border-width: 25px;
  }

  .sec-05 .bg-shape.diamond {
    width: 100px;
    height: 100px;
    left: 65%;
    top: 85%;
    border-radius: 20px;
  }
   
}


/* -----------------------------
  セクション06
----------------------------- */
.sec-06 {
  position: relative;
  overflow: visible;
}
.sec-06 .office-box {
  padding-bottom: var(--space-section);
}
.sec-06 .wrapper {
  position: relative;
  z-index: 1;
}
.sec-06 .bg-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
}

/* ドーナツ型 */
.sec-06 .bg-shape.donut {
  width: 250px;
  height: 250px;
  border: 70px solid #f7f7f7;
  border-radius: 50%;
  top: 10%;
  left: 5%;
  opacity: 1;
  animation: float-donut 8s ease-in-out infinite;
}

/* ダイヤモンド型 */
.sec-06 .bg-shape.diamond {
  width: 150px;
  height: 150px;
  transform: rotate(45deg);
  top: 60%;
  right: 8%;
  animation: float-diamond 10s ease-in-out infinite;
}

/* ドーナツのふわふわアニメーション */
@keyframes float-donut {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(30px, -20px) rotate(5deg);
  }

  50% {
    transform: translate(-20px, -40px) rotate(-3deg);
  }

  75% {
    transform: translate(-30px, -20px) rotate(4deg);
  }
}

/* ダイヤモンドのふわふわアニメーション */
@keyframes float-diamond {

  0%,
  100% {
    transform: translate(0, 0) rotate(45deg);
  }

  30% {
    transform: translate(-25px, 30px) rotate(50deg);
  }

  60% {
    transform: translate(25px, -25px) rotate(40deg);
  }

  80% {
    transform: translate(-15px, 15px) rotate(48deg);
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .sec-06 .bg-shape.donut {
    width: 120px;
    height: 120px;
    border-width: 25px;
  }

  .sec-06 .bg-shape.diamond {
    width: 100px;
    height: 100px;
  }
}


/* -----------------------------
  footer
----------------------------- */
.footer {
  background: var(--color-footer);
}

.footer .wrapper {
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  padding-bottom: 40px;
}
.footer-logo img {
  margin: 0;
  width: auto;
  height: 50px;
}
.sns-box {
  position: relative;
  display: inline-flex;
  margin-bottom: 20px;
  gap: 20px;

}
/* 線 */
.sns-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  opacity: 0.8;
  background-color: #fff;
  transition: width 0.3s ease;
}

/* ホバー */
.sns-box:hover::after {
  width: 100%;
}
.sns-txt {
  color: #fff;
  width: 134px;
  text-align: center;
  padding: 10px 0;
}
.sns-img img {
  max-width: 90%;
}
/* .address {
  width: 200px;
  font-size: 15px;
  color: var(--color-white);
} */

/* .address address {
  line-height: calc(24 / 15);
} */

.footer-nav {
  display: flex;
  width: 870px;
  justify-content: flex-end;
}

.footer-nav ul+ul {
  margin-left: 50px;
}

.footer-nav li {
  font-size: 16px;
  line-height: 1.4;
}

.footer-nav li+li {
  margin-top: 12px;
}

.footer-nav a {
  color: var(--color-white);
  text-decoration: none;
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer-nav a:hover::after {
  transform: scaleX(1);
}

.copyright {
  height: 30px;
  line-height: 30px;
  background: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
  font-size: 12px;
}

/* -----------------------------
  page-aboutus
----------------------------- */
.philosophy {
  padding-bottom: 30px;
}
.philosophy p {
  padding-bottom: 30px;
}
.sec-ttl .square-2 {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  margin-right: 10px;
}
.txt-area-ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 35px;
  color: #333;
  line-height: 1.35;
}

.philosophy .sec-ttl {
  text-align: left;
  padding: 100px 0 50px 0;
}
.cont-wrap {
  display: flex;
  justify-content: space-between;
}
.page02 {
  padding-bottom: var(--space-section);
}

.page02 li {
  padding-bottom: 20px;
}
.page02 li h3 {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 15px;
  color: #333;
}
.txt-area-ttl span {
  color: #3b355f;
  font-size: 23px;
  font-weight: bold;
  border-left: 4px solid #f5e800;
  padding-left: 12px;
}
/* .page02 li p {
  
} */
.txt-area {
  width: 48%;
}
.img-area {
  width: 46%;
}
.img-area {
  position: relative;
}

.img-area .luxy-el:first-child {
  width: 75%;
  margin-left: auto;
  top: 120px;
}
.img-area .luxy-el:last-child {
  position: absolute;
  top: 170px;
  left: 0;
  width: 35%;
}
.page02-2 .sec-03-ttl {
  margin-bottom: 100px;
}
.philosophy-box {
 padding-bottom: 100px;
 max-width: 1000px;
 width: 100%;
 margin: 0 auto;
}
.philosophy-ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
.philosophy-txt {
  font-size: 16px;
  line-height: calc(26 / 14);
  margin-bottom: var(--space-section);
}
.philosophy-list {
  padding-left: 1.5em;
  line-height: 1.8;
}

.philosophy-list li {
  margin-bottom: 12px;
}
.philosophy-list {
  list-style: none;
  padding: 0;
}

.philosophy-list li {
  position: relative;
  padding-left: 2.2em;
  margin-bottom: 16px;
  line-height: 1.8;
}

.philosophy-list li::before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: normal;
}
.philosophy-list {
  counter-reset: item;
}

/* -----------------------------
  page-service
----------------------------- */
.text-area {
  padding: 50px 0 100px 0;
}
.text-area img {
  padding-bottom: 40px;
}
.text-introduction {
  padding-bottom: 40px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.item-list {
  list-style: none;
  padding: 0;
}
.item-list h3 {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 10px;
  color: #333;
}

.item-list li {
  margin-bottom: 16px;
  line-height: 1.6;
}
.item-list li strong {
  color: #333;
}
.item-list li strong::before {
  content: ">> ";
  color: #333;
  /* アクセント色 */
}
/* -----------------------------
  page-company
----------------------------- */
.page02 .sec-ttl {
  text-align: left;
  padding: 100px 0 50px 0;
}
.company-table {
  max-width:1000px;
  width: 100%;
  border-collapse: collapse;
  margin: 50px auto 100px;
}

.company-table th,
.company-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #ccc;
  vertical-align: top;
}
.company-table td {
  font-size: 18px;
}

.company-table th {
  width: 25%;
  font-weight: normal;
  color: #555;
}
.company-table th,
.company-table td {
  padding: 16px 20px;
  /* ← 余白 */
  line-height: 1.8;
}
.company-table td ul {
  list-style: disc;
  padding-left: 1.2em;
}


@media (max-width: 640px) {

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    padding-bottom: 4px;
    font-weight: bold;
  }

  /* .company-table td {
    padding-top: 0;
  } */
}
/* -----------------------------
  page-notification
----------------------------- */
.notification-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-section);
}
.notification-img {
  width: 50%;
}
.notification-img a {
  display: block;
}
.notification-img img {
  width: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.notification-img a:hover img {
  transform: translateY(2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.notification-txt {
  width: 50%;
  align-items: center;
}
figcaption {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding-top: 20px;
}
.notification-img img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
/* -----------------------------
  page-office
----------------------------- */
.page05 .sec-ttl {
  text-align: left;
  padding: 100px 0 50px 0;
}
.page05 .wrapper {
  max-width: 1000px;
}
.office-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
  padding-bottom: 50px;
  grid-template-areas:
  "a .";
}
.office-list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
  padding: 50px 0;
  grid-template-areas:
      "b c"
      "d e"
      "f g";
}
.a {
  grid-area: a;
}

.b {
  grid-area: b;
}

.c {
  grid-area: c;
}

.d {
  grid-area: d;
}

.e {
  grid-area: e;
}
.f {
  grid-area: f;
}
.g {
  grid-area: g;
}
.office-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.office-name {
  font-size: 20px;
  font-weight: 600;
}
.office-map {
  position: relative;
}

.office-map iframe {
  width: 100%;
  height: 300px;
}

.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}
.office-map::after {
  content: "タップで地図を開く";
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 3;
}
.office-address::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ccc;
  margin: 12px 0;
}
.software {
  padding-top: 50px;
}

.office-name .square-2 {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .office-list {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
  .a,
  .b,
  .c,
  .d,
  .e,
  .f,
  .g {
    grid-area: auto;
  }
}

/* -----------------------------
  page-contact
----------------------------- */
.contact-txt {
  padding-bottom: 30px;
}

/* -----------------------------
  レスポンシブ - タブレット
----------------------------- */
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .wrapper {
    width: 768px;
  }
  .lead {
    font-size: 16px;
  }
  .mv-area {
    min-height: 50svh;
  }
  .mv-area .top-img {
    width: 50%;
    height: 40%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100px;
    position: absolute;
    margin: auto;
  }

  .ttl-box {
    text-align: center;
  }

  .mv-ttl {
    font-size: 26px;
    font-weight: bold;
    position: absolute;
    z-index: 2;
    text-align: left;
    /* 文字は左寄せ */
    left: 60%;
    transform: translateX(-50%);
    letter-spacing: 0.1em;
    top: 250px;
    width: 80%;
    max-width: 800px;
  }

  .mv-area .top-img {
    width: 100%;
    margin: 0 auto;
  }

  /* //奥にあるくっきりとした葉 */
  .leaves {
    position: absolute;
    width: 26vw;
    max-width: 600px;
  }

  .leaves01 {
    left: -70px;
    top: 25%;
  }

  .leaves02 {
    right: -70px;
    top: 30%;
  }

  /* 手前にあるぼかしのかかった葉 */
  .leaves-b {
    position: absolute;
    width: 30vw;
    max-width: 600px;
    z-index: 2;
  }

  .leaves-b01 {
    left: -10px;
    top: -10px;
  }

  .leaves-b02 {
    right: -10px;
    top: -10px;
  }

  .leaves-b03 {
    left: -10px;
    top: 300px;
  }

  .leaves-b04 {
    right: -10px;
    top: 320px;
  }
  /* -----------------------------
  セクション01(TB)
----------------------------- */
 
  .cont-wrap {
    flex-direction: column;
  }
  .box {
    gap: 20px;
  }

  .sec-01 figure {
    width: 50%;
  }
  .box-ttl {
    font-size: 20px;
  }

  /* -----------------------------
  パララックス01/02(TB)
----------------------------- */
  .parallax-wrap {
    height: 40vh;
  }

  .parallax01 {
    height: 50vh;
    background: url("../img/sp_parallax01.jpg") center / cover no-repeat;
  }

  .parallax02 {
    height: 60vh;
    background: url("../img/sp_parallax02.jpg") center / cover no-repeat;
  }
  /* -----------------------------
  セクション03(TB)
----------------------------- */

  .sec-03 {
    padding-bottom: var(--space-section);
  }
  .box-content {
    width: 50%;
  }
  .notification-box figure {
    width: 50%;
  }
  /* -----------------------------
  セクション05(TB)
----------------------------- */
  .office-box .box-content {
    width: 100%;
  }
  .recruit-images {
    max-width: 700px;
    min-height: 600px;
  }


  .recruit-images .img-left {
    top: 130px;
  }

  .recruit-images .img-right {
    top: 30px;
  }
  /* -----------------------------
  aboutus(TB)
----------------------------- */
.cont-wrap {
  flex-direction: column;
}
.page02 .txt-area {
  width: 100%;
}
.page02 .img-area {
  width: 60%;
  margin: 0 auto 100px;
}
.luxy-el:first-child {
  top: 60px;
}
.luxy-el:last-child {
 top: 100px;
}
}

/* -----------------------------
  レスポンシブ - スマートフォン
----------------------------- */
@media screen and (max-width: 767px) {
  .wrapper {
    width: 100%;
  }
  .sec-ttl {
        font-size: 24px;
        padding-bottom: var(--space-unit);
    }
  .nav-right {
    gap: 10px;
  }
  .menu-section-title {
    font-size: 16px;
    margin-bottom: 0;
  }
  .mobile-menu-content {
    gap: 40px;
  }
  .menu-cta-link {
    font-size: 16px;
  }
  .menu-pc {
    display: none;
  }
  .lead {
    font-size: 16px;
  }
  .logo img {
    width: auto;
    height: 50px;
  }
  /* -----------------------------
メインビジュアル(SP)
----------------------------- */
  .mv-area {
    min-height: 100svh;
  }
  .mv-area::before {
    background: rgba(255, 255, 255, 0.35);
  }
    
  .ttl-box {
    text-align: center;
  }

  .mv-ttl {
    font-size: 22px;
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    /* 文字幅ぴったり＝光学中央ズレ防止 */
    max-width: 90%;
    /* 画面はみ出し防止 */
    text-align: left;
    /* 文字は左揃え */
    font-size: 22px;
    line-height: 1.6;
    word-break: keep-all;
    /* 日本語の変な途中改行防止 */
  }

  .mv-area .top-img {
    width: 100%;
  }
  
  /* //奥にあるくっきりとした葉 */
  .leaves {
    position: absolute;
    width: 35vw;
    max-width: 600px;
  }

  .leaves01 {
    left: 0px;
    bottom: 20%;
    width: 45vw;
  }

  .leaves02 {
    right: -20px;
    top: 18%;
  }

  /* 手前にあるぼかしのかかった葉 */
  .leaves-b {
    position: absolute;
    width: 50vw;
    max-width: 600px;
    z-index: 2;
  }

  .leaves-b01 {
    left: -50px;
    top: 0px;
  }

  .leaves-b02 {
    right: 0px;
    top: 0px;
  }

  .leaves-b03 {
    left: -10px;
    bottom: 0;
  }

  .leaves-b04 {
    right: -35px;
    bottom: 50px;
  }
  /* -----------------------------
  セクション01(SP)
----------------------------- */
.aboutus-box {
  padding-top: 0px;
}

.box {
  flex-direction: column;
}
.box figure {
  margin-top: 20px;
}
.box-content {
  width: 100%;
}
.box-ttl {
  font-size: 22px;
}
/* -----------------------------
  パララックス01/02(SP)
----------------------------- */
.parallax-wrap {
  height: 30vh;
}

.parallax01 {
  height: 60vh;
  background: url("../img/sp_parallax01.jpg") center / cover no-repeat;
}

.parallax02 {
  height: 70vh;
  background: url("../img/sp_parallax02.jpg") center / cover no-repeat;
}
/* -----------------------------
  セクション02(SP)
----------------------------- */
.sec-02 {
  padding-bottom: var(--space-section);
}

.content-box {
  flex-direction: column;
}

.business-box {
  width: 100%;
}

.link-ttl {
 margin-bottom: 20px;
 font-size: 16px;
}
.link-ttl .label::before {
  width: 16px;
  height: 16px;
}
/* -----------------------------
  セクション03(SP)
----------------------------- */
.donut {
  width: 200px;
  height: 200px;
  border: 50px solid var(--color-primary);
  top: 0%;
  left: -20%;
}
.sec-03 .diamond2 {
  width: 150px;
  height: 150px;
  right: 10%;
}
.sec-03 .box-content {
  display: block;
}
/* -----------------------------
  セクション04(SP)
----------------------------- */
.office-box {
  flex-direction: column;
}

.office-txt {
  width: 100%;
}

.office-img {
  width: 100%;
}
.diamond {
  width: 200px;
  height: 200px;
  border: 50px solid var(--color-primary);
  top: 5%;
  right: -10%;
}
.diamond2 {
  width: 100px;
  height: 100px;
  top: 15%;
  right: 20%;
  opacity: 1;
  border-radius: 15px;
  background-color: #f7f7f7;
}
/* -----------------------------
  セクション05(SP)
----------------------------- */

.sec-05 .office-box {
  margin-bottom: 50px;
}

.recruit-images {
  max-width: 95%;
  min-height: 400px;
}

/* 以下は現状のままでOK */
.recruit-images img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-images .img-center {
  width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  top: 50px;
}

.recruit-images .img-left {
  position: absolute;
  width: 30%;
  left: 0;
  top: 180px;
  z-index: 2;
}

.recruit-images .img-right {
  position: absolute;
  width: 30%;
  right: 0;
  top: 110px;
  z-index: 2;
}

.recruit-images .luxy-el {
  will-change: transform;
}
/* -----------------------------
  footer(SP)
----------------------------- */
.footer .wrapper {
  padding-left: var(--space-unit);
  padding-right: var(--space-unit);
  flex-direction: column;
  gap: 20px;
}

.sns {
  display: flex;
  flex-direction: column;
}
.address {
  margin: 0 auto 0 30px;
}

.footer-nav {
  width: 100%;
  justify-content: space-around;
}
/* -----------------------------
  page-aboutus(sp)
----------------------------- */
.sec-ttl .square-2 {
  width: 24px;
  height: 24px;
}
.cont-wrap {
  display: flex;
  flex-direction: column;
}

.txt-area,
.img-area {
  width: 100%;
  min-height: 400px;
}
.page02-2 .sec-03-ttl {
  margin-bottom: 60px;
}
.philosophy-ttl {
  font-size: 18px;
}

.img-area .luxy-el:first-child {
  top: 150px;
}

.img-area .luxy-el:last-child {
  top: 380px;
}
.philosophy-box {
  padding-bottom: 60px;
}
/* -----------------------------
  page-notification(sp)
----------------------------- */
.notification-area {
  flex-direction: column;
  gap: 20px;
}

.notification-img {
  width: 100%;
}

.notification-txt {
  width: 100%;
}
figcaption {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding-top: 20px;
}
/* -----------------------------
  page-office(sp)
----------------------------- */
.tentative {
  display: none;
}
.office-list2 {
  display: block;
  padding: 20px 0 50px;
}
.office-name {
  margin-top: 30px;
}
}





/* 小さめスマホ向け */
@media screen and (max-width: 399px) and (max-height: 700px) {
.mv-area {
    min-height: 90svh;
  }
  .mv-ttl {
    font-size: 20px;
    top: 260px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    /* 文字幅ぴったり＝光学中央ズレ防止 */
    max-width: 90%;
    /* 画面はみ出し防止 */
    text-align: left;
    /* 文字は左揃え */
    line-height: 1.6;
    word-break: keep-all;
    /* 日本語の変な途中改行防止 */
  }

.mv-area .top-img {
    width: 100%;
    top: 120px;
  }

  /* //奥にあるくっきりとした葉 */
  .leaves {
    position: absolute;
    width: 30vw;
    max-width: 600px;
  }

  .leaves01 {
    left: -10px;
    bottom: 25%;
    width: 35vw;
  }

  .leaves02 {
    right: 0px;
    top: 15%;
    width: 35vw;
  }

  /* 手前にあるぼかしのかかった葉 */
  .leaves-b {
    position: absolute;
    width: 50vw;
    max-width: 600px;
    z-index: 2;
  }

  .leaves-b01 {
    left: -20px;
    top: -20px;
  }

  .leaves-b02 {
    right: 0px;
    bottom: 0px;
  }

  .leaves-b03 {
    left: -30px;
    bottom: 40px;
  }

  .leaves-b04 {
    right: -20px;
    bottom: 0;
  }
    
}

.pc {
  display: block;
}

.sp {
  display: none;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}
