@charset "UTF-8";

/* ===============================
   Reset / Base
=============================== */
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

html{
  scroll-behavior: smooth;
  /* PCヘッダーが高めなので余裕を持たせる */
  scroll-padding-top: 140px;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  color: #222222;
  line-height: 1.6;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 共通コンテンツ幅 */
.inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}



/* ===============================
   Header
=============================== */
/*
幅1200px
左右padding 40px
ロゴ視認性重視（大きめ）
*/
.header {
  background-color: #ffffff;
}

.header-inner {
  padding: 0 40px;
  max-width: 1200px;
  height: 120px; /* ← ロゴ160pxに合わせる */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: block;
}

.header-logo img {
  height: 100px; /* PC時ロゴ */
  width: auto;
}

.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin: 0 20px;
}

.site-menu ul li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* ===============================
   Main
=============================== */
.main {
  width: 100%;
}

/* ===============================
   Footer（明るめベージュ）
=============================== */
/*
黒は使わない
介護・安心感重視
*/
.footer {
  background-color: #f4f1ea; /* ← 明るめベージュ */
  color: #333333;
  padding: 40px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: block;
  margin-top: 40px;
}

.footer-logo img {
  height: 72px; /* PCフッターロゴ */
  width: auto;
}

.footer-tel {
  font-size: 26px;
  font-weight: bold;
  margin-top: 24px;
}

.footer-time {
  font-size: 14px;
  margin-top: 12px;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 60px;
}

/* ===============================
   Responsive（SP）
=============================== */
@media (max-width: 800px) {

  html{
    scroll-padding-top: 90px;
  }

  /* Header */
  .header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #ffffff;
    height: 72px; /* ← ロゴ80pxに合わせる */
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }

  .header-inner {
    padding: 0 20px;
    height: 100%;
    position: relative;
  }

  .header-logo img {
    height: 56px; /* SPヘッダーロゴ */
  }

  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu ul li {
    margin-top: 20px;
  }

  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #faf7f2;/* ベージュ系 */
    color: #333333;
    padding: 30px 0 50px 0;
    display: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .header-site-menu.is-show {
    display: block;
  }

  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../images/common/icon-menu.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
    background-color: transparent;
    border: none;
    outline: none;
  }

  .main {
    padding-top: 72px; /* 固定ヘッダー分 */
  }

  /* Footer */
  .footer-logo img {
    height: 48px; /* SPフッターロゴ */
  }

  .footer-tel {
    font-size: 20px;
  }

  .copyright {
    margin-top: 40px;
  }
}
