/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; align-items: center; gap: 40px; }
.flex-around { display: flex; justify-content: space-around; flex-wrap: wrap; }

/* Header */
.header {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

@media (min-width: 768px) {
  .logo{
      width: 20%;
  }
}

.logo img{
    width: 100%;
}

.nav a {
    text-decoration: none;
    color: #333;
    margin-left: 20px;
    font-size: 14px;
}

.btn-primary {
    background: #1D50A2;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
}

/* ナビゲーション全体のレイアウト調整（既存のnavに追加・修正） */
.nav {
    display: flex;
    align-items: center;
}

.nav-item {
    position: relative; /* 子要素の基準点にする */
    margin: 0 15px;
}

/* 外部連携リンクのスタイル */
.nav-item > a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    display: block;
    padding: 10px 0;
}

.arrow-down {
    font-size: 0.7em;
    margin-left: 4px;
    vertical-align: middle;
}

/* ドロップダウンメニュー本体（初期状態は非表示） */
.dropdown-menu {
    position: absolute;
    top: 100%; /* 親要素の直下に配置 */
    left: 50%;
    transform: translateX(-50%); /* 中央寄せ */
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    width: 240px;
    padding: 10px 0;
    list-style: none;
    z-index: 100;
    
    /* アニメーションの準備 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* マウスオーバー時に表示 */
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* メニュー内の各リンク */
.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
    text-align: left;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #1a53a1; /* ブランドカラーなど */
}

/*ハンバーガーメニュー*/

/* PCではハンバーガーを隠す */
.hamburger {
    display: none;
}

/* スマホ用スタイル */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        position: relative;
        width: 30px;
        height: 24px;
        cursor: pointer;
        z-index: 100;
    }

    /* 三本線のデザイン */
    .hamburger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #333; /* ロゴに合わせた色に調整 */
        transition: all 0.3s;
    }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 11px; }
    .hamburger span:nth-child(3) { bottom: 0; }

    /* 開閉時のアニメーション (X印にする) */
    .hamburger.is-active span:nth-child(1) { transform: translateY(11px) rotate(-45deg); }
    .hamburger.is-active span:nth-child(2) { opacity: 0; }
    .hamburger.is-active span:nth-child(3) { transform: translateY(-11px) rotate(45deg); }

    /* メニュー本体を全画面（または右からスライド）にする */
    .nav {
        display: block; /* Flexを解除 */
        position: fixed;
        top: 0;
        right: -100%; /* 初期状態は画面外 */
        width: 80%;
        height: 100vh;
        background: #fff;
        padding-top: 80px;
        transition: all 0.3s;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 90;
    }

    /* メニューが開いた状態 */
    .nav.is-active {
        right: 0;
    }

    .nav a {
        display: block;
        padding: 20px;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        color: #333;
    }
}

@media screen and (max-width: 768px) {
    /* メニュー内のリンク全体 */
    .nav a {
        display: block;
        padding: 15px 20px;
        text-align: center; /* 中央寄せにするとよりボタンらしくなります */
    }

    /* 「お問い合わせ」ボタンのみ上に余白をつける */
    .nav a.btn-primary {
        margin-top: 20px; /* ここで上の余白を調整 */
        margin-left: 20px; /* 左右にマージンを入れて少し浮かせると綺麗です */
        margin-right: 20px;
        border-radius: 5px; /* 角を丸く */
        border-bottom: none; /* 下線を消す */
    }
}

/* Hero */
.hero {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.hero-text h1 {
    font-size: 32px;
    color: #1D50A2;
    margin-top: 15px;
}

.highlight {
    background: linear-gradient(transparent 60%, #ffe73f 60%);
}

@media (min-width: 768px) {
  .hero-img{
      width: 50%;
  }
}

.hero-img img {
    max-width: 100%;
    height: auto;
}

.badge{
  border: 1px solid #3f4649;
  padding: 5px 20px 10px;
  border-radius: 25px;
}

.badge02 {
      font-size: 28px;
      color: #fff;
      background-color: #ef3b3b;
      text-align: center;
      border-radius: 25px;
      padding: 5px;
  }

@media (max-width: 768px) {
  .badge02 {
      font-size: 20px;
  }
  .hero-text h1 {
    font-size: 30px;
  }
}


/* System Section */

/* セクション全体の背景 */
.system-section {
  background-color: #1a53a1; /* 画像に合わせた濃い青 */
  color: #fff;
  padding-bottom: 80px;
  overflow: hidden;
}

/* インボイスバナー */
.invoice-banner {
  background-color: #f1ca4d;
  color: #333;
  text-align: center;
  padding: 15px;
  margin-bottom: 60px;
  font-size: 0.95rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 背景装飾文字のスタイル */
.system-title-area {
  position: relative;
  margin-bottom: 60px;
}

.bg-text {
  font-size: 120px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1); /* 薄く透過させる */
  line-height: 1;
  display: block;
}

.main-title {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 24px;
  margin: 0;
}

/* 3カラムレイアウト */
.system-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.system-item {
  flex: 1;
  text-align: center;
}

/* 白い円形の画像部分 */
.circle-image {
  background-color: #fff;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.circle-image img {
  width: 80%; /* イラストのサイズ調整 */
  height: auto;
}

.system-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.system-item p {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .system-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .bg-text {
    font-size: 80px;
  }
  
  .circle-image {
    width: 240px;
    height: 240px;
  }
}

/*  MeritSection */

/* 基本設定 */
.merit-section {
  padding: 100px 0;
  background-color: #fff;
  overflow: hidden;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 見出し：背景の大きなMERIT */
.section-header {
  position: relative;
  margin-bottom: 80px;
}

.merit-section .bg-text {
  font-size: 100px;
  font-weight: bold;
  color: #f0f0f0; /* 薄いグレー */
  line-height: 1;
  display: block;
  user-select: none;
}

.sub-title {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin: 0;
  color: #1a53a1; /* メインの青色 */
  font-size: 25px;
  font-weight: bold;
}

/* 各項目のレイアウト */
.merit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

/* 2つ目のアイテムを左右入れ替え */
.merit-item.is-reverse {
  flex-direction: row-reverse;
}

.merit-text {
  width: 45%;
}

.merit-text h3 {
  font-size: 26px;
  color: #333;
  line-height: 1.4;
  margin-bottom: 20px;
}

.merit-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.merit-image {
  width: 50%;
}

.merit-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .bg-text { font-size: 60px; }
  
  .merit-item, .merit-item.is-reverse {
    flex-direction: column-reverse; /* スマホでは画像を上、文字を下に */
    gap: 20px;
  }

  .merit-text, .merit-image {
    width: 100%;
  }

  .merit-text h3 { font-size: 20px; }
}



/* Flow Section */

/* セクション全体の背景と余白 */
.flow {
  background-color: #f9eac2; /* 薄いイエロー/クリーム色 */
  padding: 80px 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.header > .container{
  max-width: 1200px;
}

/* 背景文字装飾の見出し（他セクションと共通） */
.flow .section-header {
  position: relative;
  margin-bottom: 50px;
}

.flow .bg-text {
  font-size: 100px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.5); /* 背景になじませる白 */
  line-height: 1;
}

.flow .sub-title {
  position: absolute;
  top: 50%;
  left: 105px; /* FLOWの文字の後に配置 */
  transform: translateY(-50%);
  color: #1a53a1;
  font-size: 25px;
  margin: 0;
}

/* コンテンツレイアウト */
.flow-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ステップカードのスタイル */
.flow-steps {
  width: 45%;
}

.step-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative; /* 吹き出しの角の基準 */
}

/* 吹き出しの三角形 */
.step-card::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #ffffff;
}

.step-num {
  width: 50px;
  height: 50px;
  border: 2px solid #1a53a1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #1a53a1;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-text h3 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

.step-text p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* 右側画像 */
.flow-preview {
  width: 50%;
}

.flow-preview img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* レスポンシブ */
@media (max-width: 900px) {
  .flow-content {
    flex-direction: column;
  }
  .flow-steps, .flow-preview {
    width: 100%;
  }
  /* スマホでは吹き出しの角を下に向けるか、消す */
  .step-card::after {
    display: none;
  }
}

/* 主な機能 Section */

/* セクション全体の背景色と余白 */
.features {
  background-color: #f5f2e9; /* 薄いベージュ */
  padding: 100px 0;
  text-align: center;
}

/* ヘッダー：背景に薄いSYSTEM、手前に「主な機能」 */
.features-header {
  position: relative;
  margin-bottom: 40px;
}

.features-title .sub {
  color: #1a53a1;
  font-size: 1.2rem;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.features-title .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  font-weight: bold;
  color: #ffffff; /* 白抜き、または非常に薄いグレー */
  opacity: 0.6;
  z-index: 1;
}

/* 白いメインカード */
.features-card {
  background: #fff;
  border-radius: 20px; /* 角を丸く */
  padding: 60px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* 軽い影で浮遊感を出す */
}

.card-lead {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: bold;
}

/* スクリーンショット画像 */
.card-image {
  margin-bottom: 40px;
}

.card-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border: 1px solid #eee; /* 画面キャプチャの縁をはっきりさせる */
  margin: auto;
}

/* 下部の説明文 */
.card-description h4 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.card-description p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

/* カード間の余白 */
.features-card {
  margin: 0 10px; /* 左右に少し隙間を作る */
  outline: none;  /* クリック時の青枠を消す */
}

/* Slickの矢印の色をメインの青に変更 */
.slick-prev:before, .slick-next:before {
  color: #1a53a1 !important;
}

/* 矢印ボタン全体のサイズと位置調整 */
.slick-prev, .slick-next {
    width: 50px !important;  /* ボタンの横幅 */
    height: 50px !important; /* ボタンの高さ */
    z-index: 10;
    background: #1a53a1; /* 背景色（メインの青） */
    border-radius: 50%;  /* 円形にする */
    transition: all 0.3s;
}

/* ホバー時に色を少し薄くする */
.slick-prev:hover, .slick-next:hover,
.slick-prev:focus, .slick-next:focus {
    background: #3371c2;
}

/* 矢印アイコン（文字）のサイズと色 */
.slick-prev:before, .slick-next:before {
    font-size: 30px !important; /* アイコンのサイズを大きく */
    opacity: 1;      /* 透過を解除 */
    color: #ffffff;  /* 矢印の色を白に */
}

/* 矢印の位置を微調整（スライダーの枠外に出す場合） */
.slick-prev {
    left: -60px;
}
.slick-next {
    right: -60px;
}

/* スマホでは矢印がはみ出るので、枠内に戻すか非表示にする */
@media (max-width: 1200px) {
    .slick-prev { left: 10px; }
    .slick-next { right: 10px; }
}

/* ドットの間隔調整 */
.slick-dots {
  bottom: -40px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .features-card {
    padding: 40px 20px;
  }
  .card-lead {
    font-size: 1.3rem;
  }
}


/* 導入事例 Section */
/* セクション全体の余白 */
.voice {
  padding: 100px 0;
  background-color: #fff;
}

/* 共通の見出し装飾（SYSTEM/MERITと同様） */
.voice .section-header {
  position: relative;
  margin-bottom: 60px;
}

.voice .bg-text {
  font-size: 100px;
  font-weight: bold;
  color: #f1f1f1;
  line-height: 1;
}

.voice .sub-title {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translateY(-50%);
  color: #1a53a1;
  font-size: 25px;
  font-weight: bold;
  padding-left: 10px;
}

/* 導入事例リスト */
.voice-list {
  max-width: 800px;
  margin: 0 auto 60px;
}

.voice-item {
  padding: 40px 0;
  border-bottom: 1px solid #eee; /* 事例ごとの区切り線 */
}

.voice-item:first-child {
  padding-top: 0;
}

.voice-category {
  font-size: 22px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.voice-category a{
  color: #1a53a1;
}

.voice-client {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.voice-client img{
  width: 100%;
}

.voice-detail p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
}

.voice-detail p:last-child {
  margin-bottom: 0;
}

/* さらに見るボタン */
.voice-btn-area {
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background: #1a53a1;
  color: #fff;
  padding: 15px 80px;
  border-radius: 50px; /* 丸いボタン */
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  position: relative;
}

/* ボタンの右矢印の装飾 */
.btn-primary::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background: #fff;
}

.btn-primary:hover {
  background: #15468a;
}


/*e-デジタル販売とは*/
/* 紹介セクションの基本スタイル */
.intro-section {
    padding: 100px 0; /* 上下余白を少し増やしてゆとりを持たせる */
    background-color: #fff;
    overflow: hidden; /* 画像がはみ出さないようガード */
}

.intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; /* テキストと画像の間隔を最適化 */
}

/* 左側：テキスト（幅を少し絞って画像にスペースを譲る） */
.intro-text {
    flex: 0 0 40%; /* 幅を全体の40%に固定 */
}

.intro-text .sub-lead {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.intro-text .intro-title {
    font-size: 1.85rem;
    line-height: 1.6;
    color: #333;
}

.intro-text .brand-name {
    color: #005bac;
    font-weight: 800;
}

.intro-text .highlight-red {
    color: #e60012;
    font-weight: bold;
}

.intro-text .underline {
    background: linear-gradient(transparent 70%, #ffdf4d 70%);
    font-weight: bold;
    white-space: nowrap; /* 改行を防いで強調を際立たせる */
}

/* 右側：ビジュアルエリア（ここを大きくしました） */
.intro-visual {
    flex: 0 0 58%; /* 幅を58%まで拡張 */
}

.visual-container {
    width: 100%;
}

.visual-container img {
    width: 100%;
    height: auto;
    display: block;
    /* 画像を少し右側にせり出させたい場合は transform: translateX(20px); など */
}

/* スマホ表示：縦並びに切り替え */
@media screen and (max-width: 992px) {
    .intro-content {
        flex-direction: column;
        text-align: center;
    }

    .intro-text, .intro-visual {
        flex: 0 0 100%;
        width: 100%;
    }

    .intro-text {
        margin-bottom: 40px;
    }

    .intro-text .underline {
        white-space: normal; /* スマホでは改行を許可 */
    }
}

/* --- メリットセクション --- */
.merit-section02 {
    padding: 80px 0;
    background-color: #fff;
}

.merit-section02 img{
  width: 100%;
}

.merit-title-area02 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* 前のSYSTEMセクションと共通のスタイルを利用しつつ個別に設定 */
.merit-title-area02 .bg-text {
    font-size: 100px; /* 画像に合わせて少し大きめに */
    font-weight: bold;
    color: #f0f0f0;
    position: absolute;
    top: -40px;
    left: 65%; /* 画像の配置を再現 */
    transform: translateX(-50%);
    z-index: 1;
    letter-spacing: 0.1em;
}

.merit-title-area02 .main-title {
    position: relative;
    z-index: 2;
    font-size: 24px;
    color: #004098; /* 濃いめの青 */
}

.merit-grid02 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.merit-item02 {
    border: 3px solid #004098; /* 特徴的な太い青枠 */
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    background: #fff;
    transition: transform 0.3s ease;
}

.merit-item02:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 64, 152, 0.1);
}

.merit-item02 h3 {
    color: #004098;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
}

.merit-item02 p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .merit-grid02 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .merit-title-area02 .bg-text {
        font-size: 60px;
        top: -20px;
        left: 50%;
    }
}


/* FAQ Section */
.faq { 
    padding: 100px 0; background-color: #fff; 
}

.faq .bg-text {
    font-size: 100px;
    font-weight: bold;
    color: #f1f1f1;
    line-height: 1;
    text-align: right;
}

.faq .sub-title{
    left: 50%;
}

/* 質問エリア */
.faq-item { margin-bottom: 20px; }
.faq-question {
  background-color: #3a4145; /* 画像に基づいたダークグレー */
  color: #fff;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  border-radius: 4px;
}

.q-icon { font-size: 28px; font-weight: bold; color: #7b7e81; margin-right: 20px; }
.question-text { font-size: 16px; font-weight: bold; flex: 1; }

/* 矢印アイコン（CSSで作成） */
.arrow-icon {
  width: 12px; height: 12px;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s;
  margin-top: -6px;
}
/* 開いている時の矢印の向き */
.faq-question.is-open .arrow-icon { transform: rotate(-135deg); margin-top: 6px; }

/* 回答エリア（初期は非表示） */
.faq-answer { display: none; background: #fff; padding: 25px 30px; }
.answer-inner { display: flex; align-items: flex-start; }
.a-icon { font-size: 28px; font-weight: bold; color: #1a53a1; margin-right: 20px; }
.answer-text { color: #333; line-height: 1.8; font-size: 15px; }

/* さらに見るボタン */
.faq-btn-area { text-align: center; margin-top: 40px; }
.btn-primary { 
  display: inline-block; background: #1a53a1; color: #fff; 
  padding: 15px 50px; border-radius: 50px; text-decoration: none; 
}

/* Responsive */
@media (max-width: 768px) {
    .flex-center, .merit-row, .merit-row.reverse, .flow-box {
        flex-direction: column;
    }
}

.footer {
  background-color: #f8f8f8;
  padding: 60px 0 20px;
  color: #333;
  font-size: 13px;
  margin-top: 100px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

/* 左側エリア */
.footer__logo {
  margin-bottom: 20px;
}

.footer__logo img {
  height: 35px;
}

.footer__address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer__partner img {
  width: 120px; /* バッジのサイズ調整 */
}

/* 右側エリア */
.footer__right {
  text-align: right;
}

.footer__contact-link {
  margin-bottom: 40px;
}

.footer__contact-link a {
  color: #1a53a1;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
}

.footer__nav ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.footer__nav li {
  margin-left: 20px;
}

.footer__nav li a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.footer__nav li a:hover {
  text-decoration: underline;
}

.footer__copyright {
  font-size: 11px;
  color: #999;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer__right {
    text-align: center;
    margin-top: 40px;
    width: 100%;
  }

  .footer__nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer__nav li {
    margin: 5px 10px;
  }
}

/*中ページ*/
.p-ttl{
    padding: 80px 0;
    background-color: #3f4649;
    margin-bottom: 100px;
}

.p-ttl h2{
    font-size: 35px;
    color: #fff;
}

.ttl01{
    text-align: center;
    background: url(img/ttl01.png) no-repeat center center;
    background-size: contain;
    padding: 35px 0;
    color: #fff;
    margin-bottom: 20px;
}

/*機能一覧*/
.accordion-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* 項目間の隙間 */
}

.accordion-item {
  width: calc(33.333% - 10px); /* 3列表示 */
  overflow: hidden;
}

.accordion-header {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #006666; /* 画像の文字色に近い色 */
  font-weight: bold;
}

/* ＋アイコンの簡易再現 */
.icon-plus::before {
  content: '+';
  font-size: 24px;
  transition: transform 0.3s;
  display: inline-block;
}

/* 開いている時のアイコン回転 */
.accordion-item.is-active .icon-plus::before {
  transform: rotate(45deg);
}

.accordion-content {
  display: none; /* 初期状態は非表示 */
  padding: 0 20px 20px 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* スマホ対応: 1列にする */
@media (max-width: 768px) {
  .accordion-item {
    width: 100%;
  }
}

/* 通常時：＋ */
.icon-plus::before {
  content: '+';
  display: inline-block;
  transition: transform 0.3s;
}

/* 開いている時：赤色の×に見せる */
.accordion-item.is-active .icon-plus::before {
  content: '×'; /* または rotate(45deg) */
  color: #e67e22; /* 画像のようなオレンジ・赤系 */
  transform: scale(1.2);
}

/* 最初はコンテンツを隠しておく */
.accordion-content {
  display: none;
}

/* 通常時のアイコン（＋） */
.icon-plus::before {
  content: '+';
  display: inline-block;
  transition: transform 0.3s ease;
}

/* 開いている時（is-activeクラスがある時）のアイコン（×） */
.accordion-item.is-active .icon-plus::before {
  content: '×';
  color: #e67e22; /* オレンジ色 */
  transform: scale(1.3); /* 少し大きく */
}

.functions01{
    margin-bottom: 60px;
}



/*フェード*/
.effect-fade {
  opacity : 0;
  transform : translate(0, 45px);
  transition : all 1200ms;
}

.effect-fade.effect-scroll {
  opacity : 1;
  transform : translate(0, 0);
}

.effect-fade-left{
  opacity : 0;
  transform : translateX(-90px);
  transition : all 1200ms;
}

.effect-fade-left.effect-scroll-left {
  opacity : 1;
  transform : translate(0, 0);
}

.effect-fade-right{
  opacity : 0;
  transform : translateX(90px);
  transition : all 1200ms;
}

.effect-fade-right.effect-scroll-right {
  opacity : 1;
  transform : translate(0, 0);
}