@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, ar, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

@-webkit-keyframes ani-loading {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400px 0;
  }
}

@keyframes ani-loading {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400px 0;
  }
}

body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.2;
  overflow-x: hidden;
  background: #ddd;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin: 0 auto;
  width: 100%;
}

select, button, textarea, input {
  font-family: "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: none;
}

table {
  border-collapse: collapse;
}

a, a:focus {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

a:active {
  outline: none;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100%;
}

.btn {
  display: block;
  width: 100%;
  font-size: 1.25em;
  font-weight: 400;
  background: #ffffff;
  color: #d64e43;
  line-height: 1.2;
  border: 1px solid #d64e43;
  border-radius: 8px;
  text-align: center;
  padding: 11px;
  cursor: pointer;
}

.btn--green {
  border-color: #00b900;
  background: #00b900;
  color: #ffffff;
}

.btn--primary {
  background: #d64e43;
  color: #ffffff;
}

.btn--disabled {
  color: #717171;
  background: #e8e8e8;
  border-color: #e8e8e8;
  cursor: not-allowed;
}

/*----- form -----*/
.form__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  z-index: 1;
  padding: 0 18px;
  font-size: 1em;
  font-weight: 500;
  color: #333333;
  background: #ffffff;
  border: 1px solid #e1e1e5;
  border-radius: 8px;
  height: 48px;
  width: 100%;
}

.form__input:disabled, .form__input [disabled] {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
  -webkit-text-fill-color: #999;
  opacity: 1;
}

.form__input::-webkit-input-placeholder {
  color: #333333;
}

.form__input::-moz-placeholder {
  color: #333333;
}

.form__input:-ms-input-placeholder {
  color: #333333;
}

.form__input::-ms-input-placeholder {
  color: #333333;
}

.form__input::placeholder {
  color: #333333;
}

.form__checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  position: relative;
}

.form__check {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.form__check:disabled + .form__checklabel,
.form__check[disabled] + .form__checklabel {
  cursor: not-allowed;
}

.form__check:disabled + .form__checklabel::before,
.form__check[disabled] + .form__checklabel::before {
  background: #b3b3b3;
}

.form__check:disabled:checked + .form__checklabel::after,
.form__check[disabled][checked] + .form__checklabel::after {
  background: url("../images/common/icon-check-2.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.form__check:checked + .form__checklabel::after {
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  top: 4px;
  width: 19px;
  min-width: 19px;
  height: 15px;
  background: url("../images/common/icon-check.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.form__checklabel {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: left;
  color: #333333;
  line-height: 1.4;
  cursor: pointer;
}

.form__checklabel::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 23px;
  min-width: 23px;
  height: 23px;
  border: 1px solid #b3b3b3;
  background: #ffffff;
  border-radius: 3px;
}

.form__checklabel span {
  margin-left: 7px;
}

.form__checklabel a {
  color: #333333;
  text-decoration: underline;
}

.instruction {
  display: none;
  position: fixed;
  top: 0;
  left: calc( 50% - 206px);
  width: 414px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

@media (max-width: 767px) {
  .instruction {
    width: 100%;
    left: 0;
  }
}

@media (min-height: 400px) {
  .instruction--open {
    overflow: hidden;
  }
}

.instruction--active {
  display: block;
}

.instruction__close {
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 3;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.instruction__close::before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
}

.instruction__close::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: 0;
}

.instruction__item {
  position: relative;
  width: 100%;
}

.instruction__item:first-child {
  padding-top: 226px;
}

@media (max-width: 767px) {
  .instruction__item:first-child {
    padding-top: 206px;
  }
}

@media (max-height: 399px) {
  .instruction__item:first-child {
    padding-top: 80px;
  }
}

.instruction__item:first-child .instruction__content {
  margin-left: 48px;
}

@media (max-width: 767px) {
  .instruction__item:first-child .instruction__content {
    margin-left: calc( 50vw - 160px);
  }
}

@media (max-width: 374px) {
  .instruction__item:first-child .instruction__content {
    margin-left: 15px;
  }
}

.instruction__item:first-child .instruction__content::before {
  width: 48px;
  height: 48px;
  background: url("../images/instruction/instruction-icon-1-1.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  top: -66px;
  left: 115px;
}

.instruction__item:first-child .instruction__content::after {
  width: 44px;
  height: 40px;
  background: url("../images/instruction/instruction-icon-1-2.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  top: -28px;
  left: 60px;
}

.instruction__item:nth-child(2) {
  width: 100%;
  height: 100dvh;
}

.instruction__item:nth-child(2) .instruction__content {
  position: absolute;
  right: 48px;
  bottom: 86px;
}

@media (max-width: 374px) {
  .instruction__item:nth-child(2) .instruction__content {
    right: 15px;
  }
}

.instruction__item:nth-child(2) .instruction__content::before {
  width: 134px;
  height: 50px;
  background: url("../images/instruction/instruction-icon-2-1.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  right: -34px;
  bottom: -78px;
}

@media (max-width: 374px) {
  .instruction__item:nth-child(2) .instruction__content::before {
    right: -10px;
    width: 38vw;
    height: 14vw;
  }
}

.instruction__item:nth-child(2) .instruction__content::after {
  width: 39px;
  height: 46px;
  background: url("../images/instruction/instruction-icon-2-2.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  bottom: -38px;
  right: 18px;
}

@media (max-width: 374px) {
  .instruction__item:nth-child(2) .instruction__content::after {
    right: 38px;
  }
}

.instruction__item:nth-child(3) {
  width: 100%;
  height: 100dvh;
}

@media (max-height: 399px) {
  .instruction__item:nth-child(3) {
    height: auto;
    padding-top: 80px;
  }
}

.instruction__item:nth-child(3) .instruction__content {
  position: absolute;
  top: 388px;
  left: 48px;
}

@media (max-width: 767px) {
  .instruction__item:nth-child(3) .instruction__content {
    top: 390px;
  }
}

@media (max-width: 374px) {
  .instruction__item:nth-child(3) .instruction__content {
    top: 366px;
    left: 15px;
    width: calc( 100% - 30px);
  }
}

@media (max-height: 599px) {
  .instruction__item:nth-child(3) .instruction__content {
    top: 200px;
  }
}

@media (max-height: 399px) {
  .instruction__item:nth-child(3) .instruction__content {
    position: relative;
    top: auto;
    left: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

.instruction__item:nth-child(3) .instruction__content::before {
  display: none;
}

.instruction__item:nth-child(3) .instruction__content::after {
  width: 44px;
  height: 38px;
  background: url("../images/instruction/instruction-icon-3-2.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  top: -23px;
  left: 110px;
}

@media (max-width: 767px) {
  .instruction__item:nth-child(3) .instruction__content::after {
    left: auto;
    right: 45px;
  }
}

@media (max-width: 575px) {
  .instruction__item:nth-child(3) .instruction__content::after {
    right: auto;
    left: 50%;
  }
}

@media (max-width: 480px) {
  .instruction__item:nth-child(3) .instruction__content::after {
    left: 40%;
  }
}

@media (max-width: 374px) {
  .instruction__item:nth-child(3) .instruction__content::after {
    left: 35%;
  }
}

.instruction__item:nth-child(3) .type__item-btn {
  position: absolute;
  top: -48px;
  left: -18px;
  width: 158px;
  background: #ffffff;
  margin-top: 0;
}

@media (max-width: 767px) {
  .instruction__item:nth-child(3) .type__item-btn {
    width: calc( 50vw - 45px);
  }
}

@media (max-width: 374px) {
  .instruction__item:nth-child(3) .type__item-btn {
    left: 0;
  }
}

@media (max-height: 399px) {
  .instruction__item:nth-child(3) .type__item-btn {
    width: 260px;
  }
}

.instruction__content {
  width: 280px;
  border-radius: 10px;
  background: #ffffff;
  padding: 18px 20px;
  -webkit-box-shadow: 0 0 20px rgba(214, 78, 67, 0.3);
          box-shadow: 0 0 20px rgba(214, 78, 67, 0.3);
  position: relative;
  max-width: calc( 100% - 15px);
}

.instruction__content::before {
  content: "";
  display: block;
  position: absolute;
}

.instruction__content::after {
  content: "";
  display: block;
  position: absolute;
}

.instruction__title {
  font-weight: 700;
  color: #d64e43;
  line-height: 1.6667;
}

.instruction__text {
  font-size: 0.9375em;
  line-height: 1.6667;
}

.instruction__no {
  width: 40px;
  height: 40px;
  background: #fff0cc;
  position: absolute;
  top: 0;
  right: 0;
  border-top-right-radius: 10px;
  font-size: 1.5em;
  font-weight: 700;
  color: #d8ad49;
  text-align: center;
  padding-top: 4px;
  padding-left: 14px;
  line-height: 1;
}

.instruction__no::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 0 40px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  right: 0;
  top: 0;
}

.instruction .slick-dots {
  position: fixed;
  bottom: 44px;
}

@media (max-height: 399px) {
  .instruction .slick-dots {
    bottom: 5px;
  }
}

.instruction .slick-dots li {
  margin-left: 7px;
  margin-right: 7px;
}

.instruction .slick-dots li button {
  width: 14px;
  height: 14px;
  background: #959595;
}

.instruction .slick-dots li.slick-active button {
  background: #d8ad49;
}

.pop__container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.pop__wrap {
  width: 350px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 22px rgba(214, 78, 67, 0.3);
          box-shadow: 0 0 22px rgba(214, 78, 67, 0.3);
  border-radius: 8px;
  padding: 30px 36px 20px;
}

@media (max-width: 767px) {
  .pop__wrap {
    width: calc( 100vw - 64px);
  }
}

@media (max-width: 374px) {
  .pop__wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.pop__wrap--search .form__input {
  margin-top: 14px;
}

.pop__wrap--search .pop__title {
  text-align: center;
}

.pop__wrap--search .pop__btn {
  margin-top: 64px;
}

.pop__wrap--search .pop__text {
  margin-top: 12px;
}

.pop__wrap--leave .form__checkbox {
  margin-top: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pop__wrap--leave .pop__btn {
  margin-top: 16px;
}

.pop__wrap--leave .pop__text {
  text-align: center;
  line-height: 1.625;
}

.pop__wrap--inquiry .pop__title {
  text-align: center;
  font-weight: 700;
  color: #d64e43;
}

.pop__wrap--inquiry .pop__btn {
  margin-top: 30px;
}

.pop__wrap--inquiry .pop__text {
  margin-top: 5px;
  line-height: 1.625;
  text-align: center;
}

.pop .btn {
  margin-top: 16px;
}

.pop .btn:first-child {
  margin-top: 0;
}

.header {
  width: 414px;
  background: #e0b249;
  position: fixed;
  top: 0;
  left: calc( 50% - 207px);
  z-index: 999;
}

@media (max-width: 767px) {
  .header {
    position: absolute;
    width: 100%;
    left: 0;
  }
}

@media (max-width: 480px) {
  .header {
    position: fixed;
  }
}

@media (max-height: 399px) {
  .header {
    position: absolute;
  }
}

.navbar {
  padding: 23px 40px;
  text-align: center;
  position: relative;
}

.navbar__title {
  display: inline-block;
  font-size: 1.375em;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2276;
}

@media (max-width: 374px) {
  .navbar__title {
    font-size: 6.4vw;
  }
}

.navbar__title a {
  color: #ffffff;
}

.navbar__search {
  position: absolute;
  top: calc( 50% - 10px);
  right: 16px;
}

.navbar__btn {
  position: absolute;
  top: calc( 50% - 10px);
  left: 18px;
  cursor: pointer;
}

.footer {
  background: url("../images/common/footer-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  position: fixed;
  left: calc( 50% - 207px);
  bottom: 0;
  z-index: 999;
  width: 414px;
  padding: 20px 26px 15px;
}

@media (min-width: 414px) and (max-width: 767px) {
  .footer {
    background-size: auto;
    background: url("../images/common/footer-bg-mbsm.png");
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center top;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}

@media (max-width: 767px) {
  .footer {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 414px) {
  .footer {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

@media (max-width: 374px) {
  .footer {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

@media (max-height: 399px) {
  .footer {
    position: absolute;
  }
}

.footer__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__link-item {
  position: relative;
  font-size: 1.25em;
  font-weight: 900;
  color: #f7e6cd;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 374px) {
  .footer__link-item {
    font-size: 5.4vw;
  }
}

.footer__link-item [class^="icon"] {
  margin-right: 5px;
}

.footer__link-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  background-color: #d64e43;
  border-radius: 50%;
  display: none;
}

.footer__link-dot--active {
  display: block;
}

.footer__phone {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: url("../images/common/footer-phone.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: -40px;
  left: calc( 50% - 40px);
  text-indent: -9999px;
}

@media (min-width: 414px) and (max-width: 767px) {
  .footer__phone {
    width: 86px;
    height: 86px;
    top: -43px;
    left: calc( 50% - 43px);
    border: 6px solid transparent;
    border-radius: 50%;
  }
}

@media (max-width: 414px) {
  .footer__phone {
    border: 4px solid transparent;
    border-radius: 50%;
    width: 23vw;
    height: 23vw;
    top: -11.2vw;
    left: calc( 50% - 11.5vw);
  }
}

.icon--search {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/common/icon-search.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon--type {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../images/common/icon-type.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 374px) {
  .icon--type {
    width: 8vw;
    height: 8vw;
  }
}

.icon--list {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../images/common/icon-list.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 374px) {
  .icon--list {
    width: 8vw;
    height: 8vw;
  }
}

.icon--line {
  display: inline-block;
  width: 32px;
  min-width: 32px;
  height: 32px;
  background: url("../images/common/icon-line.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon--phone {
  display: inline-block;
  width: 32px;
  min-width: 32px;
  height: 32px;
  background: url("../images/common/icon-phone.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.icon--prev {
  display: inline-block;
  width: 10px;
  height: 17px;
  background: url("../images/common/icon-prev.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.loading:not(img) {
  position: fixed;
  top: 0;
  left: calc( 50% - 207px);
  z-index: 9999;
  width: 414px;
  height: 100vh;
  background: url("../images/index/loading.jpg"), #f7e6cd;
  background-size: 107% auto;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
}

@media (max-width: 767px) {
  .loading:not(img) {
    width: 100%;
    left: 0;
    background-size: auto 80%;
  }
}

@media (max-width: 480px) {
  .loading:not(img) {
    background-size: 105% auto;
  }
}

@media (max-height: 650px) {
  .loading:not(img) {
    background-size: auto 80%;
  }
}

.loading--disabled {
  display: none;
}

.index__title {
  font-weight: 400;
  margin-top: 26px;
}

.index__type {
  margin-top: 14px;
  width: calc( 100% + 4px);
  margin-left: -2px;
  margin-right: -2px;
}

.index__type-item {
  width: 33.33%;
  display: block;
  padding: 0 2px;
}

.index__type-item img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 162px;
}

@media (max-width: 767px) {
  .index__type-item img {
    height: 42.5vw;
  }
}

@media (max-width: 480px) {
  .index__type-item img {
    height: 39vw;
  }
}

.index__type .slick-dots {
  bottom: -20px;
}

.index__product {
  margin-top: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc( 100% + 4px);
  margin-left: -2px;
  margin-right: -2px;
}

.index__product-item {
  border: 1px solid #f7e6cd;
  border-radius: 8px;
  width: calc( 33.33% - 4px);
  margin: 4px 2px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.125em;
  font-weight: 500;
  color: #734937;
  text-align: center;
  padding: 11px 10px;
}

@media (max-width: 374px) {
  .index__product-item {
    font-size: 5vw;
    padding: 10px 2vw;
  }
}

.index__product-item img {
  display: block;
  width: 58px;
  margin-bottom: 10px;
}

@media (max-width: 374px) {
  .index__product-item img {
    width: 15vw;
    margin-bottom: 3vw;
  }
}

.index__product-item:nth-child(1) {
  margin-top: 0;
}

.index__product-item:nth-child(2) {
  margin-top: 0;
}

.index__product-item:nth-child(3) {
  margin-top: 0;
}

.index__banner {
  margin-top: 30px;
}

.index__banner-item {
  display: block;
}

.index__banner-item img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 110px;
}

@media (max-width: 767px) {
  .index__banner-item img {
    height: 28vw;
  }
}

@media (max-width: 480px) {
  .index__banner-item img {
    height: 26vw;
  }
}

.contact {
  padding-top: 36px;
}

.contact__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.25em;
  font-weight: 700;
}

.contact__title [class^="icon"] {
  margin-right: 6px;
  margin-top: -4px;
}

.contact__text {
  margin-top: 10px;
}

.contact__btn {
  margin-top: 30px;
}

.contact__item {
  position: relative;
  padding-top: 25px;
  padding-bottom: 35px;
}

.contact__item::before {
  content: "";
  display: block;
  width: calc( 100% + 32px);
  height: 1px;
  position: absolute;
  top: 0;
  left: -16px;
  background: #ebebf0;
}

.contact__item:first-child {
  padding-top: 0;
}

.contact__item:first-child::before {
  display: none;
}

.contact__item:last-child {
  padding-bottom: 0;
}

.contact__phone {
  margin-top: 15px;
}

.contact__phone-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 10px;
}

.contact__phone-item:first-child {
  margin-top: 0;
}

.contact__phone-text {
  font-size: 1.625em;
  width: calc( 100% - 138px);
}

@media (max-width: 374px) {
  .contact__phone-text {
    font-size: 6.6vw;
    width: calc( 100% - 36vw);
  }
}

.contact__phone-btn {
  width: 138px;
}

@media (max-width: 374px) {
  .contact__phone-btn {
    width: 36vw;
  }
}

.type__tag {
  width: calc( 100% + 16px);
  margin-right: -16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow-x: auto;
  overflow-y: hidden;
}

.type__tag-item {
  font-size: 1em;
  font-weight: 500;
  color: #333333;
  border: 1px solid #e1e1e5;
  text-align: center;
  border-radius: 8px;
  padding: 9px;
  min-width: 80px;
  width: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  display: inline-block;
  margin-left: 6px;
}

.type__tag-item:first-child {
  margin-left: 0;
}

.type__tag-item--active {
  color: #ffffff;
  background: #d64e43;
  border-color: #d64e43;
}

.type__wrap {
  margin-top: 12px;
}

.type__block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: calc( 100% + 32px);
  margin-left: -16px;
  margin-right: -16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.type__block::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.type__item {
  width: 50%;
  border-right: 1px solid #ebebf0;
  border-bottom: 1px solid #ebebf0;
  padding: 18px 16px 16px;
  position: relative;
}

.type__item:nth-child(1), .type__item:nth-child(2) {
  border-top: none;
}

.type__item:nth-child(even) {
  border-right: none;
}

.type__item-add {
  width: 30px;
  height: 25px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.type__item-add::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("../images/common/icon-add-1.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.type__item-add--disabled {
  cursor: not-allowed;
}

.type__item-add--disabled::before {
  background: url("../images/common/icon-add-2.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
}

.type__item-img {
  width: 136px;
  height: 120px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 374px) {
  .type__item-img {
    width: 34.6875vw;
    height: 30.3125vw;
  }
}

.type__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}

.type__item-img:not(:has(img.loaded)) {
  background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(40%, #f1f1f1), color-stop(50%, #f1f1f1), to(#ffffff));
  background-image: linear-gradient(90deg, #ffffff 0%, #f1f1f1 40%, #f1f1f1 50%, #ffffff 100%);
  -webkit-animation: ani-loading 6s linear infinite;
          animation: ani-loading 6s linear infinite;
}

.type__item-name {
  font-size: 0.9375em;
  color: #333333;
  line-height: 1.2em;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 2.4em;
  margin-top: 4px;
}

.type__item-price {
  font-size: 0.875em;
  color: #333333;
  margin-top: 4px;
}

.type__item-btn {
  font-size: 1em;
  font-weight: 400;
  color: #d64e43;
  border: 1px solid #d64e43;
  display: block;
  border-radius: 9px;
  text-align: center;
  padding: 8px;
  line-height: 1;
  margin-top: 6px;
}

.type__item-btn--disabled {
  cursor: not-allowed;
  background: #e8e8e8;
  border-color: #e8e8e8;
  color: #717171;
}

.product__head {
  text-align: center;
  width: calc( 100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebebf0;
}

.product__img {
  width: 188px;
  height: 165px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

@media (max-width: 374px) {
  .product__img {
    width: 34.6875vw;
    height: 30.3125vw;
  }
}

.product__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}

.product__img:not(:has(img.loaded)) {
  background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(40%, #f1f1f1), color-stop(50%, #f1f1f1), to(#ffffff));
  background-image: linear-gradient(90deg, #ffffff 0%, #f1f1f1 40%, #f1f1f1 50%, #ffffff 100%);
  -webkit-animation: ani-loading 6s linear infinite;
          animation: ani-loading 6s linear infinite;
}

.product__type {
  font-size: 1.25em;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
}

.product__type-item {
  position: relative;
}

.product__type-item::before {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -10px;
}

.product__type-item::after {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 0;
  right: -10px;
}

.product__type-item:empty::before, .product__type-item:empty::after {
  display: none;
}

.product__name {
  font-size: 1.5em;
  font-weight: 700;
}

.product__body {
  padding-top: 25px;
}

.product__text {
  font-size: 1.25em;
  line-height: 1.25;
}

.product__text-item {
  margin-top: 15px;
}

.product__text-item:first-child {
  margin-top: 0;
}

.product__btn {
  margin-top: 30px;
}

.product__btn .btn {
  margin-top: 15px;
}

.product__btn .btn:first-child {
  margin-top: 0;
}

.inquiry__title {
  background: #ebebf0;
  font-size: 1em;
  color: #333333;
}

.inquiry__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  text-align: center;
  padding: 7px 0;
}

.inquiry__title-col:first-child {
  width: calc( 100% - 130px);
  padding-right: 20px;
}

.inquiry__title-col:nth-child(2) {
  width: 130px;
}

.inquiry__row {
  border-top: 1px solid #ebebf0;
  position: relative;
  background: #f1f1f1;
  width: calc( 100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}

.inquiry__row::before {
  content: "";
  display: block;
  width: 15px;
  height: calc( 100% - 2px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: #ffffff;
}

.inquiry__row::after {
  content: "";
  display: block;
  width: 15px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  background: #ffffff;
}

.inquiry__row:first-child {
  border-top: none;
}

.inquiry__row:last-child {
  border-bottom: 1px solid #ebebf0;
}

.inquiry__row--active .inquiry__block {
  -webkit-transform: translateX(-70px);
          transform: translateX(-70px);
}

.inquiry__block {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  padding: 15px;
  position: relative;
  z-index: 2;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.inquiry__item:first-child {
  width: calc( 100% - 130px);
  padding-right: 20px;
}

.inquiry__item:nth-child(2) {
  width: 130px;
  text-align: center;
}

.inquiry__text {
  line-height: 1.5625;
}

.inquiry__remove {
  position: absolute;
  top: 0;
  right: 15px;
  width: 55px;
  height: 100%;
  font-size: 0.875em;
  color: #ffffff;
  background: #734937;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.inquiry__btn {
  margin-top: 25px;
}

.wrap {
  width: 414px;
  min-height: 100vh;
  background: #e0b249;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-top: 100px;
}

@media (max-width: 767px) {
  .wrap {
    width: 100%;
  }
}

.main {
  border: 16px solid #f7f7f4;
  background: #ffffff;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding: 16px 16px 120px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
  min-height: calc( 100vh - 72px);
}

@media (max-width: 374px) {
  .main {
    padding-bottom: 30vw;
    min-height: calc( 100vh - 30vw);
  }
}

.mt-0 {
  margin-top: 0;
}
