@charset "UTF-8";

#summer-gift {
    color: #333333;
    font-size: 16px;
    font-family: 'ヒラギノ角ゴ ProN', '游ゴシック', 'メイリオ', sans-serif;
    font-weight: 400;
}

@media screen and (max-width: 991px) {
    #summer-gift {
        font-size: 13px;
    }
}

/* Slick */
.slick-dots {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    top: 15px;
}

.slick-dots li {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
}

.slick-dots li button {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
}

.slick-dots li button::before {
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    background-color: #bbbbbb;
    border-radius: 8px;
}

.slick-dots li.slick-active button::before {
    background-color: #333333;
}

.slick-prev {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 80px;
    left: -25px;
    z-index: 15;
}

.slick-prev::before {
    display: block;
    width: 20px;
    height: 20px;
    content: '\f078';
    color: #333333;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transform: rotate(90deg);
}

.slick-next {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 80px;
    right: -25px;
    z-index: 15;
}

.slick-next::before {
    display: block;
    width: 20px;
    height: 20px;
    content: '\f078';
    color: #333333;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transform: rotate(-90deg);
}

.section_summerGift {
    padding: 60px 10px;
}

.summerGift_fv {
    width: 100%;
}

.summerGift_pic {
    display: block;
    width: 100%;
}

.summerGift_lead {
    margin-bottom: 1em;
    font-size: 20px;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .summerGift_lead {
        font-size: 16px;
    }
}

.summerGift_text {
    text-align: center;
}

.summerGiftMenu {
    display: block;
    margin-top: 90px;
}

@media screen and (max-width: 991px) {
    .summerGiftMenu {
        margin-top: 30px;
    }
}

.summerGiftMenu_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media screen and (min-width: 992px) {
    .summerGiftMenu_item:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .summerGiftMenu_item:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .summerGiftMenu_item:nth-child(3) {
        grid-area: 1 / 3 / 2 / 4;
    }

    .summerGiftMenu_item:nth-child(4) {
        grid-area: 1 / 4 / 2 / 5;
    }

    .summerGiftMenu_item:nth-child(5) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .summerGiftMenu_item:nth-child(6) {
        grid-area: 2 / 3 / 3 / 4;
    }
}

@media screen and (max-width: 991px) {
    .summerGiftMenu_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

.summerGiftMenu_link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 80px;
    background-color: #0d88c1;
    border: 2px solid #0d88c1;
    border-radius: 10px;
    box-shadow: 3px 3px 6px #777777;
    font-size: clamp(18px, 2vw, 24px);
    text-decoration: none;
    line-height: 1;
    transition: 0.3s all;
}

@media screen and (max-width: 991px) {
    .summerGiftMenu_link {
        height: 60px;
        font-size: 15px;
    }
}

.summerGiftMenu_link::after {
    display: block;
    content: '\f078';
    color: #ffffff;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.summerGiftMenu_text {
    display: block;
    color: #ffffff !important;
    font-weight: 600;
    text-align: center;
}

.summerGiftMenu_link:hover {
    background-color: #ffffff !important;
    transition: 0.3s all;
}

.summerGiftMenu_link:hover:after {
    color: #0d88c1;
    transition: 0.3s all;
}

.summerGiftMenu_link:hover .summerGiftMenu_text {
    color: #0d88c1 !important;
    transition: 0.3s all;
}

.heading_sgWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 76px;
    margin-bottom: 40px;
    background-color: #ffffff;
    background-image: radial-gradient(circle, #0d88c1 1.5px, transparent 1.5px);
    background-position: center;
    background-size: 8px 8px;
}

@media screen and (max-width: 991px) {
    .heading_sgWrap {
        height: 48px;
    }
}

.heading_sgLv3 {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: calc(100% - 120px);
    max-width: 400px;
    margin: 0 auto;
    padding: 0 15px;
    background-color: #ffffff;
    position: relative;
}

.heading_sgLv3__no2c {
    max-width: 560px !important;
}

.heading_sgLv3::before {
    display: block;
    margin: 0 auto -35px auto;
    position: relative;
    top: -35px;
}

.heading_sgLv3__no1::before {
    content: url('https://gigaplus.makeshop.jp/orochoku/images/page/summer-gift/icon1.png');
}

.heading_sgLv3__no2::before {
    content: url('https://gigaplus.makeshop.jp/orochoku/images/page/summer-gift/icon2.png');
}

.heading_sgLv3__no2b::before {
    content: url('https://gigaplus.makeshop.jp/orochoku/images/page/summer-gift/icon2b.png');
}

.heading_sgLv3__no2c::before {
    content: url('https://gigaplus.makeshop.jp/orochoku/images/page/summer-gift/icon2c.png');
}

.heading_sgLv3__no3::before {
    content: url('https://gigaplus.makeshop.jp/orochoku/images/page/summer-gift/icon3.png');
}

.heading_sgLv3__no4::before {
    content: url('https://gigaplus.makeshop.jp/orochoku/images/page/summer-gift/icon4.png');
}

.heading_sgLv3_sub {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #0d88c1;
    font-size: 18px;
}

.heading_sgLv3_sub::before {
    display: inline-block;
    content: '';
    width: 1px;
    height: 20px;
    background-color: #0d88c1;
    transform: rotate(-45deg);
}

.heading_sgLv3_sub::after {
    display: inline-block;
    content: '';
    width: 1px;
    height: 20px;
    background-color: #0d88c1;
    transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
    .heading_sgLv3_sub {
        font-size: clamp(11px, 3.6vw, 14px);
    }
}

.heading_sgLv3_main {
    display: block;
    color: #333333;
    font-size: 30px;
}

@media screen and (max-width: 991px) {
    .heading_sgLv3_main {
        font-size: clamp(16px, 5vw, 24px);
    }
}

.sgItem_body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px 0;
    height: 100%;
    padding: 0 5px;
}

.sgItem_thumb {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.sgItem_pic {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.sgItem_pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sgItem_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px 0;
    height: 100%;
}

.sgItem_name {
    margin: 0;
    font-size: clamp(11px, 1.2vw, 15px);
    font-weight: 500;
}

@media screen and (max-width: 991px) {
    .sgItem_name {
        font-size: 13px;
    }
}

.sgPrice_head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    padding: 1em 10px calc(1em - 10px) 10px;
    color: #0d88c1;
    font-size: clamp(18px, 2.67vw, 32px);
    font-weight: 900;
    border-top: 1px solid #0d88c1;
    border-bottom: 1px solid #0d88c1;
    text-align: center;
    line-height: 1;
    position: relative;
}

@media screen and (max-width: 991px) {
    .sgPrice_head {
        margin-bottom: 40px;
        font-size: 18px;
    }
}

.sgPrice_head::after {
    display: block;
    content: url('https://gigaplus.makeshop.jp/orochoku/images/page/summer-gift/heading-arrow.svg');
    width: 18px;
    height: 9px;
    position: relative;
    bottom: -12px;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .sgPrice_head::after {
        bottom: -10px;
    }
}

.sgPrice_head_yen {
    font-size: 75%;
}

.sgPrice_wrap {
    padding: 0 0 80px 0;
}

.sgItem_price {
    margin: auto 0 0 0;
    color: #b6002d;
    font-size: clamp(12px, 1.2vw, 15px);
    font-weight: 600;
}

@media screen and (max-width: 991px) {
    .sgItem_price {
        font-size: clamp(12px, 3vw, 13px);
    }
}

.sgItem_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    width: 100%;
    max-width: 180px;
    height: 32px;
    margin: 0 auto;
    padding: 0 10px;
    color: #ffffff;
    background-color: #b6002d;
    border: 2px solid #b6002d;
    border-radius: 32px;
    box-shadow: 1px 1px 6px #777777;
    font-size: clamp(11px, 1vw, 14px);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: 0.3s all;
}

.sgItem_btn::after {
    display: block;
    content: '\f078';
    color: #ffffff;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transform: rotate(-90deg);
    transition: 0.3s all;
}

@media screen and (max-width: 991px) {
    .sgItem_btn {
        display: none !important;
    }
}

.sgItem_btn:hover {
    color: #b6002d;
    background-color: #ffffff;
    transition: 0.3s all;
}

.sgItem_btn:hover:after {
    color: #b6002d;
    transition: 0.3s all;
}

.sgTeiban_inner {
    padding: 20px 40px 30px 40px;
    background-color: #fffeee;
}

@media screen and (max-width: 991px) {
    .sgTeiban_inner {
        padding: 20px 15px 30px 15px;
    }
}

.sgTeiban_list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sgTeiban_list .slick-track {
    display: flex;
    align-self: stretch;
}

@media screen and (max-width: 991px) {
    .sgTeiban_list .slick-dots {
        width: 100%;
        height: 12px;
        position: absolute;
        top: inherit;
        bottom: -30px;
    }

    .sgTeiban_list .slick-prev {
        position: absolute;
        top: inherit;
        left: inherit;
        right: min(75vw, 330px);
        bottom: -45px;
    }

    .sgTeiban_list .slick-next {
        position: absolute;
        top: inherit;
        left: min(75vw, 330px);
        right: inherit;
        bottom: -45px;
    }
}

.sgTeiban_item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: clamp(310px, 31.25vw, 385px);
    max-height: 100% !important;
    padding-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .sgTeiban_item {
        height: clamp(285px, 89vw, 330px);
    }
}

.sgPrice_inner {
    margin-bottom: 40px;
}

.sgPrice_list {
    display: block;
}

@media screen and (max-width: 991px) {
    .sgPrice_list {
        position: relative;
    }
}

@media screen and (min-width: 992px) {
    .sgPrice_list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }
}

.sgPrice_list .slick-list {
    padding-top: 40px;
    padding-bottom: 20px;
}

.sgPrice_list .slick-track {
    display: flex;
    align-self: stretch;
}

@media screen and (max-width: 991px) {
    .sgPrice_list .slick-prev {
        position: absolute;
        top: inherit;
        left: inherit;
        right: min(67vw, 350px);
        bottom: -30px;
    }

    .sgPrice_list .slick-next {
        position: absolute;
        top: inherit;
        left: min(67vw, 350px);
        right: inherit;
        bottom: -30px;
    }
}

.sgPrice_item {
    display: block;
    height: 100%;
    position: relative;
}

.sgPrice_item::before {
    display: block;
    position: absolute;
    left: 5px;
    top: -40px;
}

.sgPrice_item__rank1::before {
    content: url('https://gigaplus.makeshop.jp/orochoku/images/page/summer-gift/rank1.png');
}

.sgPrice_item__rank2::before {
    content: url('https://gigaplus.makeshop.jp/orochoku/images/page/summer-gift/rank2.png');
}

.sgPrice_item__rank3::before {
    content: url('https://gigaplus.makeshop.jp/orochoku/images/page/summer-gift/rank3.png');
}

.sgPrice_item__rank4::before {
    content: url('https://gigaplus.makeshop.jp/orochoku/images/page/summer-gift/rank4.png');
}

.sgPrice_item__rank5::before {
    content: url('https://gigaplus.makeshop.jp/orochoku/images/page/summer-gift/rank5.png');
}

.sgTips_head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
    margin: 0 auto 40px auto;
    padding: 20px 10px;
    background-color: #fffeee;
}

.sgTips_headIcon {
    color: #0d88c1;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.sgTips_headText {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .sgTips_headText {
        font-size: 16px;
    }
}

.sgTips_text {
    width: calc(100% - 40px);
    margin: 0 auto;
    text-align: center;
    line-height: 2;
}

.sgTips_pic {
    display: block;
    width: 100%;
    margin: 40px auto;
}

.sgTips_pic__q1 {
    max-width: 780px;
}

.sgTips_pic__q2 {
    max-width: 950px;
}

.sgService_wrap {
    padding: 30px 20px;
    background-color: #fffeee;
    text-align: center;
}

.sgService_lead {
    margin-bottom: 1em;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .sgService_lead {
        font-size: 16px;
    }
}

.sgService_text {
    text-align: center;
}

.sgService_pic {
    display: block;
    width: 100%;
    max-width: 450px;
    margin: 20px auto 0 auto;
}

@media screen and (max-width: 991px) {
    .sgService_pic {
        max-width: 280px;
    }
}

.bottomList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 25px;
    margin: 0 auto;
    padding: 0;
    list-style-type: none;
}

@media screen and (max-width: 991px) {
    .bottomList {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px 25px;
    }
}

.bottomList_link {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 33 / 14;
}

.bottomList_link img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 33 / 14;
}

/* お中元早割キャンペーン実施中！ */
.hayatoku {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.hayatoku_lead {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.hayatoku_lead_sub {
    display: block;
    color: #0d88c1;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.hayatoku_lead_main {
    display: block;
    color: #0d88c1;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .hayatoku_lead_sub {
        font-size: clamp(11px, 3.6vw, 14px);
    }

    .hayatoku_lead_main {
        font-size: clamp(16px, 5vw, 24px);
    }
}

.hayatoku_link {
    display: block;
    width: calc(100% - 40px);
    max-width: 800px;
    margin: 0 auto;
}

/* 25.06.30追加 */
.reason_list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 992px) {
    .reason_list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(9, 1fr);
        grid-column-gap: 40px;
        grid-row-gap: 40px;
    }
}

.reason_item {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 25px 20px;
    background-color: #ffffff;
    border: 1px solid #0d88c1;
    border-radius: 10px;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.35);
}

@media screen and (min-width: 992px) {
    .reason_item {
        padding: 40px;
    }

    .reason_item:nth-child(1) {
        grid-area: 1 / 1 / 5 / 2;
    }

    .reason_item:nth-child(2) {
        grid-area: 1 / 2 / 4 / 3;
    }

    .reason_item:nth-child(3) {
        grid-area: 5 / 1 / 10 / 2;
    }

    .reason_item:nth-child(4) {
        grid-area: 4 / 2 / 7 / 3;
    }

    .reason_item:nth-child(5) {
        grid-area: 7 / 2 / 10 / 3;
    }
}

.reason_heading {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.reason_heading_num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 126px;
    height: 36px;
    color: #ffffff;
    background-color: #0d88c1;
    border-radius: 5px;
    font-size: 12px;
    text-align: center;
    position: relative;
}

@media screen and (min-width: 992px) {
    .reason_heading_num {
        width: 156px;
        height: 46px;
        border-radius: 5px;
        font-size: 16px;
    }
}

.reason_heading_num::after {
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 10px solid #0d88c1;
    border-bottom: 0;
    position: absolute;
    bottom: -10px;
}

.reason_heading_text {
    font-size: 16px;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .reason_heading_text {
        font-size: 24px;
        line-height: 1.7;
    }
}

.reason_pic {
    width: 100%;
    text-align: center;
}

.reason_pic img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.reason_text {
    font-size: 14px;
    text-align: left;
}

@media screen and (min-width: 992px) {
    .reason_text {
        font-size: 16px;
        line-height: 2;
    }
}

.review {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    gap: 15px 0;
}

.review .slick-list {
    padding-top: 40px;
    padding-bottom: 20px;
}

.review .slick-track {
    display: flex;
    align-self: stretch;
}

@media screen and (max-width: 991px) {
    .review .slick-list {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .review .slick-track {
        display: flex;
        align-self: stretch;
    }

    .review .slick-prev {
        position: absolute;
        top: inherit;
        left: inherit;
        right: min(67vw, 350px);
        bottom: -30px;
    }

    .review .slick-next {
        position: absolute;
        top: inherit;
        left: min(67vw, 350px);
        right: inherit;
        bottom: -30px;
    }
}

.review_dl {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin: 0 10px;
    padding: 15px;
    background-color: #fffeee;
}

@media screen and (min-width: 992px) {
    .review_dl {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin: inherit;
        padding: 15px 40px;
    }
}

.review_dt {
    width: 100%;
    height: 156px;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .review_dt {
        width: 96px;
        height: inherit;
    }
}

.review_dd {
    width: 100%;
    font-size: 14px;
    margin: 0 !important;
}

@media screen and (min-width: 992px) {
    .review_dd {
        width: calc(100% - 96px - 20px);
        font-size: 16px;
    }
}

.review_pic {
    display: block;
    width: 156px;
    height: 156px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 15px auto;
}

@media screen and (min-width: 992px) {
    .review_pic {
        width: 96px;
        height: 96px;
        margin: 0;
    }
}

.review_pic img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.review_rate {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 0.5em;
}

.review_rate_star {
    display: inline-block;
    color: #efae59;
    font-weight: 500;
}

.review_rate_num {
    display: inline-block;
    color: #999999;
    font-weight: 400;
}

.review_product {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.review_text {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 400;
}

.review_datetime {
    display: block;
    font-size: 12px;
    font-weight: 400;
}

@media screen and (min-width: 992px) {
    .review_datetime {
        font-size: 14px;
    }
}

.color-blue {
    color: #0d88c1 !important;
}

.weight-bold {
    font-weight: bold !important;
}
