@charset "UTF-8";

/* ========================================
   Variables 
======================================== */
:root {
    --bg-color: #ffffff;
    --text-main: #333333;
    --text-brown: #333333;
    --color-primary: #fdd22b;
    --color-secondary: #fdd22b;
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    background-color: var(--bg-color); 
    font-family: "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "Yu Rounded", "Yu Gothic", Meiryo, sans-serif;
    color: var(--text-main);
    line-height: 1.8;
    letter-spacing: 0.05em; /* 全体的に少し文字間隔を調整 */
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }

/* 共通パーツ */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 4%;  /* 各セッションごとの隙間調整 */
}
.sec-title {
    text-align: center;
    color: var(--color-secondary);
    font-size: 32px;
    margin-bottom: 60px; /* ★タイトルの下の余白を広げてスッキリと */
    font-weight: bold;
    letter-spacing: 0.08em;
}
.btn-wrap { text-align: center; margin-top: 60px; } /* ★ボタン上の余白を広げる */
.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 18px 60px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover { 
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background-color: #91d2e5; 
}

/* ========================================
   スマートフォン用対応 (共通パーツ)
======================================== */
@media screen and (max-width: 768px) {
    html { overflow-y: scroll; }
    .section-inner { padding: 60px 5%; } /* 各セッションごとの隙間調整 */
    .sec-title { font-size: 26px; margin-bottom: 40px; }
    .btn-wrap { margin-top: 40px; }
}