/*-------------------- top --------------------*/
#top_sp {
  padding: 0 1rem;
}
#top_sp {
  display: block;
}
#top_sp .logo_area {
      width: 57%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    padding: 3.75rem 0 3.125rem;
}
#top_sp .scroll_icon_sp {
  font-size: var(--fs-10px);
font-family: "Figtree", sans-serif;
font-weight: 700;
  color: #D5624E;
      margin-top: 10%;
}
#top_sp .scroll_icon_sp span {
  display: block;
  width: .45rem;
  height: auto;
  margin: .25rem auto 0;

  animation: scrollDown 4s infinite linear;
}
@keyframes scrollDown {
  0%{opacity: 1;}
  40%{opacity: 1;}
  60%{opacity: .25;}
  100%{opacity: .25;}
}
#top_sp .scroll_icon_sp span:nth-child(1) {
  margin: .5rem auto 0;
  animation-delay: -1.5s;
}
#top_sp .scroll_icon_sp span:nth-child(2) {
  animation-delay: -1s;
}
#top_sp .scroll_icon_sp span:nth-child(3) {
  animation-delay: -.5s;
}

#top_pc {
  display: none;
}
/*-------------------- //top --------------------*/
/*-------------------- news --------------------*/
#news .news_list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
#news .news_list .news_kiji_link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: .625rem;
    border: solid 1px #231815;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

/* アニメ用の破線ボーダー */
#news .news_list .news_kiji_link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 5px;
    pointer-events: none;
    opacity: 0;
    background:
        /* 上 */
        linear-gradient(90deg, #231815 50%, transparent 50%) repeat-x,
        /* 下 */
        linear-gradient(90deg, #231815 50%, transparent 50%) repeat-x,
        /* 左 */
        linear-gradient(0deg, #231815 50%, transparent 50%) repeat-y,
        /* 右 */
        linear-gradient(0deg, #231815 50%, transparent 50%) repeat-y;
    background-size:
        10px 1px,
        10px 1px,
        1px 10px,
        1px 10px;
    background-position:
        0 0,
        0 100%,
        0 0,
        100% 0;
}

#news .news_list .news_kiji_link:hover {
    border-color: transparent;
}

#news .news_list .news_kiji_link:hover::before {
    opacity: 1;
    animation: dashClockwise 0.8s linear infinite;
}

@keyframes dashClockwise {
    0% {
        background-position:
            0 0,
            0 100%,
            0 0,
            100% 0;
    }
    100% {
        background-position:
            10px 0,
            -10px 100%,
            0 -10px,
            100% 10px;
    }
}

#news .news_list .news_kiji_link .kiji_date {
    font-size: var(--fs-10px);
    font-weight: 600;
}
#news .news_list .news_kiji_link .kiji_txt {
    font-size: var(--fs-12px);
    font-weight: 600;
    line-height: 1.4;
    margin-top: .25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/*-------------------- //news --------------------*/
/*-------------------- release --------------------*/
#release .release_sub_tit {
  font-size: var(--fs-16px);
font-family: "kozuka-mincho-pr6n", serif;
    font-weight: 700;
}
#release .release_tit {
  font-size: var(--fs-32px);
font-family: "kozuka-mincho-pr6n", serif;
    font-weight: 700;
}
#release .release_date {
  font-size: var(--fs-16px);
font-family: "kozuka-mincho-pr6n", serif;
    font-weight: 700;
  line-height: .9;
    line-height: 1.3;
}
#release .release_date .year {
font-family: "kozuka-mincho-pr6n", serif;
    font-weight: 700;
  margin-right: .25rem;
}
#release .release_date b {
  font-size: var(--fs-24px);
font-family: "kozuka-mincho-pr6n", serif;
    font-weight: 700;
        margin: 0 .25rem;
}
/*-------------------- //release --------------------*/
/*-------------------- zepp tour --------------------*/
#zepp_tour .zepp_tour_sub_tit {
      margin-top: 1.25rem;
}
/*-------------------- //zepp tour --------------------*/
/*-------------------- history --------------------*/
#history .history_coming {
    font-size: var(--fs-18px);
    padding: 1rem;
}
/*-------------------- //history --------------------*/
/*-------------------- one man --------------------*/
/*-------------------- //one man --------------------*/

@media (min-width: 1100px) {
#news {
  width: 100%;
}
#release {
  width: calc((100% - 2.5rem) / 2);
}
#zepp_tour {
  width: calc((100% - 2.5rem) / 2);
}
#history {
  width: calc((100% - 2.5rem) / 2);
}
#one_man {
  width: calc((100% - 2.5rem) / 2);
}

#top_sp {
    padding: 0 2.5rem;
}
#top_sp {
  display: none;
}
#top_pc {
  display: block;
  position: relative;
  padding: 0 2.5rem;
}
#top_pc .logo_area {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 20%;
  height: auto;
  transform: translateX(-50%);
}
#news.common_sec {
    margin: 6.5rem auto 0;
}
}