@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;700&display=swap');

/*ECCUBEのCSSをそのままコピペしたりしてるから汚くて見づらいかも、ごめんね*/
img {
    max-width: 100%;
}

:root {
    --main_c: #00AEEF;
    --sub_c: #003B73;
}

body {
    font-family: "M PLUS 1p", serif;
    font-size: 16px;
}

p,
a {
    /* デカモニターで文字がギザギザするのを防ぐ用 */
    transform: rotate(0.05deg);
}

.ec-footerNavi .ec-footerNavi__link a {
    text-decoration: none;
}

/**
 * レイアウト関連
 * .ec-layoutRole, .ec-sliderRole
 */

/* メインコンテンツ外枠の横幅固定外す */
.ec-layoutRole .ec-layoutRole__contents {
    max-width: none;
}

/* スライドショーの横幅固定外す */
.ec-sliderRole {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

/**
 * slim_header (ヘッダー)
 */
.slim_header {
    max-width: none;
    background: rgba(255, 255, 255, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    padding: 15px 30px;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #eee;
    transition: 0.4s;

    /* 初期カラー設定 */
    .ec-headerTitle a,
    .ec-headerNav .ec-headerNav__itemLink,
    .ec-headerNav .ec-headerNav__item .ec-headerNav__itemIcon,
    .ec-cartNavi,
    .ec-categoryNaviRole__title,
    .ec-categoryNaviRole {
        color: #333;
    }

    .ec-headerNav__itemLink a:visited {
        color: #333;
    }

    .charge_btn a {
        padding: 0.5rem 1rem;
        border-radius: 10px;

        &:visited {
            color: #fff;
        }
    }

    .ec-headerTitle {
        font-size: 18px;
        font-weight: bold;
        margin: 0 0 0 30px;
    }

    .ec-headerNav {
        margin-right: 0;
        display: none;
    }

    .ec-headerNaviRole {
        width: auto;
        max-width: none;
        padding: 0;
        margin: 0 0 0 auto;
    }

    .ec-headerNav .ec-headerNav__item {
        font-size: 14px;
    }

    .ec-headerNav .ec-headerNav__itemIcon {
        display: inline-block;
        margin-right: 5px;
        margin-left: 5px;
        font-size: 18px;
    }

    .ec-headerNav .ec-headerNav__item .ec-headerNav__itemIcon {
        display: inline-block;
    }

    .ec-cartNavi {
        padding: 3px 0 0 10px;
    }

    .ec-headerNavSP {
        top: 8px;
    }

    .ec-categoryNaviRole {
        display: none;
    }
}

/**
 * slim_header - PC (min-width: 768px)
 */
@media (min-width :768px) {
    .ec-layoutRole .ec-layoutRole__contents {
        margin-top: 70px;
    }

    .slim_header {

        .ec-headerNav .ec-headerNav__item .ec-headerNav__itemIcon,
        .ec-cartNavi {
            color: #333;
        }

        a:hover {
            text-decoration: none;
            opacity: 0.8;
        }

        .ec-headerTitle {
            margin: 0;
            width: 200px;
        }

        .ec-headerNav {
            margin-right: 20px;
            display: block;

            .ec-headerNav__item {
                margin: 0 10px;
            }

            .ec-headerNav__item .ec-headerNav__itemIcon {
                display: inleine-block;
            }

            .ec-headerNav__item a {
                font-size: 14px;
                font-weight: bold;
            }
        }

        .ec-cartNavi {
            padding: 12px 17px 10px;
        }

        /* カテゴリナビゲーション (PC) */
        .ec-categoryNaviRole {
            position: relative;
            padding: 0;
            font-size: 14px;
            font-weight: bold;
            color: #000;
            margin-right: 18px;
            transform: translateY(1px);
            max-width: none;
            width: auto;
            display: block;

            &__title {
                cursor: pointer;
            }

            &__item {
                position: absolute;
                top: 0;
                left: 0;
                display: none;
                padding-top: 45px;
            }

            &:hover .ec-categoryNaviRole__item {
                display: block;
            }

            ul {
                margin: 0;
                padding: 0;

                ul {
                    position: absolute;
                    top: 0;
                    left: 180px;

                    li {
                        display: none;
                    }
                }
            }

            li {
                list-style: none;
                position: relative;
                box-sizing: border-box;

                a {
                    width: 180px;
                    color: #333;
                    background: rgba(255, 255, 255, 0.8);
                    display: block;
                    padding: 15px;
                }

                a:hover {
                    background: rgba(250, 250, 250, 0.8);
                }

                &:hover>ul>li {
                    display: block;
                }

                ul:before {
                    content: "\f054";
                    font-family: "Font Awesome 5 Free";
                    font-weight: 900;
                    font-size: 10px;
                    position: absolute;
                    top: 18px;
                    right: auto;
                    left: -20px;
                    color: #000;
                }
            }
        }
    }

    #page_shopping .slim_header,
    #page_shopping_confirm .slim_header {
        position: relative;
    }
}

/**
 *slim_header - SP (max-width: 768px) 
 */
@media (max-width :768px) {
    .slim_header {
        position: relative;
        top: 0;
    }
}

/**
 * slim_header - 極小SP (max-width: 520px)
 */
@media (max-width :520px) {
    .slim_header {
        justify-content: center;
        padding: 1rem 0;

        .ec-headerTitle {
            margin: 0;

            img {
                width: 150px;
            }
        }
    }
}

/**
 * ナビゲーション関連
 * .g-Navmenu, .ec-headerNav, .ec-headerNaviRole_right
 */
/* G-MENU */
.g-Navmenu {
    display: block;

    ul {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        color: #000;
        list-style: none;

        li {
            position: relative;
            padding: 0;
            font-size: 14px;
            font-weight: bold;
            color: #000;
            margin-right: 18px;
            transform: translateY(1px);
            max-width: none;
            width: auto;
            display: block;
        }
    }
}

.ec-headerNaviRole_right {
    display: flex;
    margin: 0 0 0 auto;
    flex-wrap: wrap-reverse;
}

/* ナビ (ツールチップ) */
.ec-headerNav a {
    position: relative;
}

.ec-headerNav span {
    width: 90px;
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translateX(-50%);
    margin-bottom: 4px;
    padding: 4px;
    border-radius: 15px;
    background-color: var(--main_c);
    color: #fff !important;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    transition: 0.5s all;
    font-size: 13px !important;
}

a:hover span {
    bottom: 100%;
    visibility: visible;
    opacity: 1;
}

/**
 *ec-headerNaviRole_right - SP (max-width: 767px)
 */
@media (max-width :767px) {
    .ec-headerNaviRole_right {
        display: none;
    }
}


/**
 * スマホナビ (ドロワー)
 */
.ec-drawerRole {
    background: var(--sub_c);

    .ec-headerLinkArea {
        background: var(--sub_c);
    }
}

.ec-headerSearch {
    .ec-headerSearch__category .ec-select.ec-select_search {
        border-radius: 5px;
        margin-bottom: 3px;
        background: var(--main);
    }

    .ec-headerSearch__category .ec-select select {
        padding: 5px;
    }

    .ec-headerSearch__keyword {
        border-radius: 5px;
    }
}

/**
 * 商品一覧/商品詳細
 * .ec-shelfGrid, .ec-newItemRole, .ec-diskBox, .ec_imageBox, .product_page, #page_product_list
 */
.ec-shelfGrid {
    .ec-shelfGrid__item {
        margin-bottom: 0;

        &-image {
            border-radius: 5px;

            img {
                border-radius: 5px;
            }
        }

        p {
            font-size: 15px;
        }
    }
}

/* 商品画像ボックス */
.ec_imageBox {
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0px 0px 15px -5px #777777;

    img {
        transition: 0.5s all;
    }
}

a:hover .ec_imageBox img {
    transform: scale(1.03, 1.03);
    transition: 0.5s all;
}

.ec-newItemRole__listItem {
    background: #fff;
    box-shadow: 0px 0px 15px -5px #777777;
    border-radius: 5px;
}

.ec-diskBox {
    padding: 1rem 1rem 0.7rem;
    background: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 0px 15px -5px #777777;

    dt {
        font-weight: normal;
        font-size: 12.5px;
        color: #000;
        margin-bottom: 0.5rem;
    }

    dd {
        color: #000;
        font-size: 15px;
    }
}

/* 全商品一覧ページ */
.product_page {
    .ec-numberInput input[type=number] {
        height: 30px;
    }
}



/* 商品詳細 */
.ec-productRole {
    &__tags {
        display: none;
    }

    &__price,
    &__category {
        border: none;
    }

    &__price {
        color: #000;
    }
}


@media only screen and (min-width: 768px) {
    .ec-shelfGrid .ec-shelfGrid__item:nth-child(even) {
        padding: 0 5px;
    }

    .ec-shelfGrid .ec-shelfGrid__item:nth-child(odd) {
        padding: 0 5px;
    }

    .product_page {
        .ec-shelfGrid {
            gap: 1rem;

            .ec-shelfGrid__item {
                width: 23%;
            }
        }
    }
}

/**
 * マイページ
 * .ec-navlistRole, .ec-imageGrid
 */
.ec-navlistRole {
    .ec-navlistRole__navlist {
        border: none;
        gap: 1rem;
    }

    .ec-navlistRole__item {
        border: 1px solid #eee;
        width: 47%;
        border-radius: 5px;
    }

    .active a {
        color: #fff;
        background: var(--main_c);
    }
}

.ec-imageGrid__img img {
    border-radius: 5px;
}

@media only screen and (min-width: 769px) {
    .ec-favoriteRole .ec-favoriteRole__item {
        width: calc(100% / 8);
    }
}

/**
 * ボタン/フォーム
 * .ec-blockBtn, .ec-inlineBtn, form
 */
/* アクションボタン (白/黒枠) */
.ec-blockBtn--action,
.ec-inlineBtn--action {
    background-color: var(--sub_c) !important;
    border: 1.5px solid var(--sub_c);
    color: #fff !important;
    transition: 0.3s all;

    &:hover {
        background-color: var(--sub_c) !important;
        border: 1.5px solid var(--sub_c);
        color: #fff !important;
        box-shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.4);
    }
}

.ec-blockBtn--cancel {
    transition: 0.3s all;

    &:hover {
        box-shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.4);
    }
}

/* 黒ボタン */
.ec-blockBtn--black {
    background: #000;
    color: #fff;
    display: block;
    margin: 0 auto;
    padding: 1rem 2rem;
    width: 250px;
    text-align: center;
    letter-spacing: .1rem;
    box-shadow: 0px 0px 15px -5px #777777;
    transition-duration: 0.3s;

    &:hover {
        transform: scale(1.03, 1.03);
        transition: 0.3s all;
        color: #fff;
    }
}

/* その他ボタン */
.ec-blockBtn--cance,
.ec-blockBtn {
    height: 40px;
    line-height: 40px;
}

/* TOPカートのボタン */
.ec-cartNaviIsset .ec-cartNaviIsset__action {
    .ec-blockBtn--action {
        color: var(--main);

        &:hover {
            color: #fff;
        }
    }
}

/* フォーム */
.ec-select select,
.ec-input input,
.ec-halfInput input,
.ec-numberInput input[type=number],
.ec-zipInput input,
.ec-telInput input,
.ec-input textarea {
    border: none;
    background: #eee;
}

.form-label {
    display: block;
}

/**
 *Instagram
 */
.ec_instaRole {
    max-width: 1130px;
    margin: 0 auto;
}

.ec_instagram {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;

    li {
        width: calc(100% / 5);
        list-style: none;
    }

    img {
        width: 100%;
        object-fit: cover;
        height: 230px;
    }
}

@media screen and (max-width:599px) {
    .ec_instagram {
        li {
            width: calc(100% / 3);

            &:last-child {
                display: none;
            }
        }

        img {
            height: 120px;
        }
    }
}

/**
 * ページタイトル/セクション 
 */
.pagetop_img {
    height: 300px;
    position: relative;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    h2 {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translateX(-50%);
        background: #ffffffaa;
        padding: 1rem;
        border: none;
    }
}

.cl_section {
    padding: 5rem 0;
}


/**
 *アニメーション
 */
.animate {
    opacity: 0;
    transform: translateY(10px);
    transition: all 1.0s;

    &.show {
        opacity: 1;
        transform: translateY(0);

        &:nth-of-type(1) {
            transition-delay: 0s;
        }

        &:nth-of-type(2) {
            transition-delay: 0.15s;
        }

        &:nth-of-type(3) {
            transition-delay: 0.30s;
        }

        &:nth-of-type(4) {
            transition-delay: 0.45s;
        }

        &:nth-of-type(5) {
            transition-delay: 0.6s;
        }

        &:nth-of-type(6) {
            transition-delay: 0.75s;
        }

        &:nth-of-type(7) {
            transition-delay: 0.9s;
        }

        &:nth-of-type(8) {
            transition-delay: 1.05s;
        }

        &:nth-of-type(9) {
            transition-delay: 1.20s;
        }

        &:nth-of-type(10) {
            transition-delay: 1.35s;
        }
    }
}

/* その２ */
.animate02 {
    opacity: 0;
    transform: translateY(10px);
    transition: all 1.0s;

    &.ready {
        opacity: 1;
        transform: translateY(0px);
    }
}

/*header*/

/*kv*/

.slide {
    position: relative;
    width: 100%;

    p {
        margin: 0.2rem 0;
    }
}

.kv_img {
    width: 100%;
    height: auto;
    display: block;
}

.kv_disc {
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;

    @media(width<=550px) {
        width: 100%;
        background: #ffffffdd;
    }

    .title {
        text-align: center;

        span {
            color: var(--main_c);
            font-size: 1.7rem;
        }
    }

    p.catch {
        margin-bottom: 1rem;
    }
}

.cta_btn {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;

    a {
        border-radius: 4px;
        color: #fff;
        padding: 0.2rem 1rem;
        display: flex;
        align-items: center;
        text-decoration: none;
        width: 140px;
        margin-top: 1rem;
        justify-content: center;
    }

    .buy {
        background: var(--sub_c);
    }

    .charge {
        background: var(--main_c);
    }
}

section {
    max-width: 1130px;
    margin: 3rem auto;
    padding-top: 2rem;
}

/*news*/

.ticker-wrap {
    display: flex;
    width: 100%;
    background: var(--main_c);
    padding: 4px;
    margin-top: -1.9rem;
}

.ticker-head {
    width: calc(4em + 8px);
    font-style: italic;
    color: #fff;
    line-height: 30px;
}

.ticker {
    width: 100%;
    height: 30px;
    font-size: 15px;
    line-height: 30px;
    padding: 0 6px;
    overflow: hidden;
}

.ticker ul {
    position: relative;
    list-style: none;
    height: 100%;
    padding: 0;
    margin: 0;
}

.ticker-item {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-right: 0;
    opacity: 0;
}

.ticker-item a {
    display: inline-block;
    width: auto;
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 5s linear;
}

.ticker-width {
    max-width: 1130px;
    width: 100%;
    display: flex;
    margin: 0 auto;
}

.ticker-date {
    font-weight: bold;
}

.ticker-title {
    margin-left: 10px;
}

.ticker-new {
    color: red;
    margin-left: 10px;
    animation: blink 1s ease-in-out infinite alternate;
}

.fadeInDown {
    opacity: 0;
}

.fadeInDown.run {
    animation: fadeInDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

.fadeOutDown {
    opacity: 1;
}

.fadeOutDown.run {
    animation: fadeOutDown 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(30px);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


/*howto*/

h2 {
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

.column3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    @media(width<=550px) {
        justify-content: center;
        gap: 1rem;
    }
}

.column3_in {
    width: 28%;
    background: #FBFBFB;
    border: 1px solid #d3d3d3;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    aspect-ratio: 1;

    @media(width<=820px) {
        width: 32%;
    }

    @media(width<=550px) {
        width: 90%;
    }

    .column_img {
        box-shadow: 0px 8px 18px -10px #c7c7c7;
        border-radius: 50%;
    }

    h3 {
        margin: 2rem 0 0 0;
    }

    p {
        margin-top: 1rem;
    }
}

/*商品詳細*/
.goods {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.goods_in {
    display: flex;
    flex-direction: column;
    width: 30%;
    box-shadow: 0px 0px 25px -4px #c7c7c7;
    padding: 1rem;

    @media(width<=820px) {
        width: 40%;

        @media(width<=550px) {
            width: 90%;
        }
    }

    h3 {
        text-align: center;
    }

    a {
        background: #003B73;
        color: #fff;
        padding: 0.7rem;
        border-radius: 4px;
        display: block;
    }
}

.goods_cta {
    text-align: center;
    margin-top: auto;
    margin-bottom: 1rem;
}

/*比較*/
.table-container {
    overflow-x: auto;
    margin: 20px;

    table {
        border-collapse: separate;
        border-spacing: 0;
        width: 100%;
        min-width: 600px;
        border-radius: 12px;
        overflow: hidden;
    }

    thead th {
        background: #F7F7F7;
    }

    th,
    td {
        padding: 12px 16px;
        text-align: left;
        border: 1px solid #E5E7EB;
        text-align: center;
        width: calc(100% / 3);
        box-sizing: border-box;
    }

    tr:nth-child(even) {
        background-color: #F7F7F7;
    }

    tr:nth-child(odd) {
        background-color: #ffffff;
    }

    table tr:first-child th:first-child {
        border-top-left-radius: 12px;
    }

    table tr:first-child th:last-child {
        border-top-right-radius: 12px;
    }

    table tr:last-child td:first-child {
        border-bottom-left-radius: 12px;
    }

    table tr:last-child td:last-child {
        border-bottom-right-radius: 12px;
    }

    i {
        color: var(--main_c);
    }
}

/*シーン*/
.seen {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;

    @media(width<=550px) {
        justify-content: center;
    }
}

.seen_in {
    width: 48%;
    padding: 0;

    @media(width<=550px) {
        width: 90%;
    }

    .title {
        padding: 1rem;
        background: var(--sub_c);

        text-align: center;

        p,
        h3 {
            margin: 0;
            color: #fff;
        }
    }
}

.col_cta {
    margin-top: auto;
    margin-bottom: 2rem;

    a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
        background: var(--main_c);
        color: #fff;
        padding: 1rem;
    }

    .arrow {
        margin-left: 16px;
        font-size: 20px;
        transition: transform 0.3s ease;
    }
}

a:hover .arrow {
    transform: translateX(5px);
}

/**/
.cta_box {
    background: var(--sub_c);
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;

    h2 {
        border: none;
        margin: 0;
        color: #fff;
    }

    p {
        margin-bottom: 2rem;
    }

    .col_cta {
        margin: 0;

        a {
            padding: 1rem 2rem;
        }
    }
}


/*goodesimについて*/
.column4 {
    display: flex;
    justify-content: space-between;
    background: var(--sub_c);
    color: #fff;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-top: 2rem;
}

.column4_in {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 25%;
    padding: 1rem 0;
    border-right: 2px dotted #fff;
    box-sizing: border-box;

    @media(width<=540px) {
        width: 100%;
        border-right: none;
        border-bottom: 2px dotted #fff;
    }

    h3 {
        text-align: center;
    }
}

.column4_in:last-child {
    border: none;
}

.compare {
    display: flex;
    justify-content: center;
    align-items: center;

    .left {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #fbfbfb;
        border: 1px solid #d3d3d3;
        width: 50%;
        box-sizing: border-box;
    }

    .right {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        border: 1px solid var(--main_c);
        box-sizing: border-box;

        h3 {
            background: var(--main_c);
            margin: 0;
            width: 100%;
            text-align: center;
            color: #fff;
            padding: 1rem 0;
        }

        ul {
            padding: 2rem;
            background: url(images/circle.png) no-repeat center center;
            background-size: 85%;
        }
    }
}

.mission {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    flex-wrap: wrap;

    .left {
        width: 40%;
        box-sizing: border-box;

        @media(width<=540px) {
            width: 100%;
        }
    }
}

.story {
    background: url(html/user_data/images/storybg.png) no-repeat;
    background-size: cover;
    padding: 1rem;

    h3,
    p {
        max-width: 1130px;
        margin: 1rem auto;
    }
}

/*ご利用ガイド*/
.guide {
    display: flex;
    gap: 2rem;
    background: #F3F3F3;
    align-items: center;
    margin-bottom: 2rem;

    @media(width<=600px) {
        flex-wrap: wrap;
    }

    h3 {
        margin: 0;
    }
}

.guide_in {
    @media(width<=540px) {
        padding: 1rem;
    }
}

.charge_step {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 3rem;
    gap: 1rem;

    @media(width<=820px) {
        justify-content: center;
        gap: 2rem;
    }


    .step_in {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #F3F3F3;
        width: 20%;
        box-sizing: border-box;
        padding: 0.5rem 1rem 2rem;

        p {
            margin-top: 1rem;
        }

        @media(width<=820px) {
            width: 40%;
        }

        @media(width<=540px) {
            width: 95%;
        }
    }
}

.arrowimg {
    @media(width<=820px) {
        display: none;
    }
}

.speechBubble {
    position: relative;
    display: inline-block;
    width: 120%;
    margin-top: -10px;
    margin-bottom: 14px;
    padding: 1rem 0;
    border-radius: 8px;
    background-color: var(--sub_c);
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    text-align: center;
}

.speechBubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 14px 7.5px 0 7.5px;
    border-color: var(--sub_c) transparent transparent;
    translate: -50% 100%;
}

.column2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.column2_in {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F3F3F3;
    border: 1px solid #d3d3d3;
    padding: 1rem;

    @media(width<=820px) {
        width: 40%;
    }

    @media(width<=540px) {
        width: 95%;
    }

    h3 {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    p {
        margin: 1rem 0;

    }

    .col_cta {
        margin: 2rem 0;
        color: #fff;

        a {
            padding: 1rem 3rem;
        }
    }
}

/*よくある質問*/
.check_disc {
    margin-bottom: 2rem;
}

.check_point {
    margin: 1rem 0;
    box-shadow: 0px 0px 15px -5px #777777;
    border-radius: 1rem;
    padding: 0.5rem 0;
    transition: .3s;
}

details {
    --arrow-size: 15px;
    --anime-speed: 0.3s;
}

details p {
    padding: 0.5rem 1rem;
}

summary::-webkit-details-marker {
    display: none;
}

summary {
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    position: relative;
    display: block;
    cursor: pointer;
    font-weight: bold;
}

.check_point:hover {
    background: #eee;
}


summary .icon {
    position: absolute;
    top: 0;
    right: 1.5em;
    bottom: 0;
    display: block;
    width: var(--arrow-size);
    height: calc(var(--arrow-size) * 0.6);
    margin: auto;
    background: #0a64be;
    clip-path: polygon(100% 13%, 50% 100%, 0 13%, 8% 0, 50% 73%, 92% 0);
    transition: transform var(--anime-speed);
}

details[open] summary .icon {
    transform: rotate(180deg);
}

.available details[open] {
    border-bottom: 1px solid #eee;
}

/*対応国*/
.country_hedding {
    background: #e6f7ff;
    border-radius: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 1rem;

    i {
        background: #fff;
        border-radius: 50%;
        padding: 10px 12px;
        color: var(--sub_c);
    }

    h3 {
        margin: 0.5rem 0 0;
        font-size: 18px;
    }

    p {
        font-size: 14px;
        color: var(--main_c);
    }
}

.country_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 2rem 0;
}

.countries {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    width: calc(100% / 5.2);

    @media(width<=820px) {
        width: calc(100% / 3.1);
    }

    @media(width<=540px) {
        width: calc(100% / 2.1);
    }
}

/*配送について*/
.bg_gray {
    background: #f7f7f7;
    padding: 3rem 0;

    section {
        margin: 0 auto;
        padding: 0;
    }
}

.haiso {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;

    img {
        display: block;
        width: 45px;
        margin: 0 auto;
    }
}

.haiso_in {
    background: #fff;
    padding: 1rem;
    width: 23%;
    border-radius: 12px;

    @media(width<=540px) {
        width: 100%;
    }
}


/* 会社概要 */
.company-info-container {
    width: 100%;
    max-width: 700px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin:0 auto;
}

.info-header {
    background: linear-gradient(to right, #007bff, #00bfff);
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    padding: 15px 20px;
}


.info-table {
    padding: 0 20px;
}


.info-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
    margin: 0;
}

.last-item {
    border-bottom: none;
}

.item-title {
    width: 30%;
    min-width: 120px;
    color: #333333;
    font-size: 0.95rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.item-content {
    width: 70%;
    color: #555555;
    font-size: 0.95rem;
    margin-left: 0;
    line-height: 1.5;
}

.business-details .item-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}


.business-details .item-content li {
    position: relative;
    padding-left: 1em;
}


.business-details .item-content li:before {
    content: '-';
    color: #555555;
    font-weight: bold;
    position: absolute;
    left: 0;
    line-height: 1.5;
}

/*footer*/
.ec-footerRole {
    background: none;
    border: none;
    font-size: 14px;

    i {
        margin-right: 3px;
    }

    a {
        color: #4A5565;
    }
}

.ec-footerTitle,
.ec-footerNavi .ec-footerNavi__link a {
    color: #4A5565;
}

.new_footer_Navi {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    flex-wrap: wrap;

    ul {
        list-style: none;
        width: 20%;

        @media(width<=540px) {
            width: 100%;
            margin: 0;
            padding: 0;
        }
    }

    li {
        margin-bottom: 0.5rem;

        @media(width<=540px) {
            border-bottom: 1px solid #ccc;
            padding: 0.5rem 0.5rem 0.5rem 1rem;
        }
    }
}

.shop_link {
    width: 20%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;

    @media(width<=540px) {
        width: 100%;

        a {
            width: 60%;
        }
    }

}

.footer_linktitle {
    font-weight: bold;
    margin-bottom: 1rem;

    @media(width<=540px) {
        color: var(--sub_c);
    }
}

.login_out {
    margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
    .ec-footerRole {
        border-top: 1px solid #eee;
    }

    .ec-footerTitle {
        padding-bottom: 1rem;
    }
}


/*menuドロップダウン*/
.dropDown {
    position: absolute;
    bottom: 0;
    display: none;
    transform: translate(-5%, 100%);
}

.g-Navmenu .dropDown {
    ul {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        padding: 10px;
        background-color: #fff;
        box-shadow: 0px 3px 8px -2px #777;
        color: initial;
        width: 160px;
        border-radius: 3px;
        margin-top: 6px;
    }

    li:first-child {
        padding-bottom: 5px;
    }
}


.link:hover>.dropDown,
.link:focus>.dropDown {
    display: block;
}

.dropDown__link {
    transition: color .15s;

    i {
        margin-right: 3px;
    }
}

/*ギガ追加ボタン*/
.charge_btn {
    a {
        background: var(--main_c);
        color: #fff;
        margin: 0 auto;
        display: block;
        padding: 15px 20px;
    }

    i {
        margin-right: 6px;
        transform: rotate(15deg);
    }
}


/*button*/
.popularity_btn {
    margin: 1rem 0;
    background: var(--sub_c);
    color: #fff !important;
    padding: 1rem;
    text-align: center;
}

.hover_btn {
    transition: 0.3s all;

    &:hover {
        box-shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.4);
    }
}

/**
 *その他
 */
.alC {
    text-align: center;
}

.flex_C {
    display: flex;
    justify-content: center;
}

.width100 {
    margin: 0 calc(50% - 50vw);
    padding: 5em calc(50vw - 50%);
    background: var(--sub);
}

.row-reverse {
    flex-direction: row-reverse;
}

.mt1 {
    margin-top: 1rem;
}

.mb1 {
    margin-bottom: 1rem;
}