:root {
    --green: #1EA83C;
    --green-more-dark: #135521;
    --green-dark: #137A2A;
    --green-light: #2FCC50;
    --orenge: #ffb300;
    --green-pale: #E8F7EB;
    --green-mid: #D0EFDA;
    --accent: #0A6EBD;
    /* 青アクセント（ロゴの地球儀） */
    --gray-dark: #2D2D2D;
    --gray: #555;
    --gray-light: #888;
    --border: #DDE8DE;
    --bg: #F5FAF6;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: var(--bg);
    color: var(--gray-dark);
    overflow-x: hidden;
}

.sp_br {
    display: none;
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 3px solid var(--green);
    box-shadow: 0 2px 16px rgba(30, 168, 60, 0.10);
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap img {
    height: 44px;
    display: block;
}

.header-headline {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--gray-dark);
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.header-headline span {
    color: var(--green-dark);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tel-wrap {
    text-align: right;
}

.tel-wrap .tel-label {
    font-size: 0.65rem;
    color: var(--gray-light);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 2px;
}

.tel-wrap .tel-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--green-dark);
    letter-spacing: 0.04em;
}

.tel_num_link {
    text-decoration: none;
    color: var(--green-dark);
}

.btn-header {
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 12px 22px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.06em;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-header:hover {
    background: var(--green-dark);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(155deg, #ffffff 0%, #EBF7EE 45%, #D4F0DC 100%);
    background-image: url("../img/hero.jpg");
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* 背景の装飾円 */
.hero::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 168, 60, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 168, 60, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* 左サイドバー */
.hero-sidebar {
    position: absolute;
    left: 0;
    top: 80px;
    bottom: 0;
    width: 7px;
    background: linear-gradient(to bottom, var(--green-light), var(--green-dark));
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 60px 60px 80px;
    gap: 60px;
    background-color: #e9e9e9e3;
}

.hero-content {
    flex: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.hero-title-en {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--green-dark);
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.hero-title-jp {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.4;
    color: var(--gray-dark);
    margin-bottom: 28px;
}

.hero-title-jp em {
    /* color: var(--green); */
    color: var(--green-dark);
    font-style: normal;
    /* border-bottom: 3px solid var(--green); */
    border-bottom: 3px solid var(--green-dark);
    padding-bottom: 1px;
}

.hero-desc {
    font-size: 0.95rem;
    /* color: var(--gray); */
    color: var(--gray-dark);
    line-height: 1.9;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1.5px solid var(--green);
    color: var(--green-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    background: #eb8808;
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    padding: 16px 38px;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(30, 168, 60, 0.28);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(30, 168, 60, 0.35);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 15px 28px;
    border: 2px solid var(--green);
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background: var(--green-pale);
}

/* Hero right stats */
.hero-stats {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 280px;
}

.stat-card {
    background: var(--white);
    border-left: 4px solid var(--green);
    border-radius: 0 8px 8px 0;
    padding: 18px 24px;
    box-shadow: 0 2px 12px rgba(30, 168, 60, 0.10);
    animation: fadeRight 0.6s ease both;
}

.stat-card:nth-child(2) {
    animation-delay: 0.15s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.30s;
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.stat-num small {
    font-size: 1.1rem;
    color: var(--green-light);
}

.stat-label {
    font-size: 0.74rem;
    color: var(--gray-light);
    margin-top: 4px;
    letter-spacing: 0.05em;
}

/* ========== TICKER ========== */
.ticker {
    background: var(--green);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    gap: 60px;
    animation: ticker 22s linear infinite;
}

.ticker-item {
    font-family: 'Oswald', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    color: #fff;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ========== SECTIONS ========== */
section {
    padding: 80px 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-label {
    font-family: 'Anton', 'Oswald', sans-serif;
    font-size: 4.72rem;
    letter-spacing: 0.22em;
    color: var(--green-more-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--green);
}

.section-title {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 48px;
    color: var(--gray-dark);
}

.section-title span {
    color: #eb8808;
}

/* ========== TARGET ========== */
.target-section {
    background: var(--white);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.target-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 32px 26px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.target-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.target-card:hover {
    border-color: var(--green);
    box-shadow: 0 8px 28px rgba(30, 168, 60, 0.14);
    transform: translateY(-4px);
}

.target-card:hover::after {
    transform: scaleX(1);
}

.target-card-img {
    width: 50%;
}

.target-card-img img {
    width: 100%;
    box-shadow: 10px 10px 0px rgb(218 239 116 / 80%);
    /* 影のオフセット、ぼかし、色、不透明度 */
}

.target-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}

.target-icon i,
.feature-icon i,
.case-icon i,
.step-icon i {
    color: var(--green-more-dark);
}

.target-title {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--gray-dark);
}

.target-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

.target-tag {
    display: inline-block;
    background: var(--green-pale);
    border: 1px solid var(--green);
    color: var(--green-dark);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 14px;
    letter-spacing: 0.08em;
}

/* ========== PICKUP BANNER ========== */
.pickup-banner {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
    padding: 60px 0;
}

.pickup-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.pickup-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.15;
    margin-bottom: 14px;
}

.pickup-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    max-width: 480px;
}

.pickup-cta-wrap {
    flex-shrink: 0;
    text-align: center;
}

.pickup-tel {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 4px;
}

.pickup-tel .tel_num_link {
    color: #fff;
}

.pickup-tel-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    display: block;
}

.btn-white {
    display: inline-block;
    background: #fff;
    color: var(--green-dark);
    font-weight: 900;
    font-size: 0.95rem;
    padding: 15px 32px;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ========== FEATURES ========== */
.features-section {
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 28px rgba(30, 168, 60, 0.12);
    transform: translateY(-3px);
}

.feature-num {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(30, 168, 60, 0.08);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
    user-select: none;
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.feature-title {
    font-size: 1rem;
    font-weight: 900;
    color: var(--gray-dark);
    margin-bottom: 10px;
    padding-right: 48px;
}

.feature-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.85;
}

/* ========== ITEMS ========== */
.items-section {
    background: var(--white);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.item-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 22px 16px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.item-card:hover,
.appeal-card {
    border-color: var(--green);
    background: var(--green-pale);
    transform: translateY(-3px);
}

.item-icon {
    font-size: 6rem;
    margin-bottom: 8px;
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(4px 4px 4px rgba(30, 80, 60, 0.35));
}

.item-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-dark);
    letter-spacing: 0.03em;
}

/* ========== FLOW ========== */
.flow-section {
    background: linear-gradient(to top, rgba(225, 225, 225, 0.7) 0%, rgba(205, 246, 219, 0.7) 100%), url(../img/motikomi.jpg);
    background-repeat: no-repeat;
    background-position: center;
    ;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.flow-step {
    text-align: center;
    padding: 36px 28px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    margin: 0 8px;
    position: relative;
}

.flow-arrow {
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 1.4rem;
    z-index: 2;
}

.step-num {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--green);
    margin-bottom: 10px;
    background: var(--green-pale);
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
}

.step-icon {
    font-size: 2.2rem;
    margin: 14px 0;
    display: block;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

.flow-note {
    background: var(--green-pale);
    border: 1.5px solid var(--green);
    border-radius: 8px;
    padding: 16px 24px;
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--green-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ========== CASES ========== */
.cases-section {
    background: var(--bg);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case-card {
    background: var(--white);
    border-radius: 10px;
    border: 1.5px solid var(--border);
    padding: 26px 22px;
    transition: box-shadow 0.2s;
}

.case-card:hover {
    box-shadow: 0 6px 22px rgba(30, 168, 60, 0.12);
}

.case-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}

.case-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.case-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ========== AREA ========== */
.area-section {
    background: var(--bg);
}

.area-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.area-box {
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 12px;
    padding: 44px;
    text-align: center;
}

.area-box-icon {
    font-size: 5rem;
    margin-bottom: 16px;
    display: block;
    opacity: 0.25;
}

svg#maps_svg {
    max-width: 40vw;
    max-height: 30vh;
}

#saitama,
#tokyochiba,
#kanagawa {
    fill: var(--green-dark);
    fill-opacity: 1;
    stroke-width: 1.08124;
}

.area-box-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: var(--green-dark);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.area-tag {
    background: var(--green);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.area-tag.sub {
    background: transparent;
    border: 1.5px solid var(--gray-light);
    color: var(--gray);
}

.area-note {
    font-size: 0.75rem;
    color: var(--gray-light);
    margin-top: 16px;
}

/* ========== CONTACT ========== */
.contact-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-box {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    border-radius: 16px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(30, 168, 60, 0.22);
}

.contact-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.contact-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    letter-spacing: 0.06em;
}

.contact-tel-big {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: #ff9000;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 4px;
}

.contact-tel-big .tel_num_link {
    color: #ff9000;
}

.contact-time {
    font-size: 0.95rem;
    color: #ff9000;
    margin-bottom: 28px;
}

.btn-white-lg {
    display: inline-block;
    background: #fff;
    color: var(--green-dark);
    font-weight: 900;
    font-size: 1.05rem;
    padding: 18px 60px;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    margin-bottom: 28px;
    display: block;
    max-width: 360px;
    margin: 0 auto 28px;
}

.btn-white-lg:hover {
    opacity: 0.92;
    transform: translateY(-2px);
}

.free-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.free-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.free-item .check {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #fff;
    flex-shrink: 0;
}

/* ========== FOOTER ========== */
footer {
    background: var(--gray-dark);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.06em;
}

.footer-logo-text span {
    color: var(--green-light);
}

.footer-info {
    font-size: 0.75rem;
    color: #aaa;
    line-height: 1.7;
    text-align: center;
}

.footer-copy {
    font-size: 0.7rem;
    color: #666;
}

/* ========== HEADER HEADLINE ========== */
.header-brand {
    display: flex;
    flex-direction: column;
    gap: 0px;
    line-height: 1;
}

.header-brand-en {
    font-family: 'Oswald', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--gray-light);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.header-brand-main {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    color: var(--gray-dark);
    white-space: nowrap;
}

.header-brand-main .hl-green {
    color: var(--green);
    border-bottom: 2.5px solid var(--green);
    padding-bottom: 1px;
}

.header-brand-main .hl-pipe {
    color: var(--gray-light);
    font-weight: 400;
    margin: 0 4px;
}

/* ========== SCROLL ANIMATION ========== */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 920px) {
    header {
        padding: 10px 16px;
    }

    .header-brand{
        line-height: 1.6;
    }

    .sp_br {
        display: block;
    }

    .hero-inner {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-stats {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1 1 140px;
    }

    .target-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .target-card {
        flex-direction: column-reverse;
        align-items: center;
        gap: 15px;
    }

    .target-card-img {
        width: 90%;
    }

    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-section {
        background-size: cover;
    }

    .flow-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .flow-arrow {
        display: none;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .area-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .area-box{
        padding: 20px;
    }

    svg#maps_svg{
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 100%;
    }

    .pickup-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-box {
        padding: 36px 20px;
    }

    .contact-title{
        font-size: 1.5rem;
    }

    .contact-sub{
        font-size: 0.9rem;
    }

    .contact-tel-big{
        font-size: 2rem;
    }

    .container {
        padding: 0 16px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .tel-wrap {
        display: none;
    }

    .section-label {
        font-size: 2.5rem;
    }
}