/* ==========================================================
   diners/css/style-sp.css
   G-Call Diners Club 会員様専用ページ（SP用 / max-width: 767px）
   ========================================================== */

/* カラー変数 */
:root {
    --color-diners-accent: #1058a5;
    --color-diners-gold: #92733f;
}

/* ----------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------- */
.sec_hero {
    background: linear-gradient(
        90deg,
        rgba(249, 251, 251, 1) 0%,
        rgba(229, 241, 248, 1) 100%
    );
    padding: 24px 20px;
    display: flex;
    justify-content: center;
}
.sec_hero_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    width: 100%;
}
.hero_title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-text-bold);
    text-align: center;
    line-height: 1.4;
    margin: 0;
}
.hero_kv img {
    width: 100%;
    height: auto;
}
.hero_border {
    height: 4px;
    background-color: var(--color-diners-accent);
    width: 100%;
}

/* ----------------------------------------------------------
   SHOPPING SECTION
   ---------------------------------------------------------- */
.sec_shopping {
    background-color: var(--color-white);
    padding: 30px 20px 50px;
}

.hero_images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 25px;
}
.hero_image_item {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.25);
    transition:
        opacity 0.2s,
        transform 0.2s;
    display: block;
    text-decoration: none;
}
.hero_image_item:hover {
    opacity: 0.8;
    transform: translateY(2px);
}
.hero_image_item .hero_main_img {
    display: block;
    height: auto;
    width: 100%;
    object-fit: cover;
}

.featured_cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.featured_card {
    flex: 1;
    background-color: var(--color-primary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    display: grid;
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto 1fr;
    transition:
        opacity 0.2s,
        transform 0.2s;
}
.featured_card:hover {
    opacity: 0.85;
    transform: translateY(2px);
    text-decoration: none;
}
.featured_card_img_wrap {
    width: 120px;
    min-width: unset;
    height: 120px;
    background-color: #f1f5f9;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}
.featured_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.featured_card_title_wrap {
    display: flex;
    flex-direction: column;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}
.featured_card_body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 16px;
    align-self: stretch;
    grid-row: 2 / 3;
    grid-column: 1 / 3;
}
.featured_card_badge {
    align-self: flex-start;
    background-color: #92733f;
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 6px 10px;
    border-radius: 0 0 10px 0;
}
.featured_card_text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px 0 24px;
}
.featured_card_body .featured_card_text {
    padding: 0;
}
.featured_card_title {
    padding: 8px 0 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    margin: 0;
}
.featured_card_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.featured_card_desc {
    font-size: 1.5rem;
    color: #e6e9eb;
    line-height: 1.8;
    margin: 0;
}
.featured_card_price {
    font-size: 1.4rem;
    color: #e6e9eb;
    line-height: 1.4;
    margin: 0;
}

.product_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.product_card {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition:
        opacity 0.2s,
        transform 0.2s;
}
.product_card:hover {
    opacity: 0.9;
    transform: translateY(2px);
    text-decoration: none;
}
.product_card_img_wrap {
    background-color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_card_img_wrap img {
    width: 100%;
    height: auto;
}
.product_card_info {
    padding: 16px;
}
.product_card_name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-bold);
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product_card_desc {
    font-size: 1.2rem;
    color: var(--color-text);
    line-height: 1.4;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product_card_price {
    font-size: 1.2rem;
    color: var(--color-text);
    margin: 0;
}

/* ----------------------------------------------------------
   FURUSATO SECTION
   ---------------------------------------------------------- */
.sec_furusato {
    background-color: #f7fafb;
    padding: 48px 16px;
}
.furusato_intro {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    margin: 0 0 25px;
}
.furusato_intro_image {
    flex: none;
    max-width: 100%;
}
.furusato_intro_image img {
    width: 100%;
    height: auto;
    display: block;
}
.furusato_intro_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 8px;
}
.furusato_intro_content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

/* ----------------------------------------------------------
   CATALOG SECTION
   ---------------------------------------------------------- */
.sec_catalog {
    margin: 0 20px;
    padding: 40px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: var(--color-white);
    overflow: visible;
}
.catalog_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}
.catalog_wrap_single {
    max-width: 100%;
}
.catalog_images {
    position: static;
    display: flex;
    gap: 10px;
    padding: 0 20px;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    z-index: 2;
}
.catalog_images img {
    width: 140px;
    height: auto;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.09);
    border-radius: 4px;
    flex-shrink: 0;
}
.catalog_banner {
    background-color: #f7f6ee;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-top: -60px;
    padding: 80px 20px 20px;
    width: 100%;
    box-sizing: border-box;
}
.catalog_wrap_single .catalog_banner {
    padding-left: 20px;
}
.catalog_banner::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 20px;
    background-color: var(--color-diners-gold);
    left: -25px;
    top: 15px;
    z-index: 0;
    opacity: 0.1;
    transform: rotate(-45deg);
}
.catalog_banner::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 20px;
    background-color: var(--color-diners-gold);
    right: -25px;
    bottom: 15px;
    z-index: 0;
    opacity: 0.1;
    transform: rotate(-45deg);
}
.catalog_content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
}
.catalog_title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-bold);
    line-height: 1.4;
    margin: -8px 0 0;
}
.catalog_desc {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

/* ----------------------------------------------------------
   TEL SECTION
   ---------------------------------------------------------- */
.sec_tel {
    background-color: var(--color-white);
    padding: 48px 16px;
}
.tel_card {
    background-color: #e6eef5;
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.tel_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 32px 24px 0;
}
.tel_content .sec_heading {
    margin: 0;
}
.tel_content .sec_heading h2 {
    font-size: 2.6rem;
}
.tel_content .sec_body_text {
    font-size: 1.5rem;
    font-weight: normal;
}
.price_cards {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.price_card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    width: calc((100% - 4px) / 2);
    border: 1px solid #fff;
    flex-shrink: 0;
}
.price_card_header {
    background-color: var(--color-mygcall);
    border-radius: 8px 8px 0 0;
    text-align: center;
    min-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price_card_header p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    margin: 0;
}
.price_card_body {
    padding: 6px 8px 8px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.price_num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.price_num .num {
    font-size: 2.8rem;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: var(--color-mygcall);
    line-height: 1;
}
.price_num .unit {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-mygcall);
    line-height: 1;
}
.price_sub {
    font-size: 1rem;
    color: var(--color-text-bold);
    line-height: 1.4;
}
.tel_image {
    flex: none;
    width: 100%;
    height: 225px;
    border-radius: 8px;
    overflow: hidden;
}
.tel_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ----------------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------------- */
.sec_contact {
    position: relative;
    overflow: hidden;
    padding: 50px 20px;
    background: var(--color-primary) url(/designChange/common/img/bg_foot_cta.png) 50% 50%
        no-repeat;
    background-size: cover;
}
.contact_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.contact_heading {
    text-align: center;
}
.contact_sublabel {
    font-size: 1.6rem;
    color: #1ab4ec;
    line-height: 1.4;
    margin: 0 0 16px;
    letter-spacing: 0.04em;
}
.contact_heading h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    margin: 0;
}
.contact_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.btn_inquiry {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--color-white);
    border-radius: 200px;
    padding: 20px 32px;
    text-decoration: none;
    box-shadow: 8px 16px 40px rgba(0, 151, 206, 0.5);
    transition:
        opacity 0.2s,
        box-shadow 0.2s;
}
.btn_inquiry:hover {
    opacity: 0.9;
    text-decoration: none;
    box-shadow: 8px 16px 48px rgba(0, 151, 206, 0.7);
}
.btn_inquiry img {
    width: auto;
    height: auto;
    flex-shrink: 0;
}
.btn_inquiry span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}
.phone_contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0 0 32px;
}
.phone_contact img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.phone_contact .phone_num {
    position: relative;
    font-family: "Outfit", sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    letter-spacing: 0.0208em;
}
.phone_contact .phone_num::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: -32px;
    top: calc(50% - 12px);
    width: 24px;
    height: 24px;
    background: url(/designChange/common/img/ico_phone-cta.svg) 50% 50% no-repeat;
    background-size: contain;
}
.phone_contact .phone_hours {
    font-size: 1.2rem;
    color: var(--color-white);
}
.contact_note {
    font-size: 1rem;
    color: #90a1b9;
    margin: 0;
}

/* ----------------------------------------------------------
   FEATURES SECTION
   ---------------------------------------------------------- */
.sec_features {
    background-color: #f8fafc;
    padding: 50px 20px;
}
.sec_features .sec_container {
    align-items: center;
    gap: 40px;
}
.sec_features_heading {
    text-align: center;
}
.features_sublabel {
    font-size: 1.8rem;
    color: var(--color-mygcall);
    line-height: 1.4;
    margin: 0 0 8px;
}
.sec_features_heading h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-bold);
    line-height: 1.4;
    margin: 0;
}
.feature_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    width: 100%;
}
.feature_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.feature_icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 200px;
    background-color: var(--color-mygcall);
    box-shadow: 8px 8px 40px rgba(0, 151, 206, 0.39);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature_icon img {
    display: block;
}
.feature_card h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-text-bold);
    line-height: 1.4;
    margin: 0;
}
.feature_card p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}
.feature_card p br {
    display: none;
}
