/*
	詳しくしりたい/店頭活動編
*/

/*----------------------------------------
	詳しくしりたい/店頭活動編
----------------------------------------*/
.rounder_search {
  font-size: 1.4rem;
}

.rounder_search:active {
  transform: translateY(6px);
  box-shadow: none;
}

.schedule {
  margin: 20px 7%;
}

.timeline_thumb {
  margin: 0 0 5px 0;
}

@media screen and (min-width: 768px) {
  .rounder_search {
    font-size: 2rem;
  }

  .rounder_search:active {
    transform: translateY(0.3vw);
    box-shadow: none;
  }

  .search_btn {
    width: 540px;
  }
}

/* NOTE: タイムラインに画像を設定した場合の文字回り込みの都合でブレークポイントを960pxにする */
@media screen and (min-width: 960px) {
  .timeline_thumb {
    margin: 0 10px 2px 0;
  }
}

/*----------------------------------------
	タイムライン 参考ページ：https://tympanus.net/codrops/2013/05/02/vertical-timeline/
  NOTE: メディアクエリはmax-widthによりモバイルファーストの優先度が逆なので注意
----------------------------------------*/
.cbp_tmtimeline {
  margin: 30px 0 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.cbp_tmtimeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  background: #afdcf8;
  left: 20%;
  margin-left: -10px;
}

.cbp_tmtimeline>li {
  position: relative;
}

.cbp_tmtimeline>li .cbp_tmtime {
  display: block;
  width: 25%;
  padding-right: 120px;
  position: absolute;
  top: 4px;
}

.cbp_tmtimeline>li .cbp_tmtime span {
  display: block;
  text-align: right;
}

.cbp_tmtimeline>li .cbp_tmtime span:first-child {
  font-size: 0.9em;
  color: #bdd0db;
}

.cbp_tmtimeline>li .cbp_tmtime span:last-child {
  color: #095ca8;
  font-size: 2.4rem;
  font-weight: bold;
}

.cbp_tmtimeline>li:nth-child(odd) .cbp_tmtime span:last-child {
  color: #44aeea;
}

/* Right content */
.cbp_tmlabel img {
  width: 100%;
  max-width: 340px;
  float: left;
}

.cbp_tmtimeline>li .cbp_tmlabel {
  margin: 0 0 15px 25%;
  background: #095ca8;
  color: #fff;
  padding: 2em;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
  border-radius: 5px;
  display: inline-block;
  width: 75%;
}

.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel {
  background: #44aeea;
}

.cbp_tmtimeline>li .cbp_tmlabel h3 {
  margin-top: 0px;
  margin-bottom: 10px;
  padding: 0 0 5px 0;
  border-bottom: 3px solid rgba(255, 255, 255, 0.4);
}

/* The triangle */
.cbp_tmtimeline>li .cbp_tmlabel:after {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #095ca8;
  border-width: 10px;
  top: 10px;
}

.cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {
  border-right-color: #44aeea;
}

.cbp_tmtimeline>li .cbp_tmicon {
  width: 40px;
  height: 40px;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 1.4em;
  line-height: 40px;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #fff;
  background: #46a4da;
  border-radius: 50%;
  box-shadow: 0 0 0 8px #afdcf8;
  text-align: center;
  left: 20%;
  top: 0;
  margin: 0 0 0 -25px;
}

.cbp_tmicon-screen:before {
  content: "e001";
}

.cbp_tmicon-mail:before {
  content: "e002";
}

.cbp_tmicon-earth:before {
  content: "e003";
}

/* NOTE: タイムラインに画像を設定した場合の文字回り込みの都合でブレークポイントを960pxにする */
@media screen and (max-width: 960px) {
  .cbp_tmtimeline:before {
    display: none;
  }

  .cbp_tmtimeline>li .cbp_tmtime {
    width: 100%;
    position: relative;
    padding: 0 0 20px 0;
  }

  .cbp_tmtimeline>li .cbp_tmtime span {
    text-align: left;
  }

  .cbp_tmlabel img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto 5px;
    float: initial;
  }

  .cbp_tmtimeline>li .cbp_tmlabel {
    margin: 0 0 30px 0;
    padding: 1em;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.6;
    display: block;
    width: auto;
  }

  .cbp_tmtimeline>li .cbp_tmlabel h3 {
    margin-bottom: 5px;
  }

  .cbp_tmtimeline>li .cbp_tmlabel:after {
    right: auto;
    left: 20px;
    border-right-color: transparent;
    border-bottom-color: #095ca8;
    top: -20px;
  }

  .cbp_tmtimeline>li:nth-child(odd) .cbp_tmlabel:after {
    border-right-color: transparent;
    border-bottom-color: #44aeea;
  }

  .cbp_tmtimeline>li .cbp_tmicon {
    display: none;
  }
}