* {
  box-sizing: border-box;
}

:root {
  --brown_color: #986743;
  --green_color: #3c8405;
  --text_light_gray: #dedede;
  --icon_magenta: #f900c7;
  --wrap: 1240px;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 1920px;
  position: relative;
  background-color: #000;
}

button {
  border: none;
  background-color: none;
  outline: none;
  cursor: pointer;
}

.wrap {
  width: 100%;
}

/* banner */

.banner_wrap {
  width: 100%;
  height: 600px;
  background-color: #fff;
}

.banner {
  width: var(--wrap);
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.site_map {
  position: absolute;
  font-size: 14px;
  color: #707070;
  top: 25px;
}

.site_map a:hover {
  text-decoration: underline;
}

.item_img {
  width: 715px;
  margin-right: 20px;
}

.item_info {
  width: 505px;
}

.item_name {
  font-weight: 700;
  font-size: 28px;
  color: #222;
  margin-top: 120px;
}

.item_comment {
  font-size: 16px;
  color: #686868;
  margin-top: 18px;
  position: relative;
}

.item_comment:after {
  content: '';
  display: block;
  width: 85px;
  height: 2px;
  background-color: #cfcfcf;
  position: absolute;
  top: 36px;
  left: 0;
}

.item_intensity {
  margin-top: 52px;
  width: 250px;
  display: flex;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.intensity_bar {
  width: 150px;
  height: 10px;
  background-color: var(--brown_color);
  margin: 0 16px;
}

.intensity_number {
  font-weight: 300;
}

.item_size {
  display: flex;
  align-items: flex-end;
  font-size: 16px;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.item_size .size {
  margin-right: 15px;
}

.item_size .cups {
  width: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.lungo_size {
  filter: grayscale(100%);
}

.aroma_profile {
  font-size: 16px;
  margin-bottom: 24px;
}

.aroma_note {
  font-size: 16px;
  margin-bottom: 30px;
}

.aroma_profile span,
.aroma_note span {
  font-weight: 300;
  color: #686868;
}

.item_price {
  display: flex;
  align-items: flex-end;
  margin-bottom: 18px;
}

.item_price .price {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--green_color);
  margin: 0 10px 0 0;
}

.item_price .note {
  font-size: 12px;
  color: #bfbfbf;
}

.basket {
  width: 295px;
  height: 36px;
  background-color: transparent;
  border: 1px solid var(--green_color);
  border-radius: 50px;
  font-size: 14px;
  line-height: 36px;
  color: var(--green_color);
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}

.basket p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.basket:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -295px;
  width: 295px;
  height: 36px;
  border-radius: 50px;
  background-color: var(--green_color);
  transition: 0.3s;
}

.basket:hover {
  color: #fff;
}

.basket:hover:before {
  left: 0;
}
/* banner */

/* more_info */

.more_info {
  width: 100%;
  height: 105px;
  background-color: #0d0c0c;
  position: relative;
}

/* more_info */

/* item_page */
.item_page_wrap {
  width: 100%;
  height: 4300px;
  position: relative;
}

.item_page {
  width: var(--wrap);
  margin: 0 auto;
}

.arpeggio_lettering img {
  width: 610px;
  display: block;
  margin: 0 auto;
  padding-top: 60px;
  text-align: center;
}

.arpeggio_text {
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 32px;
  margin-top: 24px;
  color: #fff;
  text-align: center;
}

.capsule_img img {
  width: 200px;
  display: block;
  margin: 44px auto;
}

.page_intensity {
  width: 300px;
  margin: 36px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page_intensity_bar {
  width: 220px;
  height: 16px;
  background-color: #fff;
  border-radius: 5px;
}

.page_intensity_text {
  font-size: 20px;
  letter-spacing: 0.03em;
  color: #fff;
}

.page_intensity_number {
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}
.tasty_note {
  width: 610px;
  height: 270px;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 30px auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.tasty {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.tasty p {
  font-size: 20px;
  text-align: right;
  width: 60px;
  letter-spacing: 0.05em;
  color: #fff;
  margin-right: 16px;
}

.tasty .bar_back {
  width: 120px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

/* tasty_bar */
.bar {
  position: absolute;
  height: 16px;
  background-color: #fff;
  border-radius: 5px;
  transition: 0.8s;
}
/* tasty_bar */

.page_con {
  width: var(--wrap);
  margin: 280px auto;
  display: flex;
  flex-direction: column;
}

.page_img {
  width: 820px;
  box-shadow: 0 0 20px rgba(163, 88, 181, 1);
}

.page_text .title {
  color: #fff;
}

.page_text .main {
  color: #d4d4d4;
}

.page_text .title {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.03em;
}

.page_text .main {
  font-size: 18px;
  line-height: 34px;
  margin-top: 10px;
}

.page_img_1 {
  margin-left: 105px;
}

.page_text_1 {
  text-align: right;
}

.page_con_2 {
  margin-top: 150px;
}

.page_img_2 {
  margin-left: 315px;
}

.page_text_2 {
  text-align: left;
}

.item_ingredient {
  width: var(--wrap);
  margin: 160px auto;
}

.item_ingredient .title {
  font-size: 24px;
  letter-spacing: 0.03em;
  color: #c2c2c2;
}

.item_ingredient .text {
  font-size: 15px;
  font-weight: 300;
  color: #919191;
  line-height: 20px;
  margin-top: 24px;
}

.item_page_wrap {
  width: 100%;
  background: url(../img/arpeggio_back.png) no-repeat;
  background-attachment: fixed;
}
/* item_page */
