@charset "UTF-8";

html {
  scroll-behavior: smooth;
  font-style: 62.5%;
}

body {
  text-align: center;
  /* font-family: "Zen Maru Gothic", sans-serif; */
  font-family: "Meiryo", "Noto Sans JP", "system-ui", "-apple-system", "BlinkMacSystemFont";
  margin: 0;
}

header {
  display: flex;
  align-items: center;
  height: 60px;
  background-color: #07525A;
}

.hamburger {
  display: block;
  z-index: 1000;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 2%;
  top: 10px;
  cursor: pointer;
  text-align: center;
  z-index: 10000;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 46px;
  height: 4px;
  left: 2px;
  background: black;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 5px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 35px;
}

.hamburger.active span:nth-child(1) {
  top: 20px;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  top: 20px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(3) {
  opacity: 0;
}

.gMenu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  background-color: rgba(205, 229, 219, 0.8);
  display: none;
  z-index: 999;
  padding: 5% 0;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gMenu-logo {
  padding-bottom: 40px;
}

.gMenu-logo img {
  width: 30%;
  margin: 0 auto;
}

.gMenu::-webkit-scrollbar {
  display: none;
}

.gMenu .gMenu_btn {
  width: 300px;
  margin-bottom: 0;
}

.gMenu ul {
  text-align: center;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 2;
  color: #41493e;
}

.gMenu ul span {
  font-size: 14px;
}

.gMenu ul li {
  margin-bottom: 10px;
}

.gMenu ul li a {
  display: block;
}

.logo {
  width: 203px;
}

.header-logo {
  margin: 0 0 0 3%;
  z-index: 100;
  position: fixed;
}

.header-bc-left {
  position: absolute;
  height: 130px;
  top: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  left: -5%;
  z-index: 40;
  width: 50%;
}

.header-bc-right {
  position: absolute;
  height: 140px;
  top: 50px;
  right: 0%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  z-index: 40;
  width: 65%;
}

.top-img {
  display: flex;
}

.top-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 120vh;
}

.top-img-left {
  width: 45%;
  -o-object-position: center;
  object-position: center;
}

.top-img-right {
  width: 55%;
  -o-object-position: right;
  object-position: right;
}

.top {
  position: relative;
}

.desc {
  position: absolute;
  top: 25%;
  right: 9vw;
  color: white;
  font-size: 20px;
}

.desc img {
  width: 35vw;
}

.desc p {
  padding: 7% 0;
  line-height: 2;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.intro {
  background-color: #1F908C;
  color: white;
  padding: 20px 0;
  z-index: 60;
  margin: 0 auto;
}

.intro-title {
  font-size: 40px;
  line-height: 2;
  padding: 3% 0;
  z-index: 60;
  position: relative;
}

.intro-img {
  display: flex;
  position: relative;
  z-index: 50;
}

.intro-bc-left {
  width: 40%;
  position: absolute;
  top: -100px;
  left: 70px;
  z-index: 50;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.intro-bc-right {
  width: 65%;
  position: absolute;
  top: -120px;
  right: 0;
  z-index: 50;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.intro-desc {
  font-size: 15px;
  line-height: 2.5;
  z-index: 60;
  position: relative;
}

.br-sp {
  display: none;
}

.content {
  display: flex;
  justify-content: center;
  margin: 5% 0;
  z-index: 60;
  position: relative;
}

.content-desc {
  width: 35%;
  line-height: 2.3;
  font-size: 15px;
  padding: 3%;
}

.content-desc-img1 {
  width: 60%;
  margin-bottom: 15%;
}

.content-desc-img2 {
  width: 30%;
  margin-bottom: 15%;
}

.content-img {
  width: 35%;
  -o-object-fit: contain;
  object-fit: contain;
}

.content2 {
  flex-direction: row-reverse;
}

.feature {
  background-color: #BDCCC1;
}

.feature-top {
  background-image: url(img/logo-bc.webp);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-top img {
  width: 30vw;
  margin: 0 auto;
}

.feature-title {
  padding-top: 3%;
}

.feature-contents {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #BDCCC1;
  row-gap: 130px;
  padding: 8%;
}

.main-img {
  width: 60%;
  z-index: 20;
  position: relative;
}

.feature-content-img {
  position: relative;
}

.feature-content-desc {
  width: 70%;
  margin: 0 auto;
}

h4 {
  color: #1F908C;
  padding: 20px 0;
  line-height: 1.5;
}

.feature-content-desc p {
  text-align: left;
  color: #6C6C6C;
  line-height: 1.5;
}

.middle-img {
  display: flex;
}

.middle-img img {
  width: 33.3%;
  -o-object-fit: cover;
  object-fit: cover;
}

.how-to-use {
  background-color: #1F908C;
  color: white;
}

.how-to-use-content {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10% 0;
}

.how-to-use-logo {
  width: 75%;
}

.how-left {
  width: 40%;
}

.how-to-use-img {
  position: relative;
}

.how-main-img {
  width: 50%;
  position: relative;
  z-index: 20;
}

h5 {
  font-size: 15px;
  padding: 30px 0 10px 0;
}

.how-left p {
  font-size: 25px;
  padding: 35px 0 30px 0;
  position: relative;
  display: inline-block;
}

.border-left {
  content: "";
  background-color: #fff;
  height: 30px;
  width: 1.5px;
  top: 38%;
  left: -8%;
  position: absolute;
  transform: rotate(-35deg);
}

.border-right {
  content: "";
  background-color: #fff;
  height: 30px;
  width: 1.5px;
  top: 38%;
  right: -8%;
  position: absolute;
  transform: rotate(35deg);
}

.how-to-use-desc {
  font-size: 15px;
  line-height: 2;
  width: 70%;
  text-align: left;
  margin: 0 auto;
  padding-top: 20px;
}

.how-right {
  width: 40%;
  position: relative;
}

.how-right img {
  width: 87%;
  bottom: 0;
  position: absolute;
  left: 0;
}

.for-woman {
  background-color: #D1B1CC;
  padding: 7% 0;
}

.woman-logo {
  width: 30%;
}

.for-woman-wrapper {
  display: flex;
  justify-content: center;
  padding: 3% 0;
}

.woman-img {
  width: 40%;
  position: relative;
}

.woman-main-img {
  width: 65%;
  z-index: 10;
}

.woman-sub-img {
  width: 30%;
  position: absolute;
  top: 50%;
  right: 10%;
  z-index: 20;
}

.for-woman-desc {
  width: 40%;
  position: relative;
  margin-top: auto;
  padding-top: 30px;
}

.for-woman-desc p {
  line-height: 2;
  color: #656565;
  font-size: 15px;
}

.woman-desc-img img {
  width: 50%;
}

.product {
  padding: 7% 0;
  background-color: #BDCCC1;
}

.product-logo {
  width: 30%;
}

.product-sub {
  padding: 3%;
  font-size: 24px;
}

.product-wrapper {
  display: flex;
  justify-content: center;
  padding: 4% 0 2% 0;
}

.saunoa {
  width: 40%;
}

.saunoa p {
  font-size: 12px;
  line-height: 1.5;
}

.product-img {
  display: flex;
  justify-content: center;
}

.product-img img {
  width: 20%;
}

.product-submit {
  color: white;
  font-size: 16px;
  background-color: #004D3E;
  padding: 14px 0;
  border-radius: 50px;
  display: block;
  width: 40%;
  margin: 0 auto;
}

.product-intro {
  margin: 30px;
}

.product-pdf .inline-block {
  font-size: 1.4rem;
}

.product-pdf {
  font-size: 1.4rem;
  color: #6d6d6d;
  background-color: #ddd;
  padding: 14px 40px;
  border-radius: 50px;
  /* display: block; */
  display: flex;
  align-items: center;
  margin: 0 auto;
  border: solid 2px black;
}

.product-pdf img {
  vertical-align: -1rem;
  width: 3rem;
}

.inline-block {
  display: inline-block;
}

@media screen and (max-width: 599px) {
  .product-pdf {
    padding: 2px 10px;
  }
}

.ingredient {
  font-size: 12px;
  text-align: left;
  width: 75%;
  color: #080808;
  margin: 0 auto;
  margin-top: 5%;
}

.footer-img {
  display: flex;
}

.footer-img img {
  width: 33.3%;
  -o-object-fit: cover;
  object-fit: cover;
}

.select-btn {
  margin: 5% auto;
  width: 70%;
}

.select {
  margin-bottom: 10px;
}

/* フォームのスタイル */
input[type=text],
input[type=email],
input[type=tel] {
  border: 1px solid #000;
  border-radius: 6px;
  background: #fff;
  padding: 10px;
  text-align: left;
  font-size: 16px;
  width: 100%;
  height: 100%;
}

.contact {
  background: #DBD9D4;
  padding: 20px;
  padding-bottom: 80px;
}

.contact .req {
  color: #7b242f;
  font-size: 20px !important;
  line-height: 1;
  vertical-align: middle;
}

.contact_title {
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 19px;
}

.contact_title .text-note {
  font-size: 13px;
  margin-top: 5px;
}

.contact-contents-radio {
  display: flex;
  justify-content: center;
  font-size: 16px;
  margin-top: 20px;
}

.contact-contents-radio label {
  margin: 0 30px;
}

.contact-contents-bottle-set {
  width: 80%;
  margin: 0 auto;
  margin-top: 24px;
}

.contact-contents-bottle-set table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 30px;
}

.contact-contents-bottle-set table th {
  vertical-align: top;
  text-align: left;
  font-size: 16px;
}

.contact-contents-table {
  width: 80%;
  margin: 0 auto;
}

.contact-contents-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 30px;
}

.contact-contents-table table th {
  vertical-align: top;
  text-align: left;
  font-size: 16px;
}

.contact-submit {
  text-align: center;
}

.contact-submit .policy_chk {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
}

.contact-submit button {
  margin: 0 auto;
  border-style: none;
  display: block;
  background-color: black;
  color: white;
  font-size: 20px;
  padding: 15px 0;
  font-weight: bold;
  width: 300px;
  cursor: pointer;
}

.contact-submit button.lock {
  opacity: 0.4;
  cursor: default;
}

/* フォームのスタイル　ここまで */
footer {
  background-color: #295369;
  padding: 5%;
}

.footer-contents {
  text-align: center;
}

.footer-contents li {
  color: #C3E6D9;
  margin-bottom: 30px;
}

.footer-contents li a {
  display: block;
  font-size: 15px;
  line-height: 1.5;
}

#mask {
  display: none;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
}

#mask.active {
  display: block;
}

.pop_up_show {
  display: none;
  position: fixed;
  overflow: scroll;
  width: 80%;
  max-width: 700px;
  height: 80vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 100000;
  padding: 30px;
  font-size: 15px;
  text-align: left;
  line-height: 1.5;
}

.pop_up_show th,
.pop_up_show td {
  padding: 15px 5px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: solid 1px #E2DFDA;
  border-collapse: collapse;
}

.pop_up_show_title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.pop_privacy {
  cursor: pointer;
  font-size: 15px;
}

.pop_rule {
  cursor: pointer;
  font-size: 15px;
}

.pop_up_show.active {
  display: block;
}

@media (max-width: 750px) {
  .logo {
    width: 150px;
  }

  .logo img {
    width: 100%;
    margin-top: 6%;
  }

  .top-img {
    flex-direction: column-reverse;
  }

  .top-img img {
    height: 450px;
  }

  .top-img-left {
    width: 100%;
  }

  .top-img-right {
    width: 100%;
  }

  .header-bc-left {
    width: 100%;
    left: 0;
    height: 130px;
  }

  .header-bc-right {
    display: none;
  }

  .desc {
    top: 30vw;
    right: 0;
    left: 0;
    margin: auto;
  }

  .desc img {
    width: 60vw;
  }

  .desc p {
    padding: 5%;
    line-height: 1.5;
    font-size: 15px;
  }

  .intro-bc-left {
    left: 0;
    width: 100%;
  }

  .intro-bc-right {
    display: none;
  }

  .intro-title {
    font-size: 32px;
    margin: 3% 2%;
  }

  .intro-desc {
    margin-bottom: 120px;
  }

  .br-sp {
    display: block;
  }

  .content {
    flex-direction: column-reverse;
    margin: 0 0 80px 0;
  }

  .content-desc {
    margin: 0 auto;
    width: 100%;
  }

  .content-desc-img1 {
    width: 45%;
    margin-top: 15px;
    margin-bottom: 5%;
  }

  .content-desc-img2 {
    width: 25%;
    margin: 5% 0;
  }

  .content-img {
    width: 70%;
    margin: 0 auto;
  }

  .feature-top {
    height: 35vh;
    background-position: 40% 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .feature-top img {
    width: 65vw;
  }

  .feature-contents {
    grid-template-columns: 1fr 1fr;
    row-gap: 70px;
    padding: 10% 0 20% 0;
    font-size: 15px;
  }

  .main-img {
    width: 60%;
  }

  .feature-content-desc {
    width: 75%;
  }

  .how-to-use-content {
    flex-direction: column;
    justify-content: center;
    row-gap: 60px;
    padding: 20% 0;
  }

  .how-to-use-logo {
    width: 80%;
  }

  .how-left {
    width: 90%;
    margin: 0 auto;
  }

  .how-main-img {
    width: 60%;
  }

  .how-to-use-desc {
    width: 90%;
    line-height: 1.5;
    font-size: 14px;
  }

  .how-right {
    width: 80%;
    position: static;
    margin: 0 auto;
  }

  .how-right img {
    position: static;
  }

  .for-woman {
    padding: 20% 0;
  }

  .for-woman-wrapper {
    flex-direction: column;
  }

  .woman-logo {
    width: 65%;
  }

  .woman-img {
    width: 90%;
    margin: 0 auto;
  }

  .woman-main-img {
    margin: 10%;
  }

  .for-woman-desc {
    width: 70%;
    margin: 0 auto;
    line-height: 1.5;
    font-size: 14px;
  }

  .product {
    padding: 15% 0;
  }

  .product-wrapper {
    flex-direction: column;
    row-gap: 100px;
  }

  .product-logo {
    width: 60vw;
  }

  .product-sub {
    font-size: 20px;
  }

  .saunoa {
    width: 100%;
    margin: 0 auto;
  }

  .saunoa p {
    margin: 7%;
  }

  .ingredient {
    width: 85%;
    font-size: 12px;
    margin-top: 10%;
  }

  .product-submit {
    width: 70%;
  }

  .form-title,
  .dest-title {
    font-size: 25px;
  }

  .dest-title span {
    font-size: 12px;
  }

  .order {
    font-size: 15px;
    margin-bottom: 40px;
  }
}

/*# sourceMappingURL=style.css.map */

#set_mens,
#set_womens {
  border: 1px solid #000;
  background: #fff;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 6px;
}

.order_bottle_set_require {
  color: #7b242f;
  font-size: 12px;
}

.order_bottle_set_require_sp {
  color: #7b242f;
  font-size: 12px;
  line-height: 1.2rem;
}

.campane_banner {
  text-align: center;
  color: #e4007f;
  border: 2px solid #e4007f;
  width: 100%;
  border-radius: 6px;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  max-width: 780px;
  margin: 0 auto;
  margin-top: 24px;
}

@media (max-width: 750px) {
  .order_bottle_set_require {
    display: none;
  }

  .order_bottle_set_require_sp {
    display: block;
  }
}

@media (min-width: 751px) {
  .order_bottle_set_require {
    display: block;
  }

  .order_bottle_set_require_sp {
    display: none;
  }
}

.contact-contents-radio.bottom_payment_way {
  margin-bottom: 30px;
}

.pop_form .contact-contents-radio {
  display: flex;
  justify-content: center;
  font-size: 16px;
  margin-top: 20px;
}

.contact-contents-radio label {
  margin: 0 30px;
}

.contact-contents-radio label input {
  margin-right: 5px;
  margin-bottom: 5px;
}


.fixed_baner {
  position: fixed;
  z-index: 999;
  width: 230px;
  right: 5%;
  top: 110px;
  transition: all .3s;
}

.fixed_baner span {
  position: absolute;
  top: -1%;
  right: 6%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.fixed_baner.hide {
  opacity: 0;
}

@media all and (max-width:750px) {
  .fixed_baner {
    width: 150px;
    /* bottom: 90px; */
    bottom: 20px;
    height: 115px;
    top: auto;
  }

  .fixed_baner a {
    display: block;
  }

  .fixed_baner a img {
    width: 100%;
  }
}

.bottle-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.bottom_banner {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  bottom: 0;
  background: #AD8500;
  width: 100%;
  padding: 1.5rem 0;
  text-align: center;
  z-index: 3;
}

.bottom_banner_title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #41493E;
}

.bottom_banner_text {
  color: #CCCCCC;
  font-size: 1.2rem;
}

/* @media only screen and (min-width: 750px) {
  .row-cols-md-2>* {
      width: 33%;
  }
} */

.container-page .height-vw {
  height: 33vw;
  /* width: 32vw; */
  width: 33%;
  max-width: 255px;
  max-height: 255px;
  padding: 0;
  margin: 0 0 0.3vw;
}

.card__product {
  background-color: #efefef;
  /* width: 50%; */
  /* padding: 50px; */
  /* margin: -10px; */
  /* width: 32vw; */
  /* height: 32vw; */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 3%;
  padding-bottom: 3%;
}

/* .flex {
  display: flex;
} */

/* .card__product--box {
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.card__product--title {
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 7px;
}

.card__product--image {
  max-width: 250px;
  max-height: 250px;
  height: calc(70% - 60px);
  margin-bottom: 10px;
}

.card__product--body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  /* margin-top: 25px; */
}

.container-page .flex-around {
  display: flex;
  justify-content: space-around;
  /* padding: 0.5%; */
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  /* margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5); */
}

.flex-around * {
  font-family: sans-serif;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .container-page .height-vw {
    width: 49.6%;
    height: 48vw;
    max-width: none;
    min-height: none;
  }

  .card__product--image {
    height: calc(100% - 80px);
    padding-bottom: 10px;
    margin-bottom: 0;
  }

  .card__product {
    padding: 2%;
  }


}

.bottom_banner {
  position: sticky;
  left: 0;
  bottom: 0;
  background: #AD8500;
  width: 100%;
  padding: 1.5rem 0;
  text-align: center;
  z-index: 3;
}

.bottom_banner_title {
  font-size: 3rem;
  font-weight: bold;
  color: #41493E;
}

.bottom_banner_text {
  color: #CCCCCC;
  font-size: 1.2rem;
}

.en {
  font-family: 'Trajan Pro';
}



/* pcとsp時に表示の切り替え */
.sp {
  display: none;
}

@media only screen and (max-width: 750px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}


.pop_privacy_close {
  position: absolute;
  top: 30px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.pop_privacy_close span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.pop_privacy_close span {
  position: absolute;
  display: block;
  width: 30px;
  height: 1px;
  background: #000;
}

.pop_privacy_close span:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.pop_privacy_close span {
  position: absolute;
  display: block;
  width: 30px;
  height: 1px;
  background: #000;
}

/* 20240715追加 */

.tg_title_top {
  text-align: center;
  margin: 0px 0px 50px 0px;
}

.tg_title_top h2 {
  color: #ACA153;
  margin: 0px 0px 20px 0px;
  font-size: 40px;
  line-height: 50px;
  /* font-family: 'trajan_sm'; */
}

.tg_title_top p {
  font-size: 22px;
  line-height: 30px;
  margin: 0px 0px 5px 0px;
}

.tg_top_hd>figure img {
  height: 100vh;
  object-fit: cover;
  width: 100%;
}

.tg_top_hd {
  position: relative;
}

.tg_top_hd .tg_container {
  position: absolute;
  max-width: 1200px;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.tg_top_hd .tg_container p {
  font-size: 20px;
  line-height: 30px;
  margin: 0px 0px 20px 0px;
}

.tg_top_hd .tg_container span {
  font-size: 30px;
  line-height: 40px;
  display: block;
  margin: 0px 0px 20px 0px;
}

.tg_top_hd .tg_container h1 {
  color: #464646;
  margin: 0px 0px 30px 0px;
  font-family: 'trajan_b';
}

.tg_top_hd .tg_container .tg_textwidget {
  text-align: center;
}

.tg_smart_gift {
  background: #EDEDE4;
  padding: 50px 0px 70px 0px;
}

.tg_wrap_sgift {
  max-width: 800px;
  display: table;
  margin: 0px auto;
  width: 100%;
}

.tg_wrap_sgift .tg_obyfor_voucher {
  position: relative;
  margin: 0px 0px 40px 0px;
}

.tg_wrap_sgift .tg_obyfor_voucher .tg_textwidget {
  width: 200px;
  height: 200px;
  position: absolute;
  background: #ACA153;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 40px;
  right: 30px;
}

.tg_wrap_sgift .tg_obyfor_voucher figure {
  max-width: 600px;
}
.tg_wrap_sgift .tg_obyfor_voucher figure img{
  width:100%;
}

.tg_wrap_sgift .tg_obyfor_voucher .tg_textwidget span {
  color: #fff;
  margin: 0px 0px 10px 0px;
}

.tg_wrap_sgift .tg_obyfor_voucher .tg_textwidget p {
  color: #fff;
  font-size: 18px;
}

.tg_smart_gift .tg_gift_price {
  max-width: 640px;
  display: table;
  width: 100%;
}

.tg_smart_gift .tg_gift_price ul {}

.tg_smart_gift .tg_gift_price ul li {
  display: flex;
  margin: 0px 0px 40px 0px;
  align-items: center;
}

.tg_smart_gift .tg_gift_price ul li:last-child {
  margin: 0px;
}

.tg_smart_gift .tg_gift_price ul li img {
  display: inline-block;
  width: 100px;
}

.tg_smart_gift .tg_gift_price ul li span {
  font-size: 18px;
  width: 50%;
  text-align: right;
}

.tg_smart_gift .tg_gift_price ul li strong {
  margin: 0px 0px 0px auto;
  font-size: 22px;
}

.tg_smart_gift .tg_gift_price ul li strong cite {
  font-style: normal;
  font-size: 30px;
}

.tg_aroma {
  padding: 70px 0px;
}

.tg_aroma_item {
  font-family: hiragino-kaku-w3;
  padding: 0px 20px;
}

.tg_aroma_item figure {
  height: 150px;
  margin: 0px 0px 15px 0px;
}

.tg_aroma_item figure img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.tg_aroma_item .tg_title_it_aroma {
  text-align: center;
  margin: 0px 0px 15px 0px;
}

.tg_aroma_item .tg_title_it_aroma p {}

.tg_aroma_item .tg_title_it_aroma b {
  font-family: trajan;
  font-weight: 400;
  font-size: 18px;
}

.tg_aroma_item .tg_title_it_aroma span {
  display: block;
  font-size: 10px;
}

.tg_aroma_item .tg_textwidget {}

.tg_aroma_item .tg_textwidget p {}

.tg_perfume_aroma .col-sm-3,
.tg_natural_aroma .col-sm-3 {
  margin: 0px 0px 40px 0px;
}

.tg_perfume_aroma .col-sm-3:nth-child(4n+1),
.tg_natural_aroma .col-sm-3:nth-child(4n+1) {
  clear: both;
}

.tg_natural_aroma {
  padding: 20px 0px 0px 0px;
}

.tg_natural_aroma .tg_aroma_item .tg_title_it_aroma b {
  display: block;
  margin: 0px 0px 5px 0px;
}


.tg_natural_aroma .tg_aroma_item .tg_title_it_aroma span {
  font-family: trajan;
  font-size: 13px;
}


.tg_choices_multi {
  background: #EDEDE4;
  padding: 50px 0px 70px 0px;
}

.tg_choices_multi .tg_title_top h2 {
  margin: 0px 0px 10px 0px;
}

.tg_choices_multi .tg_title_top p {
  margin: 0px 0px 40px 0px;
}

.tg_choices_multi .tg_title_top p:last-of-type {
  margin: 0px;
}

.tg_choices_multi .tg_thang_enjoy {
  max-width: 790px;
  margin: 0px auto;
}

.tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy {
  display: flex;
  margin: 0px 0px 60px 0px;
  align-items: center;
}

.tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_title_itej {
  width: 25%;
  padding: 20px 0px 0px 0px;
}

.tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_title_itej span,
.tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_stt_itej span {
  font-size: 13px;
  line-height: 22px;
  font-family: 'hiragino-kaku-w3';
  color: #ACA153;
  margin: 0px 0px 5px 0px;
  display: block;
}

.tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_stt_itej span {
  text-align: center;
  max-width: 56px;
}

.tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_title_itej p {
  font-size: 20px;
  margin: 0px;
}

.tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_stt_itej {
  width: 20%;
  padding: 20px 0px 0px 0px;
}

.tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_stt_itej p {
  margin: 0px;
  font-size: 20px;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej {
  width: 55%;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul {
  display: flex;
  border-bottom: 6px solid #ACA153;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul li {
  width: 25%;
  display: flex;
  position: relative;
  margin: 0px 0px 11px 0px;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej.tg_five_lv ul li {
  width: 20%;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej.tg_five_lv ul li:nth-child(2)::before {
  left: -13px;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  bottom: -19px;
  left: -2px;
  background: #000;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul li:nth-child(2)::before {
  width: 15px;
  height: 15px;
  left: -3px;
  bottom: -21px;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul li:nth-child(3)::before {
  width: 18px;
  height: 18px;
  left: -19px;
  bottom: -23px;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul li:nth-child(4)::before {
  width: 22px;
  height: 22px;
  left: -22px;
  bottom: -24px;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul li:nth-child(4)::after {
  content: "";
  width: 25px;
  height: 25px;
  right: -2px;
  bottom: -25px;
  background: #000;
  position: absolute;
  border-radius: 50%;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul li:nth-child(5)::before {
  content: "";
  width: 28px;
  height: 28px;
  right: -4px;
  bottom: -25px;
  background: #000;
  position: absolute;
  border-radius: 50%;
  left: initial;
}


.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul li em {
  margin: 0px 0px 0px auto;
  font-style: normal;
  font-size: 10px;
  color: #ACA153;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul li:first-child em:first-of-type {
  margin: 0px 0px 0px -8px;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul li em:nth-child(2) {
  margin: 0px -15px 0px auto;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej.tg_five_lv ul li em:nth-child(2) {
  margin: 0px -6px 0px auto;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul li span {
  position: absolute;
  bottom: -51px;
  left: -11px;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej ul li:last-child span {
  right: -6px;
  left: initial;
}

.tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej.tg_five_lv ul li:first-child span:last-of-type {
  left: initial;
  right: -23px;
}

.tg_rej_col {
  display: flex;
  font-family: 'hiragino-kaku-w3';
  margin: 0px 0px 40px 0px;
}

.tg_rej_col .tg_rej_c_item {
  width: 45%;
  position: relative;
  padding: 0px;
}

.tg_rej_col .tg_rej_c_item::before {
  content: "";
  background: url(../images/lacay.png) center center no-repeat;
  width: 25px;
  height: 33px;
  background-size: contain;
  position: absolute;
  top: 7px;
  left: -12px;
}

.tg_rej_col .tg_rej_c_item:nth-child(2) {
  margin: 0px 0px 0px auto;
}

.tg_rej_col .tg_rej_c_item p {
  font-size: 15px;
  color: #00473d;
  line-height: 30px;
  margin: 0px;
  border: 2px solid #ACA153;
  border-radius: 40px;
  padding: 4px 20px;
  text-align: center;
}

.tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_last_child {}

.tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy.tg_last_child {
  padding: 30px 0px 0px 0px;
  align-items: flex-start;
  margin: 0px;
}

.tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy.tg_last_child .tg_title_itej,
.tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy.tg_last_child .tg_stt_itej {
  padding: 0px;
}

.tg_under_tenjoy {
  max-width: 790px;
  margin: 0px auto;
}

.tg_under_tenjoy .tg_item_utenj {
  display: flex;
  margin: 0px 0px 50px 0px;
  align-items: center;
}

.tg_under_tenjoy .tg_item_utenj:last-child {
  margin: 0px;
}

.tg_under_tenjoy .tg_item_utenj .tg_title_itej {
  width: 25%;
}

.tg_under_tenjoy .tg_item_utenj .tg_title_itej p {
  font-size: 20px;
  margin: 0px;
  line-height: 30px;
}

.tg_under_tenjoy .tg_item_utenj .tg_title_itej span {
  font-size: 13px;
  line-height: 22px;
  font-family: 'hiragino-kaku-w3';
  color: #ACA153;
  margin: 0px 0px 5px 0px;
  display: block;
}

.tg_under_tenjoy .tg_textwidget {
  width: 75%;
}

.tg_under_tenjoy .tg_textwidget strong {
  font-size: 20px;
  line-height: 30px;
  display: block;
  margin: 0px 0px 7px 0px;
}

.tg_under_tenjoy .tg_textwidget span {
  font-size: 14px;
  display: block;
  line-height: 25px;
}

.tg_how_order {
  padding: 70px 0px;
}

.tg_how_order .tg_top_howod {
  display: flex;
  max-width: 1060px;
  margin: 0px auto;
}

.tg_how_order .tg_top_howod .tg_circle_howod {
  width: 25%;
  height: 200px;
  background: #aca153;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-direction: column;
  max-width: 200px;
}

.tg_how_order .tg_top_howod .tg_circle_howod p {
  display: block;
  font-size: 18px;
  margin: 0px 0px 15px 0px;
}

.tg_how_order .tg_top_howod .tg_circle_howod p:last-child {
  margin: 0px;
}

.tg_how_order .tg_tmid_howod {
  width: 90%;
  padding: 0px 0px 0px 40px;
}

.tg_how_order .tg_tmid_howod .tg_tmid_item_hod {
  display: flex;
  margin: 0px 0px 50px 0px;
}

.tg_how_order .tg_tmid_howod .tg_tmid_l {}

.tg_how_order .tg_tmid_howod .tg_tmid_l span {
  font-size: 20px;
  line-height: 32px;
  color: #ACA153;
  margin: 0px 0px 5px 0px;
  display: block;
}

.tg_how_order .tg_tmid_howod .tg_tmid_l p {
  font-size: 23px;
  color: #6d6d6d;
  line-height: 30px;
  margin: 0;
}

.tg_how_order .tg_tmid_howod .tg_tmid_l p strong {
  color: #aca153;
}

.tg_how_order .tg_tmid_howod .tg_tmid_l p:nth-child(3) {
  color: #ACA153;
  font-size: 13px;
}

.tg_how_order .tg_tmid_howod .tg_tmid_r {
  margin: 0px 0px 0px auto;
  width: 29%;
}

.tg_how_order .tg_tmid_howod .tg_tmid_r ul {
  display: flex;
  align-items: stretch;
}

.tg_how_order .tg_tmid_howod .tg_tmid_r ul li {
  margin: 0px 0px 0px auto;
  text-align: center;
  position: relative;
}

.tg_how_order .tg_tmid_howod .tg_tmid_r ul li:first-child {
  margin: 0px;
  min-width: 70px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.tg_how_order .tg_tmid_howod .tg_tmid_r ul li:first-child::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 15px solid #aca153;
  border-bottom: 10px solid transparent;
  position: absolute;
  top: 50%;
  right: -45px;
  margin: -10px 0px 0px 0px;
}

.tg_how_order .tg_tmid_howod .tg_tmid_r ul li figure {
  margin: 0px auto 10px auto;
  display: table;
}

.tg_how_order .tg_tmid_howod .tg_tmid_r ul li figure img {
  width:100%;
}

.tg_how_order .tg_tmid_howod .tg_tmid_r ul li cite {
  font-style: normal;
  color: #6d6d6d;
}

.tg_bottom_hod {
  max-width: 1060px;
  display: table;
  margin: 0px auto;
}

.tg_bottom_hod .tg_item_bot_hod {
  display: flex;
  margin: 0px 0px 55px 0px;
}

.tg_bottom_hod .tg_item_bot_hod .tg_circle_howod {
  width: 25%;
  height: 200px;
  background: #aca153;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-direction: column;
  max-width: 200px;
}

.tg_bottom_hod .tg_item_bot_hod .tg_circle_howod p {
  display: block;
  font-size: 18px;
  margin: 0px 0px 15px 0px;
}

.tg_bottom_hod .tg_item_bot_hod .tg_circle_howod p:last-child {
  margin: 0px;
}

.tg_bottom_hod .tg_item_bot_hod .tg_bottom_r_hod {
  display: flex;
  align-items: center;
  width: 90%;
}

.tg_bottom_hod .tg_item_bot_hod .tg_bottom_r_hod .tg_textwidget {
  width: 90%;
  padding: 0px 50px;
}

.tg_bottom_hod .tg_item_bot_hod .tg_bottom_r_hod .tg_textwidget p {
  font-size: 23px;
  color: #6d6d6d;
  line-height: 46px;
  margin: 0px 0px 0px 0px;
  display: block;
}

.tg_bottom_hod .tg_item_bot_hod .tg_bottom_r_hod figure {
  margin: 0px 0px 0px auto;
  max-width: 80px;
}
.tg_bottom_hod .tg_item_bot_hod .tg_bottom_r_hod figure img{
  width:100%;
}

.tg_env_ic {
  max-width: 60px;
}

.tg_htod_1 {
  max-width: 100px;
}

.tg_htod_2 {
  max-width: 81px;
}

.tg_htod_4 {
  max-width: 52px;
}

.tg_htod_3 {
  max-width: 48px;
}

.tg_order_form {
  background: #DBD9D4;
  padding: 70px 0px;
  font-weight: 700;
}

.tg_order_form form {
  max-width: 1060px;
  margin: 0px auto 50px auto;
}

.tg_coupon_form {
  margin: 0px 0px 50px 0px;
}

.tg_coupon_form .tg_item_cpform {
  position: relative;
  border-bottom: 1px solid #313131;
  padding: 40px 0px 40px 0px;
  margin: 0px 0px 0px 0px;
}

.tg_coupon_form .tg_item_cpform .tg_ct_cpform {
  padding: 0px 0px 0px 120px;
}

.tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform {
  display: flex;
  align-items: center;
  margin: 0px 0px 40px 0px;
}

.tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_wrap_radio {
  width: 32%;
  cursor: pointer;
}

.tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_wrap_radio input[type="radio"] {
  position: absolute;
  top: 32%;
  left: 0px;
}
.tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_wrap_radio img{
  width:100%;
}

.tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_title_cou {
  width: 37%;
  text-align: center;
  padding: 0px 0px 0px 30px;
}

.tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_title_cou p {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}

.tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_cou_price {
  width: 41%;
  text-align: center;
}

.tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_cou_price strong {
  font-size: 22px;
}

.tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_cou_price strong cite {
  font-size: 30px;
  font-style: normal;
  line-height: 45px;
}


.tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_bot_cpform {
  display: flex;
  width: 78%;
}

.tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_bot_cpform b {
  font-size: 18px;
  line-height: 30px;
}

.tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_bot_cpform span {
  margin: 0px 0px 0px auto;
  font-size: 30px;
  font-style: normal;
  line-height: 45px;
}

.tg_howtos_form {
  display: flex;
  margin: 0px 0px 50px 0px;
}

.tg_howtos_form .tg_htform_label {}

.tg_howtos_form .tg_htform_label p {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
}

.tg_howtos_form .tg_htform_label p em {
  font-style: normal;
  color: #b41616;
  font-size: 14px;
}

.tg_howtos_form .tg_htform_label span {}

.tg_howtos_form .tg_radio_howtos {
  margin: 0px 0px 0px auto;
  width: 60%;
  padding: 0px 0px 0px 40px;
}

.tg_howtos_form .tg_radio_howtos .tg_item_rhtos {
  position: relative;
  margin: 0px 0px 25px 0px;
  text-align: left;
}

.tg_howtos_form .tg_radio_howtos .tg_item_rhtos:last-child {
  margin: 0px;
}

.tg_howtos_form .tg_radio_howtos .tg_item_rhtos input[type="radio"] {
  position: absolute;
  top: 4px;
  left: 0px;
}

.tg_howtos_form .tg_radio_howtos .tg_item_rhtos label {
  cursor: pointer;
  font-size: 18px;
  line-height: 30px;
  margin: 0px;
  padding: 0px 0px 0px 50px;
}

.tg_wrap_ipf_list:not(.comfirmation_form) .tg_list_ipf {
  font-size: 24px;
}

.tg_list_ipf h3 {
  text-align: center;
  margin: 0px 0px 40px 0px;
  font-size: 24px;
}

.tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf {
  display: flex;
  margin: 0px 0px 30px 0px;
  text-align: left;
}

.tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf .tg_ipf_label {}

.tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf .tg_ipf_label label {
  font-size: 16px;
  line-height: 30px;
}

.tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf .tg_ipf_label label span {
  font-style: normal;
  color: #b41616;
  font-size: 14px;
}

.tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf .tg_ipf_label label em {
  display: block;
  font-style: normal;
}

.tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf .tg_ipf_alert {
  width: 60%;
  margin: 0px 0px 0px auto;
  padding: 0px 0px 0px 40px;
}

.tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf .tg_ipf_alert input {
  width: 100%;
  padding: 12px 10px;
  border-radius: 5px;
  border: 1px solid #6a6a6a;
  font-family: 'hiragino-kaku-w3';
}

.tg_checkout_f {
  display: flex;
  justify-content: center;
  margin: 0px 0px 30px 0px;
}

.tg_checkout_f .tg_item_checkout_f {
  margin: 0px 30px;
}

.tg_checkout_f .tg_item_checkout_f input[type="radio"] {
  margin: 0px 5px 0px 0px;
  cursor: pointer;
}

.tg_checkout_f .tg_item_checkout_f label {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
  cursor: pointer;
}

.tg_rule_f {
  text-align: center;
  margin: 0px 0px 20px 0px;
}

.tg_rule_f p {}

.tg_rule_f .tg_term_f {
  font-size: 13px; 
  margin-bottom: 10px;
}

.tg_rule_f .tg_term_f input {
  cursor: pointer;
}

.tg_rule_f .tg_term_f label {
  cursor: pointer;
}

.tg_pc {
  display: block;
}

.tg_mb {
  display: none;
}

.top_bottle_slide {
  width: 200px;
  text-align: center;
}

.bottle-swiper {
  margin: 50px 0px 0px 0px;
}

.bottle-swiper .swiper-wrapper,
.tg_banner_dgd .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}



/*END CSS CONTENT RAU*/

@media(min-width: 1025px) and (max-width: 1600px) {
  .tg_top_hd .tg_container {
    top: 40%;
  }

  .tg_top_hd .tg_container figure {
    max-width: 350px;
    display: table;
    margin: 0px auto;
  }
}

@media(min-width:768px) and (max-width:1024px) {
  .tg_circle_howod {
    margin: 0px 0px 20px 0px;
  }

  .tg_bottom_hod .tg_item_bot_hod .tg_circle_howod p {}

  .tg_bottom_hod .tg_item_bot_hod .tg_bottom_r_hod {
    width: 100%;
  }

  .tg_bottom_hod .tg_item_bot_hod .tg_bottom_r_hod .tg_textwidget {
    padding: 0px 50px 0px 0px;
  }

  .tg_how_order .tg_tmid_howod .tg_tmid_l p {
    font-size: 20px;
    line-height: 30px;
  }

  .tg_how_order .tg_top_howod {
    align-items: center;
    flex-direction: column;
  }

  .tg_how_order .tg_tmid_howod {
    width: 100%;
    padding: 0px;
  }

  .tg_how_order .tg_top_howod .tg_circle_howod {
    width: 100%;
    margin: 0px 0px 30px 0px;
  }

  .tg_how_order .tg_tmid_howod .tg_tmid_r {
    width: 34%;
  }

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform {
    padding: 0px 0px 0px 30px;
  }

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_cou_price strong cite {}

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_title_cou p {
    font-size: 16px;
  }

  .tg_bottom_hod .tg_item_bot_hod .tg_bottom_r_hod .tg_textwidget p {
    font-size: 20px;
    line-height: 30px;
  }

  .tg_bottom_hod .tg_item_bot_hod {
    flex-direction: column;
    align-items: center;
  }

}

@media(max-width:767px) {
  .tg_banner_dgd {}

  .tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_stt_itej span {
    text-align: left;
    max-width: 100%;
  }

  .tg_aroma_item {
    padding: 0px;
  }

  .tg_aroma_item figure {
    height: initial;
  }

  .tg_perfume_aroma .col-sm-3,
  .tg_natural_aroma .col-sm-3 {
    width: 50%;
    float: left;
  }

  .tg_perfume_aroma .col-sm-3:nth-child(2n+1),
  .tg_natural_aroma .col-sm-3:nth-child(2n+1) {
    clear: both;
  }

  .tg_banner_dgd figure img {
    height: 250px;
    object-fit: cover;
  }

  .tg_pc {
    display: none;
  }

  .tg_mb {
    display: block;
  }

  .tg_top_hd>figure img {
    height: 100vh;
  }

  .tg_top_hd .tg_container {
    top: 31%;
    left: 50%;
    justify-content: center;
    height: initial;
  }

  .tg_top_hd .tg_container figure {
    max-width: 200px;
    display: table;
    margin: 0px auto;
  }

  .tg_top_hd .tg_container .tg_textwidget p {
    font-size: 14px;
    line-height: 22px;
  }


  .tg_top_hd .tg_container .tg_textwidget span {
    font-size: 19px;
    line-height: 23px;
  }


  .tg_top_hd .tg_container .tg_textwidget h1 {
    font-size: 27px;
    line-height: 30px;
  }

  .tg_title_top h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .tg_title_top p {
    font-size: 16px;
    line-height: 23px;
  }

  .tg_wrap_sgift .tg_obyfor_voucher {}

  .tg_wrap_sgift .tg_obyfor_voucher figure {}

  .tg_wrap_sgift .tg_obyfor_voucher .tg_textwidget {
    width: 120px;
    height: 120px;
    top: 0px;
    right: 0px;
  }

  .tg_wrap_sgift .tg_obyfor_voucher .tg_textwidget span {
    font-size: 8px;
    margin: 0px 0px 5px 0px;
  }

  .tg_wrap_sgift .tg_obyfor_voucher .tg_textwidget p {
    font-size: 10px;
    margin: 0px;
    line-height: 17px;
  }

  .tg_smart_gift .tg_gift_price ul li {
    flex-direction: column;
    /* align-items: flex-start; */
    align-items: center;
    margin: 0px 0px 30px 0px;
  }

  .tg_smart_gift .tg_gift_price ul li span {
    font-size: 15px;
    width: 100%;
    /* text-align: left; */
    text-align: center;
    margin: 0px 0px 13px 0px;
  }

  .tg_smart_gift .tg_gift_price ul li strong {
    margin: 0px;
    font-size: 15px;
  }

  .tg_smart_gift .tg_gift_price ul li strong cite {
    font-size: 25px;
  }

  .tg_smart_gift,
  .tg_aroma {
    padding: 50px 0px;
  }

  .tg_choices_multi .tg_title_top p {
    margin: 0px 0px 20px 0px;
  }

  .tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_title_itej p {}

  .tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy {
    flex-direction: column;
    padding: 0px 11px;
  }

  .tg_choices_multi .tg_thang_enjoy .tg_ruongbt_ej,
  .tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_stt_itej,
  .tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_title_itej {
    width: 100%;
    padding: 0px;
    margin: 0px 0px 15px 0px;
  }

  .tg_title_top {
    margin: 0px 0px 50px 0px;
  }

  .tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_title_itej,
  .tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy .tg_stt_itej {
    margin: 0px 0px 15px -20px;
  }

  .tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy.tg_last_child .tg_title_itej,
  .tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy.tg_last_child .tg_stt_itej {
    margin: 0px 0px 15px 0px;
  }

  .tg_rej_col {
    flex-direction: column;
    margin: 0px 0px 10px 0px;
  }

  .tg_rej_col .tg_rej_c_item:nth-child(2) {}

  .tg_rej_col .tg_rej_c_item {
    width: 100%;
    margin: 0px 0px 10px 0px;
    padding: 0px;
  }

  .tg_choices_multi .tg_thang_enjoy .tg_item_tenjoy.tg_last_child .tg_stt_itej {
    margin: 0px 0px 30px 0px;
  }

  .tg_under_tenjoy .tg_textwidget strong {
    font-size: 15px;
    line-height: 24px;
  }

  .tg_under_tenjoy .tg_item_utenj .tg_title_itej p {
    font-size: 16px;
  }

  .tg_rej_col .tg_rej_c_item p {
    font-size: 17px;
    text-align: left;
    padding: 4px 20px 4px 22px;
  }

  .tg_under_tenjoy .tg_item_utenj {
    flex-direction: column;
    margin: 0px 0px 20px 0px;
    align-items: flex-start;
  }

  .tg_under_tenjoy .tg_item_utenj .tg_title_itej {}

  .tg_under_tenjoy .tg_textwidget {}

  .tg_choices_multi {
    padding: 50px 0px;
  }

  .tg_how_order .tg_top_howod {
    flex-direction: column;
    align-items: center;
  }

  .tg_how_order .tg_top_howod .tg_circle_howod {
    width: 100%;
    margin: 0px 0px 20px 0px;
  }

  .tg_how_order .tg_top_howod .tg_circle_howod p {}

  .tg_how_order .tg_tmid_howod {
    padding: 0px;
    width: 100%;
  }

  .tg_how_order .tg_tmid_howod .tg_tmid_item_hod {
    flex-direction: column;
  }

  .tg_how_order .tg_tmid_howod .tg_tmid_l span {
    font-size: 16px;
    line-height: 25px;
  }

  .tg_how_order .tg_tmid_howod .tg_tmid_r {
    width: 100%;
    max-width: 250px;
    margin: 0px auto;
  }

  .tg_how_order .tg_tmid_howod .tg_tmid_r ul {}

  .tg_how_order .tg_tmid_howod .tg_tmid_r ul li:first-child {}

  .tg_how_order .tg_tmid_howod .tg_tmid_r ul li {}

  .tg_how_order .tg_tmid_howod .tg_tmid_l p {
    font-size: 17px;
    line-height: 25px;
  }

  .tg_how_order .tg_tmid_howod .tg_tmid_l {}

  .tg_bottom_hod {}

  .tg_bottom_hod .tg_item_bot_hod {
    flex-direction: column;
    align-items: center;
  }

  .tg_bottom_hod .tg_item_bot_hod:last-child {
    margin: 0px;
  }

  .tg_bottom_hod .tg_item_bot_hod .tg_circle_howod {
    width: 100%;
    margin: 0px 0px 20px 0px;
  }

  .tg_bottom_hod .tg_item_bot_hod .tg_circle_howod p {}

  .tg_bottom_hod .tg_item_bot_hod .tg_bottom_r_hod {
    width: 100%;
    flex-direction: column;
  }

  .tg_bottom_hod .tg_item_bot_hod .tg_bottom_r_hod .tg_textwidget {
    padding: 0px;
    margin: 0px 0px 20px 0px;
  }

  .tg_bottom_hod .tg_item_bot_hod .tg_bottom_r_hod .tg_textwidget p {
    font-size: 15px;
    line-height: 27px;
  }

  .tg_bottom_hod .tg_item_bot_hod .tg_bottom_r_hod figure {
    margin: 0px auto;
  }

  .tg_how_order {}

  .tg_coupon_form .tg_item_cpform {
    padding: 30px 0px;
  }

  .tg_coupon_form .tg_item_cpform:first-child {
    padding: 0px 0px 30px 0px;
  }

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform {
    padding: 0px 0px 0px 29px;
  }


  .tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform {
    flex-direction: column;
    align-items: flex-start;
    margin: 0px 0px 10px 0px;
  }

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_wrap_radio {
    width: 100%;
  }

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_wrap_radio input[type="radio"] {}

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_title_cou {
    padding: 0px;
    width: 100%;
    text-align: left;
  }

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_title_cou p {
    font-size: 15px;
  }

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_cou_price {
    width: 100%;
    text-align: left;
  }

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_top_cpform .tg_cou_price strong cite {
    font-size: 26px;
  }

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_bot_cpform {
    align-items: center;
  }

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_bot_cpform b {}

  .tg_coupon_form .tg_item_cpform .tg_ct_cpform .tg_ct_bot_cpform span {
    font-size: 26px;
  }

  .tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf .tg_ipf_alert {
    width: 100%;
    margin: 0px;
    padding: 0px;
  }

  .tg_howtos_form {
    flex-direction: column;
  }

  .tg_howtos_form .tg_htform_label {
    width: 100%;
    margin: 0px 0px 20px 0px;
  }

  .tg_howtos_form .tg_htform_label p {}

  .tg_howtos_form .tg_htform_label span {}

  .tg_howtos_form .tg_radio_howtos {
    padding: 0px;
    margin: 0px;
    width: 100%;
  }

  .tg_howtos_form .tg_radio_howtos .tg_item_rhtos label {
    padding: 0px 0px 0px 26px;
    font-size: 15px;
    line-height: 22px;
  }

  .tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf {
    flex-direction: column;
  }

  .tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf .tg_ipf_label {}

  .tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf .tg_ipf_alert input {}

}

/* 追加 */
.tg_list_ipf.howtos {
  border-top: 1px solid #313131;
  padding-top: 50px;
}

/* ギフトラッピング */
.tg_gift-rap_form {
  display: flex;
  margin: 0px 0px 25px 0px;
  border-top: 1px solid #313131;
  padding-top: 50px;
}

.tg_gift-rap_form .tg_gift-rap_select {
  margin: 0px 0px 0px auto;
  width: 60%;
  padding: 0px 0px 0px 40px;
}

.tg_gift-rap_form .tg_gift-rap_label img {
  width: auto;
  max-width: 100%;
}
.tg_gift-rap_form .tg_gift-rap_label p {
  font-size: 16px;
  line-height: 30px;
  margin: 0px;
}

.tg_gift-rap_form .tg_gift-rap_label span {
  display: block;
}

.tg_gift-rap_form .tg_gift-rap_label p em {
  font-style: normal;
  color: #b41616;
  font-size: 14px;
}

.tg_gift-rap_form .tg_gift-rap_select {
  display: flex;
  column-gap: 50px;
}

.tg_gift-rap_form .tg_gift-rap_select .gift-rap label {
  cursor: pointer;
  font-size: 18px;
  line-height: 30px;
  margin: 0px;
  padding: 0px 0px 0px 40px;
}

.tg_gift-rap_form .tg_gift-rap_label img {
  display: block;
  margin-left: 50px;
  margin-top: -30px;
}

@media screen and (max-width: 750px) {
  .tg_gift-rap_form {
    display: block;
  }

  .tg_gift-rap_form .tg_gift-rap_select {
    margin-top: 16px;
    width: 100%;
    padding: 0;
  }

  .tg_gift-rap_form .tg_gift-rap_select .gift-rap label {
    font-size: 16px;
    padding-left: 16px;
  }
}

/* submitボタン */
.tg_form_submit {
  display: table;
  margin: 0px auto;
  padding: 20px 20px;
  background: #000;
  color: #fff;
  font-size: 20px;
  border: none;
  width: 100%;
  max-width: 430px;
  cursor: pointer;
}

/* disable */
.tg_gift-rap_form.disable .tg_gift-rap_label {
  opacity: .4;
  pointer-events: none;
}

.tg_gift-rap_form.disable .tg_gift-rap_select {
  opacity: .4;
  pointer-events: none;
}

.tg_checkout_f.disable {
  pointer-events: none;
}

.tg_checkout_f.disable .tg_item_checkout_f:nth-child(2) {
  opacity: .4;
}

.tg_form_submit.disable {
  background: #83827F;
  pointer-events: none;
  cursor: default;
}

/* comfirmation */
.tg_howtos_form.comfirmation_form {
  padding-left: 120px;
}

.tg_gift-rap_form.comfirmation_form {
  padding-left: 120px;
}

.tg_wrap_ipf_list.comfirmation_form .tg_item_ipf {
  padding-left: 120px;
}


.tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf .tg_ipf_alert2 {
  width: 60%;
  margin: 0px 0px 0px auto;
  padding: 0px 0px 0px 40px;
}

.tg_list_ipf .tg_wrap_ipf_list .tg_item_ipf .tg_ipf_alert2 input {
  width: 100%;
  padding: 12px 10px;
  border-radius: 5px;
  border: 1px solid #6a6a6a;
  font-family: 'hiragino-kaku-w3';
}

.mb-50 {
  margin-bottom: 50px;
}

.tg_list_ipf input{
  background-color: white;
  font-size: 13px;
  text-align: left;
  height: auto;
}

