@charset "UTF-8";

/*==============================================================
  カスタムプロパティ（色定義）
==============================================================*/
:root {
  /* 基本カラー */
  --color-main:       #073640;
  --color-accent:     #E1B37B;
  --color-soft:       #F7F5F2;
  --color-text-base:  #333333;
  --color-text-sub:   #5E493D;

  /* ボタンカラー */
  --btn-primary-bg:       #B47A3C;
  --btn-primary-bg-dark:  #8E622F;
  --btn-primary-color:    #ffffff;
  --btn-outline-bg:       rgba(255,255,255,0.6);
  --btn-outline-color:    var(--btn-primary-bg);
}

/*==============================================================
  背景・テキストカラー ユーティリティ
==============================================================*/
.bg-main    { background-color: var(--color-main)    !important; }
.bg-accent  { background-color: var(--color-accent)  !important; }
.bg-soft    { background-color: var(--color-soft)    !important; }
.text-main  { color:            var(--color-main)    !important; }
.text-accent{ color:            var(--color-accent)  !important; }
.text-soft  { color:            var(--color-soft)    !important; }
.text-base  { color:            var(--color-text-base)!important; }
.border-main   { border-color: var(--color-main)   !important; }
.border-accent { border-color: var(--color-accent) !important; }

/*==============================================================
  共通ボタンスタイル
==============================================================*/
.btn {
  display: inline-block;
  padding: .5rem 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: .25rem;
  transition: background-color .2s ease, border-color .2s ease, opacity .2s ease;
}
.btn:hover { opacity: .8; }
.btn-group .btn + .btn { margin-left: 1rem; }

/* プライマリーボタン */
.btn--primary {
  background-color: var(--btn-primary-bg);
  color:            var(--btn-primary-color);
  border:           1px solid var(--btn-primary-bg);
}
.btn--primary:hover {
  background-color: var(--btn-primary-bg-dark);
  border-color:     var(--btn-primary-bg-dark);
}

/* アウトラインボタン */
.btn--outline {
  background-color: var(--btn-outline-bg);
  color:            var(--btn-outline-color);
  border:           1px solid var(--btn-outline-color);
}
.btn--outline:hover {
  background-color: var(--btn-outline-color);
  color:            var(--btn-primary-color);
  border-color:     var(--btn-outline-color);
}
/*==============================================================
  ヘッダー（スクロールで背景＋シャドウふわっと固定）
==============================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  background-color: transparent;
  transition: background-color .5s ease-in-out, box-shadow .5s ease-in-out;
}

.page header,
.single header,
.category header,
.error404 header{
  background-color: var(--color-main);
}

.home header{
  background-color: transparent;
}

body.page,
body.single,
body.category,
body.error404 {
  padding-top: 87px;
}

body.home{
  padding-top: 0;
}

.category .section-title,
.pt40{
  padding-top: 40px;
}

header.scrolled {
  background-color: var(--color-main);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ナビゲーション内部 */
.navbar {
  display: flex;
  align-items: center;
}

/* ロゴサイズ */
.navbar-brand img {
  height: 60px;
}
@media (max-width: 768px) {
  .navbar-brand img {
    height: 50px;
  }
}

/* リンク色 */
.navbar .nav-link {
  color: var(--color-soft) !important;
}
.navbar .nav-link:hover {
  color: var(--color-accent) !important;
}
/*==============================================================
  フッター
==============================================================*/
footer {
  background-color: var(--color-main) ;
  color:            var(--color-soft) ;
}

/*==============================================================
  セクション共通
==============================================================*/
.section {
  padding: 120px 0;
  background-color: #fff;
}
.section + .section {
  border-top: 1px solid #e0e0e0;
}
#main-content > .section:nth-of-type(even) {
  background-color: #f9f9f9;
}

/* Hero セクション */
.section--hero {
  position: relative;
  padding: 240px 0;
  background: url('../../images/hero.webp') center/cover no-repeat;
  color: #fff;
}
.section--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.section--hero .container {
  position: relative;
  z-index: 1;
}
.section--hero .hero-title {
  font-size: 3rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section--hero .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .section--hero .hero-title {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
  タイトル・リード
--------------------------------------------------------------*/
.section-title {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  color: var(--color-main);
  font-weight: bold;
  line-height: 1.5;
}
.section-desc {
  text-align: center;
  margin-bottom: 60px;
  color: var(--color-main);
  line-height: 1.8;
}

/* 特殊：Heroの見出し */
.section--hero .section-title {
  text-align: left;
  color: var(--color-soft) !important;
  padding-bottom: 1rem;
}
.section--hero .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 4px;
  background-color: #003a7c;
}

/*==============================================================
  カード共通
==============================================================*/
.card {
  border: 1px solid #e0e0e0;
  border-radius: .25rem;
  background-color: #fff;
  overflow: hidden;
}
.card__image {
  width: 100%;
  height: auto;
  display: block;
}
.card__body {
  padding: 1rem;
}
.card-title {
  font-size: 1.25rem;
  margin-bottom: .75rem;
}
.card-text {
  font-size: 1rem;
  margin: 0;
}
.card--feature,
.card--service {
  height: 100%;
}
.card--showcase .card__image {
  border-radius: .125rem;
}

/*==============================================================
  FAQ
==============================================================*/
.faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item__question {
  font-weight: 500;
  cursor: pointer;
}
.faq-item__answer {
  margin-top: .5rem;
  padding-left: 1rem;
  font-size: .95rem;
  line-height: 1.5;
}

/*==============================================================
  最終CTA
==============================================================*/
.section--cta {
  padding: 120px 0;
  background-color: var(--color-main) !important;
}
.section--cta .btn + .btn {
  margin-left: .5rem;
}

/*==============================================================
  本文（.entry-content）ベーシックスタイル＆飾り
==============================================================*/
.entry-content {
  color: var(--color-text-base);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* 見出しデザイン */
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  position: relative;
  color: var(--color-main);
  font-weight: bold;
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}
.entry-content h2 {
  font-size: 1.75rem;
}
.entry-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 .75rem;
}
.entry-content h4 {
  font-size: 1.25rem;
  margin: 1.5rem 0 .5rem;
}
/* 見出し下にアクセントライン */
.entry-content h2::after,
.entry-content h3::after,
.entry-content h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

/* リスト */
.entry-content ul,
.entry-content ol {
  margin: 1rem 0 1rem 1.5rem;
}
.entry-content li {
  margin-bottom: .5rem;
}

/* リンク */
.entry-content a {
  position: relative;
  color: var(--color-accent);
  text-decoration: none;
}
.entry-content a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease;
}
.entry-content a:hover::after {
  transform: scaleX(1);
}

/* ブロッククオート */
.entry-content blockquote {
  border-left: 4px solid var(--color-accent);
  background-color: var(--color-soft);
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  font-style: italic;
}

/* 画像 */
.entry-content img {
  display: block;
  margin: 1.5rem auto;
  max-width: 100%;
  height: auto;
}

/* 表 */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.entry-content th,
.entry-content td {
  border: 1px solid rgba(0,0,0,.1);
  padding: .75rem;
}
.entry-content th {
  background-color: var(--color-soft);
}
.entry-content tr:nth-child(even) {
  background-color: rgba(225,179,123,.05);
}

/* コード */
.entry-content pre {
  background-color: #2d2d2d;
  color: #f8f8f2;
  padding: 1rem;
  border-radius: .25rem;
  overflow: auto;
  margin: 1.5rem 0;
}
.entry-content code {
  background-color: #f5f5f5;
  padding: .2rem .4rem;
  border-radius: .25rem;
  font-family: Menlo, Consolas, monospace;
}

/* 水平線 */
.entry-content hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
}

/*==============================================================
  共通デコレーション
==============================================================*/

/* セクションタイトル下のライン */
.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  margin: 8px auto 0;
  background-color: var(--color-accent);
  border-radius: 2px;
}

/* カードホバーエフェクト */
.card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .08);
}

/* ボタンシャドウ */
.btn {
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
  transition: box-shadow .3s ease;
}
.btn--primary:hover,
.btn--outline:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

/* フォームフォーカス装飾 */
input[type="text"],
textarea,
select {
  border: 1px solid #ccc;
  transition: border-color .3s ease, box-shadow .3s ease;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(225,179,123,.2);
  outline: none;
}

/* News Section 調整 */
.section--news .news-list {
  margin: 0;
  padding: 0;
}
.section--news .news-item {
  list-style: none;
  padding: .75rem 0;           /* 上下余白を少しタイトに */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.section--news .news-item:last-child {
  border-bottom: none;
}

/* 日付 */
.section--news .news-meta time {
  font-size: .875rem;         /* 小さめフォント */
  line-height: 1.2;
  color: var(--color-text-sub);
  margin-right: 1rem;
}

/* バッジ */
.section--news .news-meta .badge {
  font-size: .75rem;          /* 小さめバッジ */
  padding: .25rem .5rem;
  vertical-align: middle;
}

/* タイトル */
.section--news .news-title {
  width: 100%;         /* 日付とタイトルの間隔 */
}
.section--news .news-title a {
  font-size: 1rem;            /* 通常テキストよりやや大きめ */
  line-height: 1.4;
  color: var(--color-main);
  text-decoration: none;
}
.section--news .news-title a:hover {
  text-decoration: underline;
}

/* セクション見出し */
.section--news .section-title {
  margin-bottom: 1.5rem;      /* 見出しとリストの間 */
  font-size: 1.5rem;
}
