body {
  font-family:"Noto Sans JP", sans-serif;
  color: #3A3A3A;
}
.en {
  font-family: "Oswald", sans-serif;
}
html, body {
  overflow-x: hidden;
}
.inview.fadeup {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.inview.fadeup.active {
  opacity: 1;
  transform: translateY(0);
}


/* ----------------------------------
   ヘッダーCSS
----------------------------------- */
header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(20px, 5.333vw, 40px);
  color: #fff;
}
.header-container {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr 2fr;
}
/* 初期状態：透明ヘッダー */
.header {
  background-color: transparent;
  transition: background-color 0.8s ease-in-out, box-shadow 0.8s ease-in-out, padding 0.8s ease-in-out;
}
/* KVが見えなくなったら背景を付ける */
.header.scrolled {
  background-color: rgba(58, 58, 58, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 40px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.menu_contact {
  color: #fff;
  display: block;
  width: 100%;
  padding: 5px 60px 5px 30px;
  background-position: right 35px top calc(50% + 1px);
  background-repeat: no-repeat;
  background-image: url(../img/mail_icon.svg);
  background-color: #024873;
  backdrop-filter: blur(8px);
  border-radius: 10px;
}
.header-logo {
  font-weight: 500;
}
.header-logo {
  /* ロゴ自体もFlexにして、中身のテキストを中央に */
  display: flex;
  align-items: center;
  line-height: 1; /* 行間の余白をゼロにする */
  
  /* 視覚的な微調整（もしこれでも上に寄って見える場合） */
  padding-top: 4px; 
}

@media (max-width: 768px) and (orientation: landscape) {
  header {
    padding: clamp(10px, 3vw, 20px);
  }
}

.header-container {
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr 2fr;
}

.logo-link {
  font-size: 18px;
  display: flex;
  align-items: center;
  font-family: "Oswald", sans-serif;
}
.logo-link {
  display: block;
  line-height: 1;
}

.logo-link:hover {
  opacity: 0.6;
}
.logo-link img {
  max-width: 220px;
}
.menu-link:hover {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    z-index: 99;
    inset: 0;
    width: 100%;
    height: 100vh;
    padding: clamp(30px, 8vw, 60px);
    transition: 0.3s;
    transform: translateX(100%);
    overflow: auto;
    background-color: #696969;
  }
  .nav-menu.active {
    transform: translateX(0);
  }

  .hamburger-button {
    position: relative;
    z-index: 100; 
  }
  
  .menu-item {
    border-bottom: 1px solid #fff;
    padding: 15px;
  }
    .hamburger-button {
        position: relative;
        z-index: 1000;
        display: flex;
    }
.menu-item:last-child {
  border-bottom: none;
}
.hamburger-button.active .line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger-button.active .line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
}

@media (min-width: 1025px) {
  .menu-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(20px, 2.08vw, 40px);
  font-family: "Oswald", sans-serif;
  }
  .menu-link {
    transition: 0.3s;
  }
}

@media (max-width: 768px) {
  .logo-link {
    font-size: 18px;
  }
  .header.scrolled {
    padding: 15px 20px 25px;
  }
  .menu_contact {
    padding: 10px 20px;
  }
  .menu-list {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    margin-top: 30px;
    text-align: center;
}
}

/* ==============================
   Hamburger Button
============================== */
.hamburger-button {
  width: fit-content;
  height: clamp(13px, 3.46vw, 26px);
  margin-left: auto;
  cursor: pointer;
  margin-top: 10px;
}

.hamburger-lines {
  position: relative;
  width: clamp(40px, 10.6vw, 90px);
  height: clamp(13px, 3.46vw, 26px);
  transition: 0.3s;
}

.hamburger-lines .line {
position: absolute;
left: 0;
width: 100%;
height: 1px;
background-color: #fff;
transition: all 0.3s ease;
}
.hamburger-lines .line:nth-child(1) { top: 0; }
.hamburger-lines .line:nth-child(2) { bottom: 0; }

@media (max-width: 768px) and (orientation: landscape) {
  .hamburger-lines {
    width: clamp(30px, 7.5vw, 50px);
    height: clamp(15px, 3vw, 20px);
  }
}

@media (min-width: 1025px) {
  .hamburger-button {
    display: none;
  }
}
/* ----------------------------------
   ヘッダーCSS終わり
----------------------------------- */
/* ----------------------------------
   KVCSS
----------------------------------- */
.kv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 100px;
}
.kv .kvimg_bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kv_text {
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  color: #fff;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1920px;
  width: 100%;
  margin: 0 40px;
}
.kv_text h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 10%;
  line-height: 60px;
}
.kv_text .en {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 500;
}
.kv_text_p {
  line-height: 28px;
  font-weight: 500;
  font-size: 14px;
}

@keyframes yurayuraUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px); /* 上へ */
  }
  100% {
    transform: translateY(0);
  }
}

.spbr {
  display: none;
}

@media (max-width: 1024px) {
  .kv_text {
    text-align: center;
    margin: 0;
  }
  .kv {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
  }
}
@media (max-width: 768px) {
  .kv_text h3 {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 0;
    font-weight: 600;
    margin-bottom: 20px;
    font-weight: 700;
  }
  .kv_text_p {
    font-size: 14px;
  }
  .kvimg_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .spbr {
    display: block;
  }
.kv_text {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央配置 */
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 2;
    text-align: left;
    padding: 0 20px;
}
.kv {
  margin-bottom: 80px;
}
}

/* ----------------------------------
   KVCSS終わり
----------------------------------- */
/* ----------------------------------
   トップページコンテンツ
----------------------------------- */

main {
  margin-bottom: 80px;
}
.container_box {
  max-width: 1920px;
  padding: 0 40px;
}
h2 {
  font-size: 32px;
  font-weight: 600;
}
h2 span {
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  margin-left: 20px;
}

/* ----------------------------------
   Feature Section (強み・特徴)
----------------------------------- */
.feature-section {
  padding: 80px 0 100px;
}

.feature-item {
  display: flex;
  gap: 50px;
  align-items: stretch;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.feature-item:last-child {
  margin-bottom: 0;
}

/* 画像エリア */
.feature-img {
  width: 45%;
  max-height: 200px;
  flex-shrink: 0;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* テキストエリア */
.feature-text {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-sub {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.feature-sub::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 17px;
  background-color: #222;
  margin-right: 15px;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #222;
}

.feature-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #3A3A3A;
  text-align: justify;
}

/* --- レスポンシブ (スマホ・タブレット用) --- */
@media (max-width: 768px) {
  .feature-section {
    padding: 50px 0px 80px;
    font-size: 16px;
  }
  .feature-section {
    font-size: 14px;
  }
  .feature-line {
    display: none; /* スマホではレイアウトが崩れやすいため赤線を消すか、デザインに合わせて調整 */
  }

  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 60px;
  }

  .feature-img {
    width: 100%;
  }

  .feature-text {
    width: 100%;
  }

  .feature-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .container_box {
    padding: 0 20px;
  }
  h2 {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
  }
  h2 span {
    font-size: 14px;
    margin-left: 0;
  }
  .feature-sub {
    font-size: 14px;
  }
  .feature-desc {
    font-size: 14px;
  }
}


/* =========================================
   コース紹介セクション (Tab UI)
========================================= */
.course-section {
    background-color: #f5f5f5; /* 背景の薄いグレー */
    padding: 100px 40px;
}

.course-container {
    max-width: 1920px;
    margin: 50px auto 0;
    display: flex;
    gap: 50px;
}

/* 左側：タブボタン */
.course-tabs {
    max-width: 400px;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-btn {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    background-color: #b5c7d3; /* 非アクティブ時の薄い青グレー */
    color: #333;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.tab-icon {
    display: inline-flex;
    margin-right: 12px;
}

.tab-icon svg {
    width: 20px;
    height: 20px;
}

/* アクティブなタブ */
.tab-btn.active {
    background-color: #074770; /* アクティブ時の濃い青 */
    color: #fff;
}
        .course-tabs .tab-icon img {
            width: 15px;
            height: 15px;
            vertical-align: middle;
        }
        /* activeの時だけ、フィルターで黒いSVGを白(#fff)に反転させる */
        .course-tabs .tab-btn.active .tab-icon img {
            filter: brightness(0) invert(1);
        }
        
        .course-label img {
            width: 16px;
            height: 16px;
            vertical-align: middle;
            margin-right: 8px;
        }

/* 右側：コンテンツエリア */
.course-content-area {
    flex-grow: 1;
}

.course-panel {
    display: none; /* 初期状態は非表示 */
    gap: 40px;
    animation: fadeIn 0.4s ease-in-out;
}

/* アクティブなパネルを表示 */
.course-panel.active {
    display: flex;
}

.course-image {
    width: 40%;
    max-height: 680px;
    flex-shrink: 0;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    aspect-ratio: 4 / 7; /* スクリーンショットの縦長比率を維持 */
}

.course-details {
    width: 60%;
}

.course-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.course-label svg {
    margin-right: 8px;
}

.course-title {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #111;
}

.course-modules .module {
    margin-bottom: 25px;
}

.course-modules .module h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #111;
}

.course-modules .module ul {
    list-style: none;
    padding-left: 0;
}

.course-modules .module li {
    position: relative;
    padding-left: 14px;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 6px;
    color: #333;
}

/* リストのドット「・」をCSSで表現 */
.course-modules .module li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}

/* ふわっと表示させるアニメーション */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   レスポンシブ対応 (スマホ表示)
========================================= */
@media screen and (max-width: 850px) {
    .course-container {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }

    .course-tabs {
        width: 100%;
        flex-direction: row;
        overflow-x: auto; /* 横スクロールを許可 */
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .tab-btn {
        flex: 1;
        justify-content: center;
        min-width: 200px; /* スマホでボタンが潰れないように */
        font-size: 14px;
    }

    .course-panel.active {
        flex-direction: column;
        gap: 20px;
    }

    .course-image, .course-details {
        width: 100%;
    }

    .course-image img {
        aspect-ratio: 16 / 9; /* スマホでは横長〜正方形寄りに変更 */
    }

    .course-title {
        font-size: 18px;
    }
    .course-section {
      padding: 80px 20px;
    }
}

/* =========================================
   プログラム一覧セクション
========================================= */
.program-section {
    background-color: #ffffff;
    padding: 100px 40px;
    color: #111;
}

.program-container {
    max-width: 1920px;
    margin: 0 auto;
}

/* タイトル周り */
.program-main-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 60px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.program-main-title span {
    font-size: 14px;
    font-family: 'Oswald', sans-serif; /* 既存の読み込みフォントを利用 */
    font-weight: normal;
}

/* 各グループのヘッダー */
.program-group {
    margin-bottom: 80px;
}

.program-group:last-child {
    margin-bottom: 0;
}

.program-group-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.program-group-title {
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.title-mark {
    color: #111;
    margin-right: 8px;
    font-size: 18px;
}

.title-sub {
    font-size: 14px;
    font-weight: normal;
    margin-left: 5px;
}

.program-group-desc {
    font-size: 13px;
}

/* テーブルスタイル */
.table-wrap {
    position: relative;
    width: 100%;
}

.program-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 14px;
}

/* ヘッダー行：上下に実線 */
.program-table th {
    padding: 20px 10px;
    font-weight: bold;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

/* データ行：上下にパディング */
.program-table td {
    padding: 25px 10px;
    font-weight: bold;
    border-bottom: 1px dashed #999; /* 点線 */
}

/* スクロールヒント（PCでは非表示） */
.scroll-hint {
    display: none;
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 12px;
    color: #666;
    animation: bounceX 1.5s infinite;
}

    .program-container .service_box {
      margin-bottom: 50px;
    }

@keyframes bounceX {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

/* =========================================
   レスポンシブ対応 (スマホ表示：縦並びスタイル)
========================================= */
@media screen and (max-width: 850px) {
    .program-group-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 20px;
    }

    /* テーブルの「表」としての機能を解除してブロック化 */
    .program-table, 
    .program-table thead, 
    .program-table tbody, 
    .program-table th, 
    .program-table td, 
    .program-table tr {
        display: block;
        width: 100%;
    }

    /* PC用のヘッダー行を非表示にする */
    .program-table thead {
        display: none;
    }

    /* 各行を1つの「カード」として装飾 */
    .program-table tr {
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 15px 25px;
        background-color: #f9f9f9;
    }

    /* 各セル（項目）のレイアウト */
    .program-table td {
        display: flex;
        justify-content: space-between; /* 項目名と内容を左右に振る */
        align-items: flex-start;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        text-align: left;
        font-size: 14px;
    }

    .program-table td:last-child {
        border-bottom: none;
    }



    .program-table td:first-child {
        display: block;
        font-size: 16px;
        color: #074770;
        border-bottom: 2px solid #074770;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    
    .program-table td:first-child::before {
        display: none;
    }
    .program-table td span {
      font-size: 14px;
    }

    /* スクロールヒントは不要になるので非表示 */
    .scroll-hint {
        display: none !important;
    }
    .program-container .service_box {
      margin-bottom: 30px;
    }
    .program-section {
      padding: 100px 20px;
    }
}

/* =========================================
   Contact CTA Section
========================================= */
.contact-cta-section {
    position: relative;
    padding: 100px 20px;
    background-image: url('../img/contact_bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
}

.contact-cta-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.contact-cta-desc {
    font-size: 15px;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

/* ボタンのスタイル */
.contact-cta-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #004066; /* サイト全体のテイストに合わせた青系の色 */
    font-weight: bold;
    font-size: 16px;
    padding: 16px 48px;
    border-radius: 8px; /* 角丸 */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-cta-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px); /* 浮き上がるアニメーション */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* --- レスポンシブ対応 (SP) --- */
@media screen and (max-width: 768px) {
    .contact-cta-section {
        padding: 60px 20px;
        min-height: 260px;
    }
    
    .contact-cta-title {
        font-size: 22px;
    }
    
    .contact-cta-desc {
        font-size: 13px;
        margin-bottom: 24px;
    }
    
    .contact-cta-btn {
        font-size: 15px;
        padding: 14px 40px;
        width: 100%;
        max-width: 300px; /* スマホではボタン幅を少し広げる */
        box-sizing: border-box;
    }
}


/* ----------------------------------
   フッター
----------------------------------- */
.footer {
    background-color: #ffffff;
    padding: 60px 40px 20px; /* 上・左右・下の余白 */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px; /* 上部とコピーライトの間の余白 */
}

/* フッター上部（ロゴとリンク） */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    /* ヘッダーと同じOswaldフォントを適用 */
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #000000;
    letter-spacing: 0.05em;
}

.footer-links a {
    font-size: 0.875rem;
    color: #333333;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* フッター下部（コピーライト） */
.footer-bottom {
    text-align: center;
}

.footer-bottom .copy {
    font-size: 0.75rem;
    color: #666666;
}

/* =========================================================
   Responsive (スマホ表示)
========================================================= */
@media screen and (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        gap: 40px;
    }

    /* スマホでは縦並びにして中央揃えにする */
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}



/* =========================================================
    固定ページ
========================================================= */
.content_top h1 {
  padding: 120px 40px 80px;
  background-image: url('../img/page.jpg'); 
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  text-align: center;
}
.content_group {
  padding: 50px 40px 150px;
}

/* ==================================
   コンタクトフォームのスタイル
================================== */

.wpcf7-form label {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-top: 5px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    color: #222;
}
.wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.wpcf7-form input[type="submit"]:hover {
    opacity: 0.8;
}

.acceptance-wrap {
    text-align: center; /* 中央に配置（左寄せが良い場合は left に変更） */
    margin: 30px 0;     /* 上下の余白 */
}

/* CF7が出力するリストアイテムの調整 */
.acceptance-wrap .wpcf7-list-item {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* チェックボックスとテキストの隙間 */
}

/* チェックボックス自体のサイズ調整 */
.acceptance-wrap input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* テキスト部分の調整 */
.acceptance-wrap .wpcf7-list-item-label {
    cursor: pointer;
}

/* 利用規約リンクの調整 */
.acceptance-wrap a {
    color: #333; /* リンクの色（お好みで変更してください） */
    text-decoration: underline;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.acceptance-wrap a:hover {
    opacity: 0.7; /* マウスオーバーで少し薄くする */
}
.wpcf7-form label span {
  font-size: 12px;
  font-weight: 500;
  color: red;
}
.wpcf7-acceptance label span {
  font-size: 16px;
  color: #333;
}
.acceptance-wrap .wpcf7-form label {
  display: flex;
  align-items: center;
}


.content-privacy-policy .content_group {
  max-width: 800px;
  margin: 0 auto;
}
.content-privacy-policy .content_group h5 {
  margin: 30px 0 10px;
  font-size: 16px;
}
.content-privacy-policy .content_group p {
  font-size: 14px;
  text-align: justify;
}

.content-privacy-policy .content_group ol {
  font-size: 14px;
  text-align: justify;
  margin: 10px 0;
}

/* テーブル全体の設定 */
.company-profile {
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* 枠線と余白の設定 */
.company-profile th,
.company-profile td {
  padding: 30px 20px 20px;
  border-bottom: 1px solid #222;
}

/* 見出し（左側）の設定 */
.company-profile th {
  text-align: left;
  width: 20%;
}

@media screen and (max-width: 768px) {
  .company-profile,
  .company-profile tbody,
  .company-profile tr,
  .company-profile th,
  .company-profile td {
    display: block;
    width: 100%;
  }

  .company-profile th {
    border-bottom: none;
    background-color: #f9f9f9;
    padding: 20px 20px 20px;
  }

  .company-profile td {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: #f9f9f9 2px solid;
    border-left: #f9f9f9 2px solid;
    border-right: #f9f9f9 2px solid;
  }
}