body {
  margin: 0;
  overflow-x: hidden; }

.contentWrap {
  margin: auto;
  width: 1024px;
  max-width: 100%; }

.col-red {
  color: #c00000; }

.tableLayout {
  border-collapse: collapse;
  width: 100%; }
  .tableLayout th {
    background-color: #f3f3f3;
    padding: 6px 0.5em;
    border: solid 1px #ccc;
    font-size: 14px;
    width: 10em; }
  .tableLayout td {
    background-color: white;
    padding: 6px 3px;
    border: solid 1px #ccc;
    font-size: 14px; }

.listRow {
  display: flex;
  justify-content: left;
  gap: 24px;
  border-bottom: solid 1px #ccc; }
  .listRow-pad {
    padding-bottom: 12px;
    margin-bottom: 12px; }
  .listRow_title {
    min-width: 10em;
    font-weight: bold; }
  .listRow_value {
    width: 100%;
    word-break: break-all; }

@media screen and (max-width: 767px) {
  .listRow {
    display: block;
    border-bottom: none; }
    .listRow_title {
      min-width: inherit;
      width: 100%;
      padding-bottom: 6px; }
    .listRow_value {
      padding-bottom: 12px;
      border-bottom: solid 1px #ccc; } }
.label-xs {
  font-size: 12px; }

.btnsWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px; }

.btns {
  font-size: 14px;
  text-align: center;
  display: block;
  padding: 0.5em 1.5em;
  background-color: black;
  color: white;
  border: 1px solid black;
  cursor: pointer;
  transition: background-color .3s ,color .3s; }
  .btns:hover {
    background-color: white;
    color: black; }
  .btns-2 {
    color: black;
    border: 1px solid black;
    background-color: white; }
    .btns-2:hover {
      background-color: black;
      color: white; }
  .btns-3 {
    color: white;
    border: 1px solid #626262;
    background-color: #626262; }
    .btns-3:hover {
      background-color: white;
      color: #626262; }
  .btns-full {
    width: 100%; }

@media screen and (max-width: 767px) {
  .btnsWrap {
    flex-wrap: wrap; }

  .btns-1 {
    width: 100%; } }
.link {
  font-size: 14px;
  display: block;
  padding: 0.5em 1.5em;
  color: black;
  border: 1px solid transparent;
  text-decoration: underline;
  transition: opacity .3s; }
  .link:visited, .link:link {
    text-decoration: underline; }
  .link:hover {
    text-decoration: none;
    opacity: .85; }

.confirmList {
  margin: 0;
  padding: 0; }
  .confirmList_item {
    list-style: none;
    padding-bottom: 24px; }

.confirmRow_title {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 12px;
  margin: 0; }
.confirmRow_body {
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  padding-bottom: 12px;
  word-break: break-all; }

.cartProducts_item {
  border-bottom: solid 2px;
  padding: 12px 0; }

.cartProductRow {
  display: flex;
  align-items: center; }
  .cartProductRow_data {
    width: 65%;
    display: flex;
    align-items: center; }
  .cartProductRow_imgWrap {
    min-width: 7em;
    max-width: 7em; }
  .cartProductRow_img {
    max-width: 100%; }
  .cartProductRow_detail {
    width: calc( 100% - 7em - 12px);
    display: flex;
    align-items: center; }
  .cartProductRow_title {
    width: 15em;
    padding-left: 12px; }
  .cartProductRow_types {
    display: flex;
    width: calc( 100% - 15em - 12px);
    align-items: center; }
  .cartProductRow_option {
    width: 100%; }
  .cartProductRow_unitPrice {
    width: 100%; }
  .cartProductRow_unit {
    width: 35%;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .cartProductRow_quantity {
    display: flex;
    align-items: center;
    gap: 6px; }
  .cartProductRow_quantityText {
    display: none; }

@media screen and (max-width: 767px) {
  .cartProductRow {
    display: block; }
    .cartProductRow-header {
      display: none; }
    .cartProductRow_data {
      width: 100%;
      align-items: flex-start;
      padding-bottom: 8px; }
    .cartProductRow_detail {
      width: 100%;
      display: block; }
    .cartProductRow_types {
      display: flex;
      width: 100%;
      padding-left: 12px;
      align-items: center; }
      .cartProductRow_types > *:first-child {
        order: 5; }
      .cartProductRow_types > * {
        order: 1; }
    .cartProductRow_quantityText {
      display: block; }
    .cartProductRow_unit {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center; } }
.lineFriendField {
  background-color: white;
  margin-top: 36px;
  padding: 30px 0;
  height: auto;
  margin-bottom: 60px;
  position: relative; }
  .lineFriendField:after {
    transform: rotateZ(-4deg) translateX(-5%);
    background-color: #d8d8d8;
    width: 150vw;
    height: calc( 100% - 10% );
    display: block;
    z-index: 5;
    position: absolute;
    content: " ";
    top: 0;
    left: 0; }
  .lineFriendField_data {
    padding: 36px 16px 60px;
    position: relative;
    z-index: 1010; }
  .lineFriendField_title {
    font-weight: bold;
    color: #c00000;
    font-size: 24px; }
  .lineFriendField_subTitle {
    font-size: 18px;
    padding-bottom: 10px; }
  .lineFriendField_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0;
    padding: 3.25em 0; }

@media screen and (max-width: 767px) {
  .lineFriendField_title {
    font-size: 16px; }
  .lineFriendField_subTitle {
    font-size: 14px;
    padding-bottom: 8px; }
  .lineFriendField_list {
    gap: 10px;
    padding: 1em 1.5em; } }
.meritData {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  width: calc( 50% - 16px); }
  .meritData_icon {
    width: 50px;
    min-width: 50px;
    text-align: center; }
    .meritData_icon img {
      max-width: 100%; }
  .meritData_text {
    font-size: 16px;
    font-weight: bold; }

@media screen and (max-width: 767px) {
  .meritData {
    width: 100%; }
    .meritData_text {
      font-size: 14px; } }
.paymentHistories {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px; }
  .paymentHistories_item {
    padding: 12px;
    border: solid 2px #cccccc; }

.summaryBox {
  width: 100%; }
  .summaryBox-320 {
    width: 320px; }
  .summaryBox_row {
    display: flex;
    padding-bottom: 12px;
    justify-content: space-between;
    align-items: center; }
    .summaryBox_row:last-child {
      padding-bottom: 0; }
  .summaryBox_head {
    display: flex;
    align-items: center; }
  .summaryBox_title {
    min-width: 5.5em; }
  .summaryBox_body {
    text-align: right; }
  .summaryBox_val-lef {
    text-align: left; }

.subscriptionItem_header {
  padding-bottom: 12px;
  border-bottom: solid 2px #ccc; }
.subscriptionItem_body {
  padding-top: 12px; }
.subscriptionItem_shipDate {
  margin: 0;
  text-align: center;
  font-weight: bold;
  padding-bottom: 12px; }
.subscriptionItem_shipTitle {
  margin: 0;
  text-align: center;
  padding-bottom: 6px;
  font-weight: bold; }

.subscriptionInfo {
  width: 320px;
  border: solid 2px #ccc;
  padding: 12px 24px; }
  .subscriptionInfo_title {
    padding-top: 1em;
    padding-bottom: 0.25em;
    font-weight: bold; }
  .subscriptionInfo_box {
    padding-bottom: 8px; }
  .subscriptionInfo_address {
    word-break: break-all; }

.privateInfo {
  display: flex;
  gap: 6px;
  padding-bottom: 12px; }
  .privateInfo_time {
    font-size: 11px;
    display: block; }
  .privateInfo_title {
    font-size: 14px;
    display: block; }
  .privateInfo_link {
    font-size: 14px;
    display: block;
    color: #ed8b8b; }

@media screen and (max-width: 767px) {
  .privateInfo {
    display: block; } }
.privateInfoField {
  position: relative; }
  .privateInfoField_header {
    transform: translateY(-50%);
    width: 8em;
    margin: auto;
    color: white;
    background-color: #9A9A9A;
    padding: 6px; }
  .privateInfoField_body {
    border: solid 2px #ccc;
    padding: 24px;
    padding-top: 48px; }

.cardList {
  border: solid 2px #9A9A9A;
  padding: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px; }
  .cardList_item {
    border-bottom: solid 1px #ccc;
    padding: 12px;
    min-width: 265px; }
  .cardList_name {
    font-weight: bold; }
  .cardList_val {
    padding-bottom: 8px; }
  .cardList_row {
    display: flex; }
  .cardList_links {
    display: flex; }
  .cardList-bres {
    border: none; }

.header-order-flow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
  margin-bottom: 24px;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -1em; }

.header-order-flow.-step1 .header-order-flow-item:first-child {
  color: #000;
  font-weight: 700; }

.header-order-flow.-step1 .header-order-flow-item:first-child:before {
  background: #000; }

.header-order-flow.-step2 .header-order-flow-item:first-child {
  color: #000; }

.header-order-flow.-step2 .header-order-flow-item:first-child:after {
  background: #000; }

.header-order-flow.-step2 .header-order-flow-item:nth-child(2) {
  color: #000;
  font-weight: 700; }

.header-order-flow.-step2 .header-order-flow-item:nth-child(2):before {
  background: #000; }

.header-order-flow.-step3 .header-order-flow-item:nth-child(2) {
  color: #000; }

.header-order-flow.-step3 .header-order-flow-item:nth-child(2):after {
  background: #000; }

.header-order-flow.-step3 .header-order-flow-item:nth-child(3) {
  color: #000;
  font-weight: 700; }

.header-order-flow.-step3 .header-order-flow-item:nth-child(3):before {
  background: #000; }

.header-order-flow-item {
  position: relative;
  color: #999;
  padding-right: 30px;
  letter-spacing: .02em;
  font-size: 12px; }

.header-order-flow-item:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e5e5e5; }

.header-order-flow-item:before {
  position: relative;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-bottom: 8px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50%;
  background: #e5e5e5;
  z-index: 1; }

.header-order-flow-item:first-child:after {
  left: 2em; }

.header-order-flow-item:nth-child(2):after {
  left: 1.5em; }

.header-order-flow-item:last-child {
  padding-right: 0; }

.header-order-flow-item:last-child:after {
  display: none; }

@media screen and (max-width: 767px) {
  body:not(.home) .hero-slider.imgFv .hero-page-title {
    top: inherit;
    bottom: 50px;
    left: 0;
    right: inherit;
    padding: 5px 30px;
    font-size: 16px;
    letter-spacing: 2px; }

  body:not(.home) .hero-slider.imgFv .swiper-slide:before {
    display: none; }

  body:not(.home) .hero-slider.imgFv .swiper-slide {
    height: 50vh; } }
.dif.nav-tabs {
  border: none !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 12px; }
  .dif.nav-tabs li {
    min-width: 8em;
    text-align: center;
    padding: 6px 12px;
    border: solid 1px black;
    border-radius: 6px; }
    .dif.nav-tabs li a {
      border: none !important; }
    .dif.nav-tabs li.active {
      background-color: black;
      color: white; }
      .dif.nav-tabs li.active a {
        background-color: black;
        color: white; }
      .dif.nav-tabs li.active a:hover, .dif.nav-tabs li.active a:active, .dif.nav-tabs li.active a:visited {
        background-color: black !important;
        color: white !important;
        border: none !important; }
    .dif.nav-tabs li a:hover, .dif.nav-tabs li a:active, .dif.nav-tabs li a:visited {
      background-color: white !important;
      color: black !important; }

.underLayerHeader .title::after {
  display: none !important; }

.underLayerHeader .title::before {
  width: 80px !important;
  background-color: #c3c3c3 !important; }

.underLayerHeader .title_text {
  background: none !important;
  transform: translateY(0) !important; }

.note-list,
.textNote-list {
  font-size: 11px; }

@media screen and (max-width: 767px) {
  .section-hero .img-fluid {
    display: none; }

  .noteText p {
    font-size: 12px; }

  .underLayerHeader .title::before {
    width: 40px !important;
    background-color: #c3c3c3 !important; }

  button.btns:not(.btns-box), a.btns:not(.btns-box), input.btns:not(.btns-box) {
    -webkit-appearance: button;
    width: 180px;
    display: inline-block;
    padding: 16px 0;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0 !important; } }

/*# sourceMappingURL=style.css.map */
