* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
}

.header {
    display: flex;
    align-items: center;
    padding: 24px 20px;
    background-color: #fff;
}

.p-logo__img { width: 212px; }
.logo img { height: 30px; }

.banner {
    position: relative;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fv {
    width: 100%;
    background-color: #7b1613;
    color: white;
    text-align: center;
    line-height: 1.1;
}
.fv picture {
    padding: 25px 0;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
}

.container {
    width: 90%;
    max-width: 954px;
    margin: 0 auto 60px;
}
.container > .section-title.txt-left {
  width: 100%;
  max-width: 100%;
}

.txt-right { text-align: right; }

.link-text {
  color: #41A0ff;
  text-decoration: underline;
}

.sale-title {
    font-size: 99px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 2px 0;
}

.sale-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 5px 0;
}

.sale-discount {
    font-size: 38px;
    font-weight: 700;
    margin: 5px 0;
}

.sale-dates {
    font-size: 29px;
    font-weight: 400;
    margin: 5px 0 0 0;
}

.banner-items {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    opacity: 0.7;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.btn-section {
    text-align: left;
    position: relative;
    max-width: 554px;
    margin: 0 auto;
}
.btn-section > p {
  font-size: 20px;
  margin-bottom: 20px;
}

.btn-section.line > .section-title {
    font-weight: bold;
}
.hero {
    margin: 15px auto;
    width: 90%;
    max-width: 954px;
}
.hero .c-text-s { margin-top: 10px; }

.coupon-section {
    text-align: center;
    padding: 52px 0 0;
    position: relative;
}
.coupon-text {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}
.coupon-text::before,
.coupon-text::after {
    content: " ";
    position: absolute;
    width: 2px;
    height: 40px;
    background: #4ea856;
    bottom: 0;
}
.coupon-text::before {
    transform: rotate(-20deg);
    left: -20px;
}
.coupon-text::after {
    transform: rotate(20deg);
    right: -20px;
}
.coupon-section a { line-height: 1.5; }
.coupon-section .c-text-s { font-size: 18px; }
.coupon-section .c-text-m { font-size: 22px; }
.coupon-section .c-text-l {
    font-size: 32px;
    padding: 0 5px;
    letter-spacing: 2px;
}
.hero .c-text-s { font-size: 20px; }

.section-subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-title.txt-left {
    font-weight: bold;
    text-align: left;
    margin: 60px auto 20px;
    font-size: 30px;
    max-width: 954px;
    width: 90%;
}

.line-button {
    position: relative;
    display: block; /* align-items/justify-contentはblockでは効かないので削除 */
    background-color: #4ea856;
    color: white;
    padding: 26px 30px;
    text-decoration: none;
    font-size: 27px;
    border-radius: 3px;
    width: 558px;
    margin: 0 auto;
    text-align: center;
}

.arrow-wrap { 
  position: absolute;
  right: 14px;
  bottom: 45%;
  height: 10px;
  margin-top: -5px;
  display: flex;
  align-items: center;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
}
.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 13px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

.tab-section {
    display: flex;
    margin: 30px auto;
}
.tab-section.diamond { margin-bottom: 15px; }

.tab {
    font-size: 27px;
    flex: 1;
    padding: 3px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #d7bb69;
    color: #d7bb69;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab.active {
    background-color: #d7bb69;
    color: white;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-content .c-text-s {
  font-size: 18px;
  margin-bottom: 16px;
}

.gender-button,
.category-button,
.brand-grid.recommend .brand-item {
    border: 1px solid #9b895a;
    color: #9b895a;
}

.brand-grid.recommend.center-item {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.gender-button a,
.recommend .brand-item a { color: #9b895a; }

.gender-button a:hover,
.sale-item a:hover,
.shop-item a:hover,
.recommend .brand-item a:hover { opacity: 0.7; }

.brand-grid,
.product-grid,
.sale-grid,
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 auto 65px;
    place-content: center;
    text-align: center;
    font-size: 12px;
}

.sale-grid {
    grid-template-columns: 1fr;
    height: auto;
    border: none;
    gap: 20px;
    font-size: 17px;
    width: 50%;
    max-width: 558px;
    margin-bottom: 30px;
}

.link-wrapper { margin: 0 auto 30px; }

.recommend .brand-item a  {
    transition: all .2s ease; /* durationを付与 */
    font-size: 16px;
}

.link-btn {
    border: 1px solid #e56667;
    border-radius: 5px;
    margin-bottom: 20px;
}
.link-btn a {
    position: relative;
    padding: 20px 40px;
    font-size: 27px;
    color: #e56667;
    display: block;
}
.link-btn a .arrow {
    background-color: #e56667;
    height: 2px;
}
.link-btn a .arrow::before {
    background-color: #e56667;
    height: 2px;
    top: calc(50% - 1px);
}
.link-btn .sub-text {
    display: block;
    font-size: 18px;
}

.sale-name { padding: 20px; }

.brand-image,
.product-image { 
    padding: 15px 10px 10px;
    overflow: hidden;
}

.brand-name,
.product-name { height: calc(222px - 158px); }

#tab-content-01 .brand-name,
#tab-content-02 .brand-name { height: auto; }

.brand-image,
.brand-name,
.product-image,
.product-name {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item a:hover { opacity: 0.7; }

.section-title {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 26px;
    font-weight: normal;
}

.gender-section,
.category-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 70px;
    padding: 0 20px;
}

.gender-button,
.category-button {
    width: calc(50% - 5px);
    min-width: 282px;
    padding: 10px 0 14px;
    text-align: center;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 23px;
}

.s-lh { line-height: 1.3; }
.sp-br { display: none; }

/* >= 768px */
@media (min-width: 768px) {
    .brand-grid,
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .gender-button,
    .category-button {
        width: auto;
    }
}

/* <= 767px */
@media (max-width: 767px) {

    .sp-br { display: block; }

    .fv picture { padding: 0; }

    .brand-grid.recommend { grid-template-columns: repeat(2, 1fr); }
    .brand-grid.recommend.center-item { width: 100%; }

    .sale-title { font-size: 77px; }
    .sale-subtitle { font-size: 19px; }
    .sale-discount { font-size: 30px; }
    .sale-dates { font-size: 22px; }

    .tab {
        font-size: 17px;
        padding: 10px 5px;
    }

    .line-button {
        font-size: 17px;
        padding: 14px;
        max-width: 450px;
        width: 100%;
    }

    .link-btn a {
        padding: 20px 15px;
        font-size: 16px;
    }

    .sale-grid { width: 90%; }

    .section-title {
        max-width: 90%;
        font-size: 24px;
        margin: 35px auto 20px;
    }

    .section-title.m-text { font-size: 20px; }

    .coupon-section { padding: 40px 0 0; }
    .coupon-section a { line-height: 1.5; }

    .coupon-text { font-size: 20px; }
    .coupon-text::before {
        width: 2px;
        height: 30px;
        left: -15px;
    }
    .coupon-text::after {
        width: 2px;
        height: 30px;
        right: -15px;
    }

    .coupon-section .c-text-s { font-size: 16px; }
    .coupon-section .c-text-m { font-size: 20px; }
    .coupon-section .c-text-l {
        font-size: 30px;
        padding: 0 5px;
        letter-spacing: 2px;
    }

    .btn-section.line > .section-title {
        text-align: left;
        margin: 35px 0 20px;
    }

}
