/* お買い物オレンジ・パレット */
:root {
    --brand-orange: #ff8c00;  /* 鮮やかなオレンジ */
    --light-orange: #fff4e6;  /* 非常に薄いオレンジ（背景用） */
    --accent-yellow: #ffcc00; /* アクセントの黄色 */
    --text-dark: #4a2c00;     /* 濃い茶色（読みやすさ重視） */
    --pure-white: #ffffff;
    --font-maru: 'Zen Maru Gothic', sans-serif;
    --font-kosugi: 'Kosugi Maru', sans-serif;
}

/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--pure-white);
    color: var(--text-dark);
    font-family: var(--font-maru);
    line-height: 1.8;
    font-size: 18px;
    overflow-x: hidden;
}

/* ヘッダー：丸みのある影 */
header {
    height: 100px;
    background-color: var(--pure-white);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.1);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-kosugi);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand-orange);
}

.logo span {
    color: var(--text-dark);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
}

.btn-tel {
    background-color: var(--brand-orange);
    color: var(--pure-white) !important;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 0 #cc7000;
    transition: 0.2s;
}

.btn-tel:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #cc7000;
}

/* ヒーロー：波形と活気 */
.hero-shop {
    background-color: var(--light-orange);
    position: relative;
    padding-top: 100px;
    padding-bottom: 150px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    color: var(--brand-orange);
    margin-bottom: 30px;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    width: 100%;
    border-radius: 40px 150px 40px 150px; /* 特徴的な形 */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-main {
    display: inline-block;
    background-color: var(--text-dark);
    color: var(--pure-white);
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 20px;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 0;
}

/* サービスカードセクション */
.service-section {
    padding-bottom: 120px;
    background-color: var(--pure-white);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--brand-orange);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 20%; width: 60%;
    height: 4px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}

.service-cards {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.card {
    flex: 1;
    background-color: var(--light-orange);
    border-radius: 30px;
    overflow: hidden;
    transition: 0.3s;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-orange);
}

.card-img {
    height: 220px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 40px 30px;
    position: relative;
}

.step {
    position: absolute;
    top: -25px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--brand-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 4px solid var(--pure-white);
}

.card-body h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--brand-orange);
}

/* 信頼セクション：丸みのある構成 */
.trust-area {
    padding: 100px 40px;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--brand-orange);
    color: var(--pure-white);
    border-radius: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.trust-text {
    flex: 1.2;
    padding: 80px;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.trust-image {
    flex: 1;
    height: 100%;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* フッター */
footer {
    padding: 80px 40px;
    background-color: var(--text-dark);
    color: var(--light-orange);
    text-align: center;
}

.footer-logo {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* レスポンシブ */
@media (max-width: 900px) {
    .hero-container, .service-cards, .trust-content {
        flex-direction: column;
    }
    .hero-text { text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .trust-text { padding: 40px; }
    .trust-image { height: 300px; width: 100%; }
}