@charset "utf-8";

/* ======================================
ハニー珈琲の美味しい淹れ方
====================================== */

/* フッタのアーチ消し */
footer .arc {
  display: none;
}

/* メイン */
.main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  color: #fff;
  text-align: center;
  background: url(../img/coffee_brew/main_sp.jpg) no-repeat center top / cover;
}

.main_tl {
  font-weight: bold;
  font-size: 14px;
  line-height: 15px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.main_tl span {
  display: block;
}

.main_tl .large {
  font-size: 30px;
  line-height: 50px;
}

.main_tl .box {
  width: 55px;
  margin: 0 auto;
  padding: 0 5px;
  font-size: 17px;
  line-height: 28px;
  border: 1px solid #fff;
}

.main_txt {
  margin-top: 15px;
  font-size: 10px;
  line-height: 2;
}

@media (min-width: 768px) {
  .main {
    height: 600px;
    background-image: url(../img/coffee_brew/main_pc.jpg);
  }

  .main_tl {
    font-size: 24px;
    line-height: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  .main_tl .large {
    font-size: 60px;
    line-height: 100px;
  }

  .main_tl .box {
    width: 110px;
    padding: 0 10px;
    font-size: 34px;
    line-height: 58px;
  }

  .main_txt {
    margin-top: 30px;
    font-size: 14px;
  }
}

/* Item Select */
.item_select {
  padding: 6.6667% 0 13.3334%;
  background-color: #f3f0e9;
}

.item_select_tl {
  color: #2b2b2b;
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
}

.item_select_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 180px;
  margin: 8% auto 0;
}

.item_select_list > li {
  flex-basis: 76px;
  color: #2b2b2b;
  font-weight: bold;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
}

.item_select_list > li > a {
  display: block;
}

.item_select_list > li > a::before {
  display: block;
  width: 76px;
  height: 76px;
  margin-bottom: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 38px;
  transition: all 0.5s ease-in-out;
  content: "";
}

.item_select_list > li > a:hover::before {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  transform: scale(1.05, 1.05);
  transition: all 0.3s ease-in-out;
}

.item_select_list > li:nth-child(1),
.item_select_list > li:nth-child(2) {
  margin-bottom: 20px;
}

.item_select_list > li:nth-child(1) > a::before {
  background-image: url(../img/coffee_brew/item_icon_1.png);
  background-size: 55px auto;
}

.item_select_list > li:nth-child(2) > a::before {
  background-image: url(../img/coffee_brew/item_icon_2.png);
  background-size: 38px auto;
}

.item_select_list > li:nth-child(3) > a::before {
  background-image: url(../img/coffee_brew/item_icon_3.png);
  background-size: 29px auto;
}

.item_select_list > li:nth-child(4) > a::before {
  background-image: url(../img/coffee_brew/item_icon_4.png);
  background-size: 46px auto;
}

@media (min-width: 768px) {
  .item_select {
    padding: 50px 0 100px;
  }

  .item_select_tl {
    font-size: 20px;
    line-height: 30px;
  }

  .item_select_list {
    width: 780px;
    margin: 20px auto 0;
  }

  .item_select_list > li {
    flex-basis: 150px;
    font-size: 14px;
    line-height: 20px;
  }

  .item_select_list > li > a::before {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
    border-radius: 75px;
  }

  .item_select_list > li > a:hover::before {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  }

  .item_select_list > li:nth-child(1) > a::before {
    background-size: 110px auto;
  }

  .item_select_list > li:nth-child(2) > a::before {
    background-size: 76px auto;
  }

  .item_select_list > li:nth-child(3) > a::before {
    background-size: 58px auto;
  }

  .item_select_list > li:nth-child(4) > a::before {
    background-size: 92px auto;
  }
}

/* 動画 */
.details_wrapper {
  padding-top: 13.3334%;
}

.details {
  padding: 0 13.3334%;
}

.details_inner {
  color: #2b2b2b;
}

.details_inner:not(:first-child) {
  margin-top: 25.4546%;
}

.details_img {
  overflow: hidden;
  border-radius: 5px;
}

.details_img.sp {
  display: block;
  width: 225px;
  margin: 0 auto;
}

.details_img.pc {
  display: none;
}

.details_tl {
  margin-bottom: 15px;
  padding: 7px 0 7px 60px;
  font-weight: bold;
  font-size: 15px;
  line-height: 20px;
}

.details_inner:nth-child(1) .details_tl {
  background: url(../img/coffee_brew/item_icon_1.png) no-repeat left center /
    55px auto;
}

.details_inner:nth-child(2) .details_tl {
  background: url(../img/coffee_brew/item_icon_2.png) no-repeat 5px center /
    38px auto;
}

.details_inner:nth-child(3) .details_tl {
  background: url(../img/coffee_brew/item_icon_3.png) no-repeat 10px center /
    29px auto;
}

.details_inner:nth-child(4) .details_tl {
  background: url(../img/coffee_brew/item_icon_4.png) no-repeat 2px center /
    46px auto;
}

.details_tl span {
  display: block;
  font-weight: normal;
  font-size: 10px;
}

.details_txt {
  margin: 20px 0;
  font-size: 12px;
  line-height: 1.75;
}

.details_btn {
  display: block;
  width: 140px;
  margin: 0 auto;
  padding: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  background-color: #2b2b2b;
  border-radius: 18px;
}

.details_btn:hover {
  background-color: #2c1b1e;
  transition: background-color 0.5s;
}

@media (min-width: 768px) {
  .details_wrapper {
    padding-top: 120px;
  }

  .details {
    width: 1000px;
    margin: 0 auto;
    padding: 0;
  }

  .details_inner {
    display: flex;
    justify-content: space-between;
    padding-left: 120px;
    color: #2b2b2b;
  }

  .details_inner:nth-child(1) {
    background: url(../img/coffee_brew/item_icon_1.png) no-repeat left top /
      110px auto;
  }

  .details_inner:nth-child(2) {
    background: url(../img/coffee_brew/item_icon_2.png) no-repeat 17px top /
      76px auto;
  }

  .details_inner:nth-child(3) {
    background: url(../img/coffee_brew/item_icon_3.png) no-repeat 26px top /
      58px auto;
  }

  .details_inner:nth-child(4) {
    background: url(../img/coffee_brew/item_icon_4.png) no-repeat 9px top / 92px
      auto;
  }

  .details_inner:not(:first-child) {
    margin-top: 150px;
  }

  .details_box {
    flex: 1;
  }

  .details_img {
    margin-left: 40px;
    border-radius: 10px;
  }

  .details_img.sp {
    display: none;
  }

  .details_img.pc {
    display: block;
  }

  .details_tl {
    margin-bottom: 0;
    padding: 0;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    background-image: none !important;
  }

  .details_tl span {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .details_txt {
    margin: 40px 0;
    font-size: 14px;
    line-height: 2;
  }

  .details_btn {
    width: 210px;
    margin: 0;
    padding: 10px;
    font-size: 14px;
    line-height: 30px;
    border-radius: 25px;
  }
}

/* 動画のリンク */
.movies {
  margin: 0 0 20px 1em;
  font-size: 12px;
  line-height: 1.75;
  list-style-type: disc;
}

.movies > li a {
  text-decoration: underline;
}

.movies > li a:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .movies {
    margin: 0 0 40px 1em;
    font-size: 14px;
    line-height: 2;
  }
}
