/* ==========================================================
   amex/css/style.css
   G-Call アメリカン・エキスプレス会員様専用ページ（PC用 / min-width: 768px）
   ========================================================== */

/* カラー変数 */
:root {
    --color-amex-accent: #1280e3;
}

/* ----------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------- */
.sec_hero {
    background: linear-gradient(
        90deg,
        rgba(249, 251, 251, 1) 0%,
        rgba(229, 241, 248, 1) 100%
    );
    padding: 40px 100px;
    display: flex;
    justify-content: center;
}
.sec_hero_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}
.hero_brand {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.hero_brand_logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}
.hero_title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-bold);
    line-height: 1.4;
    margin: 0;
}
.hero_border {
    height: 4px;
    background-color: var(--color-amex-accent);
    width: 100%;
}

/* ----------------------------------------------------------
   SHOPPING SECTION
   ---------------------------------------------------------- */
.sec_shopping {
    background-color: var(--color-white);
    padding: 40px 0 80px;
}

/* 画像 + 本文テキスト横並び */
.shopping_intro {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin: 0 0 16px;
}
.shopping_intro_img {
    flex-shrink: 0;
    width: 590px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* おすすめ大カード2枚 */
.featured_cards {
    display: flex;
    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: 280px 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: 280px;
    min-width: 280px;
    height: 280px;
    background-color: #f1f5f9;
    grid-row: 1 / 3;
    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: 0 30px 30px 0;
    align-self: stretch;
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}
.featured_card_badge {
    align-self: flex-start;
    background-color: #92733f;
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 8px 16px;
    border-radius: 0 0 10px 0;
}
.featured_card_text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 40px;
}
.featured_card_title_wrap .featured_card_text {
    padding-right: 30px;
}
.featured_card_title {
    margin: 0 0 16px;
    padding: 32px 0 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
}
.featured_card_info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.featured_card_desc {
    font-size: 1.6rem;
    color: #e6e9eb;
    line-height: 1.8;
    margin: 0;
}
.featured_card_price {
    font-size: 1.4rem;
    color: #e6e9eb;
    line-height: 1.4;
    margin: 0;
}

/* 商品カードグリッド 6列 */
.product_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.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: 10px 12px 12px;
}
.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: 80px 0;
}

/* ----------------------------------------------------------
   CATALOG SECTION
   ---------------------------------------------------------- */
.sec_catalog {
    padding: 60px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background-color: var(--color-white);
    overflow: visible;
}

.catalog_wrap {
    position: relative;
    overflow: visible;
    max-width: 1200px;
    width: 100%;
}
.catalog_wrap_single {
    max-width: 1000px;
}

.catalog_images {
    position: absolute;
    top: 0;
    left: 50px;
    display: flex;
    gap: 10px;
    z-index: 2;
}
.catalog_images img {
    width: 200px;
    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: 35px;
    padding: 48px 48px 48px 510px;
}
.catalog_wrap_single .catalog_banner {
    padding-left: 300px;
}

.catalog_banner::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 40px;
    background-color: var(--color-amex-accent);
    left: -49.5px;
    top: 44.5px;
    z-index: 0;
    opacity: 0.1;
    transform: rotate(-45deg);
}

.catalog_banner::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 40px;
    background-color: var(--color-amex-accent);
    right: -47px;
    bottom: 37px;
    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;
}
.catalog_title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-text-bold);
    line-height: 1.4;
    margin: 0;
}
.catalog_desc {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

/* ----------------------------------------------------------
   TEL SECTION
   ---------------------------------------------------------- */
.sec_tel {
    background-color: var(--color-white);
    padding: 80px 0;
}
.tel_card {
    background-color: #e6eef5;
    border-radius: 16px;
    padding: 16px 16px 16px 56px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
}
.tel_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tel_content .sec_heading {
    gap: 16px;
}
.tel_content .sec_heading h2 {
    font-size: 3.2rem;
}
.tel_content .sec_body_text {
    font-size: 1.6rem;
    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: 234px;
    border: 2px solid #fff;
    flex-shrink: 0;
}
.price_card_header {
    background-color: var(--color-mygcall);
    border-radius: 8px 8px 0 0;
    text-align: center;
    min-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price_card_header p {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    margin: 0;
}
.price_card_body {
    padding: 12px 16px 16px;
    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: 4rem;
    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: 1.2rem;
    color: var(--color-text-bold);
    line-height: 1.4;
    margin: 6px 0 0;
}
.tel_image {
    flex: 0 0 calc(100% - 528px);
    border-radius: 16px;
    overflow: hidden;
}
.tel_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ----------------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------------- */
.sec_contact {
    position: relative;
    overflow: hidden;
    padding: 96px 100px;
    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: 64px;
    position: relative;
    z-index: 1;
}
.contact_heading {
    text-align: center;
}
.contact_sublabel {
    font-size: 2rem;
    color: #1ab4ec;
    line-height: 1.4;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
}
.contact_heading h2 {
    font-size: 3.2rem;
    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: 32px;
}
.btn_inquiry {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: var(--color-white);
    border-radius: 200px;
    padding: 24px 80px 24px 65px;
    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: 32px; */
    height: auto;
    flex-shrink: 0;
}
.btn_inquiry span {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}
.phone_contact {
    padding: 0 0 0 48px;
}
.phone_contact .phone_num {
    position: relative;
    font-family: "Outfit", sans-serif;
    font-size: 4.8rem;
    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: -48px;
    top: calc(50% - 16px);
    width: 32px;
    height: 32px;
    background: url(/designChange/common/img/ico_phone-cta.svg) 50% 50% no-repeat;
    background-size: contain;
}
.phone_contact .phone_hours {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-top: 4px;
}
.contact_note {
    font-size: 1.2rem;
    color: #90a1b9;
    margin: 0;
}

/* ----------------------------------------------------------
   FEATURES SECTION
   ---------------------------------------------------------- */
.sec_features {
    background-color: #f8fafc;
    padding: 64px 0 72px;
}
.sec_features .sec_container {
    align-items: center;
    gap: 40px;
}
.sec_features_heading {
    text-align: center;
}
.features_sublabel {
    font-size: 2rem;
    color: var(--color-mygcall);
    line-height: 1.4;
    margin: 0 0 8px;
}
.sec_features_heading h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-text-bold);
    line-height: 1.4;
    margin: 0;
}
.feature_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    width: 100%;
}
.feature_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.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.6rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}
