@charset "UTF-8";
a {
  text-decoration: none;
}

.sm_txt {
  font-size: 0.9rem;
}

html,
body {
  overflow-x: hidden;
  box-sizing: border-box;
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

/* header */
header {
  width: 100%;
  background: #213e59;
  padding: 10px;
  text-align: center;
  height: 60px;
}
@media screen and (max-width: 767px) {
  header {
    height: auto;
  }
}

.headerWrap {
  width: 98%;
  max-width: 98%;
  margin: 20px 1%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .headerWrap {
    max-width: 60%;
    margin: 10px 1%;
  }
}

/* humberger_menu */
.h_menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  border: 1px solid #bda473;
  /* background-color: #3584bb; */
}
@media screen and (max-width: 767px) {
  .h_menu-btn {
    top: 10px;
    right: 10px;
  }
}

.h_menu-btn span,
.h_menu-btn span:before,
.h_menu-btn span:after {
  content: "";
  display: block;
  height: 2px;
  width: 25px;
  border-radius: 2px;
  background-color: #bda473;
  position: absolute;
}

.h_menu-btn span:before {
  bottom: 8px;
}

.h_menu-btn span:after {
  top: 8px;
}

#h_menu-btn-check:checked ~ .h_menu-btn span {
  background-color: rgba(0, 0, 0, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#h_menu-btn-check:checked ~ .h_menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#h_menu-btn-check:checked ~ .h_menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#h_menu-btn-check:checked ~ .h_menu-content {
  right: 0; /*メニューを画面内へ*/
}

#h_menu-btn-check {
  display: none;
}

.h_menu-content {
  width: 30%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -30%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: rgba(19, 43, 66, 0.9);
  transition: all 0.8s; /*アニメーション設定*/
}
@media screen and (max-width: 767px) {
  .h_menu-content {
    width: 80%;
    right: -80%; /*leftの値を変更してメニューを画面外へ*/
  }
}

.h_menu-content ul {
  padding: 70px 10px 0;
}

.h_menu-content ul li {
  border-bottom: dotted 1px #bda473;
  list-style: none;
}

.h_menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  font-weight: 600;
  padding: 20px 15px 10px 0;
  position: relative;
}

.h_menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #bda473;
  border-right: solid 2px #bda473;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.nav_btn_cva {
  width: 80%;
  margin: 50px 5%;
  display: block;
  padding: 20px 15px;
  border: 1px solid #bda473;
  border-radius: 5px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  color: #FFF;
  background: rgba(219, 221, 202, 0.3);
}
@media screen and (max-width: 767px) {
  .nav_btn_cva {
    font-size: 1rem;
  }
}

/* key visual */
.kv {
  width: 100%;
  background: url("https://www.lupicia.com/page/decaf/img/waves_bottom.svg"), url("https://www.lupicia.com/page/decaf/img/main_img.jpg"), #293f43;
  background-size: 100%, auto;
  background-position: center 101%, center;
  background-repeat: no-repeat, no-repeat;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .kv {
    background: url("https://www.lupicia.com/page/decaf/img/sp_main_img.jpg");
    height: 460px;
    background-size: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
  }
}
.kv h1 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 10px 220px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .kv h1 {
    padding: 20px 10px;
    text-align: center;
  }
}
.kv h1 img {
  width: 340px;
}
@media screen and (max-width: 767px) {
  .kv h1 img {
    width: 80%;
  }
}

/* about_decaf */
#about {
  width: 100%;
  background: #fff;
  text-align: center;
}
#about h2 img {
  width: 342px;
}
@media screen and (max-width: 767px) {
  #about h2 img {
    width: 80%;
  }
}

.about {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: url("https://www.lupicia.com/page/decaf/img/moon_star.png") no-repeat;
  background-position: top right;
}
@media screen and (max-width: 767px) {
  .about {
    background-position: 80% 40px;
    background-size: 60%;
  }
}
.about_ttl {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .about_ttl {
    padding-top: 200px;
  }
}
.about_lead {
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  font-size: 1rem;
  padding: 30px 10px;
}

.point {
  width: 100%;
  max-width: 900px;
  margin: 80px auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .point {
    display: block;
  }
}
.point_item {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .point_item {
    width: 96%;
    margin: 20px auto;
    text-align: center;
  }
}
.point_item img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .point_item img {
    width: 96%;
  }
}

.foryou {
  width: 100%;
  max-width: 860px;
  margin: 80px auto;
  display: flex;
  align-items: center;
}
.foryou_img {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .foryou_img {
    width: 94%;
    margin: 20px 3%;
  }
}
@media screen and (max-width: 767px) {
  .foryou {
    display: block;
  }
}
.foryouList {
  font-family: "Noto Serif JP", serif;
  text-align: left;
  font-size: 1rem;
  margin: 30px 10px 30px 10px;
  padding-left: 40px;
}
.foryouList li {
  margin: 10px;
  list-style-type: disc;
}

/* lineup */
#lineup {
  width: 100%;
  text-align: center;
  background: url("https://www.lupicia.com/page/decaf/img/waves_bottom.svg"), url("https://www.lupicia.com/page/decaf/img/waves_top.svg"), url("https://www.lupicia.com/page/decaf/img/bg_asa.jpg");
  background-position: center 100.2%, top center, center center;
  background-repeat: no-repeat, no-repeat, repeat;
  padding: 120px 10px 200px;
}
@media screen and (max-width: 767px) {
  #lineup {
    background-position: center 100%, top center, center center;
    padding: 100px 0 200px;
    background-size: 102%, 102%, auto;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    width: 100%;
    text-align: center;
  }
  h2 img {
    width: 80%;
    margin: 0 auto;
  }
}
.lineupList {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.lineupList_item {
  width: 33%;
  list-style-type: none;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  .lineupList_item {
    width: 42%;
    margin: 20px auto;
  }
}
.lineupList_item_img {
  position: relative;
}
@media screen and (max-width: 767px) {
  .lineupList_item_img img {
    width: 90%;
  }
}
.lineupList_item h3 {
  color: #213e59;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  padding: 10px;
}
.lineupList_item_txt {
  font-family: "Noto Sans JP", sans-serif;
  color: #7e5a3f;
  font-size: 0.9rem;
}

.icon_new::after {
  position: absolute;
  content: url("https://www.lupicia.com/page/decaf/img/icon_new.png");
  width: 100px;
  height: 40px;
  display: block;
  z-index: 10;
  top: -5px;
  left: -5px;
}
@media screen and (max-width: 767px) {
  .icon_new::after {
    top: -10px;
    left: -20px;
  }
}

.btn_buy {
  display: block;
  background: #213e59;
  color: #bda473;
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 20px;
  border-radius: 5px;
  width: 96%;
  max-width: 300px;
  margin: 10px auto;
}

footer {
  width: 100%;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  padding: 100px 10px;
}/*# sourceMappingURL=style.css.map */