/*
Theme Name: Around The Peace LP Theme
Description: Minimal child theme. All visual styles are handled within WordPress blocks or custom HTML.
Author: Around The Peace
Version: 1.0
*/

/* intentionally left blank */

/*
Theme Name: Around The Peace LP Theme
Description: Minimal child theme. All visual styles are handled within WordPress blocks or custom HTML.
Author: Around The Peace
Version: 1.0
*/

/* =========================
   Header
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}


.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-branding__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.custom-logo {
  height: 40px;
  width: auto;
}

.site-nav__list {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 14px;
}

/* =========================
   Header
========================= */

.site-header{
  background: #ffa500;                 /* ヘッダー背景色 */
  border-bottom: 1px solid rgba(255,255,255,0.14);
  position: sticky;                    /* 上部固定（不要なら削除OK） */
  top: 0;
  z-index: 1000;
}

.site-header__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-title{ color:#fff; font-weight:700; }
.custom-logo{ height: 38px; width:auto; }

.site-nav__list{
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav__list a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}

.site-nav__list a:hover{
  background: rgba(255,255,255,0.14);
  color: #fff;
}

/* 右端（最後のメニュー）をCTAボタン化：必要ならON */
.site-nav__list li:last-child a{
  background: #fff;
  color: #0B2A5B;
}
/* =========================
   Footer（LP専用・Light）
========================= */

.site-footer{
  margin-top: 120px;
}

/* LP配下だけデザイン */
.site-footer .lp-footer{
  background: #f9f9f9;
  color: #333;
  padding: 56px 20px 40px;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    Helvetica,
    Arial,
    sans-serif;
  border-top: 1px solid #e5e5e5;
}

.lp-footer-inner{
  max-width: 1040px;
  margin: 0 auto;
}

/* 上段 */
.lp-footer-top{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid #e3e3e3;
}

.lp-footer-brand{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #111;
}

/* ナビ */
.lp-footer-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.lp-footer-nav a{
  position: relative;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  padding-bottom: 2px;
}

.lp-footer-nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #EA580C; /* 松本オレンジ */
  transition: width .25s ease;
}

.lp-footer-nav a:hover{
  color: #111;
}

.lp-footer-nav a:hover::after{
  width: 100%;
}

/* 注意文 */
.lp-footer-note{
  margin-top: 22px;
  max-width: 820px;
  font-size: 12.5px;
  line-height: 1.9;
  color: #666;
}

.lp-footer-note a{
  color: #333;
  text-decoration: underline;
}

/* コピーライト */
.lp-footer-copy{
  margin-top: 26px;
  padding-top: 14px;
  font-size: 12px;
  letter-spacing: .02em;
  color: #888;
  border-top: 1px solid #e1e1e1;
}

/* スマホ */
@media (max-width: 768px){
  .lp-footer-top{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lp-footer-brand{
    font-size: 14px;
  }
}

