@charset "utf-8";


:root {
  --color-main: #F2A65A;
  --color-sub: #375A7F;
  --color-accent: #80B17C;
  --color-bg: #FAF7F2;
  --color-text: #333333;
  --shadow-soft: 0 6px 16px rgba(0, 0, 0, 0.08);
  --radius-card: 14px;
  --radius-btn: 999px;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

section {
  padding: 56px 0;
}

h2.section-title {
  font-size: 1.6rem;
  margin: 0 0 24px;
  position: relative;
  padding-left: 16px;
}

h2.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 3px;
  background: var(--color-main);
}

section.hero {
  padding: 0;
}

.section-subtitle {
  margin-top: -12px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: #777;
}



/* =====================
   NAV
===================== */
/* 
.nav a {
  text-decoration: none;
  color: var(--color-bg);
  font-weight: bold;
  font-size: 0.8rem;
} 

.nav-list,
.header__btn,
.nav__btn  {
  display: none;
}



/* nav pc→sp*/
/* @media (max-width: 768px) {

.nav {
  background-color: rgba(149, 188, 230, 0.95);
  width: 40vh;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s;
  float: right;
}


.nav-list {
  display: block;
  margin-top: 30px;
  margin-left: 20px; 
}

.nav a {
text-decoration: none;
  color:white;
  font-weight: 400;
  font-size: 1.0rem;
}


.nav__btn {
  display: block;
  margin-top: 15px;
  margin-left: 10px;
  width: 40px;
  height: 40px;
}

.top-btn {
  display: flex;
  align-items: right;
  background-color: rgba(250, 247, 242, 0.1);
}

.header__btn {
 display: block;
 margin-top: 5px;
 width: 40px;
 height: 40px;
 margin-right: 15px;
 margin-left: auto;
 z-index: 9000;
}

.nav.active {
  transform: translateX(0);
}

}

@media (max-width: 320px) {
.nav {
  width: 35vh;
}

.nav a {
font-size: 0.7rem;
}

} */






/* ヘッダー */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F2A65A, #F7C892);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.logo-text-main {
  font-weight: 700;
  font-size: 1rem;
}

.logo-text-sub {
  font-size: 0.7rem;
  color: #777;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-tel {
  text-align: right;
  font-size: 0.8rem;
}

.header-tel .tel-number {
  font-size: 1rem;
  font-weight: 700;
}


.btn-header {
  background: var(--color-main);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

/* ヒーロー（全幅画像＋画像なり高さ） */
.hero {
  position: relative;
  color: #fff;
  margin-bottom: 32px;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: 35% center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-content {
  max-width: 560px;
  /* padding: 80px 16px 40px; */
  pointer-events: auto;
}

.hero-text-top {
  font-size: 0.9rem;
  color: #f3f3f3;
  margin-bottom: 6px;
}

.hero-title-main {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-title-main span {
  background: linear-gradient(120deg, #FFE7B2, #FFFFFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-catch {
  font-size: 1rem;
  margin-bottom: 16px;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.9rem;
}

.hero-list li {
  margin-bottom: 4px;
}

.hero-list li::before {
  content: "✔";
  color: #FFE7B2;
  font-weight: 700;
  margin-right: 6px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-note {
  font-size: 0.8rem;
  color: #f3f3f3;
}

.btn-primary {
  background: var(--color-main);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-sub);
  border-radius: var(--radius-btn);
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* 特徴 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 120px;
  height: auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.feature-text {
  font-size: 0.85rem;
  color: #555;
}

/* サービス内容 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.service-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-sub);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 6px;
}

.service-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.service-list {
  padding-left: 1.1em;
  margin: 0;
  font-size: 0.85rem;
  color: #555;
}

/* 重要事項説明書ボタン周り */
.service-download {
  text-align: center;
  margin-top: 30px;
}

.service-download p {
  font-size: 1rem;
  color: #777;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ご利用の流れ */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.flow-step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--color-main);
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 4px;
}

.flow-step-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.flow-step-text {
  font-size: 0.8rem;
  color: #555;
}

/* スタッフ紹介 */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.staff-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.staff-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 8px;
  background: #ddd;
}

.staff-name {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.staff-role {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 8px;
}

.staff-comment {
  font-size: 0.82rem;
  color: #555;
}

/* 声 */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.voice-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  position: relative;
  font-size: 0.85rem;
}

.voice-card::before {
  content: "“";
  position: absolute;
  font-size: 2.4rem;
  color: rgba(0, 0, 0, 0.08);
  top: 4px;
  left: 10px;
}

.voice-text {
  margin-top: 10px;
  margin-bottom: 8px;
}

.voice-name {
  font-size: 0.8rem;
  color: #777;
  text-align: right;
}

/* 採用情報 */
.recruit {
  background: linear-gradient(135deg, #FFF5E9, #FFFDF8);
}

.recruit-inner {
  background: #fff;
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: var(--shadow-soft);
}

.recruit-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.recruit-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.recruit-pill {
  font-size: 0.8rem;
  background: #FFF0DD;
  border-radius: 999px;
  padding: 4px 10px;
  display: inline-block;
  margin-right: 6px;
}

.recruit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 16px;
}

.recruit-list {
  font-size: 0.85rem;
  padding-left: 1em;
}

.recruit-item-title {
  font-weight: 700;
  margin-bottom: 2px;
}

.recruit-box {
  background: #FFF5E5;
  border-radius: 18px;
  padding: 14px;
  font-size: 0.85rem;
}

.recruit-cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* FAQ */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
}

.faq-q {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-sub);
}

.faq-a {
  color: #555;
}

/* アクセス */
.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 16px;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.access-table th,
.access-table td {
  padding: 6px 4px;
  text-align: left;
  vertical-align: top;
}

.access-table th {
  width: 90px;
  color: #555;
  font-weight: 600;
}

.map-placeholder {
  background: #ddd;
  border-radius: var(--radius-card);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #666;
}

/* フッター */
.footer {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 0 26px;
  margin-top: 24px;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-small {
  color: #777;
  font-size: 0.75rem;
}

/* スクロールアニメーション */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
  will-change: opacity, transform;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }

  .header-inner {
    gap: 8px;
  }

  .header-tel {
    font-size: 0.75rem;
  }

  /* .hero-content {
    padding-top: 60px;
    padding-bottom: 32px;
  } */

  .features-grid,
  .services-grid,
  .staff-grid,
  .voices-grid,
  .flow-steps,
  .faq-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .access-grid,
  .recruit-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  @media (max-width: 760px) {
    .hero-img {
      height: 600px;
      background-position: center;
      background-size: cover;
    }
  }

  @media (max-width: 600px) {


    .header-right {
      display: block;
      text-align: right;
    }

    .time {
      margin-bottom: 5px;
      font-size: 0.6rem;
    }

    .btn-header {
      margin-top: 10px;
    }

    .br-sp {
      display: none;
    }

    .header-inner {
      padding: 6px;
    }

    .hero-content {
      max-width: 470px;
      /* padding: 15px 8px 8px; */
    }

    .hero-text-top {
      font-size: 1.0rem;
      margin-bottom: 1.1px;
    }

    .hero-title-main {
      font-size: 1.7rem;
      margin-bottom: 8px;
    }


    .hero-catch {
      font-size: 0.85rem;
      margin-bottom: 9px;
    }

    .hero-list {
      margin: 0 0 15px;
      font-size: 0.9rem;
    }

    .hero-list li {
      margin-bottom: 5px;
    }

    .hero-cta {
      gap: 7px;
      margin-bottom: 15px;
    }



    .btn-primary {
      padding: 7px 14px;
    }

    .btn-secondary {
      padding: 6px 13px;
      font-size: 0.7rem;
    }

  }



  @media (max-width: 470px) {
    .hero-content {
      max-width: 470px;
      /* padding: 10px 2px 2px 4px; */
    }

    .hero-img {
      height: 600px;
    }

    .hero-text-top {
      font-size: 0.9rem;
      color: #f3f3f3;
      margin-bottom: 18px;
    }

    .hero-title-main {
      font-size: 1.4rem;
      margin-bottom: 18px;
    }

    .hero-catch {
      font-size: 0.85rem;
      line-height: 1.2;
      margin-bottom: 18px;
    }

    .hero-list {
      font-size: 0.8rem;
    }

    .hero-list li {
      margin-bottom: 5px;
    }


    .hero-cta {
      gap: 7px;
      margin-bottom: 15px;
    }

    .hero-note {
      margin-top: 10px;
      line-height: 1.2;
    }

    .btn-primary {
      padding: 5px 10px;
      font-size: 0.9rem;
      font-weight: 500;
    }

  }

  @media (max-width: 413px) {
    .header-right {
      display: none;
    }

    .hero-img {
      height: 550px;
    }
  }

  @media (max-width: 374px) {

    /* .hero-content {
 
  padding: 8px 1.5px 1.5px 1.5px;
} */
    .hero-img {
      height: 500px;
    }


    .hero-text-top {
      font-size: 0.9rem;
      color: #f3f3f3;
      margin-bottom: 8px;
    }

    .hero-title-main {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .hero-catch {
      font-size: 0.8rem;
      line-height: 1.3;
      margin-bottom: 15px;
    }

    .hero-list {
      font-size: 0.67rem;
    }

    .hero-list li {
      margin-bottom: 1.5px;
    }


    .hero-cta {
      gap: 7px;
      margin-bottom: 7px;
    }

    .hero-note {
      margin-top: 15px;
      font-size: 0.7rem;
      line-height: 1.2;
    }

    .btn-primary {
      padding: 3px 8px;
      font-size: 0.7rem;
      font-weight: 500;
    }

    .btn-secondary {
      padding: 3px 8px;
      font-size: 0.7rem;
    }

  }

  /* タブレット用の軽い調整 */
  @media (max-width: 1024px) and (min-width: 769px) {

    .features-grid,
    .services-grid,
    .staff-grid,
    .voices-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

}