@charset "UTF-8";
/* CSS Document */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:      #705b86;
  --accent2:      #8d77a4;
  --accent-dark: #533e69;
  --accent-bg:   #e4dee8;
  --nav-text:    #555555;
  --border:      #e0e0e0;
  --green:       #a1bfbf;
  --green2:      #b9c8b8;
  --l-blue:      #d6e3e3;
  --green-dark:  #728d6f;
  --d-blue:      #517a7a;
  --d-red:      #6e0e0e;
}

body {
  font-family: "M PLUS Rounded 1c", 'Yu Gothic', sans-serif;
  padding-top: 94px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

/* 見出し調整 */
h2 {
  font-weight: 400;
  font-size: 36px;
}

/* セクション上下のスペース */
section {
  margin: 90px 0;
}
  .mb-br { display: none; }
@media (max-width: 480px) {
  .pc-br { display: none; }
  .mb-br { display: inline; }
}
/* ════ HEADER ════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.09); }

.header-inner {
  display: flex;
  align-items: stretch;
  height: 94px;
}

/* ロゴ（左端） */
.logo-area {
  display: flex;
  align-items: center;
  padding: 0 20px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-area .site-title {
  margin: 0;
  font-size: 0;
  line-height: 0;
}
.logo-img {
  height: 65px;
  width: auto;
  display: block;
}

/* ナビ（右寄せ） */
.nav-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  margin-right: 10px;
}
.site-nav { display: flex; list-style: none; height: 64px; }
.site-nav li {
  height: 100%; display: flex; align-items: center;
  position: relative;
}
.site-nav li + li::before {
  content: '';
  position: absolute; left: 0;
  top: 50%; transform: translateY(-50%);
  width: 1px; height: calc(1em + 10px);
  background: var(--accent);
}
.site-nav li:last-child::after {
  content: '';
  position: absolute; right: 0;
  top: 50%; transform: translateY(-50%);
  width: 0px; height: calc(1em + 10px);
  background: var(--accent);
}
.site-nav a {
  display: flex; align-items: center;
  height: 100%; padding: 0 15px;
  font-family: "M PLUS Rounded 1c", 'Yu Gothic', sans-serif;
  font-size: 15px; color: var(--accent);
  text-decoration: none; letter-spacing: 0.04em;
  white-space: nowrap; transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--accent); background: #f5f6fb; }

/* お問合せ（右端・ベタ塗り） */
.cta-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 42px;
  background: var(--accent);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cta-img {
  height: 42px;
  width: auto;
  display: block;
}
.cta-btn:hover { background: var(--accent-dark); }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; background: var(--accent); border: none; cursor: pointer;
  padding: 0 22px; align-self: stretch; flex-shrink: 0;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  overflow: hidden; max-height: 0; transition: max-height 0.35s ease;
}
.mobile-menu.open { display: flex; max-height: 600px; }
.mobile-menu a {
  padding: 15px 24px; font-size: 13.5px; color: var(--nav-text);
  text-decoration: none; border-bottom: 1px solid #f0f0f0;
  letter-spacing: 0.04em; transition: background 0.15s, color 0.15s;
}
.mobile-menu a:hover { background: #eef0f8; color: var(--accent); }
.mobile-menu .mobile-cta {
  margin: 14px 20px 18px; padding: 13px;
  background: var(--accent); color: #fff; border-radius: 4px;
  text-align: center; font-size: 13px; letter-spacing: 0.06em; border-bottom: none;
}
.mobile-menu .mobile-cta:hover { background: var(--accent-dark); }

/* レスポンシブ */
@media (max-width: 768px) {
  h2 { font-weight: 400; font-size: 26px; }
  section { margin: 60px 0; }
}
@media (max-width: 1080px) {
  .nav-wrap, .cta-btn { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 40px; width: auto; display: block; }
  .header-inner { height: 64px; }
}
@media (max-width: 1560px) and (min-width: 961px) {
  .site-nav a { padding: 0 5px; font-size: 13px; }
  .logo-area  { padding: 0 14px; }
  .logo-img   { height: 55px; width: auto; display: block; }
  .cta-btn    { padding: 0 16px; }
  .cta-img    { height: 32px; width: auto; display: block; }
}
@media (max-width: 480px) {
  .logo-area {
    max-width: 80%;
  }
  .logo-img {
    height: auto;
    width: 100%;
    display: block;
  }
}

/* ════ フッター ════ */
.footer-top {
  max-width: 1080px;
  margin-inline: auto;
  text-align: right;
}
.site-footer {
  background: var(--accent);
  color: #ccc;
  padding: 40px 40px 24px;
}
.footer-suzuran {
  width: 120px;
  height: auto;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.footer-logo img {
  height: 62px;
  width: auto;
  opacity: 0.85;
  display: block;
  margin-bottom: 12px;
}
.footer-logo-name {
  font-size: 13px;
  color: #ddd;
  letter-spacing: 0.06em;
}
.footer-info {
  font-size: 13px;
  line-height: 2.0;
  letter-spacing: 0.04em;
  text-align: right;
}
.footer-info a { color: #fff; text-decoration: none; }
.footer-info a:hover { color: #eee2bf; }
.footer-copy {
  text-align: center;
  font-size: 11px;
  color: #eee;
  letter-spacing: 0.06em;
}
@media (max-width: 640px) {
  .site-footer { padding: 36px 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ════ ページトップボタン ════ */
.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border: var(--border) 1px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s, transform 0.2s;
  z-index: 300;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}
.pagetop.visible { opacity: 1; pointer-events: auto; }
.pagetop:hover { background: var(--accent-dark); transform: translateY(-3px); }
.pagetop svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ════ 共通ページヘッダー ════ */
/* カラーバー */
.page-colorbar {
  width: 100%;
  height: 12px;
  display: flex;
}
.page-colorbar span {
  flex: 1;
}
/* カラーバーの色はページごとに body クラスで上書き */
.colorbar-default span:nth-child(1)  { background: #9b8bb4; }
.colorbar-default span:nth-child(2)  { background: #a1bfbf; }
.colorbar-default span:nth-child(3)  { background: #b9c8b8; }
.colorbar-default span:nth-child(4)  { background: #c8b8c8; }
.colorbar-default span:nth-child(5)  { background: #9b8bb4; }
.colorbar-default span:nth-child(6)  { background: #d4cce0; }
.colorbar-default span:nth-child(7)  { background: #b9c8b8; }
.colorbar-default span:nth-child(8)  { background: #a1bfbf; }
.colorbar-default span:nth-child(9)  { background: #c8b8c8; }
.colorbar-default span:nth-child(10) { background: #9b8bb4; }
.colorbar-default span:nth-child(11) { background: #d4cce0; }
.colorbar-default span:nth-child(12) { background: #b4a8c8; }
.colorbar-default span:nth-child(13) { background: #a1bfbf; }
.colorbar-default span:nth-child(14) { background: #9b8bb4; }
.colorbar-default span:nth-child(15) { background: #b9c8b8; }

/* ページタイトルエリア */
.page-title-area {
  text-align: center;
  padding: 48px 20px 40px;
  background: url(../images/content_head_bg_2.png) center top no-repeat;
  height: 600px;
}
.page-title-icon {
  width: 240px;
  height: auto;
  display: block;
  margin: 90px auto 16px;
}
.page-title-ja {
  font-size: 34px;
  font-weight: 400;
  color: #444;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.page-title-en {
  font-size: 15px;
  color: #aaa;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .page-title-area {
    text-align: center;
    padding: 28px 20px 40px;
    background: url(../images/content_head_bg_2.png) center top no-repeat;
    background-size: auto 400px;
    height: 400px;
    margin-top: -30px;
  }
  .page-title-ja { font-size: 24px; }
  .page-title-icon { 
    width: 160px;
    margin: 60px auto 16px;
 }
}
@media (max-width: 480px) {
  .page-title-ja span { font-size: 12px; }
  .page-title-icon { 
    width: 150px;
    margin: 50px auto 10px;
  }
}

/* ════ 共通セクション見出し ════ */
.section-heading {
  text-align: center;
  padding: 0 20px 60px;
}
.section-heading-icon {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}
.section-heading-ja {
  font-size: 32px;
  font-weight: 400;
  color: #444;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.section-heading-en {
  font-size: 16px;
  color: #aaa;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .section-heading-ja { font-size: 20px; }
  .section-heading-icon { width: 120px; }
}

/* ════ 共通フロー（ステップ矢印） ════ */
.flow-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-item {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 10px;
}
.flow-arrow {
  text-align: center;
  color: var(--green);
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* ════ 共通お問合せバナー ════ */
.contact-banner {
  background: #d4cce0 url(../images/contact_bg.png) center center no-repeat;
  background-size: cover;
  padding: 40px 20px;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}
.contact-banner-green {
  background: url(../images/kagayaki_contact.png) center center no-repeat;
  background-size: cover;
  padding: 40px 20px;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}
.contact-banner-title {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.contact-banner-tel {
  display: inline-block;
  font-size: 28px;
  padding: 15px;
  font-weight: 500;
  color: var(--accent);
  background-color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
.contact-banner-tel-green {
  display: block;
  width: 90%;
  margin-inline: auto;
  font-size: 28px;
  padding: 10px;
  font-weight: 500;
  color: var(--green-dark);
  background-color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
}
.contact-banner-tel-green span {
  display: block;
  font-size: 14px;
  color: var(--green-dark);
  margin-top: 8px;
  letter-spacing: 0;
}
.contact-banner-btn {
  display: inline-flex;
  align-items: center;
  transition: background 0.2s;
}

.content-mainphoto {
  max-width: 1200px;
  margin: 0 auto 40px;
}
.content-mainphoto-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  box-shadow: 5px 5px 0 var(--accent);
}
@media (max-width: 768px) {
  .contact-banner-tel-green {
    display: block;
    width: 100%;
    margin-inline: auto;
    font-size: 24px;
  }
}
