@charset "utf-8";

main {
  max-width: none;
}
.section-eyecatch {
  max-width: none;
  width: auto;
  margin-top: 0;
  background: #fff;
  padding: 60px 0;
}
.section-eyecatch p {
  text-align: unset;
}

.section-eyecatch img {
  width: 100%;
  height: auto;
}

.section-eyecatch a {
  text-decoration: none;
}

.section-eyecatch ul,
.section-eyecatch li {
  list-style: none;
}

/* font */
.heading ,
.tab-btn p ,
.tab-btn span ,
.recommend-text h3 ,
.recommend-text p ,
.tab-list-item .product-name ,
.tab-list-item .product-info ,
.tab-list-item .product-price {
  font-family: "Cinzel","Noto Serif JP";
  color: #825C00;
  line-height: 1.6;
}



/* 共通 */
.section {
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 0 20px;
  background: #fff;
}

.heading {
  font-size: 74px;
  font-weight: 400;
  color: #825C00;
  text-align: center;
  letter-spacing: .1em;
  line-height: 1.2;
  margin: 0 auto 40px;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .section {
    margin: 50px auto 0;
    padding: 0 20px;
  }

  .heading {
    font-size: 42px;
    margin: 0 auto 20px;
  }
  
  .sp-only {
    display: block;
  }
}

/* MV */
.mv {
  display: flex;
  width: 100%;
  padding: 50px 20px;
  background: url(../images/sale/sf-jewelrycollection/bg.png) no-repeat top center ;
  background-size: cover;
  position: relative;
}

.mv::before {
  content: "";
  height: 100%;
  width: 440px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: #B3944B;
  opacity: 10%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.mv-ttl {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.mv-ttl::before {
  content: "";
  width: 274px;
  height: 354px;
  margin-right: 40px;
  background: url(../images/sale/sf-jewelrycollection/staff.svg) no-repeat center ;
  background-size: contain;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .mv {
    padding: 40px 20px;
    max-height: 398px;
  }
  
  .mv-ttl {
    flex-wrap: wrap;
  }
  
  .mv-ttl::before {
    width: 134px;
    height: 167px;
    margin:0 0 20px 0;
  }
}

  /* bnr 6/30まで掲載 */
.bnr {
  max-width: 900px;
  display: block;
  margin: 0 auto;
  line-height: 0;
  position: relative;
  transition: all 0.3s;
  z-index: 1;
}

.bnr:hover {
  opacity: 0.8;
  transform: translate(10px,10px);
}

.bnr::after {
  content: "";
  display: inherit;
  width: 100%;
  height: 100%;
  border-width: 0 4px 4px 0;
  border-style: solid;
  border-color: #ECE4D2;
  border-radius: 2px;
  position: absolute;
  bottom: -10px;
  right: -10px;
  transition: transform 0.3s;
  z-index: -1;
}

.bnr:hover::after {
  transform: translate(-10px,-10px);
}

/* バナー時限設定用 */
.timerHidden { 
  display: none;
}

.timerVisible {
  display: block;
}

@media screen and (max-width: 767px) {
  .bnr {
    max-width: 350px;
  }
  
  .bnr:hover {
    opacity: 1;
    transform: translate(0,0);
  }
  
  .bnr::after {
    max-width: 350px;
    height: 4px;
    border-width: 0 0 4px 0;
    right: 0;
  }
  
  .bnr:hover::after {
    transform: translate(0,0);
  }
}

/* tab-btn */
.tab-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.tab-area::before {
  content: "";
  display: block;
  width: 2px;
  height: 124px;
  background-color: #9B7D35;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.tab-area input {
  display: none;
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: calc((100% - 40px ) / 2);
  padding: 0 20px;
  cursor: pointer;
  color: #825C00;
  text-align: center;
  box-sizing: border-box;
  order: -1;
  opacity: 0.4;
  position: relative;
  transition: all 0.3s;
}

.tab-btn:hover {
  opacity: 1;
}

.tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ECE4D2;
  bottom: -35px;
  transform: scale(0,1);
  transform-origin: left top;
  opacity: 1;
  transition: transform 0.3s;
}

.tab-btn img {
  max-width: 152px;
  height: 124px;
  margin-right: 10px;
}

.tab-btn p {
  font-size: 36px;
  font-weight: 400;
  color: #825C00;
  line-height: 1.2;
  letter-spacing: .1em;
}

.tab-btn span {
  display: block;
  font-weight: 400;
  font-size: 18px;
  font-weight: 400;
  color: #825C00;
  text-align: center;
}

input:checked + .tab-btn {
  opacity: 1;
}

input:checked + .tab-btn::after {
  transform: scale(1,1);
}


input:checked + .tab-btn + .content {
  display: block;
}

input:checked + .tab-btn + .content .content-inner {
  animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
  0% { opacity: 0;}
  100% { opacity: 1;}
}

@media screen and (max-width: 767px) {
  .tab-area::before {
    height: 80px;
    top: 20px;
  }
    
  .tab-btn {
    width: calc((100% - 20px ) / 2);

  }
        
  .tab-btn img {
    max-width: 84px;
    height: 80px;
    margin-right: 10px;
  }
  
  .tab-btn p {
    font-size: 18px;
    letter-spacing: .1em;
  }
  
  .tab-btn span {
    font-size: 12px;
  }   
}

/* tab-content */
.content {
  display: none;
  width: 100%;
  margin-top: 35px;
  border-top: solid 2px #9B7D35;
}

.content-inner {
  opacity: 0;
}

.recommend {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: fit-content;
  border-bottom: 2px solid #9B7D35;
  background-color: #fff;
  z-index: 1;
}

.recommend::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  background-color: #fff;
  rotate: 135deg;
  translate: -50%;
  z-index: -1;
}

.recommend::after {
  content: "";
  position: absolute;
  top: calc(100% + 9px);
  left: calc(50% - 23px);
  width: 30px;
  height: 2px;
  transform: rotate(40deg);
  box-sizing: border-box;
  background-color: #9B7D35;
}

.recommend div {
  width: calc((100% - 40px ) / 2);
}

.recommend-text h3 {
   font-size: 24px;
   font-weight: 700;
   line-height: 1.2;
   margin-bottom: 20px;
}

.recommend-text p {
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .content {
    margin-top: 30x;
  }

  .recommend {
    flex-wrap: wrap;
    padding: 20px 0;
  }
    
  .recommend div {
    width: 100%;
  }
  
  .recommend-text h3 {
     margin-bottom: 10px;
     font-size: 18px;
     text-align: center;
  }
  .recommend-text p {
    margin-bottom: 10px;
    font-size: 14px;
 }
}

/* 商品群 */
.tab-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 0 20px;
}

.tab-list-item {
  width: calc((100% - 80px) / 3);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.tab-list-item img {
  display: block;
  max-width: 200px;
  margin: 0 auto 20px;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.product-info {
  font-size: 16px;
  margin-bottom: 10px;
  flex-grow: 1;
}

.product-price {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.product-price span {
  display: inline-block;
  padding: 0 5px;
  font-family: "Roboto Condensed";
  font-size: 32px;
  font-weight: 700;
  color: #825C00;
  transform: translateY(.025em);
}

.product-btn {
  display: block;
  padding: 20px;
  font-family: "Noto Serif JP";
  color: #825C00;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  letter-spacing: .1em;
  border: solid 2px #825C00;
  background-color: #fff;
  position: relative;
  transition: all .3s;
}

.product-btn:hover {
  background-color: #825C00;
  color: #fff;
}

.product-btn::before ,
.product-btn::after {
  content: "";
  display: block;
  background-color: #825C00;
  box-sizing: border-box;
  position: absolute;
  transform: translateY(50%);
  transition: background-color 0.3s;
}
  
.product-btn::before {
  width: 20px;
  height: 2px;
  background-color: #825C00;
  top: 50%;
  right: 24px;
}

.product-btn::after {
  width: 12px;
  height: 2px;
  background-color: #825C00;
  top: calc(50% + -3px);
  right: 21px;
  transform: rotate(50deg);
}

.product-btn:hover::before ,
.product-btn:hover::after {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .tab-list {
    padding: 30px 0 20px;
  }
  
  .tab-list-item {
    width: calc((100% - 20px) / 2);
    margin-bottom: 20px;
  }
  
  .tab-list-item img {
    max-width: 165px;
    margin: 0 auto 20px;
  }
  
  .product-name {
    font-size: 16px;
  }
  
  .product-info {
    font-size: 14px;
  }
  
  .product-price {
    font-size: 12px;
  }
  
  .product-price span {
    font-size: 24px;
  }
  
  .product-btn {
    padding: 10px;
    font-size: 14px;
    letter-spacing: 0;
    border-width: 1px;
  }
  
  .product-btn:hover {
    background-color: #825C00;
    color: #fff;
  }
      
  .product-btn::before {
    width: 12px;
    height: 1px;
    right: 10px;
  }
  
  .product-btn::after {
    width: 6px;
    height: 1px;
    right: 10px;
    top: calc(50% + -2px);
  }
}
