@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: #313131;
}
/* PC・SP共通css */
:root {
  --red-color: #DC0823;
  --pink-color: #FF89C4;
}

/* 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: #FFF4F8;
  color: #313131;
  padding-top: 40px;
}

.content {
  max-width: 100%;
  padding-bottom: 128px;

  h1,h2,h3,h4,h5,h6,p,span,strong {
    color: #313131;
  }
}

#sticky-nav{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #E9E9E9;
  color: #313131;
  padding: 4px 0;
  text-align: center;
  transition: opacity 0.3s;
  opacity: 1;

  &.hidden {
    opacity: 0;
    pointer-events: none; /* 非表示中にクリックできないように */
  }

  ul{
    display: flex;
    justify-content: center;
    gap: 0 56px;
  }
  a{
    position: relative;
    font-size: 16px;
    &:before{
      content: '';
      position: absolute;
      bottom: -2px;
      right: 0;
      transform: scale(0,1);
      transform-origin: right top;
      width: 100%;
      height: 2px;
      background-color: var(--pink-color);
      transition: transform .35s ease-out;
    }
    &:hover{
      &:before{
        transform: scale(1,1);
        transform-origin: left top;
      }
    }
  }
}

.content1 {
  padding-top: 40px;
  margin: 68px auto 0;
}

#cat02 {
  padding: 64px 0;
  background-color: #FFE2F0;
  border-radius: 100px;
}

/* Top Visual */
.topvisual {
  max-width: 1280px;
  margin: 0 auto;

}

.topvisual img {
  width: 100%;
}

.pc-img {
  display: block;
}

.sp-img {
  display: none;
}

/* statement */
.statement{
  margin-top: 72px;
  .sub_copy{
    font-size: 40px;
    font-weight: 700;
    text-align: center;
  }
  .main_copy{
    margin-top: 16px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }
  .note{
    margin-top: 36px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
  }
}

.anchor{
  max-width: 860px;
  margin: 80px auto 0;
  ul{
    display: flex;
    justify-content: center;
    justify-content: space-between;
    a{
      position: relative;
      display: block;
      width: 250px;
      padding: 24px 0 16px;
      background-color: #FAE0E8;
      border-radius: 8px;
      text-align: center;
      transition: .35s ease-out;
      .img{
        width: 128px;
        margin: auto;
        transition: .4s cubic-bezier(0.075, 0.82, 0.165, 1);
      }
      .link{
        position: relative;
        display: inline-block;
        padding-right: 32px;
        margin-top: 8px;
        font-size: 18px;
        font-weight: 600;
        color: #313131;
        &:before{
          content: "";
          position: absolute;
          top: 50%;
          right: 0;
          translate: 0 -50%;
          width: 24px;
          height: 24px;
          border-radius: 50%;
          background-color: #fff;
        }
        &:after{
          content: "";
          position: absolute;
          top: 50%;
          right: 7px;
          translate: 0 -50%;
          border-style: solid;
          border-right: 5px solid transparent;
          border-left: 5px solid transparent;
          border-top: 8px solid #FAE0E8;
          border-bottom: 0;
        }
      }
      &:hover{
        background-color: #FFE2F0;
        .img{
          transform: scale(1.08);
        }
        &:after{
          background-color: #FFE2F0;
        }
      }
    }
  }
}

/* 見出しエリア */
.biketitle{
  .cat_heading{
    font-size: 56px;
    text-align: center;
  }
  .title{
    margin-top: 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }
}

/* シティサイクル */
.content_city {
  padding-top: 48px;
  margin: 70px 0 0;
  .item_group{
    max-width: 796px;
    padding: 32px 60px;
    margin: 32px auto 0;
    background-color: #fff;
    border-radius: 8px;
    .item_name{
      font-size: 32px;
      font-weight: 700;
      .maker{
        display: block;
        font-size: 16px;
      }
      .note{
        display: block;
        font-size: 18px;
        font-weight: 600;
      }
    }
    .item_content{
      margin-top: 32px;
      .item_img{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 90%;
        margin: auto;
        .img{
          width: 48%;
        }
      }
      .item_textarea{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 16px;
        .explain{
          width: fit-content;
          padding: 2px 12px 4px;
          background-color: var(--red-color);
          font-size: 32px;
          line-height: 1.75;
          color: #fff;
        }
        .cta_group{
          display: flex;
          align-items: center;
          justify-content: space-between;
          width: 100%;
          padding: 20px 18px 20px 20px;
          margin-top: 32px;
          background-color: #FFE2F0;
          border-radius: 24px;
          + .cta_group{
            margin-top: 8px;
          }

          .date{
            position: relative;
            font-size: 24px;
            font-weight: 700;
            &:before{
              content: '';
              position: absolute;
              top: 50%;
              right: 0;
              width: 58px;
              height: 30px;
              transform: translate(108%, -50%);
              background-image: url('https://c1.cb-asahi.co.jp/page-images/page_1.0/banners/spring/2026/icon_arrow.svg');
            }
            .red{
              color: var(--red-color);
            }
          }
        }

        .cta_btn{
          display: block;
          position: relative;
          width: 318px;
          padding: 10px 24px 14px;
          border-radius: 48px;
          background-color: var(--pink-color);
          border: 4px solid var(--pink-color);
          font-size: 24px;
          color: #fff;
          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: 12px;
            translate: 0 -50%;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: #fff;
          }
          &:after{
            right: 30px;
            border-style: solid;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 8px solid var(--pink-color);
            border-right: 0;
          }
          &:hover{
            background-color: #fff;
            color: var(--pink-color);
            &:before{
              background-color: var(--pink-color);
            }
            &:after{
              border-left-color: #fff;
            }
          }
        }

        .item_btn{
          position: relative;
          display: block;
          width: fit-content;
          padding: 16px 82px 16px 28px;
          margin-top: 16px;
          border: 4px solid #FF89C4;
          background-color: #FF89C4;
          border-radius: 40px;
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          transition: .4s ease-out;
          &:hover{
            background-color: #fff;
            &:before{
              background-color: #FF89C4;
            }
            &:after{
              border-left: 8px solid #fff;
            }
            .txt{
              color: #FF89C4;
            }
          }
          &:before,
          &:after{
            content: '';
            position: absolute;
            top: 50%;
            transform: translate(0, -50%);
            transition: .4s ease-out;
          }
          &:before{
            right: 16px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: #fff;
          }
          &:after{
            right: 36px;
            border-style: solid;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 8px solid #ff89c4;
            border-right: 0;
          }
          .txt{
            font-size: 22px;
            font-weight: 700;
            color: #fff;
          }
        }


        .item_btn_txt{
          position: relative;
          display: inline-block;
          padding: 6px 48px 6px 18px;
          margin-top: 24px;
          border: 4px solid #ff89c4;
          border-radius: 28px;
          font-size: 18px;
          font-weight: 700;
          transition: .4s ease-out;
          &:before{
            content: '';
            position: absolute;
            top: 50%;
            right: 18px;
            z-index: 2;
            transform-origin: left top;
            transform: translate(0, -50%);
            border-style: solid;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-left: 6px solid #fff;
            border-right: 0;
            transition: transform .4s ease-out;
          }
          &:after{
            content: "";
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translate(0,-50%);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: var(--pink-color);
            transition: .4s ease-out;
          }
          &:hover{
            background-color: var(--pink-color);
            color: #fff;
            &:before{
              border-left: 6px solid var(--pink-color);
            }
            &:after{
              background-color: #fff;
            }
          }
        }
      }
    }
  }

  .store_campaign{
    max-width: 1280px;
    margin: 108px auto 0;
    h3{
      font-size: 40px;
      font-weight: 700;
      text-align: center;
    }
    .store_btn{
      display: block;
      margin-top: 8px;
      transition: .5s ease-out;
      img{
        transition: .5s ease-out;
      }
      &:hover{
        box-shadow: 0px 4px 16px 8px rgba(17,17,26,0.1);
        img{
          transform: translate(-2px,-2px);
        }
      }
    }
  }
}

/* 商品アイテムエリア */
.content1 {
  .item_wrap{
    max-width: 810px;
    padding: 48px 64px;
    margin: 32px auto 0;
    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;
      line-height: 1.5;

      .maker{
        display: block;
        font-size: 20px;
      }
    }

    .item_content{
      display: flex;
      align-items: flex-start;
      margin-top: 16px;
      .item_img{
        width: 280px;
      }

      .item_textarea{
        flex: 1;
        margin-left: 32px;

        .recommend{
          font-size: 16px;
          font-weight: 700;
          color: #003E80;
        }

        ul{
          margin-top: 4px;
          .explain{
            position: relative;
            padding-left: 26px;
            font-size: 18px;
            line-height: 1.2;
            & + .explain {
              margin-top: 12px;
            }
            &:before{
              content: "";
              position: absolute;
              top: 2px;
              left: 0;
              width: 20px;
              height: 20px;
              background-image: url('https://c1.cb-asahi.co.jp/page-images/page_1.0/banners/spring/2026/icon_sakura.svg');
              background-size: cover;
              background-repeat: no-repeat;
            }
          }
        }

        .price_area{
          margin-top: 24px;
          .base_price{
            font-size: 20px;
            color: #999;
            .line{
              text-decoration: line-through;
              color: #999;
            }
          }
          .price_off{
            width: fit-content;
            padding: 4px 10px 8px;
            margin-top: 8px;
            background-color: var(--red-color);
            font-size: 24px;
            line-height: 1;
            color: #fff;
          }
          .sale_price{
            font-size: 24px;
            line-height: 1;
            color: var(--red-color);
            white-space: nowrap;
            span{
              font-size: 48px;
              color: var(--red-color);
            }
          }
        }
      }
    }

    .cta_group{
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 18px 20px 20px;
      margin-top: 32px;
      background-color: #FFE2F0;
      border-radius: 24px;
      + .cta_group{
        margin-top: 8px;
      }

      .date{
        position: relative;
        font-size: 24px;
        font-weight: 700;
        &:before{
          content: '';
          position: absolute;
          top: 50%;
          right: 0;
          width: 58px;
          height: 30px;
          transform: translate(108%, -50%);
          background-image: url('https://c1.cb-asahi.co.jp/page-images/page_1.0/banners/spring/2026/icon_arrow.svg');
        }
        .red{
          color: var(--red-color);
        }
      }
    }

    .cta_btn{
      display: block;
      position: relative;
      width: 318px;
      padding: 10px 24px 14px;
      border-radius: 48px;
      background-color: var(--pink-color);
      border: 4px solid var(--pink-color);
      font-size: 24px;
      color: #fff;
      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: 12px;
        translate: 0 -50%;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background-color: #fff;
      }
      &:after{
        right: 30px;
        border-style: solid;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 8px solid var(--pink-color);
        border-right: 0;
      }
      &:hover{
        background-color: #fff;
        color: var(--pink-color);
        &:before{
          background-color: var(--pink-color);
        }
        &:after{
          border-left-color: #fff;
        }
      }
    }
  }

  /* その他ボタン */
  .other_link{
    width: max-content;
    margin: 24px auto 0;
    li{
      + li{
        margin-top: 12px;
      }
    }
    a{
      position: relative;
      display: block;
      padding: 8px 16px;
      border: 4px solid var(--pink-color);
      border-radius: 50px;
      background-color: #fff;
      font-size: 20px;
      font-weight: 700;
      transition: .4s ease-out;
      &:hover{
        background-color: var(--pink-color);
        .arrow{
          color: #fff;
          &:before{
            background-color: #fff;
          }
          &:after{
            border-left: 6px solid var(--pink-color);
          }
        }
      }
      .arrow{
        display: block;
        position: relative;
        padding-right: 40px;
        transition: .4s ease-out;
        &:before{
          content: '';
          position: absolute;
          top: 50%;
          right: 0;
          transform: translate(0, -50%);
          width: 24px;
          height: 24px;
          border-radius: 50%;
          background-color: var(--pink-color);
          transition: .4s ease-out;
        }
        &:after{
          content: "";
          position: absolute;
          top: 50%;
          right: 8px;
          transform: translate(0, -50%);
          border-style: solid;
          border-top: 4px solid transparent;
          border-bottom: 4px solid transparent;
          border-left: 6px solid #fff;
          border-right: 0;
          transition: .4s ease-out;
        }
      }
    }
  }
}

#to_top {
  position: sticky;
  bottom: 5%;
  max-width: 1300px;
  margin: 0 auto;
}

#to_top .btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--pink-color);
  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: #FFE2F0;
}