@charset "UTF-8";
/* --- SCSS変数定義 --- */
/* --- 基本設定 --- */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin: 0;
  padding: 0;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.7;
  font-size: 16px;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .container .summary-for-ai {
    text-align: left;
  }
}

/* --- 見出し --- */
h1,
h2,
h3,
h4 {
  color: #001f3f;
  font-weight: 700;
  margin-top: 0;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 2em;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}
h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #00A474;
  margin: 15px auto 0;
}

h3 {
  font-size: 1.3em;
  margin-bottom: 20px;
}

h4 {
  font-size: 1.1em;
  margin-bottom: 15px;
}

/* --- リンク --- */
a {
  color: #00A474;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #007150;
}

/* --- 改行 --- */
br {
  display: inline;
}
@media screen and (max-width: 768px) {
  br {
    display: inline;
  }
}

/* --- ヘッダー --- */
header {
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header #logo {
  max-height: 50px;
}
@media (max-width: 768px) {
  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 999;
  }
  header nav.is-active {
    display: block;
  }
}
header nav ul#mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
@media (max-width: 768px) {
  header nav ul#mobile-menu {
    flex-direction: column;
    align-items: center;
  }
}
header nav ul#mobile-menu li {
  margin-left: 30px;
}
@media (max-width: 768px) {
  header nav ul#mobile-menu li {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
header nav ul#mobile-menu li a {
  text-decoration: none;
  color: #001f3f;
  font-weight: 600;
  padding: 10px 15px;
  display: block;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-bottom-color 0.3s ease, background-color 0.3s ease;
}
header nav ul#mobile-menu li a:hover, header nav ul#mobile-menu li a.active {
  color: #00A474;
  border-bottom-color: #00A474;
}
@media (max-width: 768px) {
  header nav ul#mobile-menu li a:hover, header nav ul#mobile-menu li a.active {
    background-color: #f4f7f6;
    border-bottom-color: transparent;
  }
}
header .hamburger-menu {
  display: none;
  background: none;
  border: none;
  color: #001f3f;
  font-size: 1.8em;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
@media (max-width: 768px) {
  header .hamburger-menu {
    display: block;
  }
}

/* --- ヒーローセクション --- */
.hero {
  background: linear-gradient(rgba(0, 31, 63, 0.7), rgba(0, 51, 102, 0.5)), url("../img/hero-background.jpg") no-repeat center center/cover;
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 0.6em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.hero p {
  font-size: 1.4em;
  margin-bottom: 2.5em;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* --- CTAボタン --- */
.cta-button {
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 30px;
  margin: 5px 10px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
  cursor: pointer;
}
.cta-button:hover {
  text-decoration: none;
  transform: translateY(-3px);
}
.cta-button.primary {
  background-color: #00A474;
  color: #ffffff;
  border-color: #00A474;
  box-shadow: 0 4px 10px rgba(0, 164, 116, 0.3);
}
.cta-button.primary:link {
  color: #ffffff;
  text-decoration: none;
}
.cta-button.primary:visited {
  color: #ffffff;
}
.cta-button.primary:hover {
  background-color: #007150;
  border-color: #007150;
  box-shadow: 0 6px 15px rgba(0, 164, 116, 0.4);
  color: #ffffff !important;
}
.cta-button.contact-secondary {
  background-color: #001f3f;
  color: #ffffff;
  border-color: #001f3f;
  box-shadow: 0 4px 10px rgba(0, 31, 63, 0.3);
}
.cta-button.contact-secondary:hover {
  background-color: #003366;
  border-color: #003366;
  box-shadow: 0 6px 15px rgba(0, 31, 63, 0.4);
}
.cta-button.view-more-secondary {
  background-color: transparent;
  color: #00A474;
  border-color: #00A474;
}
.cta-button.view-more-secondary:hover {
  background-color: #00A474;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .cta-button {
    margin: auto;
    display: block;
    text-align: center;
  }
}

/* --- 各セクション共通 --- */
section {
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 10px 0;
  }
}
section.bg-light-gray {
  background-color: #f4f7f6;
}
@media screen and (max-width: 768px) {
  section.bg-light-gray h3 {
    margin: auto auto 20px;
  }
}
section.bg-light-navy {
  background-color: #003366;
}
section.bg-light-navy h1,
section.bg-light-navy h2,
section.bg-light-navy h3,
section.bg-light-navy p,
section.bg-light-navy .section-intro {
  color: #ffffff;
}
section.bg-light-navy h2::after {
  background-color: #ffffff;
}
section.bg-light-navy .card {
  background-color: #ffffff;
}
section.bg-light-navy .card h1,
section.bg-light-navy .card h2,
section.bg-light-navy .card h3 {
  color: #001f3f;
}
section.bg-light-navy .card p {
  color: #001f3f;
}
section.bg-light-navy .card a {
  color: #00A474;
}

.section-intro {
  text-align: left;
  font-size: 1.15em;
  color: #666666;
  max-width: 750px;
  margin: 0 auto 45px;
}

/* --- パンくずリスト --- */
.breadcrumb-container {
  background-color: #f4f7f6;
  padding: 12px 0;
  font-size: 0.9em;
}
.breadcrumb-container ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .breadcrumb-container ol {
    display: block;
  }
}
.breadcrumb-container ol li {
  color: #666666;
}
.breadcrumb-container ol li a {
  color: #00A474;
  text-decoration: none;
}
.breadcrumb-container ol li a:hover {
  text-decoration: underline;
}
.breadcrumb-container ol li::after {
  content: "/";
  margin: 0 8px;
  color: #666666;
}
.breadcrumb-container ol li:last-child::after {
  content: "";
  margin: 0;
}
.breadcrumb-container ol li[aria-current=page] {
  font-weight: bold;
  color: #001f3f;
}

/* --- ページヒーロー (下層ページ共通) --- */
.page-hero {
  background-color: #003366;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}
.page-hero h1 {
  color: #ffffff;
  font-size: 2.5em;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  color: #ffffff;
}

/* --- 代表プロフィールセクション --- */
.ceo-profile-section {
  padding: 80px 0;
}
.ceo-profile-section .ceo-profile-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 769px) {
  .ceo-profile-section .ceo-profile-content {
    flex-direction: row;
    align-items: flex-start;
  }
}
.ceo-profile-section .ceo-image-wrapper {
  flex-shrink: 0;
  text-align: center;
}
.ceo-profile-section .ceo-image-wrapper img {
  max-width: 280px;
  border-radius: 50%;
  border: 8px solid #ffffff;
  box-shadow: 0 6px 20px rgba(0, 31, 63, 0.12);
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .ceo-profile-section .ceo-image-wrapper img {
    max-width: 300px;
    margin-bottom: 0;
  }
}
.ceo-profile-section .ceo-text-content {
  flex-grow: 1;
}
.ceo-profile-section .ceo-text-content h2 {
  text-align: left;
  font-size: 2em;
  margin-bottom: 10px;
}
.ceo-profile-section .ceo-text-content h2::after {
  margin-left: 0;
  margin-right: auto;
}
.ceo-profile-section .ceo-text-content h2 .ceo-name {
  display: block;
  margin-bottom: 5px;
}
.ceo-profile-section .ceo-text-content h2 .ceo-name-kana {
  font-size: 0.7em;
  font-weight: normal;
  color: #666666;
}
.ceo-profile-section .ceo-text-content .ceo-motto {
  font-size: 1.3em;
  font-style: italic;
  color: #00A474;
  margin-bottom: 25px;
  text-align: left;
  border-left: 3px solid #00A474;
  padding-left: 15px;
}
.ceo-profile-section .ceo-text-content .ceo-motto i {
  font-size: 0.9em;
  opacity: 0.7;
}
.ceo-profile-section .ceo-text-content .ceo-bio p {
  margin-bottom: 1.5em;
  line-height: 1.8;
  color: #666666;
}
.ceo-profile-section .ceo-text-content .ceo-bio p:last-child {
  margin-bottom: 0;
}
.ceo-profile-section .ceo-text-content .ceo-bio .highlight-text {
  background-color: #8bffdd;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #00A474;
  color: #007150;
  font-weight: 500;
}

/* --- 会社概要セクション --- */
.company-overview-section .company-table-wrapper {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 31, 63, 0.08);
  overflow-x: auto;
}
.company-overview-section .company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-overview-section .company-table th,
.company-overview-section .company-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #f4f7f6;
  vertical-align: top;
}
.company-overview-section .company-table th {
  width: 25%;
  font-weight: 600;
  color: #001f3f;
  white-space: nowrap;
}
.company-overview-section .company-table th i {
  margin-right: 8px;
  color: #00A474;
  width: 20px;
  text-align: center;
}
.company-overview-section .company-table td {
  color: #666666;
}
.company-overview-section .company-table td ul.service-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.company-overview-section .company-table td ul.service-list li {
  margin-bottom: 5px;
}
.company-overview-section .company-table tr:last-child th,
.company-overview-section .company-table tr:last-child td {
  border-bottom: none;
}
.company-overview-section .map-container {
  margin-top: 40px;
}
.company-overview-section .map-container h3 {
  text-align: center;
  margin-bottom: 20px;
}
.company-overview-section .map-container h3 i {
  margin-right: 8px;
}
.company-overview-section .map-container iframe {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 31, 63, 0.08);
  width: 100%;
}

/* --- 強み・サービスカード (グローバルなカードスタイル) --- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background-color: #ffffff;
  border: 1px solid #dde2e1;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 31, 63, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 31, 63, 0.12);
}
.card h3 {
  display: flex;
  align-items: center;
  font-size: 1.3em;
}
.card h3 i {
  font-size: 1.3em;
  margin-right: 12px;
  color: #00A474;
}
.card p {
  margin-bottom: auto;
}
.card a:not(.cta-button) {
  display: inline-block;
  margin-top: 20px;
  font-weight: bold;
}

/* --- 実績セクション --- */
#achievements .client-case img {
  max-height: 65px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#achievements .cta-button-wrapper {
  text-align: center;
  margin-top: 30px;
}
#achievements .cta-button-wrapper.youtube-cta {
  margin-top: 20px;
}

.youtube-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 25px auto;
  border-radius: 8px;
}
.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- 著書紹介 --- */
#publications .book-card {
  text-align: center;
}
#publications .book-card .book-cover {
  max-width: 160px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  transition: transform 0.3s;
}
#publications .book-card:hover .book-cover {
  transform: scale(1.05);
}
#publications .book-card h4 {
  text-align: left;
}
#publications .book-card p {
  font-size: 0.95em;
  color: #666666;
  text-align: left;
}
#publications .book-card a {
  font-size: 0.95em;
  font-weight: bold;
}
#publications .book-card img {
  margin: auto;
}
#publications .cta-button-wrapper {
  text-align: center;
  margin-top: 30px;
}

/* --- 講演・セミナー --- */
#seminars ul {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 0 auto;
}
#seminars ul li {
  background-color: #ffffff;
  padding: 12px 18px;
  margin-bottom: 12px;
  border-left: 5px solid #00A474;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 15px rgba(0, 31, 63, 0.08);
}
#seminars .cta-button-wrapper {
  text-align: center;
  margin-top: 30px;
}

/* --- DX戦略セクション --- */
#future-strategy-dx h3 {
  text-align: center;
  margin-bottom: 20px;
}
#future-strategy-dx ol {
  max-width: 700px;
  margin: 0 auto 30px;
  padding-left: 20px;
  list-style-position: inside;
}
#future-strategy-dx ol li {
  margin-bottom: 10px;
}
#future-strategy-dx ol li strong {
  color: #001f3f;
}
#future-strategy-dx p:last-of-type {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  color: #666666;
}

/* --- お知らせ --- */
#news .news-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}
#news .news-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d5d5d5;
  display: flex;
  align-items: baseline;
}
#news .news-list li .date {
  background-color: #001f3f;
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.85em;
  margin-right: 12px;
  font-weight: 500;
  white-space: nowrap;
}
#news .news-list li a {
  flex-grow: 1;
}
#news .cta-button-wrapper {
  text-align: center;
  margin-top: 30px;
}

/* --- お問い合わせページ --- */
.contact-form-area .form-intro {
  text-align: left;
  margin-bottom: 40px;
  font-size: 1.1em;
  color: #666666;
}
.contact-form-area #hubspot-form-container {
  max-width: 600px;
  margin: 0 auto 40px;
}
.contact-form-area #hubspot-form-container iframe {
  max-width: 100%;
  width: 100% !important;
  min-height: 600px;
  border: none;
  display: block;
}

.contact-notes {
  max-width: 600px;
  margin: 0 auto 50px;
  padding: 25px;
  background-color: #fafbfb;
  border-left: 4px solid #00A474;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 15px rgba(0, 31, 63, 0.08);
}
.contact-notes h3 {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #001f3f;
}
.contact-notes h3 i {
  margin-right: 8px;
  color: #00A474;
}
.contact-notes ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  font-size: 0.95em;
  color: #666666;
}
.contact-notes ul li {
  margin-bottom: 8px;
}

.other-contact-methods {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff;
  border-top: 1px solid #f4f7f6;
  border-bottom: 1px solid #f4f7f6;
}
.other-contact-methods h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
}
.other-contact-methods h3 i {
  margin-right: 8px;
  color: #00A474;
}
.other-contact-methods .phone-number {
  font-size: 1.6em;
  font-weight: bold;
  color: #001f3f;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.other-contact-methods .reception-time {
  font-size: 0.9em;
  color: #666666;
}

/* css/style.scss に追記 */
/* --- ブログレイアウト --- */
.blog-layout-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 15px;
}
@media (min-width: 992px) {
  .blog-layout-container {
    flex-direction: row;
  }
}

.main-content-area {
  flex: 1;
  min-width: 0;
}

.sidebar-area {
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .sidebar-area {
    width: 300px;
  }
}

/* --- 記事一覧カードスタイル --- */
.article-list {
  display: grid;
  gap: 30px;
}
@media (min-width: 769px) {
  .article-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.article-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 31, 63, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 31, 63, 0.12);
}
.article-card .article-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.article-card-eyecatch {
  position: relative;
  aspect-ratio: 16/9;
}
.article-card-eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.article-card-eyecatch .article-card-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 164, 116, 0.9);
  color: #ffffff;
  padding: 5px 12px;
  font-size: 0.8em;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.article-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-card-date {
  font-size: 0.85em;
  color: #666666;
  margin-bottom: 8px;
  display: block;
}

.article-card-title {
  font-size: 1.2em;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #001f3f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-excerpt {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
  margin-top: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- ページネーション --- */
.pagination {
  margin-top: 50px;
}
.pagination ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.pagination li {
  margin: 0 5px;
}
.pagination li a, .pagination li span {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #001f3f;
  transition: background-color 0.3s, color 0.3s;
}
.pagination li a:hover {
  background-color: #f4f7f6;
}
.pagination li.active a {
  background-color: #00A474;
  color: #ffffff;
  border-color: #00A474;
}
.pagination li.disabled span {
  color: #ccc;
  background-color: #f9f9f9;
}

/* --- サイドバー --- */
.sidebar-widget {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 31, 63, 0.08);
}
.sidebar-widget .sidebar-widget-title {
  font-size: 1.3em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f4f7f6;
  display: flex;
  align-items: center;
}
.sidebar-widget .sidebar-widget-title i {
  margin-right: 10px;
  color: #00A474;
}
.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-widget ul li {
  margin-bottom: 10px;
}
.sidebar-widget ul li a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  padding: 5px 0;
}
.sidebar-widget ul li a:hover {
  color: #00A474;
}
.sidebar-widget .category-list li {
  border-left: 3px solid transparent;
  padding-left: 10px;
  transition: border-left-color 0.3s, background-color 0.3s;
}
.sidebar-widget .category-list li:hover {
  border-left-color: #00A474;
  background-color: #fafbfb;
}

/* --- ユーティリティクラス（必要なら） --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- フッター --- */
footer {
  background-color: #001f3f;
  color: #cdd5dd;
  padding: 50px 0 25px;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
footer .footer-left,
footer .footer-center,
footer .footer-right {
  flex: 1;
  min-width: 250px;
}
footer #footer-logo {
  max-height: 45px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}
footer h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 1.2em;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 8px;
}
footer ul li a {
  color: #cdd5dd;
}
footer ul li a:hover {
  color: #00A474;
}
footer .sns-links a {
  margin-right: 18px;
  font-size: 1.7em;
  color: #cdd5dd;
}
footer .sns-links a:hover {
  color: #00A474;
}
footer .copyright {
  text-align: center;
  font-size: 0.9em;
  padding-top: 20px;
  border-top: 1px solid #003366;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 992px) {
  /* タブレット以上で適用したいスタイル */
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  h2 {
    font-size: 1.5em;
  }
  .hero h1 {
    font-size: 2em;
  }
  .hero p {
    font-size: 1.2em;
  }
  .page-hero h1 {
    font-size: 2.2em;
  }
  .ceo-profile-section .ceo-image-wrapper img {
    max-width: 250px;
  }
  .ceo-profile-section .ceo-text-content h2 {
    font-size: 1.8em;
  }
}
@media (max-width: 768px) {
  /* モバイルで適用したいスタイル */
  body {
    font-size: 15px;
  }
  .hero {
    padding: 80px 15px;
  }
  .hero h1 {
    font-size: 2em;
  }
  .hero p {
    font-size: 1.1em;
  }
  .page-hero {
    padding: 40px 15px;
  }
  .page-hero h1 {
    font-size: 2em;
  }
  .page-hero p {
    font-size: 1em;
  }
  #ceo-message .ceo-section,
  .ceo-profile-section .ceo-profile-content {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
    gap: 30px;
  }
  #ceo-message .ceo-section .ceo-image-wrapper img,
  #ceo-message .ceo-section #ceo-message img,
  .ceo-profile-section .ceo-profile-content .ceo-image-wrapper img,
  .ceo-profile-section .ceo-profile-content #ceo-message img {
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
  }
  #ceo-message .ceo-section .ceo-text-content h2,
  #ceo-message .ceo-section #ceo-message .ceo-section h2,
  .ceo-profile-section .ceo-profile-content .ceo-text-content h2,
  .ceo-profile-section .ceo-profile-content #ceo-message .ceo-section h2 {
    text-align: center;
  }
  #ceo-message .ceo-section .ceo-text-content h2::after,
  #ceo-message .ceo-section #ceo-message .ceo-section h2::after,
  .ceo-profile-section .ceo-profile-content .ceo-text-content h2::after,
  .ceo-profile-section .ceo-profile-content #ceo-message .ceo-section h2::after {
    margin: 15px auto 0;
  }
  #ceo-message .ceo-section .ceo-text-content .ceo-motto,
  #ceo-message .ceo-section #ceo-message .ceo-section .ceo-motto,
  .ceo-profile-section .ceo-profile-content .ceo-text-content .ceo-motto,
  .ceo-profile-section .ceo-profile-content #ceo-message .ceo-section .ceo-motto {
    text-align: center;
    border-left: none;
    padding-left: 0;
    border-top: 3px solid #00A474;
    padding-top: 10px;
  }
  #ceo-message .ceo-section p,
  .ceo-profile-section .ceo-profile-content p {
    text-align: left;
  }
  .company-overview-section .company-table-wrapper {
    padding: 20px;
  }
  .company-overview-section .company-table th {
    width: auto;
    white-space: normal;
  }
  .grid-container {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 25px;
  }
  footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .footer-content .footer-center,
  footer .footer-content .footer-right {
    margin-top: 20px;
  }
  .news-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-list li .date {
    margin-bottom: 8px;
  }
  .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .cta-button-wrapper {
    margin-top: 25px;
  }
  .contact-form {
    padding: 20px;
  }
  .contact-notes {
    padding: 20px;
  }
  .other-contact-methods {
    padding: 30px 15px;
  }
  #hubspot-form-container iframe {
    min-height: 700px;
  }
}
/* --- 一般記事ページ --- */
.article-content-section {
  padding-bottom: 60px;
}
.article-content-section .content-narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.article-content-section .article-header {
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f4f7f6;
}
.article-content-section .article-header .article-meta-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 0.9em;
  padding: 10px 20px;
}
.article-content-section .article-header .article-category-badge a {
  background-color: #00A474;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.article-content-section .article-header .article-category-badge a:hover {
  background-color: #007150;
}
.article-content-section .article-header .article-publish-date {
  color: #666666;
}
.article-content-section .article-header .article-publish-date i {
  margin-right: 5px;
}
.article-content-section .article-header h1#article-main-title {
  font-size: 1.8em;
  color: #001f3f;
  margin-bottom: 15px;
  line-height: 1.3;
  padding: 15px 35px;
}
.article-content-section .article-header .article-meta-bottom {
  font-size: 0.9em;
  color: #666666;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  padding: 10px 20px;
}
.article-content-section .article-header .article-meta-bottom span {
  display: inline-flex;
  align-items: center;
}
.article-content-section .article-header .article-meta-bottom span i {
  margin-right: 6px;
  color: #00A474;
}
.article-content-section .article-header .article-meta-bottom span a {
  color: #00A474;
  text-decoration: underline;
}
.article-content-section .article-header .article-featured-image-wrapper {
  margin-top: 20px;
  text-align: center;
}
.article-content-section .article-header .article-featured-image-wrapper .article-featured-image {
  max-width: 75%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 31, 63, 0.12);
}
.article-content-section .article-header .article-featured-image-wrapper figcaption {
  font-size: 0.85em;
  color: #666666;
  margin-top: 8px;
  text-align: center;
}
.article-content-section .table-of-contents {
  background-color: #f4f7f6;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.article-content-section .table-of-contents .toc-title {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: #001f3f;
  border-bottom: 1px solid #666666;
  padding-bottom: 10px;
}
.article-content-section .table-of-contents ul#toc-list {
  list-style: none;
  padding-left: 0;
}
.article-content-section .table-of-contents ul#toc-list li {
  margin-bottom: 8px;
}
.article-content-section .table-of-contents ul#toc-list li a {
  text-decoration: none;
  color: #00A474;
}
.article-content-section .table-of-contents ul#toc-list li a:hover {
  text-decoration: underline;
}
.article-content-section .article-body {
  font-size: 1.05em;
  line-height: 1.9;
  color: #333333;
}
.article-content-section .article-body h2,
.article-content-section .article-body h3,
.article-content-section .article-body h4 {
  margin-top: 2.5em;
  margin-bottom: 1.2em;
  text-align: left;
  padding-bottom: 0.6em;
  border-bottom: 2px solid #003366;
}
.article-content-section .article-body h2::after,
.article-content-section .article-body h3::after,
.article-content-section .article-body h4::after {
  display: none;
}
.article-content-section .article-body h2 {
  font-size: 1.5em;
}
.article-content-section .article-body h3 {
  font-size: 1.3em;
  border-bottom-style: dashed;
  border-bottom-width: 1px;
}
.article-content-section .article-body h4 {
  font-size: 1.1em;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
}
.article-content-section .article-body p {
  margin-bottom: 1.6em;
}
.article-content-section .article-body ul,
.article-content-section .article-body ol {
  margin: 1.6em 0 1.6em 25px;
}
@media screen and (max-width: 768px) {
  .article-content-section .article-body ul,
  .article-content-section .article-body ol {
    margin: 1.6em 0 1.6em 0;
    padding-left: 15px;
  }
}
.article-content-section .article-body ul li,
.article-content-section .article-body ol li {
  margin-bottom: 0.8em;
}
.article-content-section .article-body strong {
  font-weight: 600;
  color: #001f3f;
}
.article-content-section .article-body em {
  font-style: italic;
}
.article-content-section .article-body a {
  color: #00A474;
  text-decoration: underline;
  font-weight: 500;
}
.article-content-section .article-body a:hover {
  color: #00583e;
}
.article-content-section .article-body figure {
  margin: 30px 0;
  text-align: center;
}
.article-content-section .article-body figure img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 31, 63, 0.08);
}
.article-content-section .article-body figure figcaption {
  font-size: 0.9em;
  color: #666666;
  margin-top: 10px;
  font-style: italic;
}
.article-content-section .article-body blockquote {
  margin: 30px 0;
  padding: 20px 25px;
  background-color: #f4f7f6;
  border-left: 5px solid #00A474;
  font-style: italic;
  color: #666666;
}
.article-content-section .article-body blockquote p {
  margin-bottom: 10px;
}
.article-content-section .article-body blockquote p:last-child {
  margin-bottom: 0;
}
.article-content-section .article-body blockquote footer {
  text-align: right;
  font-size: 0.9em;
  margin-top: 10px;
}
.article-content-section .article-body blockquote footer cite {
  font-style: normal;
}
.article-content-section .article-body pre {
  background-color: #2d2d2d;
  color: #f8f8f2;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.95em;
  line-height: 1.5;
}
.article-content-section .article-footer {
  margin-top: 50px;
  padding: 30px 20px;
  border-top: 1px solid #f4f7f6;
  border-radius: 10px;
}
.article-content-section .article-footer .article-tags {
  margin-bottom: 30px;
}
.article-content-section .article-footer .article-tags .tags-label {
  font-weight: bold;
  color: #001f3f;
  margin-right: 8px;
}
.article-content-section .article-footer .article-tags .tags-label i {
  color: #666666;
}
.article-content-section .article-footer .article-tags a[rel=tag] {
  display: inline-block;
  background-color: #f4f7f6;
  color: #666666;
  padding: 5px 12px;
  border-radius: 15px;
  margin-right: 8px;
  margin-bottom: 8px;
  font-size: 0.9em;
  text-decoration: none;
}
.article-content-section .article-footer .article-tags a[rel=tag]:hover {
  background-color: #d6e2de;
  color: #001f3f;
}
.article-content-section .author-profile-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #f4f7f6;
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
}
.article-content-section .author-profile-box .author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-content-section .author-profile-box .author-info h4 {
  margin-bottom: 8px;
}
.article-content-section .author-profile-box .author-info h4 a {
  text-decoration: none;
}
.article-content-section .author-profile-box .author-info .author-bio {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 10px;
}
.article-content-section .author-profile-box .author-info .author-social-links a {
  margin-right: 10px;
  font-size: 1.3em;
  color: #666666;
}
.article-content-section .author-profile-box .author-info .author-social-links a:hover {
  color: #00A474;
}
.article-content-section .related-articles,
.article-content-section .comment-section {
  margin-top: 50px;
}
.article-content-section .related-articles h2,
.article-content-section .comment-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.page-article header {
  position: relative;
}

/* --- SCSS変数定義 --- */
/* --- 代表メッセージ (トップページ #ceo-message) --- */
#ceo-message {
  background-color: #ffffff;
  padding: 80px 0;
}
#ceo-message .ceo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 769px) {
  #ceo-message .ceo-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }
}
#ceo-message .ceo-section img {
  max-width: 200px;
  height: 200px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid #00A474;
  box-shadow: 0 8px 25px rgba(0, 31, 63, 0.15);
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  #ceo-message .ceo-section img {
    max-width: 220px;
    height: 220px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}
#ceo-message .ceo-section div {
  flex-grow: 1;
  text-align: left;
}
@media (max-width: 768px) {
  #ceo-message .ceo-section div {
    text-align: center;
  }
}
#ceo-message .ceo-section div h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
  text-align: inherit;
}
@media (max-width: 768px) {
  #ceo-message .ceo-section div h2::after {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 769px) {
  #ceo-message .ceo-section div h2::after {
    margin-left: 0;
    margin-right: auto;
  }
}
#ceo-message .ceo-section div p {
  font-size: 1.05em;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 20px;
}
#ceo-message .ceo-section div h3 {
  font-size: 1.3em;
  color: #001f3f;
  margin-top: 30px;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #f4f7f6;
  text-align: inherit;
}
#ceo-message .ceo-section div ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  #ceo-message .ceo-section div ul {
    text-align: left;
  }
}
#ceo-message .ceo-section div ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  color: #666666;
}
#ceo-message .ceo-section div ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00A474;
  position: absolute;
  left: 0;
  top: 2px;
}
#ceo-message .ceo-section div .cta-button.view-more-secondary {
  margin-top: 15px;
}

@media (max-width: 768px) {
  /* --- 会社概要テーブルのスマホ対応 (縦積み表示) --- */
  .company-overview-section .company-table {
    border: none;
  }
  .company-overview-section .company-table thead {
    display: none;
  }
  .company-overview-section .company-table tr {
    display: block;
    margin-bottom: 25px;
    border-bottom: none;
  }
  .company-overview-section .company-table th {
    display: none;
  }
  .company-overview-section .company-table td {
    display: block;
    padding: 10px 0 10px 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
  }
  .company-overview-section .company-table td:last-child {
    border-bottom: none;
  }
  .company-overview-section .company-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #001f3f;
    margin-bottom: 5px;
    font-size: 0.9em;
  }
}
/* --- サンクスページ --- */
.thanks-page-container {
  padding: 80px 0;
  background-color: #f4f7f6;
  min-height: calc(100vh - 80px - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .thanks-page-container {
    min-height: calc(100vh - 70px - 150px);
    padding: 40px 0;
  }
}

.thanks-message-box {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 31, 63, 0.12);
  text-align: center;
  margin-bottom: 50px;
}
.thanks-message-box .thanks-icon {
  font-size: 4em;
  color: #00A474;
  margin-bottom: 20px;
}
.thanks-message-box .thanks-title {
  font-size: 2em;
  color: #001f3f;
  margin-bottom: 20px;
  line-height: 1.4;
}
.thanks-message-box .thanks-title::after {
  display: none;
}
.thanks-message-box .thanks-text {
  color: #666666;
  line-height: 1.8;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
  text-align: left;
}
.thanks-message-box .back-to-top-button {
  margin-top: 30px;
}

.additional-contents .next-action-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 31, 63, 0.08);
}
.additional-contents .next-action-box .next-action-title {
  text-align: center;
  font-size: 1.6em;
  margin-bottom: 20px;
}
.additional-contents .next-action-box .next-action-title i {
  color: #00A474;
  margin-right: 10px;
}
.additional-contents .next-action-box .next-action-title::after {
  width: 60px;
  height: 3px;
  margin-top: 10px;
}
.additional-contents .next-action-box p {
  color: #666666;
  text-align: left;
  max-width: 600px;
  margin: 0 auto 25px;
}
@media screen and (max-width: 768px) {
  .additional-contents .next-action-box p {
    text-align: left;
  }
}
.additional-contents .next-action-box .newsletter-form-wrapper {
  text-align: center;
}
.additional-contents .next-action-box .newsletter-form-wrapper .form-placeholder {
  border: 2px dashed #f4f7f6;
  padding: 40px 20px;
  color: #666666;
  border-radius: 8px;
}
.additional-contents .next-action-box .books-on-thanks-page .card a img {
  width: 100%;
}/*# sourceMappingURL=style.css.map */