:root {
  --primary: #12335f;
  --primary-dark: #0b2445;
  --primary-soft: #eaf0f8;
  --accent: #c5a36a;
  --accent-dark: #9f7e43;
  --text: #263445;
  --muted: #667085;
  --line: #e6eaf0;
  --bg: #f7f9fc;
  --white: #fff;
  --danger: #b42318;
  --shadow: 0 12px 30px rgba(18, 51, 95, 0.10);
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: var(--text);
  line-height: 1.85;
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
section { padding: 80px 0; }
.eyebrow {
  display: inline-block;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.35;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.section-lead {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.04rem;
  margin-bottom: 36px;
}
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

.utility-bar {
  background: var(--primary-dark);
  color: var(--white);
  position: relative;
  z-index: 10;
}

.utility-inner {
  min-height: 46px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.utility-link em {
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.85;
}

.utility-link:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.utility-bar {
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.utility-bar.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(11,36,69,0.96);
  box-shadow: 0 10px 28px rgba(11,36,69,0.18);
  backdrop-filter: blur(8px);
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--primary-dark);
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.88) 0%,
      rgba(255,255,255,0.76) 28%,
      rgba(255,255,255,0.42) 55%,
      rgba(255,255,255,0.10) 100%
    ),
    url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 55px 0 70px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(197,163,106,0.35);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-logo{
    margin-bottom:4px;
    padding-left:6px;
}

.hero-logo img{
    width:260px;
    height:auto;
    display:block;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.45rem);
  line-height: 1.28;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  color: var(--primary-dark);
  text-shadow: 0 2px 12px rgba(255,255,255,0.7);
}

.hero h1 span {
  color: var(--accent-dark);
}

.hero-copy {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: var(--primary-dark);
  max-width: 720px;
  margin-bottom: 26px;
  font-weight: 600;
  line-height: 2;
  text-shadow: 0 1px 8px rgba(255,255,255,0.8);
}

.hero-note {
  display: inline-block;
  max-width: 620px;
  border-left: 5px solid var(--accent);
  padding: 17px 22px;
  color: #fff;
  background: rgba(11,36,69,0.92);
  border-radius: 0 10px 10px 0;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(11,36,69,0.22);
}

.hero-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 34px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 55px rgba(18,51,95,0.18);
  color: var(--primary-dark);
}

.hero-card-title {
  color: var(--accent-dark);
  font-weight: 900;
  font-size: 1.18rem;
  margin-bottom: 16px;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(18,51,95,0.15);
  font-weight: 700;
}

.hero-card li:last-child {
  border-bottom: none;
}

.hero-card li::before {
  content: "✓";
  color: var(--accent-dark);
  margin-right: 10px;
  font-weight: 900;
}

.sp-only {
  display: none;
}

.intro {
  background: var(--white);
}

.philosophy-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(36px, 5vw, 62px);
  box-shadow: 0 18px 45px rgba(18,51,95,0.09);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.philosophy-box::after {
  content: "”";
  position: absolute;
  right: 52px;
  bottom: -30px;
  color: rgba(197,163,106,0.10);
  font-size: 11rem;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.philosophy-main {
  position: relative;
  text-align: center;
  padding-right: 46px;
  border-right: 1px solid rgba(197,163,106,0.52);
}

.quote-mark {
  position: absolute;
  left: -20px;
  top: -44px;
  color: rgba(197,163,106,0.12);
  font-size: 9.5rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.philosophy-title {
  position: relative;
  z-index: 1;
  color: var(--primary-dark);
  font-size: clamp(2.05rem, 4.2vw, 3.45rem);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin: 18px 0 22px;
}

.philosophy-line {
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 22px;
  position: relative;
}

.philosophy-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.philosophy-copy {
  color: var(--primary-dark);
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}

.philosophy-sub {
  display: inline-block;
  padding: 16px 22px;
  border-radius: 14px;
  background: #fffaf1;
  border: 1px solid rgba(197,163,106,0.28);
  box-shadow: 0 8px 22px rgba(197,163,106,0.10);
}

.philosophy-sub span {
  display: block;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.philosophy-sub strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 900;
}

.philosophy-text {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 1rem;
  line-height: 2.15;
}

.philosophy-text p + p {
  margin-top: 24px;
}

.stats { background: var(--primary-soft); } 
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--accent);
  transition: transform .25s ease, box-shadow .25s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(18,51,95,0.16);
}

.stat-icon {
  color: var(--accent-dark);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 16px;
}

.stat-number {
  color: var(--primary);
  font-size: clamp(2.45rem, 4.3vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-number span {
  font-size: 1.2rem;
  letter-spacing: 0;
  margin-left: 4px;
}

.stat-line {
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 18px auto 12px;
  position: relative;
}

.stat-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.stat-label {
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-top: 0;
}

.stat-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

.benefits {
  background: var(--white);
}

.merit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.merit-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fbfcff);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 46px 28px 0;
  text-align: left;
  box-shadow: 0 16px 38px rgba(18,51,95,0.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.merit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(18,51,95,0.16);
}

.merit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 78px solid var(--primary-dark);
  border-right: 78px solid transparent;
  z-index: 1;
}

.merit-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 54px;
  width: 8px;
  height: 95px;
  background: var(--accent);
  transform: rotate(45deg);
  transform-origin: top;
  z-index: 2;
}

.merit-num {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 3;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.merit-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fbf5ea;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: inset 0 0 0 1px rgba(197,163,106,.18), 0 10px 22px rgba(197,163,106,.14);
}

.merit-line {
  width: 112px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 20px;
  position: relative;
}

.merit-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.merit-card h3 {
  color: var(--primary-dark);
  font-size: 1.28rem;
  line-height: 1.65;
  font-weight: 900;
  text-align: center;
  margin-bottom: 22px;
}

.merit-card p {
  color: var(--text);
  line-height: 2;
  font-size: 0.96rem;
  padding-bottom: 30px;
}

.merit-bottom {
  margin: 0 -28px;
  padding: 18px 24px;
  background: #fbf7ef;
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 0.95rem;
  text-align: center;
  border-top: 1px solid rgba(197,163,106,.18);
}

.merit-bottom::before {
  content: "✓";
  display: inline-flex;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.quality { background: var(--bg); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.panel h3 {
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.check-list { list-style: none; }
.check-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 900;
}

.message { background: var(--white); }
.message-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: center;
}
.photo-placeholder {
  min-height: 390px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eef2f7, #dfe6ef);
  border: 1px dashed #b9c4d2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  padding: 24px;
  font-weight: 700;
}
.sign { text-align: right; font-weight: 800; margin-top: 22px; color: var(--primary); }

.flow { background: var(--primary-soft); }
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.flow-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.step {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.flow-card h3 { color: var(--primary); font-size: 1.08rem; margin-bottom: 8px; }

.info { background: var(--white); }
.info-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}
.info-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.info-box h3 {
  color: var(--primary);
  font-size: 1.28rem;
  border-left: 5px solid var(--accent);
  padding-left: 12px;
  margin-bottom: 18px;
}

.meeting-cta {
  margin-top: 26px;
}

.meeting-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  font-weight: 900;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 30px rgba(18,51,95,0.22);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.meeting-btn em {
  font-style: normal;
  font-size: 1rem;
  opacity: 0.9;
}

.meeting-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 20px 42px rgba(159,126,67,0.28);
}

table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 10px; overflow: hidden; }
th, td { padding: 14px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
tr:last-child th, tr:last-child td { border-bottom: none; }
th { width: 34%; color: var(--primary); background: #f0f4fa; font-weight: 800; }
.notice {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #fff8e8;
  border: 1px solid #ead8ad;
  color: #624b12;
  font-weight: 700;
}
.small { font-size: 0.9rem; color: var(--muted); }

.faq { background: var(--bg); }
.faq-list { max-width: 980px; margin: 0 auto; }
.faq-item { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; box-shadow: 0 8px 24px rgba(18,51,95,0.06); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.faq-item::before { content: ""; position: absolute; left: 0; top: 0; width: 0; height: 100%; background: var(--accent); transition: width .25s ease; z-index: 1; }
.faq-item:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(18,51,95,.12); border-color: rgba(197,163,106,.45); }
.faq-item:hover::before, .faq-item.is-open::before { width: 5px; }
.faq-question { position: relative; z-index: 2; width: 100%; border: none; background: transparent; padding: 18px 22px; display: grid; grid-template-columns: 82px 1fr 42px; gap: 18px; align-items: center; text-align: left; cursor: pointer; font-family: inherit; transition: background .25s ease; }
.faq-item:hover .faq-question { background: #f6f9fd; }
.faq-number { width: 60px; height: 60px; border-radius: 50%; background: #fff; color: var(--primary-dark); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.92rem; letter-spacing: 0.04em; box-shadow: 0 8px 18px rgba(197,163,106,0.18); position: relative; }
.faq-number::before { content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--accent-dark); }
.faq-title { color: var(--primary-dark); font-weight: 900; font-size: 1.08rem; line-height: 1.55; }
.faq-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; font-weight: 700; line-height: 1; transition: transform 0.25s ease, background 0.25s ease; }
.faq-answer { position: relative; z-index: 2; max-height: 0; overflow: hidden; opacity: 0; padding: 0 22px 0 122px; transition: max-height .35s ease, opacity .25s ease, padding .35s ease; }
.faq-answer p { color: var(--muted); background: #f8fafc; border-left: 4px solid var(--accent); border-radius: 10px; padding: 18px 20px; line-height: 1.9; }
.faq-item.is-open .faq-answer { max-height: 320px; opacity: 1; padding: 0 22px 22px 122px; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--primary); }

.closing {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}
.closing h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.35;
  margin-bottom: 18px;
}
.closing p { color: #e8eef7; max-width: 760px; margin: 0 auto 26px; }
.closing-note {
  display: inline-block;
  border: 1px solid rgba(197,163,106,0.55);
  border-radius: 999px;
  padding: 10px 18px;
  color: #f1d59f;
  font-weight: 800;
}


.history {
  background: var(--bg);
}

.history-timeline {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.history-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  text-align: left;
  align-items: center;
}

.history-label {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 24px;
}

.history-label span {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
}

.history-icon {
  display: block;
  width: 92px;
  height: auto;
  margin: 14px auto 0;
}

.history-text h3 {
  color: var(--primary-dark);
  font-size: 1.18rem;
  line-height: 1.55;
  margin-bottom: 10px;
}

.history-text p {
  color: var(--muted);
  line-height: 1.9;
}

.message-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.message-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.history-label span {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
}

.footer-contact{
    margin-bottom:40px;
    padding-bottom:32px;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.footer-contact h3{
    color:#fff;
    font-size:1.2rem;
    margin-bottom:16px;
    font-weight:800;
}

.footer-office{
    color:rgba(255,255,255,.88);
    margin-bottom:10px;
    font-size:1rem;
}

.footer-tel{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:1.25rem;
    font-weight:800;
    transition:.25s;
}

.footer-tel:hover{
    color:var(--accent);
}

.back-to-top{
    position:fixed;
    right:28px;
    bottom:28px;

    width:56px;
    height:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:1.5rem;
    font-weight:700;

    box-shadow:0 12px 30px rgba(18,51,95,.22);

    border:2px solid rgba(197,163,106,.35);

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:.3s;
    z-index:999;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    background:var(--accent);
    color:var(--primary-dark);
    border-color:var(--accent);
    transform:translateY(-3px);
}

@media (max-width: 900px) {
  section { padding: 62px 0; }

  .hero {
    padding: 68px 0;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.96) 0%,
        rgba(255,255,255,0.86) 45%,
        rgba(255,255,255,0.55) 100%
      ),
      url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center top;
  }

  .hero-inner,
  .philosophy-box,
  .two-col,
  .message-wrap,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 34px;
  }

  .hero-card {
    background: rgba(255,255,255,0.92);
  }

  .stats-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .flow-grid {
    grid-template-columns: 1fr 1fr;
  }

.history-item {
  grid-template-columns: 1fr;
  text-align: center;
}

.history-label {
  border-right: none;
  border-bottom: 1px solid var(--line);
  padding-right: 0;
  padding-bottom: 18px;
}

.history-icon {
  width: 80px;
}

.merit-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.merit-card {
  padding: 42px 24px 0;
}

.merit-card h3 {
  font-size: 1.15rem;
}

.merit-bottom {
  margin: 0 -24px;
}

.philosophy-box {
  grid-template-columns: 1fr;
  gap: 34px;
  padding: 38px 26px;
}

.philosophy-main {
  padding-right: 0;
  padding-bottom: 30px;
  border-right: none;
  border-bottom: 1px solid rgba(197,163,106,0.45);
}

.quote-mark {
  left: -10px;
  top: -32px;
  font-size: 6.8rem;
}

.philosophy-box::after {
  right: 18px;
  bottom: -22px;
  font-size: 7rem;
}

.philosophy-title {
  font-size: 2.3rem;
}

.philosophy-sub {
  width: 100%;
  max-width: 360px;
}

.philosophy-text {
  font-size: 0.96rem;
  line-height: 2;
}

.philosophy-title {
  font-size: 2.35rem;
}

.philosophy-text {
  font-size: 0.96rem;
  line-height: 2;
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }

  .sp-only {
    display: block;
  }

  .hero {
    padding: 72px 0 58px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-note {
    display: block;
  }

.hero-logo img{
    width:180px;
}
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .benefit-card,
  .info-box {
    padding: 24px;
  }

  th,
  td {
    display: block;
    width: 100%;
  }

  th {
    border-bottom: none;
    padding-bottom: 6px;
  }

  td {
    padding-top: 6px;
  }
.faq-question{
  grid-template-columns:58px 1fr 34px;
  gap:14px;
  padding:16px;
}

.faq-number{
  width:48px;
  height:48px;
  font-size:.82rem;
}

.faq-number::before{
  width:6px;
  height:6px;
  top:7px;
}

.faq-title{
  font-size:.96rem;
  line-height:1.6;
}

.faq-icon{
  width:30px;
  height:30px;
  font-size:1.1rem;
}

.faq-answer{
  padding:0 16px 16px 16px;
}

.utility-inner {
  justify-content: center;
}

.utility-link {
  width: 100%;
  justify-content: center;
  border-radius: 10px;
}

.back-to-top {
  width: 48px;
  height: 48px;
  right: 18px;
  bottom: 18px;
  font-size: 1.3rem;
}

}
}
