@charset "UTF-8";

/* --- 基本スタイル --- */
:root {
    --main-green: #00C78C;
    --text-color: #333;
    --bg-light: #f4f9f7;
    --accent-red: #ff6b6b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    background-color: #fff;
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

/* --- ヘッダーエリア --- */
.hero {
    background-color: var(--main-green);
    padding-top: 60px;
    padding-bottom: 100px;
    position: relative;
    text-align: center;
    color: #fff;
}

.header-content {
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.logo {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 15px;
    object-fit: contain;
}

.service-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.wave-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.wave-container svg {
    width: 100%;
    height: 100%;
}

/* --- メインコンテンツ共通 --- */
.main-content {
    padding: 50px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

section {
    margin-bottom: 80px;
}

.section-title {
    text-align: center;
    color: var(--main-green);
    font-size: 1.8rem;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--main-green);
    margin: 10px auto 0;
    border-radius: 2px;
    opacity: 0.5;
}

p {
    margin-bottom: 1.5em;
    text-align: justify;
}

.center-text {
    text-align: center;
}

/* --- Aboutセクション --- */
.about-lead {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--main-green);
}

.about-desc {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

/* --- サービスリスト --- */
.service-list-container {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.sub-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 20px;
}

.normal-list {
    display: inline-block;
    text-align: left;
    padding-left: 20px;
    margin: 0 auto;
}

.normal-list li {
    margin-bottom: 10px;
    font-weight: 700;
    color: #444;
}

/* --- 点線ボックス --- */
.highlight-box {
    border: 2px solid var(--main-green);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 40px auto 0;
    background-color: #fff;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 199, 140, 0.15);
}

.highlight-box p {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
}

.highlight-text-large {
    color: var(--main-green);
    font-size: 1.4rem;
    display: block;
    margin-top: 10px;
}

.highlight-text-small {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
}

/* --- 料金プラン --- */
.price-list {
    list-style: none;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.price-list li {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list strong {
    font-size: 1.1rem;
    color: var(--text-color);
}

.note {
    background-color: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #ffc107;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.8rem;
    color: #777;
    text-align: right;
    margin-top: 5px;
}

/* --- ボタン --- */
.line-box {
    text-align: center;
    margin-top: 30px;
}

.line-btn {
    display: inline-block;
    background-color: #06C755;
    color: #fff;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 0 #059c43;
    transition: transform 0.1s, box-shadow 0.1s;
}

.line-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #059c43;
}

.terms-link {
    display: inline-block;
    color: var(--main-green);
    text-decoration: underline;
    margin-top: 10px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--main-green, #2f7f6f); /* 既存カラーに合わせてOK */
  color: #fff;
  text-align: center;
  padding: 24px 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-weight: 600;
}

.footer-link {
  color: #fff;
  text-decoration: underline;
}

.footer-sep {
  opacity: 0.8;
}

.footer-copy {
  margin-top: 8px;
  font-size: 0.85rem;
  opacity: 0.9;
}


/* --- レスポンシブ --- */
@media (max-width: 480px) {
    .price-list li {
        display: flex; 
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .disclaimer {
        text-align: center;
    }
}

/* --- Commercial Disclosure --- */
.legal-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.legal-dl dt {
    font-weight: 700;
    color: var(--main-green);
    margin-top: 18px;
}

.legal-dl dt:first-child {
    margin-top: 0;
}

.legal-dl dd {
    margin-top: 6px;
    margin-left: 0;
    color: var(--text-color);
}

.footer-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}
