@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=Noto+Sans+JP:wght@400;500;700&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@400;500;700&display=swap");
* {
  font-family: "Noto Sans JP", sans-serif;
  color: #121212;
}
@media screen and (max-width: 767px) {
  * {
    font-size: 14px;
  }
}

a {
  color: #C2133C;
}
a[target=_blank] {
  background-image: url(../img/common/icon_blank.png);
  background-repeat: no-repeat;
  background-position: right bottom 3px;
  background-size: 12px auto;
  padding-right: 17px;
}

.num {
  font-family: "Roboto Condensed", sans-serif;
}

.fnt_ttl {
  font-family: "Montserrat", sans-serif;
}

.ttl_en {
  font-family: "Montserrat", sans-serif;
}

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

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

@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-transform-unset {
    transform: unset !important;
  }
}

.text-pink-800 {
  color: #C2133C;
}

body {
  overflow-x: hidden;
  position: relative;
}
body.fixed {
  width: 100%;
}
body.modal_o {
  overflow-y: hidden;
}
@media screen and (max-width: 767px) {
  body.fixed {
    height: 100vh;
    overflow-y: hidden;
    position: fixed;
  }
}

.HeightMin .anc_pos {
  padding-top: 90px;
  margin-top: -90px;
}
.HeightMin p.anc_pos {
  height: 0;
  padding-top: 120px;
  margin-top: -120px;
  position: relative;
  z-index: -1;
}

#defaultModal {
  z-index: 200;
}

#defaultModal .relative {
  max-height: 90%;
}

#defaultModal h3 {
  width: 100%;
  text-align: left;
}

.modal-container {
  z-index: 200 !important;
}

@media screen and (max-width: 767px) {
  .modal-wrapper {
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100% - 20px) !important;
    margin: 0 auto !important;
  }
}
.swal2-styled.swal2-confirm {
  background-color: #C2133C !important;
}

.bg-pink-700 {
  background-color: #C2133C !important;
}

.text-pink-700 {
  color: #C2133C !important;
}

.bg-pink-100 {
  background-color: #f9e8e8 !important;
}

.bg-gray-100 {
  background-color: #f6f6f6;
}

.wrapper {
  max-width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 1180px) {
  .wrapper {
    padding-right: 10px;
    padding-left: 10px;
  }
}

input {
  font-size: 14px !important;
}
input:hover {
  cursor: pointer;
}

input[type=text] {
  border: 1px solid #bdbdbd;
  padding: 10px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=email] {
  border: 1px solid #bdbdbd;
  padding: 10px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=password] {
  border: 1px solid #bdbdbd;
  padding: 10px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=number] {
  border: 1px solid #bdbdbd;
  padding: 10px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

input::-moz-placeholder {
  color: #747373;
  font-size: 14px;
}

input::placeholder {
  color: #747373;
  font-size: 14px;
}

input[type=text]:focus {
  outline: none !important;
  box-shadow: none;
  border-color: #bdbdbd;
  background-color: #fff8f8;
}

input[type=email]:focus {
  outline: none !important;
  box-shadow: none;
  border-color: #bdbdbd;
  background-color: #fff8f8;
}

input[type=password]:focus {
  outline: none !important;
  box-shadow: none;
  border-color: #bdbdbd;
  background-color: #fff8f8;
}

input[type=number]:focus {
  outline: none !important;
  box-shadow: none;
  border-color: #bdbdbd;
  background-color: #fff8f8;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  opacity: 0;
}
input[type=radio] + .radio-label {
  position: relative;
  font-size: 14px;
  margin-right: 20px;
  padding-left: 32px;
  display: inline-block;
}
input[type=radio] + .radio-label:hover {
  cursor: pointer;
}
input[type=radio] + .radio-label:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 2px solid #bdbdbd !important;
  display: inline-block;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 7px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
input[type=radio]:checked + .radio-label::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background-color: #C2133C;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}
input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #C2133C;
}
input[type=radio]:disabled + .radio-label:before {
  /* box-shadow: inset 0 0 0 4px $color1;*/
  border: 5px solid #fff;
  border-color: #4e0818;
  background: #4e0818;
}
input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}
input[type=checkbox] + label {
  padding: 0 0 0 35px;
  position: relative;
  font-size: 14px;
  cursor: pointer;
}
input[type=checkbox] + label:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 2px solid #bdbdbd;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
input[type=checkbox]:checked + label {
  cursor: pointer;
}
input[type=checkbox]:checked + label:after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 13px;
  border-left: 5px solid #C2133C;
  border-bottom: 5px solid #C2133C;
  transform: rotate(-45deg);
  position: absolute;
  left: 3px;
  bottom: 50%;
}
input[type=checkbox]:focus {
  outline: none !important;
}

select {
  border: 1px solid #bdbdbd;
  padding: 10px 22px 10px 10px;
  border-radius: 0;
  font-size: 14px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/common/icon_select_arrow.png);
  background-size: 9px auto;
  background-repeat: no-repeat;
  background-position: right 10px center;
}
select:focus {
  outline: none;
  box-shadow: none;
  border-color: #bdbdbd !important;
  background-color: #fff8f8;
}
select:hover {
  cursor: pointer;
}

textarea {
  border: 1px solid #bdbdbd;
  padding: 10px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

textarea::-moz-placeholder {
  color: #747373;
  font-size: 14px;
}

textarea::placeholder {
  color: #747373;
  font-size: 14px;
}

textarea:focus {
  outline: none !important;
  box-shadow: none;
  border-color: #bdbdbd;
  background-color: #fff8f8;
}

a:hover {
  cursor: pointer;
}

.md\:inset-0 {
  z-index: 120;
}
.md\:inset-0 > div {
  max-height: 90vh;
  margin-top: 0;
  margin-bottom: 0;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-container {
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .swiper-container {
    overflow: hidden;
  }
}

.swiper-button-next {
  background-image: url(../img/common/icon_arrowNext.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 60px;
  height: 60px;
  right: -30px;
}
.swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 1180px) {
  .swiper-button-next {
    right: 0px;
    width: 40px;
    height: 40px;
  }
}

.swiper-button-prev {
  background-image: url(../img/common/icon_arrowPrev.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 60px;
  height: 60px;
  left: -30px;
  z-index: 30;
}
.swiper-button-prev::after {
  display: none;
}
@media screen and (max-width: 1180px) {
  .swiper-button-prev {
    left: 0px;
    width: 40px;
    height: 40px;
  }
}

.swiper-pagination-bullet {
  margin: 0 7px !important;
  background-color: #fff;
  border: 1px solid #222;
  opacity: 1;
  z-index: 30;
}

.swiper-pagination-bullet-active {
  background-color: #C2133C;
  border: 1px solid #C2133C;
}

.bg_p {
  background-color: #fff8f8;
}

.bg_gry {
  background-color: #f6f6f6;
}

h2 {
  display: inline-block;
  position: relative;
  padding-left: 40px;
}
h2:before {
  content: "";
  display: inline-block;
  background-color: hsl(0, 0%, 7%);
  width: 2px;
  height: 160px;
  position: absolute;
  left: 0;
  bottom: 4px;
}
h2 .en {
  color: #C2133C;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  line-height: 1;
}
h2 .jp {
  display: block;
}
@media screen and (max-width: 767px) {
  h2 {
    padding-left: 10px;
  }
  h2 .en {
    font-size: 22px;
  }
  h2:before {
    height: 80px;
  }
}

.btn_blc {
  text-align: center;
}
.btn_blc a {
  font-size: 15px;
  color: hsl(0, 0%, 7%);
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background-color: #fff;
  display: inline-block;
  min-width: 180px;
  padding: 12px 40px;
  background-image: url(../img/common/icon_btnArrow_g.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px auto;
  transition: 0.5s;
}
.btn_blc a:hover {
  color: #C2133C;
  border: 1px solid #C2133C;
  background-color: #fff8f8;
  background-image: url(../img/common/icon_btnArrow_p.svg);
  background-position: right 5px center;
  transition: 0.5s;
}
.btn_blc a.top-contact-btn {
  margin-top: 8px;
  padding: 3px 15px;
  width: 100%;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .btn_blc a {
    font-size: 14px;
  }
  .btn_blc a.top-contact-btn {
    font-size: 12px;
  }
}
@media screen and (max-width: 420px) {
  .btn_blc a.top-contact-btn {
    padding: 3px 30px;
  }
}

.receipt_btn {
  text-align: center;
}
.receipt_btn a {
  font-size: 15px;
  color: hsl(0, 0%, 7%);
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  background-color: #fff;
  display: inline-block;
  padding: 4px 30px;
  background-image: url(../img/common/icon_btnArrow_g.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px auto;
  transition: 0.5s;
}
.receipt_btn a:hover {
  color: #C2133C;
  border: 1px solid #C2133C;
  background-color: #fff8f8;
  background-image: url(../img/common/icon_btnArrow_p.svg);
  background-position: right 5px center;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .receipt_btn a {
    font-size: 14px;
  }
}

.w980 {
  max-width: 980px !important;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  height: 144px;
}
header .fst_head {
  position: relative;
  transition: 0.5s;
}
header .fst_head > .flex {
  align-items: center;
}
header .snd_head {
  display: block;
  position: absolute;
  top: -150px;
  width: 100%;
}
header .snd_head > .wrapper > .flex {
  align-items: center;
  min-height: 69px;
}
header .snd_head .h_left {
  width: 120px;
  padding: 0;
}
header .snd_head .h_right {
  padding-top: 4px;
  padding-bottom: 5px;
  width: auto;
  line-height: 1;
  position: absolute;
  right: calc((100vw - 1180px) / 2);
}
header .snd_head .h_right .flex {
  padding-top: 8px;
}
header .snd_head .h_right .flex > div a span.icon {
  height: 35px;
  width: 35px;
}
header .snd_head .h_right .flex > div a span.txt {
  display: none;
}
header .snd_head .h_right .flex > div.cart a span.icon {
  background-size: 20px auto;
  background-position: left 6px center;
}
header .snd_head .h_center {
  width: 100%;
  padding: 0;
}
header .snd_head .h_center .gnav_snd nav.tgl {
  position: relative;
}
header .snd_head .h_center .gnav_snd nav.tgl:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #bdbdbd;
  position: absolute;
  right: calc(50% - 590px + 190px + 20px);
  top: -41px;
}
header .snd_head .h_center .gnav_snd nav.tgl > div > a,
header .snd_head .h_center .gnav_snd nav.tgl > div span {
  width: 138.3333333333px;
  display: inline-block;
  text-align: center;
  padding: 25px 0;
  color: hsl(0, 0%, 7%);
  height: 100%;
  font-size: 14px;
  height: 69px;
  position: absolute;
  left: calc(50% - 590px + 120px + 20px);
  top: -69px;
}
header .snd_head .h_center .gnav_snd nav.tgl > div > a:hover,
header .snd_head .h_center .gnav_snd nav.tgl > div span:hover {
  background-color: #f9e8e8;
  color: #C2133C;
}
header .snd_head .h_center .gnav_snd nav.tgl > div > a:hover:after,
header .snd_head .h_center .gnav_snd nav.tgl > div span:hover:after {
  content: "";
  display: inline-block;
  background-color: #C2133C;
  width: 60px;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
header .snd_head .h_center .gnav_snd nav.tgl > div > a:before,
header .snd_head .h_center .gnav_snd nav.tgl > div span:before {
  content: "";
  display: inline-block;
  background-color: #bdbdbd;
  width: 1px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .snd_head .h_center .gnav_snd nav.tgl > div:nth-child(2) span {
  left: calc(50% - 590px + 120px + 20px + 138.3333333333px);
}
header .snd_head .h_center .gnav_snd nav.tgl > div:nth-child(3) span {
  left: calc(50% - 590px + 120px + 20px + 276.6666666667px);
}
header .snd_head .h_center .gnav_snd nav.tgl > div:nth-child(4) span {
  left: calc(50% - 590px + 120px + 20px + 415px);
}
header .snd_head .h_center .gnav_snd nav.tgl > div:nth-child(5) span {
  left: calc(50% - 590px + 120px + 20px + 553.3333333333px);
}
header .snd_head .h_center .gnav_snd nav.tgl > div:nth-child(6) span {
  left: calc(50% - 590px + 120px + 20px + 691.6666666667px);
}
header .snd_head .h_center .gnav_snd nav.tgl > div.active > a,
header .snd_head .h_center .gnav_snd nav.tgl > div.active > span {
  background-color: #f9e8e8;
  color: #C2133C;
}
header .snd_head .h_center .gnav_snd nav.tgl > div.active > a:after,
header .snd_head .h_center .gnav_snd nav.tgl > div.active > span:after {
  content: "";
  display: inline-block;
  background-color: #C2133C;
  width: 60px;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
header .snd_head .h_center .gnav_snd nav.tgl > div .menuBlc {
  top: 0;
}
header .snd_head .gnav {
  display: none;
}
header + * {
  margin-top: 144px;
}
header .sp_head {
  display: none;
}
header .h_left {
  width: calc((100% - 195px) / 2);
  padding: 20px 0;
}
header .h_left input {
  background-image: url(../img/common/icon_search.svg);
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-position: left 10px center;
  padding: 12px 10px 12px 45px !important;
  width: 300px;
  max-width: 90%;
}
header .h_center {
  width: 195px;
  padding: 10px 0;
}
header .h_right {
  width: calc((100% - 195px) / 2);
  text-align: right;
  position: relative;
}
header .h_right .abs_box {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .h_right .flex {
  justify-content: right;
  padding-top: 5px;
}
header .h_right .flex > div {
  margin-left: 20px;
}
header .h_right .flex > div.ml_10 {
  margin-left: 10px;
}
header .h_right .flex > div a {
  display: inline-block;
  position: relative;
  text-align: center;
}
header .h_right .flex > div a span.icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 1px solid #bdbdbd;
  background-repeat: no-repeat;
}
header .h_right .flex > div a span.txt {
  font-size: 11px;
  display: block;
  margin-top: -4px;
}
header .h_right .flex > div a img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
header .h_right .flex > div a:hover span.icon {
  border: 1px solid #C2133C;
  background-color: #fff8f8;
}
header .h_right .flex > div a:hover span.txt {
  color: #C2133C;
}
header .h_right .flex > div.campaign a span.icon {
  background-image: url(../img/common/icon_campaign_g.svg);
  background-size: 24px auto;
  background-position: left 7px center;
}
header .h_right .flex > div.campaign a span.icon_no_text {
  background-image: url(../img/common/icon_campaign_g.svg);
  background-size: 24px auto;
  background-position: left 5px center;
}
header .h_right .flex > div.campaign a:hover span.icon {
  background-image: url(../img/common/icon_campaign_p.svg);
}
header .h_right .flex > div.campaign a[target=_blank] {
  background-image: none;
  padding-right: 0;
}
header .h_right .flex > div.cart a span.icon {
  background-image: url(../img/common/icon_cart_g.svg);
  background-size: 22px auto;
  background-position: left 7px center;
}
header .h_right .flex > div.cart a:hover span.icon {
  background-image: url(../img/common/icon_cart_p.svg);
}
header .h_right .flex > div.cart.has_product a span.icon {
  position: relative;
}
header .h_right .flex > div.cart.has_product a span.icon:after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: #fca00e;
  border-radius: 100%;
  border: 2px solid #f6f6f6;
  position: absolute;
  right: -3px;
  top: -2px;
}
header .h_right .flex > div.log a span.icon {
  background-image: url(../img/common/icon_login.svg);
  background-size: 16px auto;
  background-position: center center;
}
header .h_right .flex > div.log a:hover span.icon {
  background-image: url(../img/common/icon_login_p.svg);
}
header .h_right .flex > div.mypage a span.icon {
  background-image: url(../img/common/icon_man.svg);
  background-size: 22px auto;
  background-position: center center;
}
header .h_right .flex > div.mypage a:hover span.icon {
  background-image: url(../img/common/icon_man_p.svg);
}
header .h_right .flex > div.mypage.login {
  margin-left: 10px;
}
header .h_right .flex > div.mypage.login a span.icon {
  position: relative;
}
header .gnav {
  background-color: #f9e8e8;
  position: absolute;
  top: 90px;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
header .gnav > nav {
  height: 54px;
  position: relative;
}
header .gnav > nav > div.active > a,
header .gnav > nav > div.active span {
  background-color: #C2133C;
  color: #fff;
}
header .gnav > nav > div:nth-child(1) > a {
  left: calc(50% - 590px);
}
header .gnav > nav > div:nth-child(2) > span {
  left: calc(50% - 590px + 196.6666666667px);
}
header .gnav > nav > div:nth-child(3) > span {
  left: calc(50% - 590px + 393.3333333333px);
}
header .gnav > nav > div:nth-child(4) > span {
  left: calc(50% - 590px + 590px);
}
header .gnav > nav > div:nth-child(5) > span {
  left: calc(50% - 590px + 786.6666666667px);
}
header .gnav > nav > div:nth-child(6) > span {
  left: calc(50% - 590px + 983.3333333333px);
}
header .gnav > nav > div > a,
header .gnav > nav > div > span {
  display: inline-block;
  color: #C2133C;
  width: 196.6666666667px;
  text-align: center;
  font-weight: 500;
  padding: 15px 0;
  position: absolute;
  top: 0;
}
header .gnav > nav > div > a:hover,
header .gnav > nav > div > span:hover {
  background-color: #C2133C;
  color: #fff;
}
header .menuBlc {
  display: none;
  padding-bottom: 30px;
  position: absolute;
  top: 54px;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  width: 100vw;
}
header .menuBlc .upBlc {
  text-align: center;
  padding: 10px 0;
  background-color: #f6f6f6;
  box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.15);
}
header .menuBlc .upBlc .wrapper {
  display: flex;
  align-items: center;
}
header .menuBlc .upBlc .wrapper > div {
  width: 50%;
}
header .menuBlc .upBlc .wrapper > div.leftBox {
  display: flex;
  align-items: center;
}
header .menuBlc .upBlc .wrapper > div.leftBox img {
  margin-right: 20px;
  width: 80px;
  border: 1px solid #bdbdbd;
  background-color: #fff;
  border-radius: 100%;
}
header .menuBlc .upBlc .wrapper > div.leftBox p {
  font-size: 15px;
  display: inline-block;
  width: calc(100% - 100px);
  text-align: left;
}
header .menuBlc .upBlc .wrapper > div.rightBox {
  text-align: right;
}
header .menuBlc .upBlc .wrapper > div.rightBox input {
  background-image: url(../img/common/icon_search.svg);
  background-repeat: no-repeat;
  background-size: 22px auto;
  background-position: left 10px center;
  padding: 12px 10px 12px 45px !important;
  width: 85%;
}
header .menuBlc .btmBlc {
  padding-top: 10px;
}
header .menuBlc .btmBlc .cateTtl {
  color: #C2133C;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 10px 0;
}
header .menuBlc .btmBlc .box {
  display: flex;
}
header .menuBlc .btmBlc .box > div {
  width: 23.72%;
  margin-right: 1.606%;
}
header .menuBlc .btmBlc .box > div:last-child {
  margin-right: 0;
}
header .menuBlc .btmBlc .box > div .cateName {
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 7px;
  border-bottom: 1px solid #bdbdbd;
}
header .menuBlc .btmBlc .box > div .inner {
  display: flex;
}
header .menuBlc .btmBlc .box > div .inner nav:nth-child(1) {
  width: 48.38%;
  margin-right: 3.24%;
}
header .menuBlc .btmBlc .box > div .inner nav:nth-child(2) {
  width: 48.38%;
}
header .menuBlc .btmBlc .box > div nav {
  display: block;
}
header .menuBlc .btmBlc .box > div nav a {
  border-bottom: 1px solid #bdbdbd;
  font-size: 15px;
  color: hsl(0, 0%, 7%);
  display: inline-block;
  width: 100%;
  padding: 12px 10px;
  background-image: url(../img/common/icon_gmenu_arrw.svg);
  background-size: 8px auto;
  background-repeat: no-repeat;
  background-position: right 15px center;
  transition: 0.5s;
}
header .menuBlc .btmBlc .box > div nav a:hover {
  background-color: #fff8f8;
  color: #C2133C;
  background-position: right 10px center;
  transition: 0.5s;
}
header .menuBlc.skin .btmBlc {
  max-width: 950px;
  margin: 0 auto;
}
header .menuBlc.skin .btmBlc .box > div:nth-child(1) {
  width: 31.57%;
  margin-right: 2.645%;
}
header .menuBlc.skin .btmBlc .box > div:nth-child(2) {
  width: 65.785%;
}
header .menuBlc.makeup .btmBlc .box > div:nth-child(1) {
  width: 49.046%;
  margin-right: 1.606%;
}
header .menuBlc.makeup .btmBlc .box > div:nth-child(2) {
  width: 49.046%;
}
header .menuBlc.innerCare .btmBlc .box > div:nth-child(1) {
  width: 23.72%;
  margin-right: 1.606%;
}
header .menuBlc.innerCare .btmBlc .box > div:nth-child(1) nav {
  width: 100%;
  margin-right: 0;
}
header .menuBlc.innerCare .btmBlc .box > div:nth-child(2) {
  width: 49.046%;
  margin-right: 1.606%;
}
header .menuBlc.innerCare .btmBlc .box > div:nth-child(3) {
  width: 23.72%;
}
header .menuBlc.innerCare .btmBlc .box > div:nth-child(3) nav {
  width: 100%;
  margin-right: 0;
}
header .menuBlc.hair .btmBlc {
  max-width: 950px;
  margin: 0 auto;
}
header .menuBlc.hair .btmBlc .box > div:nth-child(1) {
  width: 32%;
  margin-right: 2%;
}
header .menuBlc.hair .btmBlc .box > div:nth-child(2) {
  width: 32%;
  margin-right: 2%;
}
header .menuBlc.hair .btmBlc .box > div:nth-child(3) {
  width: 32%;
}
@media screen and (max-width: 1180px) {
  header .gnav > nav > div:nth-child(1) > a {
    left: 0%;
  }
  header .gnav > nav > div:nth-child(2) > span {
    left: 16.6666666667%;
  }
  header .gnav > nav > div:nth-child(3) > span {
    left: 33.3333333333%;
  }
  header .gnav > nav > div:nth-child(4) > span {
    left: 50%;
  }
  header .gnav > nav > div:nth-child(5) > span {
    left: 66.6666666667%;
  }
  header .gnav > nav > div:nth-child(6) > span {
    left: 83.3333333333%;
  }
  header .gnav > nav > div > a,
  header .gnav > nav > div > span {
    width: 16.6666666667%;
  }
  header .menuBlc .btmBlc .box > div nav a {
    padding: 12px 23px 12px 10px;
  }
  header .snd_head .h_center {
    width: 100%;
    padding: 0;
  }
  header .snd_head .h_center .gnav_snd nav.tgl:after {
    right: calc(0% + 120px + 20px);
  }
  header .snd_head .h_center .gnav_snd nav.tgl > div > a,
  header .snd_head .h_center .gnav_snd nav.tgl > div span {
    width: calc((100% - 120px - 120px - 40px) / 6);
    left: calc(0% + 120px + 20px);
    font-size: 12px;
  }
  header .snd_head .h_center .gnav_snd nav.tgl > div:nth-child(2) span {
    left: calc(0% + 120px + 20px + (100% - 120px - 120px - 40px) / 6);
  }
  header .snd_head .h_center .gnav_snd nav.tgl > div:nth-child(3) span {
    left: calc(0% + 120px + 20px + (100% - 120px - 120px - 40px) / 6 * 2);
  }
  header .snd_head .h_center .gnav_snd nav.tgl > div:nth-child(4) span {
    left: calc(0% + 120px + 20px + (100% - 120px - 120px - 40px) / 6 * 3);
  }
  header .snd_head .h_center .gnav_snd nav.tgl > div:nth-child(5) span {
    left: calc(0% + 120px + 20px + (100% - 120px - 120px - 40px) / 6 * 4);
  }
  header .snd_head .h_center .gnav_snd nav.tgl > div:nth-child(6) span {
    left: calc(0% + 120px + 20px + (100% - 120px - 120px - 40px) / 6 * 5);
  }
  header .snd_head .h_right {
    right: 10px;
    max-width: 204px;
  }
  header .snd_head .h_right .log_st_pc .mem_name {
    display: inline-block;
    max-width: 137px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  header .snd_head .h_right .flex > div {
    margin-left: 5px;
  }
}
@media screen and (max-width: 1130px) {
  header .snd_head .h_center .gnav_snd nav > div a,
  header .snd_head .h_center .gnav_snd nav > div span {
    font-size: 14px;
  }
}
@media screen and (max-width: 960px) {
  header .gnav > nav > div.special .menuBlc .btmBlc .box {
    flex-wrap: wrap;
  }
  header .gnav > nav > div.special .menuBlc .btmBlc .box > div {
    width: 49%;
    margin-right: 0;
  }
  header .gnav > nav > div.special .menuBlc .btmBlc .box > div:nth-child(odd) {
    margin-right: 2%;
  }
  header .gnav > nav > div.special .menuBlc .btmBlc .box > div:nth-child(2) {
    margin-bottom: 40px;
  }
  header .snd_head .h_center .gnav_snd nav {
    flex-wrap: wrap;
  }
  header .snd_head .h_center .gnav_snd nav > div a,
  header .snd_head .h_center .gnav_snd nav > div span {
    font-size: 13px;
    padding: 8px 0;
  }
  header .snd_head .h_center .gnav_snd nav > div.special .menuBlc .btmBlc .box {
    flex-wrap: wrap;
  }
  header .snd_head .h_center .gnav_snd nav > div.special .menuBlc .btmBlc .box > div {
    width: 49%;
    margin-right: 0;
  }
  header .snd_head .h_center .gnav_snd nav > div.special .menuBlc .btmBlc .box > div:nth-child(odd) {
    margin-right: 2%;
  }
  header .snd_head .h_center .gnav_snd nav > div.special .menuBlc .btmBlc .box > div:nth-child(2) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  header {
    height: 57px;
  }
  header + * {
    margin-top: 57px;
  }
  header .gnav {
    display: none;
  }
  header .fst_head,
  header .snd_head {
    display: none;
  }
  header .sp_head {
    display: block;
  }
  header .sp_head .flex {
    align-items: center;
    width: 100%;
  }
  header .sp_head .h_left {
    width: 32%;
    padding: 10px 0;
  }
  header .sp_head .h_left h1 img {
    max-height: 37px;
  }
  header .sp_head .h_right {
    width: 68%;
    padding-top: 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  header .sp_head .h_right > div a {
    display: inline-block;
    position: relative;
    text-align: center;
  }
  header .sp_head .h_right > div a span.icon {
    border: none;
    background-size: auto 24px;
    background-position: center;
    width: 30px;
    height: 37px;
    display: inline-block;
    background-repeat: no-repeat;
  }
  header .sp_head .h_right > div.search {
    width: 14%;
  }
  header .sp_head .h_right > div.search a span.icon {
    background-image: url(../img/common/icon_search_g.svg);
  }
  header .sp_head .h_right > div.campaign {
    width: 22%;
  }
  header .sp_head .h_right > div.campaign.cam_sp {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .sp_head .h_right > div.campaign.cam_sp .txt {
    font-size: 7px;
    position: absolute;
    position: absolute;
    top: 30px;
  }
  header .sp_head .h_right > div.campaign a span.icon {
    background-image: url(../img/common/icon_campaign_g.svg);
    background-size: auto 26px;
  }
  header .sp_head .h_right > div.campaign a[target=_blank] {
    background-image: none;
    padding-right: 0;
  }
  header .sp_head .h_right > div.cart {
    width: 14%;
  }
  header .sp_head .h_right > div.cart a span.icon {
    background-image: url(../img/common/icon_cart_g.svg);
  }
  header .sp_head .h_right > div.cart.has_product a span.icon {
    position: relative;
  }
  header .sp_head .h_right > div.cart.has_product a span.icon:after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    background-color: #fca00e;
    border-radius: 100%;
    border: 2px solid #f6f6f6;
    position: absolute;
    right: -3px;
    top: -2px;
  }
  header .sp_head .h_right > div.log_st {
    width: 72%;
    max-width: 165px;
    padding: 0 7px 0 20px;
  }
  header .sp_head .h_right > div.log_st .status {
    font-size: 12px;
    color: #fff;
    background-color: #fca00e;
    text-align: center;
    border-radius: 3px;
    position: relative;
    padding: 0 10px;
  }
  header .sp_head .h_right > div.log_st .name {
    font-size: 12px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  header .dwnMenu {
    display: none;
  }
}
.ancBlc {
  padding-top: 164px;
  margin-top: -164px;
}
@media screen and (max-width: 768px) {
  .ancBlc {
    padding-top: 85px;
    margin-top: -85px;
  }
}

.btn_favo button {
  background-color: #f6f6f6;
  padding: 7px 10px;
  border: 1px solid #bdbdbd;
}
.btn_favo button.btn_favo_on {
  background-color: #fff8f8;
  border: 1px solid #C2133C;
}
.btn_favo button.btn_favo_on svg {
  fill: #C2133C;
}
.btn_favo button.btn_favo_on span {
  color: #C2133C;
}
.btn_favo button svg {
  fill: #bdbdbd;
  padding: 2px;
}
.btn_favo button span {
  font-size: 13px;
}

body.menuOpen::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
}

body.HeightMin #header {
  height: 69px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
body.HeightMin #header + * {
  margin-top: 69px;
}
body.HeightMin .fst_head {
  top: -144px;
  transition: 0.5s;
}
body.HeightMin .snd_head {
  top: 0;
  transition: 0.5s;
}
body.HeightMin .gnav {
  display: none;
}
body.HeightMin .dwnMenu .menuBlc {
  top: 69px;
}
@media screen and (max-width: 768px) {
  body.HeightMin #header {
    height: 57px;
  }
}

.ecbn-selection-page-wrapper .ecbn-selection-title img {
  display: inline-block;
}

header.beforeL {
  height: 84px;
}
header.beforeL .h_center {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  header.beforeL .h_center {
    width: 32%;
  }
}

.log_st_pc {
  text-align: right;
}
.log_st_pc span {
  font-size: 12px;
}
.log_st_pc span.icon {
  font-size: 13px;
  color: #fff;
  background-color: #fca00e;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 3px;
  margin-right: 5px;
  font-family: "Roboto Condensed", sans-serif;
}
@media screen and (max-width: 1180px) {
  .log_st_pc {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .log_st_pc {
    display: none;
  }
}

footer {
  background-color: #eeeeee;
  position: relative;
}
footer .btn_top {
  position: fixed;
  right: -70px;
  bottom: 80px;
  z-index: 100;
}
footer .btn_top a {
  display: inline-block;
  border-radius: 5px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  color: hsl(0, 0%, 7%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.75);
  background-image: url(../img/common/icon_btnArrowU_g.svg);
  background-repeat: no-repeat;
  background-size: 6px auto;
  background-position: top 9px left 20px;
  position: relative;
  transition: 0.5s;
}
footer .btn_top a span {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}
footer .btn_top a:hover {
  transition: 0.5s;
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  background-image: url(../img/common/icon_btnArrowU_p.svg);
}
footer .btn_top a:hover span {
  color: #C2133C;
}
footer .wrapper {
  display: flex;
}
footer .wrapper > div {
  text-align: center;
}
footer .wrapper > div.guide {
  width: 25%;
}
footer .wrapper > div.support {
  width: 36%;
}
footer .wrapper > div.tel {
  width: 39%;
}
footer .upBlc {
  background-color: #f6f6f6;
  padding: 65px 0;
}
footer .upBlc .ttl_en {
  font-size: 30px;
  color: #C2133C;
}
footer .upBlc .txt {
  font-size: 15px;
  text-align: center;
  margin-bottom: 10px;
}
footer .upBlc .tel .txt {
  margin-bottom: 6px;
}
footer .upBlc .tel .tel_no span {
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1;
  background-image: url(../img/common/icon_mobile.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px auto;
  padding-left: 27px;
}
footer .upBlc .tel .time {
  font-size: 15px;
  margin-top: 8px;
}
footer .upBlc .tel .time .ttl {
  font-size: 14px;
  border: 1px solid #bdbdbd;
  background-color: #fff;
  line-height: 1;
  padding: 3px 5px;
  margin-right: 10px;
}
footer .upBlc .tel .time .piriod {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}
footer .upBlc .support .btn_blc {
  display: flex;
  justify-content: center;
}
footer .upBlc .support .btn_blc a:nth-child(1) {
  margin-right: 20px;
}
footer .btmBlc {
  padding: 20px 0 10px;
}
footer .btmBlc .wrapper {
  flex-wrap: wrap;
  align-items: end;
}
footer .btmBlc .wrapper > div.leftBlc {
  width: 50%;
}
footer .btmBlc .wrapper > div.leftBlc .site_name {
  font-size: 12px;
  line-height: 1;
}
footer .btmBlc .wrapper > div.rightBlc {
  width: 50%;
}
footer .btmBlc .leftBlc {
  text-align: left;
}
footer .btmBlc .leftBlc .logo a {
  display: inline-block;
  width: 155px;
}
footer .btmBlc .leftBlc .f_nav nav span {
  margin-right: 15px;
}
footer .btmBlc .leftBlc .f_nav nav span:after {
  content: "|";
  margin-left: 15px;
  color: #bdbdbd;
}
footer .btmBlc .leftBlc .f_nav nav span:last-child:after {
  content: "";
}
footer .btmBlc .leftBlc .f_nav nav a {
  font-size: 12px;
  color: hsl(0, 0%, 7%);
  line-height: 1;
}
footer .btmBlc .leftBlc .f_nav nav a:hover {
  color: #C2133C;
}
footer .btmBlc .rightBlc {
  text-align: right;
}
footer .btmBlc .rightBlc .snsBlc {
  display: flex;
  justify-content: right;
  align-items: flex-end;
  margin-bottom: 5px;
}
footer .btmBlc .rightBlc .snsBlc > div {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
footer .btmBlc .rightBlc .snsBlc > div:last-child {
  margin-right: 0;
}
footer .btmBlc .rightBlc .snsBlc > div a {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #bdbdbd;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
footer .btmBlc .rightBlc .snsBlc > div a:hover {
  border: 2px solid #C2133C;
  background-color: #fff8f8;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
}
footer .btmBlc .rightBlc .snsBlc > div.line a {
  background-image: url(../img/common/logo_line.svg);
  background-image: url(../img/common/logo_line_c.svg);
  background-size: 30px auto;
}
footer .btmBlc .rightBlc .snsBlc > div.line a:hover {
  background-image: url(../img/common/logo_line_c.svg);
}
footer .btmBlc .rightBlc .snsBlc > div.insta a {
  background-image: url(../img/common/logo_insta_c.png);
  background-size: 20px auto;
}
footer .btmBlc .rightBlc .snsBlc > div.fb a {
  background-image: url(../img/common/logo_fb_c.svg);
  background-size: 30px auto;
}
footer .btmBlc .rightBlc .snsBlc > div.yt a {
  background-image: url(../img/common/logo_yt_c.svg);
  background-size: 30px auto;
}
footer .btmBlc .rightBlc .copy {
  font-size: 12px;
  color: #333333;
}
footer .ftr_nav {
  padding-top: 20px;
  text-align: left;
}
footer .ftr_nav .wrapper {
  display: flex;
}
footer .ftr_nav .wrapper > div {
  width: 25%;
}
footer .ftr_nav .wrapper > div nav > div {
  text-align: left;
}
footer .ftr_nav .wrapper > div nav a {
  font-size: 14px;
  color: #121212;
}
footer .ftr_nav .wrapper > div nav a:hover {
  color: #C2133C;
}
footer #spFooter_menu {
  display: none;
}
@media screen and (max-width: 1180px) {
  footer .upBlc > .wrapper {
    display: flex;
  }
  footer .upBlc > .wrapper > div {
    width: 100%;
    margin-bottom: 30px;
  }
  footer .upBlc > .wrapper > div.tel {
    margin-bottom: 0;
  }
  footer .ftr_nav .wrapper > div {
    width: 30%;
  }
  footer .ftr_nav .wrapper > div:nth-child(1), footer .ftr_nav .wrapper > div:nth-child(2) {
    width: 20%;
  }
}
@media screen and (max-width: 1050px) {
  footer .upBlc {
    padding: 40px 0;
  }
  footer .upBlc > .wrapper {
    display: block;
  }
  footer .upBlc .ttl_en {
    font-size: 22px;
  }
  footer .upBlc .txt {
    font-size: 14px;
  }
  footer .upBlc .tel .tel_no span {
    font-size: 22px;
    background-size: auto 20px;
    padding-left: 18px;
  }
  footer .upBlc .tel .tel_no span a {
    font-size: 21px;
    color: hsl(0, 0%, 7%);
    pointer-events: none;
  }
  footer .upBlc .support .btn_blc {
    display: flex;
  }
  footer .upBlc .support .btn_blc a {
    width: 49%;
    max-width: 180px;
    min-width: auto;
  }
  footer .upBlc .support .btn_blc a:nth-child(1) {
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 76.75px;
  }
  footer .btn_top {
    right: 10px;
  }
  footer .btmBlc {
    padding: 20px 0 0;
  }
  footer .btmBlc .wrapper {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  footer .btmBlc .wrapper > div.leftBlc {
    display: none;
  }
  footer .btmBlc .wrapper > div.rightBlc {
    width: 100%;
  }
  footer .btmBlc .wrapper > div.rightBlc .snsBlc {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .btmBlc .wrapper > div.rightBlc .snsBlc::before {
    content: "OFFICIAL SNS";
    font-size: 12px;
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 7px;
  }
  footer .btmBlc .wrapper > div.rightBlc .copy {
    background-color: #707070;
    padding: 10px 0;
    margin-top: 15px;
    text-align: center;
  }
  footer .btmBlc .wrapper > div.rightBlc .copy p {
    color: #fff;
    font-size: 12px;
  }
  footer .btmBlc .wrapper > div.rightBlc .copy p.site_name {
    display: inline-block;
  }
  footer .ftr_nav {
    display: none;
  }
  footer #spFooter_menu {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #eeeeee;
    z-index: 160;
  }
  footer #spFooter_menu > div {
    width: 25%;
  }
  footer #spFooter_menu > div a,
  footer #spFooter_menu > div > span {
    font-size: 12px;
    text-align: center;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom 38px center;
    background-size: auto 20px;
    color: hsl(0, 0%, 7%);
    position: relative;
    padding: 45px 0 11px;
  }
  footer #spFooter_menu > div a span,
  footer #spFooter_menu > div > span span {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
  footer #spFooter_menu > div.spF_menu_search > span {
    background-image: url(../img/common/icon_search_g.svg);
  }
  footer #spFooter_menu > div.spF_menu_login a {
    background-image: url(../img/common/icon_login.svg);
    background-size: auto 23px;
  }
  footer #spFooter_menu > div.spF_menu_mypage a {
    background-image: url(../img/common/icon_man.svg);
  }
  footer #spFooter_menu > div.spF_menu_cart a {
    background-image: url(../img/common/icon_cart_g.svg);
    background-size: auto 21px;
    background-position: bottom 35px center;
  }
  footer #spFooter_menu > div.spF_menu_cart.has_product a span:after {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    background-color: #fca00e;
    border-radius: 100%;
    border: 2px solid #f6f6f6;
    position: absolute;
    right: 27px;
    top: 11px;
  }
}
@media screen and (max-width: 768px) and (min-width: 280px) and (max-width: 320px) {
  footer #spFooter_menu > div.spF_menu_cart.has_product a span:after .your-class {
    right: 17px;
  }
}
@media screen and (max-width: 768px) {
  footer #spFooter_menu > div.spF_menu_menu > span {
    background-image: url(../img/common/icon_menu_g.svg);
    background-size: auto 15px;
    background-position: bottom 40px center;
  }
  footer #spFooter_menu > div.active > span {
    background-color: #4b4b4b;
    background-image: url(../img/common/icon_close.svg);
    background-size: 20px auto;
    background-position: center;
  }
  footer #spFooter_menu > div.active > span span {
    display: none;
  }
}

.ftr_nav_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .ftr_nav_sp {
    display: block;
    width: 100%;
  }
  .ftr_nav_sp .cls_btn_up {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(../img/common/icon_close.svg);
    position: absolute;
    right: 10px;
    top: 15px;
  }
  .ftr_nav_sp .inner {
    min-height: 100%;
    background-color: #fff;
  }
  .ftr_nav_sp .inner .menu_btn_blc {
    display: flex;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  }
  .ftr_nav_sp .inner .menu_btn_blc > div {
    width: 50%;
  }
  .ftr_nav_sp .inner .menu_btn_blc > div a {
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 24px auto;
    display: inline-block;
    width: 100%;
    padding: 18px 0 18px 38px;
    text-align: left;
    position: relative;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
  }
  .ftr_nav_sp .inner .menu_btn_blc > div a:after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 12px;
    background-image: url(../img/common/icon_spMenu_arrowR_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .ftr_nav_sp .inner .menu_btn_blc > div.btn_login a {
    background-color: #707070;
    background-image: url(../img/common/icon_man_w.svg);
  }
  .ftr_nav_sp .inner .menu_btn_blc > div.btn_mypage a {
    background-color: #C2133C;
    background-image: url(../img/common/icon_entry.svg);
  }
  .ftr_nav_sp .inner .box .ttl {
    background-color: #e4e4e4;
    color: #C2133C;
    font-size: 13px;
    font-weight: 700;
    padding: 10px;
    box-shadow: inset -1px 0px 3px rgba(0, 0, 0, 0.2);
  }
  .ftr_nav_sp .inner .box ul li > a,
  .ftr_nav_sp .inner .box ul li > span {
    padding: 10px;
    margin: 0 10px;
    color: hsl(0, 0%, 7%);
    display: inline-block;
    width: calc(100% - 20px);
    border-bottom: 1px solid #bdbdbd;
    background-image: url(../img/common/icon_spMenu_arrowR_p.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 7px;
    font-size: 14px;
  }
  .ftr_nav_sp .sp_menu_search .inner .search_blc {
    padding: 10px;
  }
  .ftr_nav_sp .sp_menu_search .inner .search_blc input {
    width: 100%;
    background-image: url(../img/common/icon_search.svg);
    background-repeat: no-repeat;
    background-size: 22px auto;
    background-position: left 10px center;
    padding: 12px 10px 12px 45px !important;
  }
  .ftr_nav_sp .sp_menu_search .inner .box {
    background-color: #fff8f8;
  }
  .ftr_nav_sp .sp_menu_search .inner .box ul li > a,
  .ftr_nav_sp .sp_menu_search .inner .box ul li > span {
    display: flex;
    align-items: center;
    background-image: url(../img/common/icon_spMenu_arrowB_p.svg);
  }
  .ftr_nav_sp .sp_menu_search .inner .box ul li > a span,
  .ftr_nav_sp .sp_menu_search .inner .box ul li > span span {
    font-size: 15px;
  }
  .ftr_nav_sp .sp_menu_search .inner .box ul li > a span.icon,
  .ftr_nav_sp .sp_menu_search .inner .box ul li > span span.icon {
    display: inline-block;
    width: 47px;
    height: 47px;
    border-radius: 100%;
    background-color: #fff;
  }
  .ftr_nav_sp .sp_menu_search .inner .box ul li > a span.txt,
  .ftr_nav_sp .sp_menu_search .inner .box ul li > span span.txt {
    width: calc(100% - 47px);
    padding-left: 15px;
  }
  .ftr_nav_sp .sp_menu_search .inner .box ul li .dwn_menu {
    display: none;
  }
  .ftr_nav_sp .sp_menu_search .inner .box ul li .dwn_menu ul li {
    background-color: #fff;
  }
  .ftr_nav_sp .sp_menu_search .inner .box ul li .dwn_menu ul li a {
    background-image: url(../img/common/icon_spMenu_arrowR_p.svg);
    background-size: 7px 12px;
    font-size: 14px;
    padding: 13px 10px;
  }
  .ftr_nav_sp .sp_menu_search .inner .box ul li.lnk_dir > a {
    background-image: url(../img/common/icon_spMenu_arrowR_p.svg);
    background-size: 7px 12px;
  }
  .ftr_nav_sp .sp_menu_search .inner .box ul li.active {
    background-color: #C2133C;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  }
  .ftr_nav_sp .sp_menu_search .inner .box ul li.active > a,
  .ftr_nav_sp .sp_menu_search .inner .box ul li.active > span {
    background-image: url(../img/common/icon_spMenu_arrowU_w.svg);
  }
  .ftr_nav_sp .sp_menu_search .inner .box ul li.active > a span.txt,
  .ftr_nav_sp .sp_menu_search .inner .box ul li.active > span span.txt {
    color: #fff;
  }
  .ftr_nav_sp .sp_menu_index .inner .box .comBnr_blc {
    display: flex;
    flex-wrap: wrap;
  }
  .ftr_nav_sp .sp_menu_index .inner .box .comBnr_blc > div {
    width: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .ftr_nav_sp .sp_menu_index .inner .box .comBnr_blc > div a {
    color: #fff;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 30px 0;
  }
  .ftr_nav_sp .sp_menu_index .inner .box .comBnr_blc > div.about {
    background-image: url(../img/top/clm04_img01.jpg);
  }
  .ftr_nav_sp .sp_menu_index .inner .box .comBnr_blc > div.teiki {
    background-image: url(../img/top/clm04_img02.jpg);
  }
  .ftr_nav_sp .sp_menu_index .inner .box .comBnr_blc > div.step {
    background-image: url(../img/top/clm04_img03.jpg);
  }
  .ftr_nav_sp .sp_menu_index .inner .box .comBnr_blc > div.think {
    background-image: url(../img/top/clm04_img04.png);
    background-size: 25% auto;
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul li {
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 30px auto;
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul li.order {
    background-image: url(../img/common/icon_cart_p.svg);
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul li.teiki {
    background-image: url(../img/common/icon_teiki_p.png);
    background-size: 35px auto;
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul li.payment {
    background-image: url(../img/common/icon_coin_p.png);
    background-size: 26px auto;
    background-position: 12px center;
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul li.deliv {
    background-image: url(../img/common/icon_deliv_p.png);
    background-size: 33px auto;
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul li.cancel {
    background-image: url(../img/common/icon_cancel_p.svg);
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul li.return {
    background-image: url(../img/common/icon_return_p.png);
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul li > a {
    padding: 15px 0 15px 40px;
    font-size: 14px;
    background-size: 15px 10px;
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul.sub_nav {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul.sub_nav li {
    position: relative;
    border-bottom: 1px solid #bdbdbd;
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul.sub_nav li a {
    background-image: none;
    border-bottom: none;
    padding: 13px 0px 13px 10px;
    font-size: 13px;
    margin: 0;
    width: 100%;
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul.sub_nav li:nth-child(odd) {
    width: 47%;
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul.sub_nav li:nth-child(even) {
    width: 53%;
  }
  .ftr_nav_sp .sp_menu_index .inner .box ul.sub_nav li:nth-child(even):before {
    content: "";
    display: inline-block;
    background-color: #bdbdbd;
    width: 1px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.sp_menu_blc {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_menu_blc {
    display: block;
    width: 100%;
    max-width: 400px;
    background-color: rgba(0, 0, 0, 0.65);
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 150;
    overflow-y: scroll;
    height: 100%;
    padding-bottom: 76.75px;
    transition: 0.5s;
  }
  .sp_menu_blc.active {
    left: 0;
    transition: 0.5s;
  }
  .sp_menu_blc#sp_menu_index {
    left: auto;
    right: -100%;
  }
  .sp_menu_blc#sp_menu_index.active {
    right: 0;
  }
  .sp_menu_blc .cls_btn_up {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(../img/common/icon_close.svg);
    position: absolute;
    right: 10px;
    top: 15px;
  }
  .sp_menu_blc .inner {
    width: calc(100% - 40px);
    min-height: 100%;
    background-color: #fff;
  }
  .sp_menu_blc .inner .menu_btn_blc {
    display: flex;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  }
  .sp_menu_blc .inner .menu_btn_blc > div {
    width: 50%;
  }
  .sp_menu_blc .inner .menu_btn_blc > div a {
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 24px auto;
    display: inline-block;
    width: 100%;
    padding: 18px 0 18px 40px;
    text-align: left;
    position: relative;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
  }
  .sp_menu_blc .inner .menu_btn_blc > div a:after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 12px;
    background-image: url(../img/common/icon_spMenu_arrowR_w.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .sp_menu_blc .inner .menu_btn_blc > div.btn_login a {
    background-color: #707070;
    background-image: url(../img/common/icon_login_w.svg);
    background-size: 21px auto;
  }
  .sp_menu_blc .inner .menu_btn_blc > div.btn_mypage a {
    background-color: #C2133C;
    background-image: url(../img/common/icon_man_w.svg);
  }
  .sp_menu_blc .inner .menu_btn_blc > div.btn_entry a {
    background-color: #C2133C;
    background-image: url(../img/common/icon_entry.svg);
  }
  .sp_menu_blc .inner .box .ttl {
    background-color: #e4e4e4;
    color: #C2133C;
    font-size: 13px;
    font-weight: 700;
    padding: 10px;
    box-shadow: inset -1px 0px 3px rgba(0, 0, 0, 0.2);
  }
  .sp_menu_blc .inner .box ul li > a,
  .sp_menu_blc .inner .box ul li > span {
    padding: 10px;
    margin: 0 10px;
    color: hsl(0, 0%, 7%);
    display: inline-block;
    width: calc(100% - 20px);
    border-bottom: 1px solid #bdbdbd;
    background-image: url(../img/common/icon_spMenu_arrowR_p.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 7px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  #sp_menu_search .inner .search_blc {
    padding: 10px;
  }
  #sp_menu_search .inner .search_blc input {
    width: 100%;
    background-image: url(../img/common/icon_search.svg);
    background-repeat: no-repeat;
    background-size: 22px auto;
    background-position: left 10px center;
    padding: 12px 10px 12px 45px !important;
  }
  #sp_menu_search .inner .box {
    background-color: #fff8f8;
  }
  #sp_menu_search .inner .box ul li > a,
  #sp_menu_search .inner .box ul li > span {
    display: flex;
    align-items: center;
    background-image: url(../img/common/icon_spMenu_arrowB_p.svg);
  }
  #sp_menu_search .inner .box ul li > a span,
  #sp_menu_search .inner .box ul li > span span {
    font-size: 15px;
  }
  #sp_menu_search .inner .box ul li > a span.icon,
  #sp_menu_search .inner .box ul li > span span.icon {
    display: inline-block;
    width: 47px;
    height: 47px;
    border-radius: 100%;
    background-color: #fff;
  }
  #sp_menu_search .inner .box ul li > a span.txt,
  #sp_menu_search .inner .box ul li > span span.txt {
    width: calc(100% - 47px);
    padding-left: 15px;
  }
  #sp_menu_search .inner .box ul li .dwn_menu {
    display: none;
  }
  #sp_menu_search .inner .box ul li .dwn_menu ul li {
    background-color: #fff;
  }
  #sp_menu_search .inner .box ul li .dwn_menu ul li a {
    background-image: url(../img/common/icon_spMenu_arrowR_p.svg);
    background-size: 7px 12px;
    font-size: 14px;
    padding: 13px 10px;
  }
  #sp_menu_search .inner .box ul li.lnk_dir > a {
    background-image: url(../img/common/icon_spMenu_arrowR_p.svg);
    background-size: 7px 12px;
  }
  #sp_menu_search .inner .box ul li.active {
    background-color: #C2133C;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  }
  #sp_menu_search .inner .box ul li.active > a,
  #sp_menu_search .inner .box ul li.active > span {
    background-image: url(../img/common/icon_spMenu_arrowU_w.svg);
  }
  #sp_menu_search .inner .box ul li.active > a span.txt,
  #sp_menu_search .inner .box ul li.active > span span.txt {
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  #sp_menu_index .inner .box .comBnr_blc {
    display: flex;
    flex-wrap: wrap;
  }
  #sp_menu_index .inner .box .comBnr_blc > div {
    width: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  #sp_menu_index .inner .box .comBnr_blc > div a {
    color: #fff;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 30px 0;
  }
  #sp_menu_index .inner .box .comBnr_blc > div.about {
    background-image: url(../img/top/clm04_img01.jpg);
  }
  #sp_menu_index .inner .box .comBnr_blc > div.teiki {
    background-image: url(../img/top/clm04_img02.jpg);
  }
  #sp_menu_index .inner .box .comBnr_blc > div.step {
    background-image: url(../img/top/clm04_img03.jpg);
  }
  #sp_menu_index .inner .box .comBnr_blc > div.think {
    background-image: url(../img/top/clm04_img04.png);
    background-size: 25% auto;
  }
}
@media screen and (max-width: 767px) {
  #sp_menu_index .inner .box ul li {
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 30px auto;
  }
  #sp_menu_index .inner .box ul li.search {
    background-image: url(../img/common/icon_search_g_pink.svg);
    background-size: 27px auto;
  }
  #sp_menu_index .inner .box ul li.order {
    background-image: url(../img/common/icon_cart_p.svg);
  }
  #sp_menu_index .inner .box ul li.teiki {
    background-image: url(../img/common/icon_teiki_p.png);
    background-size: 35px auto;
  }
  #sp_menu_index .inner .box ul li.payment {
    background-image: url(../img/common/icon_coin_p.png);
    background-size: 26px auto;
    background-position: 12px center;
  }
  #sp_menu_index .inner .box ul li.deliv {
    background-image: url(../img/common/icon_deliv_p.png);
    background-size: 33px auto;
  }
  #sp_menu_index .inner .box ul li.cancel {
    background-image: url(../img/common/icon_cancel_p.svg);
  }
  #sp_menu_index .inner .box ul li.return {
    background-image: url(../img/common/icon_return_p.png);
  }
  #sp_menu_index .inner .box ul li.point {
    background-image: url(../img/common/icon_point_p.svg);
    background-size: 27px auto;
    background-position: left 15px center;
  }
  #sp_menu_index .inner .box ul li.mypage {
    background-image: url(../img/common/icon_man_p.svg);
    background-size: 25px auto;
    background-position: left 15px center;
  }
  #sp_menu_index .inner .box ul li.guide {
    background-image: url(../img/common/icon_shopping_g.png);
    background-position: left 15px center;
    background-size: 21px auto;
  }
  #sp_menu_index .inner .box ul li > a {
    padding: 15px 0 15px 40px;
    font-size: 14px;
    background-size: 15px 10px;
  }
  #sp_menu_index .inner .box ul.sub_nav {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  #sp_menu_index .inner .box ul.sub_nav li {
    position: relative;
    border-bottom: 1px solid #bdbdbd;
  }
  #sp_menu_index .inner .box ul.sub_nav li a {
    background-image: none;
    border-bottom: none;
    padding: 13px 0px 13px 10px;
    font-size: 13px;
    margin: 0;
    width: 100%;
  }
  #sp_menu_index .inner .box ul.sub_nav li:nth-child(odd) {
    width: 47%;
  }
  #sp_menu_index .inner .box ul.sub_nav li:nth-child(even) {
    width: 53%;
  }
  #sp_menu_index .inner .box ul.sub_nav li:nth-child(even):before {
    content: "";
    display: inline-block;
    background-color: #bdbdbd;
    width: 1px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

#insta .ecbn-selection-page-wrapper .ecbn-selection-title img {
  display: inline-block;
}
#insta .vsm-tile {
  max-width: 810px;
}
#insta .vsm-slider {
  margin: 0 auto;
}
#insta .ecbn-selection-wrapper .ecbn-selection-title img {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #insta .vsm-tile .ecbn-selection-page-wrapper .ecbn-selection-snap {
    width: 100% !important;
    display: flex;
    flex-wrap: wrap;
  }
  #insta .vsm-tile .ecbn-selection-page-wrapper .ecbn-selection-snap li {
    position: static !important;
  }
  #insta .vsm-tile .ecbn-selection-page-wrapper .ecbn-selection-snap li.ecbn-selection-item {
    padding: 0 !important;
    width: 32% !important;
    margin-bottom: 2%;
  }
  #insta .vsm-tile .ecbn-selection-page-wrapper .ecbn-selection-snap li.ecbn-selection-item:not(#insta .vsm-tile .ecbn-selection-page-wrapper .ecbn-selection-snap li.ecbn-selection-item:nth-child(3n)) {
    margin-right: 2% !important;
  }
  #insta .vsm-tile .ecbn-selection-page-wrapper .ecbn-selection-title {
    font-size: 16px;
  }
  #insta .vsm-tile .ecbn-selection-page-wrapper .ecbn-selection-title img {
    height: 20px;
    width: 20px;
  }
  #insta .vsm-tile .ecbn-selection-page-wrapper .ecbn-selection-description {
    font-size: 14px;
    text-align: left;
  }
  #insta .ecbn-selection-widget span {
    font-size: 14px;
  }
  #insta .ecbn-selection-page-wrapper .ecbn-selection-title img,
  #insta .ecbn-selection-wrapper .ecbn-selection-title img {
    height: 20px;
    width: 20px;
  }
}

#__inner_lightbox .ecbn-selection-item {
  width: auto !important;
}

.pankuzu {
  background-color: #f6f6f6;
  padding: 10px 0;
}
.pankuzu ul {
  display: flex;
}
.pankuzu ul li {
  font-size: 12px;
  padding-right: 6px;
}
.pankuzu ul li:not(:last-child):after {
  content: "〉";
  display: inline-block;
  padding-left: 12px;
}
.pankuzu ul li a {
  font-size: 12px;
  font-weight: 700;
  color: hsl(0, 0%, 7%);
}
.pankuzu ul li a:hover {
  color: #C2133C;
}
@media screen and (max-width: 767px) {
  .pankuzu {
    padding: 7px 0;
  }
  .pankuzu ul {
    flex-wrap: wrap;
  }
  .pankuzu ul li {
    font-size: 11px;
  }
  .pankuzu ul li a {
    font-size: 11px;
  }
}

.cont {
  padding: 40px 0 60px;
  min-height: 500px;
}
.cont h2 {
  padding-left: 0;
  margin-bottom: 40px;
}
.cont h2:before {
  display: none;
}
@media screen and (max-width: 767px) {
  .cont h2 {
    margin-bottom: 20px;
  }
}

.form_blc {
  margin-top: 40px;
}
.form_blc .beauty_con_info {
  display: none;
}
.form_blc .beauty_con_info.active {
  display: block;
  scroll-margin: 150px;
}
.form_blc .clm {
  padding-bottom: 40px;
}
.form_blc .clm#your_beauty_con, .form_blc .clm#public_info, .form_blc .clm#otameshi, .form_blc .clm#shopping-info {
  scroll-margin: 150px;
}
.form_blc .clm#your_beauty_con .label-flex, .form_blc .clm#public_info .label-flex, .form_blc .clm#otameshi .label-flex, .form_blc .clm#shopping-info .label-flex {
  display: flex;
  flex-direction: row;
}
.form_blc .clm#your_beauty_con .beauty_con_desc_btn, .form_blc .clm#public_info .beauty_con_desc_btn, .form_blc .clm#otameshi .beauty_con_desc_btn, .form_blc .clm#shopping-info .beauty_con_desc_btn {
  border: 2px solid #c2133c;
  color: #fff;
  border-radius: 5px;
  line-height: 1;
  padding: 8px;
  width: -moz-max-content;
  width: max-content;
  font-size: 14px;
  background: #c2133c;
}
.form_blc .clm#your_beauty_con .beauty_con_desc_btn:hover, .form_blc .clm#public_info .beauty_con_desc_btn:hover, .form_blc .clm#otameshi .beauty_con_desc_btn:hover, .form_blc .clm#shopping-info .beauty_con_desc_btn:hover {
  cursor: pointer;
  color: #c2133c;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .form_blc .clm#your_beauty_con .beauty_con_desc_btn, .form_blc .clm#public_info .beauty_con_desc_btn, .form_blc .clm#otameshi .beauty_con_desc_btn, .form_blc .clm#shopping-info .beauty_con_desc_btn {
    margin-top: 10px;
  }
}
.form_blc .clm .tokuten_service {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 15px;
  margin-top: 20px;
}
.form_blc h3 {
  display: flex;
  align-items: center;
  background-color: #f6f6f6;
  padding: 13px 20px;
  border-bottom: 2px solid #C2133C;
  position: relative;
  align-items: center;
  margin-bottom: 20px;
}
.form_blc h3.space_between {
  justify-content: space-between;
}
.form_blc h3.otameshi_ttl_S143 {
  margin-bottom: 0;
  border-bottom: none;
}
.form_blc h3 span {
  display: inline-block;
}
.form_blc h3 span.ttl {
  font-weight: 500;
  color: #C2133C;
  width: 28.57%;
}
.form_blc h3 span.ttl.ttl_unset {
  width: unset;
}
.form_blc h3 span.ttl label {
  color: #C2133C;
}
.form_blc h3 span.txt {
  font-size: 14px;
}
.form_blc h3 span.txt_desc {
  font-size: 14px;
}
.form_blc h3 span.txt_desc.pc-only {
  display: block;
}
.form_blc h3 span.txt_desc.sp-only {
  display: none;
}
.form_blc h3 span.tgl {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #C2133C;
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  line-height: 1;
  padding: 1px 8px 5px;
  width: 80px;
  font-size: 14px;
  color: #C2133C;
}
.form_blc h3 span.tgl.opeClo:before {
  content: "開く";
  color: #C2133C;
  font-size: 14px;
  display: inline-block;
}
.form_blc h3 span.tgl.opeClo:after {
  content: "＋";
  color: #C2133C;
  font-size: 15px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-55%);
}
.form_blc h3 span.tgl.opeClo.open:before {
  content: "閉じる";
}
.form_blc h3 span.tgl.opeClo.open:after {
  content: "ー";
}
.form_blc h3 span.tgl:hover {
  cursor: pointer;
  background-color: #C2133C;
  color: #fff;
}
.form_blc h3 span.tgl:hover:before {
  color: #fff;
}
.form_blc h3 span.tgl:hover:after {
  color: #fff;
}
.form_blc h3 span.tgl.edit {
  background-image: url(../img/common/icon_pen_p.svg);
  background-position: right 7px center;
  background-repeat: no-repeat;
  background-size: 19px auto;
  width: auto;
  padding: 5px 30px 5px 10px;
}
.form_blc h3 span.tgl.edit:hover {
  background-image: url(../img/common/icon_pen_w.svg);
}
.form_blc h3 a {
  display: inline-block;
}
.form_blc h3 a.edit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #C2133C;
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  line-height: 1;
  width: 80px;
  font-size: 14px;
  color: #C2133C;
  background-image: url(../img/common/icon_pen_p.svg);
  background-position: right 7px center;
  background-repeat: no-repeat;
  background-size: 19px auto;
  width: auto;
  padding: 5px 30px 5px 10px;
}
.form_blc h3 a.edit:hover {
  background-image: url(../img/common/icon_pen_w.svg);
}
.form_blc h3 a.edit:hover {
  cursor: pointer;
  background-color: #C2133C;
  color: #fff;
}
.form_blc h3 a.edit:hover:before {
  color: #fff;
}
.form_blc h3 a.edit:hover:after {
  color: #fff;
}
.form_blc h3.only_ttl span.ttl {
  width: 100%;
}
.form_blc .lead_blc {
  padding: 0 20px 20px;
}
.form_blc .lead_blc p {
  font-size: 14px;
}
.form_blc .kiyaku_blc {
  padding: 20px;
  height: 290px;
  overflow-y: scroll;
  border-top: 1px solid #bdbdbd;
  border-bottom: 1px solid #bdbdbd;
  margin-bottom: 30px;
}
.form_blc .kiyaku_blc .kiyaku_box {
  margin-bottom: 20px;
}
.form_blc .kiyaku_blc .ttl {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.form_blc .kiyaku_blc .ttl_02 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}
.form_blc .kiyaku_blc p {
  font-size: 14px;
  margin-bottom: 10px;
}
.form_blc .kiyaku_blc ul li {
  font-size: 14px;
  text-indent: -1em;
  margin-left: 2em;
}
.form_blc .check_blc {
  text-align: center;
  margin-bottom: 30px;
}
.form_blc .check_blc .check_box label {
  font-weight: 700;
}
.form_blc .pp_blc {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 30px;
}
.form_blc .pp_blc a {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #C2133C;
}
.form_blc .sp_lead {
  display: none;
}
.form_blc .form_btn_blc {
  text-align: center;
}
.form_blc .form_btn_blc button {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background-color: #C2133C;
  border: 2px solid #C2133C;
  padding: 15px 0;
  border-radius: 5px;
  width: 250px;
  text-align: center;
}
.form_blc .form_btn_blc button:nth-child(1) {
  margin-right: 15px;
}
.form_blc .form_btn_blc button:nth-child(2) {
  margin-left: 15px;
}
.form_blc .form_btn_blc button:hover {
  background-color: #fff8f8;
  color: #C2133C;
}
.form_blc .form_btn_blc a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background-color: #C2133C;
  border: 2px solid #C2133C;
  padding: 15px 0;
  border-radius: 5px;
  width: 250px;
  text-align: center;
  display: inline-block;
}
.form_blc .form_btn_blc a:nth-child(1) {
  margin-right: 15px;
}
.form_blc .form_btn_blc a:nth-child(2) {
  margin-left: 15px;
}
.form_blc .form_btn_blc a:hover {
  background-color: #fff8f8;
  color: #C2133C;
}
.form_blc .form_btn_blc a.back {
  border: 2px solid #7f7f7f;
  background-color: #f6f6f6;
  color: #7f7f7f;
}
.form_blc .form_btn_blc a.back:hover {
  background-color: #7f7f7f;
  color: #fff;
}
.form_blc .attn_box {
  border: 2px solid #C2133C;
  background-color: #fff8f8;
  padding: 20px 15px 15px;
  position: relative;
  margin-top: 30px;
}
.form_blc .attn_box .ttl {
  background-color: #C2133C;
  display: inline-block;
  line-height: 1;
  padding: 5px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: -13px;
  left: 20px;
}
.form_blc .attn_box .con .box {
  margin-bottom: 10px;
}
.form_blc .attn_box .con p {
  font-size: 13px;
  text-indent: -1em;
  margin-left: 1em;
  line-height: 1.8;
}
.form_blc .attn_box .con .subttl {
  font-size: 15px;
  font-weight: 700;
  color: #C2133C;
  margin-bottom: 3px;
}
.form_blc .attn_box .con .tel_no span.no {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1;
  background-image: url(../img/common/icon_mobile.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 14px auto;
  padding-left: 20px;
}
.form_blc .attn_box .con .tel_no span.time {
  font-size: 13px;
  margin-left: 15px;
}
.form_blc .attn_box .con .tel_no span.time .num {
  font-size: 16px;
}
.form_blc table {
  border-top: 1px solid #bdbdbd;
  width: 100%;
}
.form_blc table.no_border {
  border-top: none;
}
.form_blc table.col2box tr th {
  width: 28.57%;
}
.form_blc table.col2box tr td {
  width: 71.43% !important;
}
.form_blc table tr th {
  border-bottom: 1px solid #bdbdbd;
  background-color: #f6f6f6;
  font-size: 14px;
  font-weight: 700;
  width: 28.57%;
  padding: 20px;
  vertical-align: middle;
  text-align: left;
  position: relative;
}
.form_blc table tr th span.nes {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background-color: #C2133C;
  border-radius: 3px;
  padding: 1px 8px;
  letter-spacing: 3px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.form_blc table tr th span.delete {
  font-size: 13px;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #bdbdbd;
  padding: 5px 3px 5px 26px;
  letter-spacing: 3px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/common/icon_close_g.svg);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: left 5px center;
}
.form_blc table tr th span.delete:hover {
  cursor: pointer;
  border: 1px solid #C2133C;
  color: #C2133C;
  background-image: url(../img/common/icon_close_p.svg);
}
.form_blc table tr td {
  border-bottom: 1px solid #bdbdbd;
  padding: 20px 0 20px 15px;
}
.form_blc table tr td.pay-time {
  padding: 0;
}
.form_blc table tr td.pay-time p {
  background-color: #f6f6f6;
  padding: 20px;
  border-bottom: 2px solid #C2133C;
  position: relative;
  align-items: center;
  margin: 20px 0px;
  color: #C2133C;
  font-size: 14px;
}
.form_blc table tr td.no_border {
  border-bottom: none;
}
.form_blc table tr td.sp-only {
  display: none;
}
.form_blc table tr td.pc-only {
  display: table-cell;
}
.form_blc table tr td input[type=text] {
  width: 100%;
  padding: 7px 10px !important;
}
.form_blc table tr td input[type=email] {
  width: 100%;
  padding: 7px 10px !important;
}
.form_blc table tr td input[type=password] {
  width: 100%;
  padding: 7px 10px !important;
}
.form_blc table tr td .unit {
  font-size: 15px;
  display: inline-block;
  margin-left: 10px;
}
.form_blc table tr td .label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 3px;
}
.form_blc table tr td .box.up {
  margin-bottom: 10px;
}
.form_blc table tr td:nth-child(2) {
  width: 40.81%;
}
.form_blc table tr td:nth-child(3) {
  padding: 10px 0 10px 15px;
}
.form_blc table tr td:nth-child(3) p {
  font-size: 13px;
  text-indent: -1em;
  margin-left: 1em;
}
.form_blc table tr td .input_wrp {
  display: flex;
  align-items: center;
}
.form_blc table tr.bc_name td input {
  width: 92%;
}
.form_blc table tr.name_blc td input {
  width: 48%;
}
.form_blc table tr.name_blc td input:nth-child(1) {
  margin-right: 4%;
}
.form_blc table tr.zip_blc .input_wrp {
  align-items: center;
}
.form_blc table tr.zip_blc input[type=text] {
  width: 33.76%;
}
.form_blc table tr.zip_blc button {
  color: #fff;
  background-color: #C2133C;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px;
  width: 3.5em;
  border-radius: 3px;
  margin-left: 10px;
}
.form_blc table tr.zip_blc .unit {
  display: inline-block;
  margin-right: 10px;
}
.form_blc table tr.pref td {
  text-align: left;
}
.form_blc table tr.pref td .select_box .bg-pink-100 {
  background-color: #fff !important;
}
.form_blc table tr.pref td .select_box .bg-pink-100 select {
  background-color: #fff8f8;
}
.form_blc table tr.address_blc td:nth-child(3) {
  vertical-align: bottom;
}
.form_blc table tr.tel_blc td .unit {
  margin: 0 10px;
}
.form_blc table tr.radio_btn td input[type=radio] + .radio-label {
  border: 2px solid #bdbdbd;
  background-color: #f6f6f6;
  padding: 7px 0;
  width: 120px;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  margin-right: 15px;
}
.form_blc table tr.radio_btn td input[type=radio] + .radio-label::before {
  display: none;
}
.form_blc table tr.radio_btn td input[type=radio] + .radio-label:after {
  display: none;
}
.form_blc table tr.radio_btn td input[type=radio]:checked + .radio-label {
  border: 2px solid #C2133C;
  background-color: #fff8f8;
  color: #C2133C;
}
.form_blc table tr.birth_blc td .unit {
  margin: 0 10px;
}
.form_blc table tr.payment td {
  position: relative;
}
.form_blc table tr.payment td .radio_box {
  display: block;
}
.form_blc table tr.payment td .radio_box:not(:last-child) {
  margin-bottom: 20px;
}
.form_blc table tr.payment td .txt_ato {
  position: absolute;
  left: 220px;
  top: 110px;
}
.form_blc table tr.payment td .txt_ato p {
  font-size: 13px;
  text-indent: -1em;
  margin-left: 1em;
}
.form_blc table tr.payment.cart td .radio_blc {
  padding-bottom: 40px;
}
.form_blc table tr.address p {
  font-size: 14px;
}
.form_blc table tr.address .add_address {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 13px;
}
.form_blc table tr.address .add_address a {
  border: 2px solid #bdbdbd;
  background-color: #f6f6f6;
  padding: 9px 15px;
  border-radius: 5px;
  color: hsl(0, 0%, 7%);
  margin-right: 15px;
  min-width: 165px;
  display: inline-block;
  text-align: center;
}
.form_blc table tr.address .add_address a:hover {
  border: 2px solid #C2133C;
  background-color: #fff8f8;
  color: #C2133C;
}
.form_blc table tr.deliv_date td select {
  width: 165px;
  margin-right: 15px;
}
.form_blc table tr.deliv_date td span {
  font-size: 13px;
}
.form_blc table tr.deliv_time td select {
  width: 165px;
  margin-right: 15px;
}
.form_blc table tr.deliv_time td span {
  font-size: 13px;
}
.form_blc table tr.point td {
  position: relative;
}
.form_blc table tr.point td .radio_box {
  display: block;
}
.form_blc table tr.point td .radio_box:nth-child(1) {
  margin-bottom: 20px;
}
.form_blc table tr.point td .use_point {
  position: absolute;
  left: 300px;
  top: 58px;
}
.form_blc table tr.point td .use_point span {
  font-size: 14px;
}
.form_blc table tr.point td .use_point input {
  width: 80px;
  margin: 0 7px;
  font-family: "Roboto Condensed", sans-serif;
  text-align: right;
}
.form_blc .txt_err {
  font-size: 13px !important;
  color: #C2133C;
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 1180px) {
  .form_blc table tr.point td .use_point {
    position: static;
    margin-top: 10px;
    margin-left: 31px;
  }
  .form_blc table tr.deliv_date td span {
    display: block;
  }
  .form_blc table tr.deliv_date td span.select_box {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 890px) {
  .form_blc table tr.payment.cart td .radio_blc {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .form_blc {
    margin-top: 20px;
  }
  .form_blc .clm {
    padding-bottom: 30px;
  }
  .form_blc .clm .tokuten_service {
    flex-direction: column;
  }
  .form_blc h3 {
    padding: 10px 10px;
    margin-bottom: 15px;
    display: block;
  }
  .form_blc h3 span.ttl {
    width: 100%;
    display: block;
    font-size: 16px;
  }
  .form_blc h3 span.ttl .check_box {
    display: block;
    width: 100%;
  }
  .form_blc h3 span.ttl .check_box label {
    width: 100%;
    font-size: 16px;
  }
  .form_blc h3 span.txt {
    display: none;
  }
  .form_blc h3 span.txt_desc {
    display: block;
    text-align: right;
    padding-top: 5px;
  }
  .form_blc h3 span.txt_desc.pc-only {
    display: none;
  }
  .form_blc h3 span.txt_desc.sp-only {
    display: block;
  }
  .form_blc .call_tel p.tel_no span a {
    pointer-events: none;
    color: hsl(0, 0%, 7%);
    font-size: 29px;
  }
  .form_blc .sp_lead {
    display: block;
    margin-bottom: 15px;
    font-size: 13px;
  }
  .form_blc .lead_blc {
    padding: 0 0 20px;
  }
  .form_blc .kiyaku_blc {
    padding: 20px 30px 20px 10px;
  }
  .form_blc .form_btn_blc button {
    width: 90%;
    font-size: 16px;
    padding: 10px 0;
  }
  .form_blc table tr {
    display: block;
  }
  .form_blc table tr th {
    display: block;
    width: 100% !important;
    padding: 10px 10px;
  }
  .form_blc table tr th span.nes {
    right: 10px;
  }
  .form_blc table tr td {
    display: block;
    width: 100% !important;
    padding: 10px 10px;
  }
  .form_blc table tr td:nth-child(3) {
    padding-top: 0;
  }
  .form_blc table tr td input[type=text] {
    padding: 12px 10px !important;
  }
  .form_blc table tr td.sp-only {
    display: table-cell;
  }
  .form_blc table tr td.sp-only-pb {
    padding-bottom: 10px !important;
  }
  .form_blc table tr td.pc-only {
    display: none;
  }
  .form_blc table tr.bc_name td input[type=text] {
    width: 90%;
  }
  .form_blc table tr.radio_btn td:nth-child(2) {
    text-align: center;
  }
  .form_blc table tr.address .add_address span {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .form_blc table tr.pref td select {
    min-width: 50%;
  }
  .form_blc table tr.payment td .txt_ato {
    position: static;
  }
  .form_blc table tr.payment.cart td .radio_blc {
    padding-bottom: 0;
  }
  .form_blc table tr.payment.cart td .txt_err {
    margin-bottom: 10px;
  }
  .form_blc table tr.point td .use_point {
    position: static;
    margin-top: 10px;
    margin-left: 31px;
  }
  .form_blc table.col2box tr td {
    width: 100% !important;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 110;
}
.modal.active {
  display: block;
}
.modal .modal_close {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../img/common/icon_close_g.svg);
  background-size: contain;
  position: absolute;
  right: calc(50% - 490px);
  top: 30px;
}
.modal .modal_close:hover {
  cursor: pointer;
}
.modal .wrapper {
  width: 980px;
  max-width: 100%;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  max-height: 90%;
  overflow-y: scroll;
}
.modal .wrapper .form_blc {
  background-color: #fff;
  padding: 20px;
  margin-top: 0;
}
.modal .wrapper .form_blc .form_btn_blc {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .modal .modal_close {
    right: 10px;
    width: 20px;
    height: 20px;
    top: 20px;
  }
  .modal .wrapper {
    max-height: calc(90% - 70px);
    transform: translate(-50%, 0);
    top: 40px;
  }
  .modal .wrapper .form_blc {
    padding: 10px;
  }
}

.beauty_con_modal, .service_modal {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 110;
}
.beauty_con_modal.active, .service_modal.active {
  display: block;
}
.beauty_con_modal .beauty_con_modal_close, .beauty_con_modal .service_modal_close, .service_modal .beauty_con_modal_close, .service_modal .service_modal_close {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../img/common/icon_close_g_red.svg);
  background-size: contain;
}
.beauty_con_modal .beauty_con_modal_close:hover, .beauty_con_modal .service_modal_close:hover, .service_modal .beauty_con_modal_close:hover, .service_modal .service_modal_close:hover {
  cursor: pointer;
  opacity: 0.8;
}
.beauty_con_modal .beauty_con_wrapper, .beauty_con_modal .service_wrapper, .service_modal .beauty_con_wrapper, .service_modal .service_wrapper {
  width: 800px;
  max-width: 100%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  max-height: 95%;
}
.beauty_con_modal .beauty_con_wrapper .sec-box, .beauty_con_modal .service_wrapper .sec-box, .service_modal .beauty_con_wrapper .sec-box, .service_modal .service_wrapper .sec-box {
  background: #fff;
  padding: 20px;
  margin-top: 0;
}
.beauty_con_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__ttl, .beauty_con_modal .service_wrapper .sec-box .sec-box__inner .sec-box__ttl, .service_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__ttl, .service_modal .service_wrapper .sec-box .sec-box__inner .sec-box__ttl {
  display: flex;
  justify-content: space-between;
  background-color: #f6f6f6;
  padding: 13px 20px;
  border-bottom: 2px solid #C2133C;
  position: relative;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 500;
  color: #C2133C;
}
.beauty_con_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__ttl .sec-box__ttl_txt, .beauty_con_modal .service_wrapper .sec-box .sec-box__inner .sec-box__ttl .sec-box__ttl_txt, .service_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__ttl .sec-box__ttl_txt, .service_modal .service_wrapper .sec-box .sec-box__inner .sec-box__ttl .sec-box__ttl_txt {
  font-weight: 500;
  color: #C2133C;
}
.beauty_con_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__txt.service_txt, .beauty_con_modal .service_wrapper .sec-box .sec-box__inner .sec-box__txt.service_txt, .service_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__txt.service_txt, .service_modal .service_wrapper .sec-box .sec-box__inner .sec-box__txt.service_txt {
  text-align: left;
}
.beauty_con_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__txt p, .beauty_con_modal .service_wrapper .sec-box .sec-box__inner .sec-box__txt p, .service_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__txt p, .service_modal .service_wrapper .sec-box .sec-box__inner .sec-box__txt p {
  margin-bottom: 10px;
  font-size: 14px;
}
.beauty_con_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__txt p:last-child, .beauty_con_modal .service_wrapper .sec-box .sec-box__inner .sec-box__txt p:last-child, .service_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__txt p:last-child, .service_modal .service_wrapper .sec-box .sec-box__inner .sec-box__txt p:last-child {
  margin-bottom: 0;
}
.beauty_con_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__txt p.detail_link, .beauty_con_modal .service_wrapper .sec-box .sec-box__inner .sec-box__txt p.detail_link, .service_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__txt p.detail_link, .service_modal .service_wrapper .sec-box .sec-box__inner .sec-box__txt p.detail_link {
  text-align: right;
}
.beauty_con_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__txt p.detail_link a, .beauty_con_modal .service_wrapper .sec-box .sec-box__inner .sec-box__txt p.detail_link a, .service_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__txt p.detail_link a, .service_modal .service_wrapper .sec-box .sec-box__inner .sec-box__txt p.detail_link a {
  color: #C2133C;
  text-decoration: underline;
}
.beauty_con_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__txt p.detail_link a:hover, .beauty_con_modal .service_wrapper .sec-box .sec-box__inner .sec-box__txt p.detail_link a:hover, .service_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__txt p.detail_link a:hover, .service_modal .service_wrapper .sec-box .sec-box__inner .sec-box__txt p.detail_link a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .beauty_con_modal .beauty_con_modal_close, .beauty_con_modal .service_modal_close, .service_modal .beauty_con_modal_close, .service_modal .service_modal_close {
    right: 10px;
    width: 20px;
    height: 20px;
    top: calc(20% - 20px);
  }
  .beauty_con_modal .beauty_con_wrapper, .beauty_con_modal .service_wrapper, .service_modal .beauty_con_wrapper, .service_modal .service_wrapper {
    max-height: calc(90% - 70px);
    transform: translate(-50%, 0);
    max-width: 90%;
  }
  .beauty_con_modal .beauty_con_wrapper .sec-box, .beauty_con_modal .service_wrapper .sec-box, .service_modal .beauty_con_wrapper .sec-box, .service_modal .service_wrapper .sec-box {
    padding: 10px;
  }
  .beauty_con_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__ttl, .beauty_con_modal .service_wrapper .sec-box .sec-box__inner .sec-box__ttl, .service_modal .beauty_con_wrapper .sec-box .sec-box__inner .sec-box__ttl, .service_modal .service_wrapper .sec-box .sec-box__inner .sec-box__ttl {
    padding: 10px;
  }
  .beauty_con_modal .beauty_con_wrapper .form_blc, .beauty_con_modal .service_wrapper .form_blc, .service_modal .beauty_con_wrapper .form_blc, .service_modal .service_wrapper .form_blc {
    padding: 10px;
  }
}

.service_link {
  color: #C2133C;
  text-decoration: underline;
  cursor: pointer;
}
.service_link:hover {
  opacity: 0.8;
}

.otameshi_chuui_bun {
  border: 2px solid #C2133C;
  /* display: inline-block; */
  background-color: #fff;
  border-radius: 5px;
  /* line-height: 1; */
  padding: 20px;
  /* width: 80px; */
  font-size: 16px;
  color: #C2133C;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .otameshi_chuui_bun {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */