@charset"utf-8";
.header-banner-img {display: none !important;}
/* PC・SP共通css */
/* Layout */
.page_wrapper{
  padding-top: 0;
}
.wrap * {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #070707;
}
/* PC・SP共通css */
:root {
  --red-color: #DC0823;
  --green-color: #4F8447;
}

/* Layout */
html {
	scroll-behavior: smooth;
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosansjp/v28/-F6pfjtqLzI2JPCgQBnw7HFQaioa1Xdj.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosansjp/v28/-F62fjtqLzI2JPCgQBnw7HFYwQgM.otf) format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosansjp/v28/-F6pfjtqLzI2JPCgQBnw7HFQei0a1Xdj.otf) format('opentype');
}

.wrap * {
  box-sizing: border-box;
  font-family: 'Noto Sans JP';
  font-weight: 700;
}

ul,li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #070707;
}

img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.wrap {
  width: 100%;
  background: #fff3e3;
  color: #070707;
  padding-top: 40px;
}

.content {
  max-width: 100%;
  padding-bottom: 128px;
}

.content1 {
  max-width: 1000px;
  margin: 128px auto 0;
}

/* Top Visual */
.topvisual {
  max-width: 1280px;
  margin: 0 auto;

}

.topvisual img {
  width: 100%;
}

.pc-img {
  display: block;
}

.sp-img {
  display: none;
}

/* statement */
.statement{
  max-width: 860px;
  margin: 160px auto 0;
  .heading{
    position: relative;
    background-color: #fff;
    padding: 12px 0 20px;
    &:before{
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      translate: -50% -50%;
      width: 100%;
      height: 180px;
      border-radius: 50%;
      background-color: #fff;
    }
  }
  .icon{
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% -100%;
    z-index: 2;
    width: 398px;
  }
  .copy{
    position: relative;
    z-index: 2;
    font-size: 32px;
    line-height: 1.8;
    text-align: center;
  }
  .note{
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.75;
    color: #515151;
    text-align: center;
  }
}

.anchor{
  max-width: 968px;
  margin: 80px auto 0;
  ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    a{
      position: relative;
      display: block;
      width: 312px;
      padding: 20px 0 48px;
      background-color: var(--green-color);
      border-radius: 8px;
      font-size: 24px;
      color: #fff;
      text-align: center;
      transition: .35s ease-out;
      &.x2{
          width: 640px;
      }
      &:before{
        content: "";
        position: absolute;
        bottom: 16px;
        left: 50%;
        translate: -50% 0;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: #fff;
      }
      &:after{
        content: "";
        position: absolute;
        bottom:22px;
        left: 50%;
        translate: -50% 0;
        border-style: solid;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        border-top: 8px solid var(--red-color);
        border-bottom: 0;
      }
      &:hover{
        background-color: #fff;
        color: #313131;
        &:before{
          background-color: var(--red-color);
        }
        &:after{
          border-top-color: #fff;
        }
      }
    }
  }
}

/* 見出しエリア */
.biketitle{
  .cat_heading{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 540px;
    height: 80px;
    margin: 0 auto;
    background-image: url('https://c1.cb-asahi.co.jp/page-images/page_1.0/banners/xmas/2025/bg_heading.png');
    background-size: cover;
    background-repeat: no-repeat;
    font-size: 48px;
    color: #fff;
    text-align: center;
  }
  .title{
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    margin-top: 16px;
  }
}

/* 商品アイテムエリア */
.content1 .item{
  padding: 48px 64px;
  margin-top: 32px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  & + .item {
    margin-top: 20px;
  }

  .item_name{
    font-size: 32px;

    .maker{
      display: block;
      margin-bottom: 4px;
      font-size: 20px;
    }
  }

  .item_content{
    display: flex;
    align-items: flex-start;
    margin-top: 16px;
    margin-bottom: 32px;
    border-bottom: 2px solid #D9D9D9;
    &.special{
      padding-bottom: 24px;
    }
    .item_img{
      width: 400px;
    }

    .item_textarea{
      flex: 1;
      margin-top: 40px;
      margin-left: 40px;

      /* 共通説明 */
      .explain{
        position: relative;
        padding-left: 32px;
        font-size: 22px;
        line-height: 1.5;
        & + .explain {
          margin-top: 12px;
        }
        &:before{
          content: "";
          position: absolute;
          top: 2px;
          left: 0;
          width: 24px;
          height: 24px;
          background-image: url('https://c1.cb-asahi.co.jp/page-images/page_1.0/banners/xmas/2025/santa_hat.svg');
          background-size: cover;
          background-repeat: no-repeat;
        }
      }

      /* リスト共通説明 */
      ul{
        .explain{
          line-height: 1.2;
        }
      }

      .price_area{
        display: flex;
        align-items: center;
        margin-top: 80px;
        .price_down_circle{
          display: flex;
          align-items: center;
          justify-content: center;
          width: 120px;
          height: 120px;
          margin-right: 12px;
          border-radius: 50%;
          background-image: url('https://c1.cb-asahi.co.jp/page-images/page_1.0/banners/xmas/2025/bg_price_off.png');
          background-size: cover;
          background-repeat: no-repeat;
          p{
            font-size: 28px;
            line-height: .9;
            color: #fff;
            text-align: center;
            span{
              font-size: 18px;
            }
          }
        }
      }

      .price_down{
        width: max-content;
        padding: 4px 8px;
        margin-top: 48px;
        margin-left: 32px;
        background-color: var(--red-color); 
        font-size: 28px;
        font-weight: 600;
        line-height: 1.4;
        color: #fff;
      }

      .base_price{
        font-size: 20px;
        color: #999;
        margin-top: 8px;
        &.space{
          margin-left: 32px;
        }
        span{
          text-decoration: line-through;
        }
      }

      .sale_price{
        font-size: 24px;
        line-height: 1;
        color: var(--red-color);
        white-space: nowrap;
        &.space{
          margin-left: 32px;
        }
        span{
          font-size: 64px;
        }
      }
    }
  }

  .cta_group{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 36px 0;
  }

  .cta_btn{
    display: block;
    position: relative;
    width: max-content;
    padding: 10px 64px 14px;
    margin: auto;
    border-radius: 48px;
    background-color: var(--green-color);
    border: 4px solid var(--green-color);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    color: #fff;
    text-align: center;
    transition: .35s ease-out;
    & + .cta_btn {
      margin-top: 24px;
    }
    &:before, &:after{
      content: "";
      position: absolute;
      top: 50%;
      translate: 0 -50%;
      z-index: 3;
      transition: .35s ease-out;
    }
    &:before{
      right: 20px;
      translate: 0 -50%;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background-color: #fff;
    }
    &:after{
      right: 25px;
      border-style: solid;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 8px solid var(--red-color);
      border-right: 0;
    }
    &:hover{
      background-color: #fff;
      color: #313131;
      &:before{
        background-color: var(--red-color);
      }
      &:after{
        border-left-color: #fff;
      }
    }
    .cta_txt{
      font-size: 18px;
    }
    .item_btn{
      margin-top: 8px;
      font-size: 24px;
      line-height: 1;
      text-align: center;
    }
  }
}

/* その他ボタン */
.other_btn{
  display: block;
  position: relative;
  width: max-content;
  padding: 14px 80px;
  margin: 40px auto 0;
  border-radius: 48px;
  background-color: #fff;
  border: 4px solid var(--green-color);
  font-size: 24px;  
  text-align: center;
  transition: .35s ease-out;
  & + .other_btn {
    margin-top: 16px;
  }
  &:before, &:after{
    content: "";
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    z-index: 3;
    transition: .35s ease-out;
  }
  &:before{
    right: 20px;
    translate: 0 -50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--red-color);
  }
  &:after{
    right: 26px;
    border-style: solid;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
    border-right: 0;
  }
  &:hover{
    background-color: var(--green-color);
    color: #fff;
  }
}

.parts_bnr{
    max-width: 1280px;
    margin: 128px auto 0;
    .parts_head{
        position: relative;
        width: max-content;
        margin: auto;
        font-size: 48px;
        &:before,&:after{
            content: '';
            position: absolute;
            top: 50%;
            translate: 0 -45%;
            width: 2px;
            height: 56px;
            background-color: var(--red-color);
        }
        &:before{
            left: -30px;
            rotate: -20deg;
        }
        &:after{
            right: -30px;
            rotate: 20deg;
        }
    }
    .txt{
        font-size: 32px;
        text-align: center;
    }
    a{
        display: block;
        transition: .35s ease-out;
        &:hover{
            box-shadow: 2px 2px 8px #aaa;
            opacity: .85;
        }
    }
}


#to_top {
  position: sticky;
  bottom: 5%;
  max-width: 1300px;
  margin: 0 auto;
}

#to_top .btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #026830;
  color: #ffffff;
  font-weight: bold;
  padding: 6px 12px;
  box-shadow: 1px 1px 10px -2px rgb(0 0 0 / 60%);
  cursor: pointer;
  text-align: center;
  border-radius: 8px;
  border: 3px solid #ffffff;
}

#to_top .btn:hover {
  background: #fb7171;
}



@media screen and (max-width: 750px) {
  .wrap{
    padding-top: 0;
  }
  .content{
    padding-bottom: 64px;
  }
/* Top Visual */
  .topvisual {
    border: 0;
  }

  .topvisual img {
    width: 100%;
  }

  .pc-img {
    display: none;
  }

  .sp-img {
    display: block;
  }

  .statement{
    width: 92%;
    margin: 120px auto 0;
    .heading{
      padding: 0 10px 20px;
      &:before{
        height: 140px;
      }
    }
    .icon{
      width: 64%;
      translate: -50% -125%;
    }
    .copy{
      font-size: 18px;
    }

    .note{
      margin-top: 12px;
      font-size: 12px;
      text-align: left;
    }
  }

  .anchor{
    margin-top: 40px;
    ul{
      flex-wrap: wrap;
      gap: 8px;
      width: 100%;
      padding: 0 4%;
      li{
        width: calc(50% - 4px);
      }
      a{
        width: 100%;
        padding: 12px 0 32px;
        font-size: 16px;
        &:before{
          bottom: 12px;
          width: 16px;
          height: 16px;
        }
        &:after{
          bottom: 16px;
          border-right: 4px solid transparent;
          border-left: 4px solid transparent;
          border-top: 6px solid var(--red-color);
        }
      }
    }
  }

  .content1{
    margin-top: 80px;
  }

  .biketitle{
    .title{
      padding: 0 4%;
      font-size: 18px;
    }
    .cat_heading{
      width: auto;
      height: auto;
      padding: 4px 0 6px;
      background-size: auto 100%;
      background-position: center;
      font-size: 24px;
    }
  }

  /* 商品アイテムエリア */
  .content1 .item{
    width: 92%;
    padding: 24px 5%;
    margin: 24px auto 0;
    background-color: #fff;
    & + .item {
      margin-top: 16px;
    }

    .item_name{
      font-size: 20px;

      .maker{
        display: block;
        margin-bottom: 4px;
        font-size: 16px;
      }
    }

    .item_content{
      display: block;
      background-color: #fff;
      padding: 0 0 20px;
      margin-bottom: 24px;
      margin-top: 12px;

      &.special{
        .item_textarea{
          .sale_price{
            span{
              font-size: 48px;
            }
          }
        }
      }

      .item_img{
        width: 100%;
      }

      .item_textarea{
        margin-top: 0;
        margin-left: 0;
        .explain{
          padding-left: 24px;
          font-size: 16px;
          &:before{
            top: 1px;
            width: 18px;
            height: 18px;
          }
        }

        .price_area{
          margin-top: 32px;

          .price_down_circle {
            width: 88px;
            height: 88px;
            margin-right: 8px;
            p{
              font-size: 22px;
              span{
                font-size: 14px;
              }
            }
          }
        }

        .base_price{
          margin-top: 4px;
          font-size: 16px;
        }

        .price_down{
          margin-top: 24px;
          font-size: 20px;
        }

        .sale_price{
          font-size: 16px;
          span{
            font-size: 44px;
          }
        }
      }
    }
    .cta_group{
      width: 100%;
      gap: 18px 0;
      li{
        width: 100%;
      }
    }
    .cta_btn{
      width: 100%;
      padding: 10px 24px;
      &:before{
        right: 8px;
        width: 18px;
        height: 18px;
      }
      &:after{
        right: 14px;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 6px solid var(--red-color);
      }
      .cta_txt{
        font-size: 13px;
      }
      .item_btn{
        margin-top: 4px;
        font-size: 18px;
        line-height: 1.35;
      }
    }
  }

  .other_btn {
    width: 92%;
    padding: 12px 0;
    margin-top: 24px;
    border-width: 2px;
    font-size: 16px;
    &:before{
      right: 12px;
      width: 18px;
      height: 18px;
    }
    &:after{
      right: 18px;
    }
  }


.parts_bnr{
    width: 92%;
    margin: 80px auto 0;
    .parts_head{
        width: 100%;
        font-size: 28px;
    }
    .txt{
        margin-top: 8px;
        font-size: 20px;
    }
}

  #to_top{
    z-index: 10;
  }
  #to_top .btn {
    font-size: 3.5vw;
    right: 1vw;
    padding: 1.5vw 3vw;
  }
}
