@charset "UTF-8";
/*******************************************
    /css/pickup.css
*******************************************/
.pickup_txt_box h2 {
  position: relative;
  border-left: 3px solid #DC4013;
  margin: 20px 0 10px;
  padding-left: 0.5em;
  font-size: 2.2rem;
  font-weight: normal;
}
.pickup_txt_box h2::before {
  position: absolute;
  top: -40px;
  left: -3px;
  width: 1px;
  height: 40px;
  background: #DC4013;
  /* content: ''; */
}
@media screen and (min-width: 750px) {
  .pickup_txt_box h2 {
    margin: 35px 0 10px;
    font-size: 3rem;
  }
  .pickup_txt_box h2::before {
    top: -55px;
    height: 55px;
  }
}

/* 詳細はこちら */
/*------------------------------------------
	一覧ページ
------------------------------------------*/
.pickup_item {
  margin-top: 60px;
}
.pickup_item:first-of-type {
  margin-top: 0;
}
.pickup_item a {
  display: block;
}

.pickup_img_box {
  line-height: 0;
}

.pickup_txt_box {
  padding: 0 10px;
  margin-bottom: 10px;
}
.pickup_txt_box p {
  font-size: 1.3rem;
  padding-left: 1em;
}

@media screen and (min-width: 750px) {
  .pickup_list {
    display: flex;
    flex-wrap: wrap;
  }
  .pickup_item {
    /* カラムwidth - margin * marginの数 / カラムの数*/
    width: calc(50% - 15px);
    margin: 0 30px 0 0;
  }
  .pickup_item:nth-of-type(n+3) {
    margin-top: 60px;
  }
  .pickup_item:nth-of-type(2n) {
    margin-right: 0;
  }
  .pickup_img_box {
    width: 100%;
  }
  .pickup_txt_box {
    padding: 0 20px;
    margin-bottom: 10px;
  }
}
/*------------------------------------------
	詳細ページ
------------------------------------------*/
.detail_tit_box {
  text-align: center;
}

.detail_tit {
  position: relative;
  display: inline-block;
  max-width: calc(100% - 1em * 2);
  padding: 0 0.5em;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 700;
}
.detail_tit:before, .detail_tit:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 1em;
  height: 3px;
  background-color: #333;
}
.detail_tit:before {
  left: -1em;
}
.detail_tit:after {
  right: -1em;
}

.detail_img_box a {
  display: inline-block;
  margin-top: 20px;
}
.detail_img_box img {
  width: 100%;
}

.detail_txt_box {
  font-size: 1.6rem;
}

.detail_txt {
  margin-top: 1.5em;
}

.detail_link {
  position: relative;
  display: inline-block;
  padding-right: 1.5em;
  margin-top: 1em;
}
.detail_link::after {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1em;
  height: 1em;
  margin: auto;
  background: url(/images/common/arrow.svg) center/contain no-repeat;
  content: "";
}

.to_pickup {
  margin-top: 60px;
  text-align: center;
}
.to_pickup a {
  display: inline-block;
  padding: 0.5em 2em;
  font-size: 1.6rem;
  color: #fff;
  background-color: #DC4013;
  border-radius: 20px;
}

@media screen and (min-width: 750px) {
  .detail_area {
    text-align: center;
  }
  .detail_tit {
    font-size: 3.2rem;
  }
  .detail_tit:before, .detail_tit:after {
    width: 2.5em;
  }
  .detail_tit:before {
    left: -2.5em;
  }
  .detail_tit:after {
    right: -2.5em;
  }
  .detail_img_box a {
    width: 75%;
    margin-top: 30px;
  }
  .detail_txt_box {
    width: 75%;
    margin: 0 auto;
    text-align: left;
  }
  .detail_txt_box p {
    font-size: 1.8rem;
  }
  .to_pickup a {
    padding: 0.5em 3em;
    font-size: 1.8rem;
    color: #DC4013;
    background-color: #fff;
    border: 1px solid #DC4013;
    border-radius: 25px;
  }
  .to_pickup a:hover {
    color: #fff;
    background-color: #DC4013;
    opacity: 1;
  }
}/*# sourceMappingURL=pickup.css.map */