@charset "UTF-8";
html {
  width: 100%;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100%;
  color: #1c1c1c;
  background: #fff;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  animation: fadeIn 1s ease;
  -webkit-animation: fadeIn 1s ease;
}

body,
input,
button,
select,
textarea {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

object {
  pointer-events: none;
}

a {
  cursor: pointer;
  color: #1c1c1c;
  text-decoration: none;
  transition: all .3s;
  background-color: transparent;
}

a:hover,
a:active {
  opacity: .7;
}

img {
  max-width: 100%;
  height: auto;
}

/* h */
h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

section h1 {
  font-weight: normal;
  margin-bottom: 22px;
  text-align: center;
  letter-spacing: 1.1px;
  line-height: 1.25;
}

table {
  width: 100%;
}

/* -----------------------------------------
- common
----------------------------------------- */

main {
  position: relative;
  width: 100%;
  min-width: 1140px;
  padding-top: 120px;
}

.inner {
  width: 1140px;
  min-width: 1140px;
  height: 100%;
  margin: 0 auto;
}

.column_container {
  display: flex;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

aside {
  float: left;
  width: 230px;
  max-width: 230px;
  height: 100%;
  overflow: hidden;
}

.rightcol {
  float: right;
  width: 910px;
  max-width: 910px;
  padding-left: 50px;
  height: 100%;
  overflow: hidden;
}

.rightcol_inner {
  width: 100%;
}

.main_container {
  width: 1140px;
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
}

.main_container::after {
  content: "";
  clear: both;
  display: block;
}

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

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

.txt_box a:hover {
  text-decoration: underline;
}

img.border {
  border: 1px solid #bbb;
}

.pink {
  color: #fc85c1;
}

.red {
  color: #d0021b;
}

/* -----------------------------------------
- itemtgl itemtgl_p
----------------------------------------- */
.itemtgl {
  position: relative;
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-weight: bold;
  padding: 16px 0;
  color: #1c1c1c;
  cursor: pointer;
}
.itemtgl::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 6.5px);
  right: 0;
  width: 15px;
  height: 15px;
  background: url("/img/user/common/icon_minus.svg") no-repeat;
  background-size: 100%;
  transition: ease .3s;
}
.itemtgl.plus::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 6.5px);
  right: 0;
  width: 15px;
  height: 15px;
  background: url("/img/user/common/icon_plus.svg") no-repeat;
  background-size: 100%;
  transition: ease .3s;
}

/* itemtgl_p */
.itemtgl_p {
  position: relative;
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-weight: bold;
  padding: 16px 0;
  color: #1c1c1c;
  cursor: pointer;
}
.itemtgl_p::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 8.5px);
  right: 10px;
  width: 15px;
  height: 15px;
  background: url("/img/user/common/icon_minus_p.svg") no-repeat;
  background-size: 100%;
  transition: ease .3s;
}
.itemtgl_p.plus::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 8.5px);
  right: 10px;
  width: 15px;
  height: 15px;
  background: url("/img/user/common/icon_plus_p.svg") no-repeat;
  background-size: 100%;
  transition: ease .3s;
}



/* -----------------------------------------
- animation
----------------------------------------- */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    margin-top: -10px;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    margin-top: -10px;
  }
}


/* -----------------------------------------
- header
----------------------------------------- */
header {
  width: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 99999;
}

.top {
  height: 70px;
  overflow: hidden;
}

.toplogo {
  width: 249px;
  height: 70px;
  display: block;
  float: left;
}

.toplogo a {
  display: block;
  padding: 13px 0 0;
}

.topnav_box {
  float: right;
  height: 70px;
  overflow: hidden;
}

.topnav {
  display: flex;
}


/* .search */
.search {
  margin-top: 23px;
  margin-right: 26px;
}

.input_box {
  position: relative;
  display: flex;
  width: 100%;
  line-height: 1.75;
  border-bottom: 1px solid #515151;
}

.search_btn img {
  width: 17px;
  position: absolute;
  bottom: 4px;
  right: -4px;
}

.search .input_box .input {
  width: 200px;
}

/* input */
.input_box input {
  width: 100%;
  padding-right: 1.25em;
  font-size: 12px;
  letter-spacing: 1px;
}

input::-webkit-input-placeholder {
  color: #7f7f7f;
  font-size: 12px;
  letter-spacing: 1px;
}


/* IE */
input:-ms-input-placeholder {
  color: #7f7f7f;
  font-size: 12px;
  letter-spacing: 1px;
}


/* firefox */
input::-moz-placeholder {
  color: #7f7f7f;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Edge */
input::-ms-input-placeholder {
  color: #7f7f7f;
  font-size: 12px;
  letter-spacing: 1px;
}

input[type="radio"] {
  margin-left: 1em;
}

input:disabled {
  background-color: #ddd;
  border-color: #ddd;
}
.input_required {
  font-size: inherit;
  font-weight: 600;
  color: #ff0000;
}


/* .login */
.login {
  margin-right: 25px;
  line-height: 65px;
}

.login_txt {
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 12px;
  font-weight: bold;
  color: #7f7f7f;
  letter-spacing: 1px;
}

/* .comment */
.comment {
  margin-right: 26px;
  line-height: 65px;
}

.comment img {
  width: 23px;
}
/* .love */
.love {
  margin-right: 25px;
  line-height: 65px;
}
.love img {
  width: 23px;
}


/* .shopping-cart */
.shopping-cart {
  position: relative;
  margin-right: 6px;
  line-height: 67px;
}

.shopping-cart img {
  width: 25px;
}

.cart-in_number {
  display: none;
}

.cart-in.cart-in_number {
  position: absolute;
  top: 15px;
  right: -6px;
  display: inline-block;
  width: 16px;
  height: 16px;
  padding-left: 1px;
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 11px;
  color: #fff;
  background: #d0021b;
  line-height: 17px;
  text-align: center;
  border-radius: 50%;
  letter-spacing: 1px;
}

.gnav_box {
  clear: both;
  width: 100%;
  min-width: 1140px;
  height: 50px;
}

.gnav_box a {
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  position: relative;
  display: block;
  padding-right: 30px;
  padding-left: 30px;
  color: #f51f78;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: .7px;
}
.gnav_box a:hover {
  color: #f532eb;
}

.gnav_box .gnav {
  display: flex;
  justify-content: space-around;
  line-height: 50px;
}

.gnav_box .li-gnav {
  position: relative;
  transition: .2s;
}

.gnav_box .li-gnav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fc85c1;
  opacity: 0;
  transition: opacity .3s;
}

.gnav_box .li-gnav:hover::after {
  opacity: 1;
  transition: opacity .3s;
}

.gnav-ul_box {
  position: absolute;
  top: 50px;
  display: flex;
  background: #fff;
  z-index: 99;
}

.gnav_box .gnav-ul_box ul {
  display: none;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
}

.gnav_box .gnav-ul_box ul:first-of-type {
  border-left: 1px solid #c7c7c7;
}

.gnav_box .gnav-ul_box ul:last-of-type {
  border-right: 1px solid #c7c7c7;
}

.gnav_box ul li:hover ul {
  display: block;
  width: 100%;
  animation: fadeDown .3s ease;
  -webkit-animation: fadeDown .3s ease;
}

.gnav-ul_box a {
  display: flex;
  align-items: center;
  width: 210px;
  height: 50px;
  line-height: 1.25;
  padding-right: 0;
  color: #000;
  font-size: 12px;
  background: #fff;
  transition: ease .3s;
  z-index: 99;
  overflow: hidden;
}

.gnav-ul_box a:hover {
  background: #c7c7c7;
}

.gnav-ul_box .none,
.gnav-ul_box .none a:hover {
  pointer-events: none;
  background: transparent;
}

/* -----------------------------------------
- #top_banner
----------------------------------------- */
#top_banner {
  width: 100%;
  margin: 0 auto;
  animation: fadeIn 2s ease;
  -webkit-animation: fadeIn 2s ease;
}

#top_banner a {
  display: block;
  width: 100%;
  height: 100%;
}

#top_banner .sp-slides {
  height: 548px;
}

/* slider-pro */
.sp-buttons {
  display: block;
  width: 100%;
  padding-top: 2.5px;
  margin-bottom: 20.5px;
}

.sp-button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  margin: 9.5px;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #c3c3c3;
}

.sp-selected-button {
  background-color: #333;
}

/* -----------------------------------------
- #sub_banner
----------------------------------------- */
#sub_banner {
  padding-bottom: 56px;
}

.ul-sub_banner {
  display: flex;
  justify-content: center;
  height: 155px;
}

.ul-sub_banner li {
  margin: 0 15px 0;
}

.ul-sub_banner li a {
  display: block;
  width: 100%;
  height: 100%;
}

.new_magazine table {
  height: 155px;
  background: #fff;
  border: 1px solid #fc85c1;
}

.new_magazine table td {
  height: 155px;
  text-align: center;
}

.new_magazine td:nth-child(1) {
  vertical-align: middle;
}

.new_magazine td:nth-child(1) {
  padding: 0.6em 0 0.6em 0.8em;
}

.new_magazine td:nth-child(2) {
  padding: 0.8em;
}

.new_magazine td:nth-child(1) img {
  height: 100%;
}

.new_magazine td:nth-child(2) img {
  width: 60%;
}

.new_magazine .magazinetitle {
  font-weight: bold;
  font-size: 13px;
  margin-top: 0.5em;
}

.new_magazine .morelink {
  margin-top: 2em;
  font-size: 12px;
}

.new_magazine .morelink .doubleallow {
  color: #fc85c1;
}


/* -----------------------------------------
- section
----------------------------------------- */
.sec-product_list {
  padding-bottom: 34px;
}
.sec-product_list.pb_10 {
  padding-bottom: 10px;
}

/* -----------------------------------------
- .product_list
----------------------------------------- */
.product_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 404px;
  margin-bottom: 2px;
}

.product_list>li {
  display: flex;
  flex-direction: column;
  width: 360px;
  margin-right: 30px;
}

.products-page .product_list>li {
  width: 208px;
  margin-right: 25px;
}

#newarrival .product_list>li:nth-child(3n),
.products_list-page .product_list>li:nth-child(3n) {
  margin-right: 0;
}
.products-page .product_list>li:nth-child(5n) {
  margin-right: 0;
}

/* item_image */
.item_image {
  position: relative;
  width: 100%;
  margin: 0 auto 4px;
  background: #fff;
  border: 1px solid #c7c7c7;
  overflow: hidden;
}

.item_image.soldout::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  color: #fff;
  content: "SOLD OUT";
  width: 100%;
  display: block;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
}

.item_image.soldout::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.item_image a {
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 100%;
}

.item_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/* item-variation_on */
.item_image.item-variation_on {
  overflow: initial;
}
.item-variation {
  position: absolute;
  top: -1px;
  left: 201px;
  display: none;
  width: 80px;
  height: 238px;
  padding: 10px;
  border: 1px solid #c7c7c7;
  background: #f0f0f0;
  z-index: 999;
}
.item-variation a {
  position: relative;
  z-index: 999;
}

.item-variation ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  height: 211px;
}
.item-variation li {
  position: relative;
  width: 54px;
  height: 54px;
  margin-bottom: 9px;
  text-align: center;
  background: #fff;
  border: 1px solid #c7c7c7;
}
.item-variation li:nth-of-type(3n) {
  margin-bottom: 0;
}
.item-variation li:nth-of-type(n+4) {
  margin-left: 8px;
}

/* #products_list .product_list */
#products_list .product_list>li {
  width: 260px;
  margin-right: 40px;
}
#products_list .product_list>li:nth-child(3n) {
  margin-right: 0;
}
#products_list .item_mark {
  flex-wrap: nowrap;
}
#products_list .item_image {
  height: auto;
}
#products_list .item-variation {
  left: 198px;
  height: 233px;
}
#products_list .product_list>li:nth-child(4n) .item-variation {
  left: -80px;
}

.sec-product_list .product_list>li:nth-child(5n) .item-variation {
  left: -80px;
}

/* item_info */
.item_info {
  text-align: center;
  line-height: 2.25;
}

.item_info a {
  display: inline-block;
}

.item_info a {
  display: inline-block;
}

.item_info a:hover {
  opacity: .7;
  text-decoration: underline;
}

.item_info a:hover .sale {
  text-decoration: underline;
}

.item_info .brand {
  font-size: 12px;
}

.item_info .item_title {
  font-size: 14px;
  line-height: 1.5;
  word-break: break-all;
}

.price_txt {
  font-size: 16px;
  font-weight: bold;
}

.yen {
  font-family: sans-serif;
}

.tax-in {
  font-size: 12px;
}

.sale {
  display: inline-block;
  font-size: 12px;
  color: #d0021b;
}

.sale_txt {
  padding-left: .5em;
  font-size: 12px;
  font-weight: bold;
  color: #d0021b;
}

.item_mark {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 28px;
  margin-bottom: 18px;
}

.item_mark li {
  width: 36px;
  margin-bottom: 10px;
  border: 1px solid #7d7d7d;
  text-align: center;
  border-radius: 4px;
  font-size: .7em;
}

.item_mark li:nth-child(n+1) {
  margin-right: 8px;
}

.item_mark li:nth-child(4n) {
  margin-right: 0;
}
.item_mark li.sale_mark {
  border-color: #d0021b;
}
.item_mark li.sale_mark a {
  color: #d0021b;
}

.item_mark li img {
  width: 100%;
}

.item_mark a {
  display: block;
}

.item_mark a:hover {
  opacity: .7;
}

.item_mark>.none {
  display: none;
}

.more_link {
  position: relative;
  padding-top: 16px;
  padding-right: 16px;
  font-size: 14px;
  text-align: right;
}

.more_link a {
  color: #7f7f7f;
}

.more_link::after {
  position: absolute;
  top: 21px;
  right: 0;
  content: "";
  display: inline-block;
  width: 6px;
  height: 12px;
  background: url("/img/user/common/arrow-right.svg") no-repeat;
  background-size: 100%;
}

/* -----------------------------------------
- newarrival
----------------------------------------- */
#newarrival h1 {
  margin-bottom: 26px;
}

.newarrival_list>li {
  margin-bottom: 22px;
}


/* -----------------------------------------
- #ranking
----------------------------------------- */
#ranking h1 {
  margin-bottom: 26px;
}

#ranking-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 200px);
  margin: 0 auto 30px;
  text-align: center;
}

#ranking-nav li {
  font-size: 14px;
}

#ranking-nav a {
  color: #7f7f7f;
}

#ranking-nav a:focus,
#ranking-nav a:hover,
#ranking-nav a.active {
  color: #fc85c1;
  font-weight: bold;
}

.ranking_list {
  counter-reset: number;
}

.ranking_list .item_image::after {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 9999;
  counter-increment: number;
  content: counter(number);
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 1px;
  background: #fff;
  border: 1px solid #c7c7c7;
}

.ranking_list li:nth-child(1) .item_image::after {
  color: #fff;
  background: #e7bc3a;
  border: 1px solid #e7bc3a;
}

.ranking_list li:nth-child(2) .item_image::after {
  color: #fff;
  background: #9a9893;
  border: 1px solid #9a9893;
}

.ranking_list li:nth-child(3) .item_image::after {
  color: #fff;
  background: #a0783f;
  border: 1px solid #a0783f;
}

/* -----------------------------------------
- #recommend
----------------------------------------- */
#recommend h1 {
  margin-bottom: 26px;
}

#recommend-nav {
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

#recommend-nav li {
  padding: 0 3.4em;
  font-size: 14px;
}

#recommend-nav li:first-child {
  padding-left: 7em;
}

#recommend-nav a {
  color: #7f7f7f;
}

#recommend-nav a:focus,
#recommend-nav a:hover,
#recommend-nav a.active {
  color: #fc85c1;
  font-weight: bold;
}

/* -----------------------------------------
- #brand
----------------------------------------- */
.bland_list_nav{
    width: 940px;
    margin: 0 auto;
}
#alphabetical_order {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}
ul#alphabetical_order li{
    margin: 1%;
    width: 18%;
    text-align: center;
}
ul#alphabetical_order li a{
    display: block;
    background-color: #fef4f8;
    color: #f51f78;
    font-weight: 700;
    padding: 13px;
    border-radius: 3px;
}
.brand_list h2 {
    font-size: 16px;
    color: #f51f78;
    font-weight: 700;
    border-bottom: 1px solid #d8d8d8;
    margin: 30px 0 15px;
}
.brand_list ul{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 35px;
}
.brand_list ul li {
    width: calc(100% / 5 - 16px);
    border: 1px solid #dbdbdb;
    margin: 0 20px 20px 0;
    padding: 10px;
}
.brand_list ul li a:hover{
    text-decoration: underline;
}
.brand_list ul li:nth-child(5n+5){
    margin-right: 0;
}
.brand_list_txt {
    font-size: 12px;
    text-align: center;
}
.brand_list_txt span{
    display: block;
}

/* -----------------------------------------
- #movies
----------------------------------------- */
.movie_list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 5rem;
}
.movie_list dl{
    width: calc(100% / 3 - 20px);
    margin: 0 20px 20px 0;
    padding: 10px;
}
.movie_list dl:nth-child(3n+3){
    margin-right: 0;
}
.movie_box{
    position: relative;
    height: 0;
    padding: 30px 0 56.25%;
    overflow: hidden;
}
.movie_box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.movie_list_txt{
    padding: 10px 0;
}
.movie_list_txt span{
    display: block;
    font-size: 14px;
}
.movie_list_txt span.name{
    font-weight: bold;
}

/* productSlider_cnt -- common --
--------------------------- */
.productSlider_cnt .bx-wrapper {
  margin-bottom: 0;
}

.productSlider_cnt .bx-wrapper {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.productSlider_cnt .bx-wrapper .bx-prev {
  left: 0;
  background: url("/img/user/common/arrow-left.svg") no-repeat 0;
  background-size: contain;
}

.productSlider_cnt .bx-wrapper .bx-prev:hover,
.productSlider_cnt .bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}

.productSlider_cnt .bx-wrapper .bx-next {
  right: 0;
  background: url("/img/user/common/arrow-right.svg") no-repeat 0;
  background-size: contain;
}

.productSlider_cnt .bx-wrapper .bx-next:hover,
.productSlider_cnt .bx-wrapper .bx-next:focus {
  background-position: 0 0;
}

.productSlider_cnt .bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 0;
  margin-top: -54px;
  outline: 0;
  width: 13px;
  height: 25px;
  text-indent: -9999px;
  z-index: 999;
}

.productSlider_cnt .bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* -----------------------------------------
- footer
----------------------------------------- */
footer {
  width: 100%;
  min-width: 1140px;
  margin: 0 auto;
}

footer .inner {
  position: relative;
  border-top: 1px solid #c7c7c7;
}

.footer-contents {
  display: flex;
  width: 100%;
  height: 240px;
  justify-content: space-between;
}

.footer-contents::after {
  content: "";
  clear: both;
  display: block;
}

.footer_nav {
  float: left;
  display: flex;
  width: 962px;
  margin-top: 46px;
}

.footer_nav dl {
  width: 33.3333%;
}

.footer_nav dt {
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  padding-bottom: 9px;
}

.footer_nav dd {
  display: flex;
  font-size: 12px;
}

.footer_nav dd ul {
  margin-right: 2em;
}

.footer_nav a {
  display: inline-block;
  padding-bottom: 10px;
  font-size: 12px;
}

.footer_nav a:hover {
  opacity: .7;
  text-decoration: underline;
}

.footer_sns {
}
.footer_sns li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer_sns li img {
  width: 28px;
  margin-right: 8px;
}
.footer_sns li a {
  display: block;
  padding-bottom: 0;
}

.footer_magazine {
  width: 100%;
  max-width: 312px;
  height: 188px;
  margin-top: 26px;
  padding: 16px 18px;
  background: #323232;
  display: flex;
}

.footer_magazine a {
  display: block;
}

.footer_magazine .volume_info {
  position: relative;
  width: 144px;
  margin-top: 12px;
  margin-left: 12px;
  text-align: center;
  font-weight: bold;
  color: #fff;
}

.footer_magazine .volume_info p {
  font-size: .9em;
  margin-top: 6px;
}

.footer_magazine .volume_info a {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 6px 0;
  font-size: .8em;
  background: #fff;
}

.footer_magazine .sns {
  width: 140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}


/* copyright */
small {
  font-size: 11px;
}

.copyright {
  width: 100%;
  height: 60px;
  color: #333;
  text-align: center;
  overflow: hidden;
}

.copyright p {
  padding: 14px 0;
  line-height: 1.25;
}

.copyright .copy {
  font-family: sans-serif;
}


/* pagetop */
#pagetop {
  display: none;
  position: absolute;
  right: 60px;
}

#pagetop a {
  position: fixed;
  z-index: 999;
  bottom: 240px;
  width: 62px;
  height: 62px;
  font-size: 13px;
  color: #707070;
  text-align: center;
  background: #ffe8ed;
  border-radius: 50%;
  border: 1px solid #707070;
}
#pagetop img {
  display: block;
  width: 20px;
  margin: 14px auto 1px;
}

/* ======================================
= aside .sidemenu =
========================================= */
aside h3 {
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-weight: 700;
  padding: 5px 0;
}

aside .sidemenu h3 a {
  position: relative;
  padding: 5px 0;
}

aside .sidemenu h3 a::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background: url("/img/user/common/sidemenu-arrow-right.svg") no-repeat;
}

aside h4 {
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 14px;
  font-weight: 700;
  padding-left: 20px;
}

aside .sidemenu h4 a {
  position: relative;
}

aside .sidemenu h4 a::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background: url("/img/user/common/sidemenu-arrow-right.svg") no-repeat;
}

aside .ttl {
  padding: 10px 0 3px;
}

/* .sidemenu */
.sidemenu section {
  border-bottom: 1px solid #1c1c1c;
}

.sidemenu a {
  display: block;
  padding-right: 1.5em;
}

.sidemenu .current {
  color: #fc85c1;
}

/* aside_category / aside-tgl_point */
.aside_category {
  padding: 4px 0;
}
.aside-tgl_point {
  position: relative;
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 14px;
  padding-left: 18px;
  color: #1c1c1c;
  line-height: 1.5;
  vertical-align: middle;
}
.aside-tgl_point:hover {
  cursor: pointer;
  opacity: .7;
}
.aside-tgl_point::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 2.5px);
  right: 0;
  width: 10px;
  height: 10px;
  background: url("/img/user/common/icon_minus.svg") no-repeat;
  background-size: 100%;
  transition: ease .3s;
}

.aside-tgl_point.plus::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  width: 10px;
  height: 10px;
  background: url("/img/user/common/icon_plus.svg") no-repeat;
  background-size: 100%;
  transition: ease .3s;
}
.aside_ct {
  padding: 0 2px;
  color: #1c1c1c;
}
.aside_ct:nth-of-type(n+2) ul {
  display: none;
}
.aside_ct a {
  color: #1c1c1c;
}
.aside_ct ul {
  padding: 0 20px 4px;
}
.aside_ct ul li {
  font-size: 12px;
  line-height: 2;
  white-space: nowrap;
}
.aside_ct .active,
.aside_ct ul li.active a {
  color: #fc85c1;
  font-weight: bold;
}

/* aside_category */
.aside_category a {
  position: relative;
  padding: 1px;
}
.aside_category a.pink {
  font-weight: bold;
}

.aside_category a::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0,-50%);
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background: url("/img/user/common/sidemenu-arrow-right_s.svg") no-repeat;
}

.aside_category ul {
  display: none;
  padding-left: 18px;
}
.aside_category ul.open {
  display: block;
}
.aside_category ul li {
  padding: 4px 0;
  font-size: 12px;
}
.aside_category .active,
.aside_category ul li.active a {
  color: #fc85c1;
  font-weight: bold;
}

/* aside-banner */
.aside-banner {
  margin: 20px 0;
}
.aside-banner li {
  margin-bottom: 20px;
}
.aside-banner img {
  width: 100%;
}

/* -----------------------------------------
= breadcrumb
----------------------------------------- */
#breadcrumb {
  padding: 12px 0 20px;
}
#breadcrumb li a {
  font-size: 12px;
  color: #fc85c1;
}
#breadcrumb li .now {
  color: #1c1c1c;
}
#breadcrumb li {
  display: inline;
  line-height: 1;
  font-size: 12px;
  color: #1c1c1c;
}
#breadcrumb li::after {
  display: inline-block;
  margin-bottom: 4px;
  content: ">";
  padding: 0 1em;
  color: #1c1c1c;
  font-size: 10px;
  font-weight: bold;
  vertical-align: middle;
}
#breadcrumb li:last-of-type::after {
  display: none;
}

/* -----------------------------------------
= notice
----------------------------------------- */
#notice {
  margin-bottom: 15px;
  padding: 10px 0;
}

.notice_box::after {
  content: "";
  clear: both;
  display: block;
}

.notice_box .img_box {
  float: left;
  margin-right: 28px;
  vertical-align: top;
}

.notice_box .img_box img {
  border: 1px solid #c7c7c7;
}

.notice_box .update {
  line-height: 1;
  margin-bottom: 12px;
  font-size: 12px;
  color: #7f7f7f;
}

.notice_box h1 {
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.5;
}

.notice_box p {
  margin-bottom: 1em;
  font-size: 14px;
  line-height: 1.75;
}

/* -----------------------------------------
= result_select
----------------------------------------- */
#result_select {
  margin-bottom: 14px;
  padding: 12px 0;
}
#result_select h1 {
  margin-bottom: 14px;
  text-align: left;
  font-size: 15px;
}
.result {
  float: left;
}

#result_select::after {
  content: "";
  clear: both;
  display: block;
}

/* -----------------------------------------
= display_box
----------------------------------------- */
.display_box {
  float: right;
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
}

.display-order {
  width: 155px;
  margin-right: 31px;
}

.display-stock_status {
  width: 88px;
  margin-right: 52px;
}

.display-item_count {
  width: 140px;
}

.display {
  position: relative;
  display: flex;
  width: 100%;
  font-size: 14px;
}
.display::after {
  position: absolute;
  top: 3.5px;
  right: 0;
  content: "";
  width: 12px;
  height: 12px;
  background: url(/img/user/common/icon_caret-down.svg) no-repeat;
  background-size: 100%;
  pointer-events: none;/* click */
}
.display select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
  width: 100%;
  font-size: 14px;
  border: none;
  position: relative;
}
.display option {
  width: 100%;
  color: #1c1c1c;
  background: #fff;
  border: 1px solid #c7c7c7;
}
.display select:focus option {
  color: #1c1c1c;
  background: #f9f5f3;
}

.select-hidden {
  display: none;
  visibility: hidden;
}
.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  color: #1c1c1c;
  width: 100%;
  height: 20px;
  vertical-align: top;
}
.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #1c1c1c;
  background-color: #fff;
  transition: all 0.2s ease-in;
}
.select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: -53px;
  z-index: 99999;
  width: 160px;
  margin-top: 10px;
  background: #f0f0f0;
  border: 1px solid #c7c7c7;
  animation: fadeDown .2s ease;
  -webkit-animation: fadeDown .2s ease;
}

.display-order .select-options {
  width: 160px;
  left: -56px;
}

.display-stock_status .select-options {
  width: 110px;
  left: -18px;
}

.display-item_count .select-options {
  width: 80px;
  left: -10px;
}

.select-options li {
  margin: 0;
  padding: 6px .75em;
  transition: all 0.15s ease-in;
  font-size: 14px;
  background: #fff;
}
.select-options li:hover,
.select-options li:active {
  color: #1c1c1c;
  background: #f0f0f0;
}
.select-options li[rel="hide"] {
  display: none;
}


/* -----------------------------------------
= pager
----------------------------------------- */
#pager {
  width: 100%;
  margin: 40px auto 100px;
}
#pager ul {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
#pager ul li {
  display: inline-block;
}
#pager .pager_first {
  margin-right: 14px;
}
#pager .pager_pre {
  margin-right: 21px;
}
#pager .pager_number {
  margin-right: 21px;
  font-size: 16px;
}
#pager .pager_next {
  margin-right: 14px;
}

/* ======================================
= page =
========================================= */
.page #recommend {
  clear: both;
  padding-top: 36px;
  padding-bottom: 50px;
}
.page #anotherbrand {
  padding-bottom: 50px;
}
.page #history {
  padding-bottom: 100px;
}

/* -----------------------------------------
= products.html
----------------------------------------- */
.products-page .column_container {
  margin-bottom: 30px;
}

.products-leftcol {
  width: 560px;
  margin-right: 80px;
}

/* products-image_box */
.products-image_box {
  max-width: 570px;
  margin-bottom: 30px;
  overflow: hidden;
}

/* products-image bx-wrapper */
.modaal-inner-wrapper {
  overflow: hidden;
}
.products-image_box .bx-wrapper {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #c7c7c7;
  background: #fff;
  width: 430px;
  height: 430px;
  margin-left: 60px;
  margin-right: 150px;
  margin-bottom: 13px;
}
.products-image_box .bx-wrapper li {
  position: relative;
  height: 430px;
}
.products-image_box .bx-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 98%;
  margin: auto 0;
}
.products-image_thumb {
  width: 560px;
  margin: 0 auto;
}
.products-image_thumb a {
  position: relative;
  display: inline-block;
  width: 72px;
  height: 72px;
  margin-right: 1.5px;
  margin-bottom: 6px;
  border: 1px solid #c7c7c7;
  background: #fff;
  vertical-align: top;
  overflow: hidden;
}
.products-image_thumb a img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 100%;
  max-width: 70px;
  padding: 2px;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.products-image_box .bx-wrapper .bx-prev {
  left: -40px;
  background: url("/img/user/common/arrow-left-black.svg") no-repeat;
  background-size: cover;
}
.products-image_box .bx-wrapper .bx-prev:hover,
.products-image_box .bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}
.products-image_box .bx-wrapper .bx-next {
  right: -40px;
  background: url("/img/user/common/arrow-right-black.svg") no-repeat;
  background-size: cover;
}
.products-image_box .bx-wrapper .bx-next:hover,
.products-image_box .bx-wrapper .bx-next:focus {
  background-position: 0 0;
}
.products-image_box .bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -22px;
  outline: 0;
  width: 19px;
  height: 37px;
  text-indent: -9999px;
  z-index: 9999;
}
.products-image_box .bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

.products-ambassador_movie_box {
  text-align: center;
}

.products-ambassador_comment_box {
  margin: 20px 0 50px;
}
.products-ambassador_comment_box .description > div {
  display: flex;
  margin: 10px 0 20px;
  align-items: center;
}
.products-ambassador_comment_box .description > div > .ambassador-icon {
  width: 80px;
  margin-right: 20px;
}
.products-ambassador_comment_box .description > p {
   margin-bottom: 30px;
}

/* products-counter */
.products-counter {
  display: flex;
  margin-left: 63px;
  margin-bottom: 25px;
  font-family: "Poppins", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  font-size: 12px;
}
.products-counter button {
  width: 18px;
  margin-right: 16px;
}
.products-counter .txt {
  margin-right: 7px;
}
.products-counter span {
  display: inline-block;
  padding-top: 5px;
}

/* products-comment */
.products-comment {
  padding: 8px 15px;
  background: #ffe8ed;
}
.products-comment h2 {
  padding: 0;
  font-size: 18px;
  color: #fc85c1;
}
.products-comment h3 {
  padding: 23px 0;
  font-size: 14px;
}

.products-comment p {
  margin-bottom: 1.75em;
  line-height: 1.75;
}

/* products-review */
.products-review {
  padding: 16px 0;
}

.products-review h2 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

/* -----------------------------------------
- review-score
----------------------------------------- */
.review-score .count {
  font-size: 14px;
  padding-bottom: 10px;
}
.review-score .percent {
  font-size: 14px;
  margin-bottom: 19px;
}

.review-score table {
  table-layout: fixed;
}
.review-score td {
  height: 14px;
  padding: 2px 0 3px;
  vertical-align: middle;
}
.review-score td:nth-child(1) {
  width: 98px;
}
.review-score td:nth-child(2) {
  width: 250px;
}
.review-score td:nth-child(3) {
  padding-left: 20px;
}

.review-score .star {
  display: flex;
  flex-wrap: nowrap;
  color: #ffc800;
  white-space: nowrap;
}
.review-score .star img {
  width: 16px;
  margin-right: 2px;
}

/* .review-score .meter */
.review-score .meter {
  width: 250px;
  height: 14px;
  background-color: #f5f5f5;
  border-radius: 1px;
  overflow: hidden;
}
.review-score .meter .meter-bar {
  height: 100%;
  background: #ffc800;
  background-color: #ffc800;
  border-radius: 1px;
}

/* review-write */
.review-write a {
  position: relative;
}
.review-write a::after {
  content: "";
  position: absolute;
  top: 3px;
  display: inline-block;
  width: 6px;
  height: 12px;
  margin-left: 10px;
  background: url("/img/user/common/arrow-right.svg") center no-repeat;
}


/* products-info */
.products-info {
  margin-bottom: 23px;
}
.products-info .brand {
  display: block;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1;
}
.products-info h1 {
  font-size: 22px;
  font-weight: bold;
}

.products-info .price_txt {
  display: inline-block;
  margin-right: 8px;
  font-size: 30px;
  color: #d0021B;
}
.products-info .tax-in {
  display: inline-block;
  font-size: 14px;
  color: #d0021B;
  vertical-align: text-bottom;
}

/* products-select */
.products-select {
  margin-bottom: 15px;
}
.products-select .variation_box {
  border-bottom: 1px solid #c7c7c7;
}
.products-select .variation_box:first-of-type {
  border-top: 1px solid #c7c7c7;
}

.products-select dl {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.products-select dd {
  display: flex;
  align-items: center;
  height: 102px;
  border-bottom: 1px solid #c7c7c7;
}
.products-select dl:last-of-type dd {
  border-bottom: 0;
}

/* .products-select .variation */
.products-select .variation {
  width: 140px;
  height: 100%;
  padding: 15px .5em 10px 2px;
}
.products-select .variation .img_box {
  display: block;
  width: 48px;
  margin-bottom: 10px;
  background: #fff;
}
.products-select .variation img {
  border: 1px solid #c7c7c7;
}

.products-select .variation .txt {
  display: block;
  font-size: 12px;
}

/* .products-select .size */
.products-select .size {
  width: 43px;
  font-weight: bold;
}

/* .products-select .capacity */
.products-select .stock {
  justify-content: center;
  width: 95px;
  font-size: 14px;
}

/* .products-select .cart */
.products-select .cart {
  width: 170px;
  font-size: 13px;
  text-align: center;
}
.products-select .cart a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  border-radius: 5px;
}
.products-select .cart button {
  position: relative;
  display: inline-block;
  width: 170px;
  height: 45px;
  color: #fff;
  background: #ff4e7c;
  border-radius: 5px;
  transition: .2s;
}
.products-select .cart.instock button {
  text-align: left;
  padding-left: 50px;
}
.products-select .cart.instock button::before {
  position: absolute;
  top: 13px;
  left: 19px;
  content: "";
  display: inline-block;
  width: 21px;
  height: 18px;
  background: url("/img/user/common/icon_shoppingcart.svg") no-repeat;
  background-size: cover;
}
.products-select .cart.nostock button {
  background: #c8c8c8;
}
.products-select .cart.nostock button {
  cursor: auto;
}

.products-select .cart.nostock.request button {
  cursor: pointer;
}
.products-select .cart button:hover,
.products-select .cart.nostock.request button:hover {
  opacity: .7;
}
.products-select .cart.nostock button:hover {
  opacity: 1;
}

/* .products-select .love */
.products-select .love {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 52px;
  text-align: right;
}
.products-select .love button {
  display: block;
  width: 42px;
  height: 42px;
  background: url(/img/user/common/icon_love_02.svg) no-repeat;
}
.products-select .love button.on {
  display: block;
  width: 42px;
  height: 42px;
  background: url(/img/user/common/icon_love_01.svg) no-repeat;
}

/* .products-caption */
.products-caption {
  margin-bottom: 18px;
}
.products-caption p {
  font-size: 11px;
}
.products-caption .red {
  color: #d0021b;
}

/* .products-item_detail */
.products-item_detail {
  margin-bottom: 50px;
}
.products-item_detail h2 {
  margin-bottom: 8px;
  font-size: 18px;
}
.products-item_detail p {
  margin-bottom: 1.75em;
  line-height: 1.5;
}

/* .products-sentaku */
.products-sentaku {
  margin-bottom: 30px;
}
.products-sentaku h2 {
  padding: 0;
  font-size: 14px;
}
.products-sentaku .sentaku {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.products-sentaku .sentaku li {
  width: 40px;
}

/* .products-sizelist */
.products-sizelist {
  margin-bottom: 29px;
}
.products-sizelist table {
  width: 100%;
}
.products-sizelist tr {
  text-align: center;
  font-size: 14px;
}
.products-sizelist td {
  width: 70px;
  height: 31px;
  vertical-align: middle;
  border-bottom: 1px solid #f0f0f0;
}
.products-sizelist .type {
  background: #f0f0f0;
}

/* .products-share */
.products-share {
  margin-bottom: 30px;
  padding: 14px 0;
  border-top: 1px solid #c7c7c7;
}
.products-share h2 {
  font-size: 18px;
  font-weight: bold;
}
.products-share {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.products-share .share {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.products-share .share li {
  width: 32px;
  margin-left: 10px;
}

/* -----------------------------------------
- .about
----------------------------------------- */
.about {
  margin-bottom: 17px;
  padding: 45px 0 25px;
}
.about .txt_box {
  padding: 24px 29px;
  border: 1px solid #c7c7c7;
}
.about p {
  font-size: 14px;
  line-height: 24px;
}

/* -----------------------------------------
- .news_event
----------------------------------------- */
.news_event {
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.news_event_box {
  display: flex;
  padding: 5px 0;
  border: 1px solid #c7c7c7;
}
.news_event_box ul {
  width: 50%;
  margin: 20px 0;
}
.news_event_box ul:last-of-type {
  border-left: 1px solid #c7c7c7;
}
.news_event_box dl {
  display: flex;
  padding: 0 27px 20px;
  font-size: 14px;
  line-height: 24px;
}
.news_event_box li:nth-last-child(-n+1) dl {
  padding-bottom: 0;
}
.news_event_box dt {
  width: 100px;
  padding-right: 15px;
  font-weight: normal;
}
.news_event_box dd {
  width: 410px;
}
.news_event_box a:hover {
  text-decoration: underline;
}


/* -----------------------------------------
2020-11-06 endo ここから
----------------------------------------- */

/* -----------------------------------------
- common  add
----------------------------------------- */
.full_wide {
  width: 100%!important;
  max-width: 100%!important;
}
.auto_wide {
  width: auto!important;
  max-width: 100%!important;
}
.dark_pink {
  color: #ff4e7c;
}
.border_box {
  border: 1px solid #c7c7c7;
}
.form_box {
  border: 1px solid #c7c7c7;
  width: 980px;
  margin: 0 auto;
  padding: 30px 0;
}
.not_border_box {
  border: none;
}
.normal_button,
.btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  display: inline-block;
  width: 290px;
  padding: .5em 1em;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  background: #fff;
  color: #707070;
  transition: all .3s;
}
.link_button ,
.submit_btn {
  display: inline-block;
  color: #fff;
  background: #ff4e7c;
  border: 1px solid #ff4e7c;
  font-size: 18px;
  padding: .64em 1em;
  border-radius: 4px;
  font-weight: bold;
}
.dark_btn {
  display: inline-block;
  color: #fff;
  background: #707070;
  border: 1px solid #707070;
  font-size: 18px;
  padding: .64em 1em;
  border-radius: 4px;
  font-weight: bold;
}
.return_btn {
  font-weight: normal;
  font-size: 18px;
  padding: .64em 1em;
  border-radius: 4px;
}
select,
[type="date"], [type="email"], [type="tel"], [type="text"], [type="number"], [type="password"] {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  font-size: 16px;
  background: #fff;
}
textarea {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  font-size: 16px;
  background: #fff;
}
.form_box_input_like {
  width: 100%;
  height: 50px;
  padding: 0.5em 0;
  font-size: 16px;
}
select {
  padding-right: 3em;
  background: url(/img/user/common/icon_caret-down.svg) right 10px center no-repeat;
}

[type=checkbox] {
  margin-right: 6px;
  width: 14px;
  height: 14px;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  color: #1c1c1c;
  background: #fff;
  vertical-align: middle;
  margin: auto;
}
[type="date"]:focus, [type="email"]:focus, [type="text"]:focus, [type="tel"]:focus, [type="number"]:focus, [type="password"]:focus, [type="password"]:focus, select:focus, textarea:focus {
  outline: 0;
  border: 1px solid #ff4e7c!important;
}
.radio_btn {
  display: inline-block;
  width: auto;
  line-height: 50px;
  margin-right: 20px;
  white-space: nowrap;
}
.btn:not(:disabled):hover {
  opacity: .7;
}
/* -----------------------------------------
- .login-page
----------------------------------------- */
#login-box {
  padding-bottom: 100px;
}

.login-page h1,
.brand-page h1,
.ambassador-page h1,
.questionnaire-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}

.login-page .form_box {
  width: 1140px;
  height: 100%;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
}

.login-form_box_col1 {
  display: block;
  width: 50%;
  max-width: 569px;
  border-right: 1px solid #c7c7c7;
}

.login-form_box_col2 {
  display: block;
  width: 50%;
  max-width: 569px;
  margin: 0 auto;
}

.login-next {
}

.login-forgot {
}

.login-next_register {
  font-size: 14px;
  margin-bottom: .5em;
}

.login_groop {
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10px 30px;
  justify-content: space-between;
}

.login_groop li {
  width: 50%;
  max-width: 249px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 10px;
}

.login_groop a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  overflow: hidden;
  border-radius: 0.351vw;
  padding: 1em 0;
}

.login_groop .login-fb {
  background: #3b5998;
}

.login_groop .login-tw {
  background: #1da1f2;
}

.login_groop .login-line {
  background: #00c000;
  margin-right: 10px;
}

.login_groop .login-yahoo {
  background: #ff0033;
}

.login_groop li img {
  display: block;
  width: 50px;
  margin: auto auto 10px;
}

.form_box_tbl {}

.form_box_tbl dl {
  display: flex;
  align-items: flex-start;
  width: calc(100% - 60px);
  margin: auto 30px;
}

.form_box_tbl dt {
  vertical-align: baseline;
  padding: 27px 0 10px;
  width: 120px;
  white-space: nowrap;
}

.form_box_tbl dd {
  vertical-align: baseline;
  padding: 10px 0;
  width: calc( 100% - 120px);
}

.form_box_tbl p {
  margin: 5px 0 20px;
  font-size: 14px;
  font-feature-settings: "palt";
}


/* -----------------------------------------
- .customers_register-page
----------------------------------------- */
#register-box {
  padding-bottom: 100px;
}

.customers_register-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}

.customers_register-page .form_box {
  width: 600px;
  margin: auto;
  padding: 50px 0;
}

.form_box_tbl.register_tbl {}

/* -----------------------------------------
- .customers_confirm-page
----------------------------------------- */
.customers_confirm-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}

#confirm-box {
  padding-bottom: 100px;
}

.customers_confirm-page .form_box {
  width: 570px;
  margin: auto;
  padding: 50px 0;
}

.form_box_tbl.confirm_tbl {
  margin: auto;
}

.form_box_tbl.confirm_tbl dl {
  display: flex;
}

.form_box_tbl.confirm_tbl dt {
  padding-top: 10px;
}

.form_box_tbl.confirm_tbl dd {
  padding-top: 10px;
}

.confirm-btn_wrap {
  margin-top: 25px;
}

.confirm-btn_wrap .btn {
  margin-top: 20px;
}

.input_confirm_txt {
  font-size: 16px;
}
/* -----------------------------------------
- .product_search-page
----------------------------------------- */
#product_search-box {
  padding-bottom: 100px;
}
.product_search-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
.dl-search_box {
  padding: 30px 0 50px;

}
.product_search_btn_wrap {
  text-align: center;
  margin-top: 20px;
}
/* -----------------------------------------
2020-11-06 endo ここまで
----------------------------------------- */

/* -----------------------------------------
2020-11-11 endo ここから
----------------------------------------- */
/* message-box */
#message-box {
  margin: 20px 0 100px;
}

#message-box .message-box {
  padding: 20px;
  width: 100%;
  max-width: 1200px;
  border: 1px solid #c7c7c7;
}

#error-message-box {
  padding: 10px 0;
}

#error-message-box .error-message-box {
  width: 70%;
  margin: 1em auto;
  padding: 1em;
  background-color: #ffeeee;
  border: #c00 1px solid;
}

#error-message-box .error-message-box ul li {
  margin: 2px 0;
}

#info-message-box {
  padding: 10px 0;
}

#info-message-box .info-message-box {
  width: 100%;
  max-width: 1200px;
}

#info-message-box .info-message-box {
  width: 70%;
  margin: 1em auto;
  padding: 1em;
  background-color: #eeffee;
  border: #3c0 1px solid;
}

#info-message-box .info-message-box ul li {
  margin: 2px 0;
}
/* ======================================
= .mypage-page-- =
========================================= */
.mypage-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
.mypage-box {
  padding: 0 20px;
}
.mypage-box .inner {
  padding-bottom: 100px;
}
.mypage-menu_box {
  display: block;
  max-width: 980px;
  margin: auto;
}
.mypage-topmenu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mypage-topmenu_list li {
  width: 320px;
  font-size: 16px;
  line-height: 28px;
  color: #1c1c1c;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  margin-bottom: 10px;
  margin-right: 10px;
}
.mypage-topmenu_list li a {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 20px;
}
.mypage-topmenu_list li a:hover {
  background: #c7c7c7;
  opacity: 1;
}
.mypage-topmenu_list li:nth-of-type(3n) {
  margin-right: 0;
}
.mypage-topmenu_list li img {
  display: block;
  margin: 0 auto 10px;
}
.mypage-topmenu_list li .txt {
  white-space: nowrap;
}

/* ======================================
= .mypage-order_histories-page-- =
========================================= */
.mypage-order_histories-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
.mypage-order_histories-box .inner {
  padding-bottom: 100px;
}

#mypage-order_histories-box .box {
  width: 100%;
  max-width: 980px;
}
#mypage-order_histories-box .order_box {
  border: 1px solid #c7c7c7;
  margin-bottom: 30px;
}

.order-date_box {
  padding: 20px;
  background: #F0f0f0;
  border-bottom: 1px solid #c7c7c7;
}
.order-date tr {
  font-size: 16px;
  line-height: 28px;
}
.order-date th {
  width: 75px;
}
.order-date td:last-of-type {
  display: block;
  float: right;
}
.order-date td:last-of-type a {
  color: #1c1c1c;
  text-decoration: underline;
}
.order-date td:last-of-type a:hover {
  text-decoration: none;
}
.order-number_box {
  padding: 20px;
}
.order-number th {
  width: 75px;
}
.order-number td:last-of-type {
  text-align: right;
}
.order-number td:last-of-type a {
  color: #1c1c1c;
  text-decoration: underline;
}
.order-number td:last-of-type a:hover {
  text-decoration: none;
}
.order-status {
  display: inline-block;
  min-width: 160px;
  height: 40px;
  line-height: 40px;
  margin-left: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: #ff4e7c;
  font-size: 20px;
  font-weight: 600;
  background: #fff;
  border: 1px solid #ff4e7c;
  white-space: nowrap;
  padding: 0 1em;
}


.order-detail_box {
  padding: 0 20px;
}
.order-detail_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0 15px;
}
.order-detail_item .img_block {
  width: 120px;
}
.order-detail_item .detail_block {
  width: calc(100% - 120px);
}
.order-detail_item .img_block .img_wrap {
  border: 1px solid #c7c7c7;
  display: inline-block;
}
.order-detail_item .img_block img {
  width: 98px;
  vertical-align: top;
}
.order-detail_item .detail_block > *{
  margin: 10px auto;
}
.order-detail_item .detail_block > *:first-of-type {
  margin-top: 0;
}
.order-detail_item .detail_block > *:last-of-type {
  margin-bottom: 0;
}
.order-detail_item .detail_block .title {
  font-weight: bold;
  margin-right: 1em;
}
.order-detail_item .order-price .title {
  font-weight: bold;
  margin-right: 1em;
}
.order-detail_item:last-of-type {
  border-bottom: 1px solid #c7c7c7;
}
.order-detail_item .order-detail {
  vertical-align: middle;
}
.repeat_oder_button {
  height: auto;
  line-height: normal;
  padding: 0.3em 1em;
}


.order-total_box {
  margin-left: auto;
  padding: 20px;
}
.order-total {
  text-align: right;
  width: auto;
  float: right;
}
.order-total th {
  font-weight: normal;
  text-align: right;
}
.order-total td {
  padding-left: .75em;
}
.order-total .total_fee th,
.order-total .total_fee td {
  padding-top: 1em;
  font-weight: bold;
}
.order-total_box::after {
  content: "";
  clear: both;
  display: block;
}



.modal_delete_btn,
.modal_yes_btn {
  /* display: block; */
  width: 200px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto 20px;
  color: #fff;
  background: #ff4e7c;
  white-space: nowrap;
  letter-spacing: 1px;
  border-radius: 4px;
  vertical-align: top;
}
.modal_cancel_btn,
.modal_no_btn {
  /* display: block; */
  width: 200px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-weight: normal;
  margin: 0 auto;
  color: #707070;
  background: #fff;
  white-space: nowrap;
  border: 1px solid #c7c7c7;
  letter-spacing: 1px;
  border-radius: 4px;
  vertical-align: top;
}

.side_top_level_category {
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-left: 20px;
  color: #1c1c1c;
  line-height: 2.5;
  vertical-align: middle;
}
/* cancel modal */
.order-cancel-modal {

}
.order-delete-modal_ttl ,
.order-cancel-modal_ttl {
  font-size: 30px;
  padding: 30px 10px 10px;
}
.order-delete-modal_txt ,
.order-cancel-modal_txt {
  font-size: 20px; padding: 10px;
}
.order-cancel-delete_button_wrap ,
.order-cancel-modal_button_wrap {
  padding: 10px;
}


/* ======================================
= .mypage-edit-page-- =
========================================= */
.mypage-edit-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#mypage-edit-box .inner {
  padding-bottom: 100px;
}
#mypage-edit-box .dl-edit_box {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 30px 50px;
  border: 1px solid #c7c7c7;
}
.dl-edit_box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 50px;
  text-align: left;
  margin-bottom: 20px;
  color: #1c1c1c;
  font-size: 16px;
  line-height: 28px;
  background: #fff;
}
.dl-edit_box dl ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dl-edit_box dl.edit-name ul li input,
.dl-edit_box dl.edit-ruby ul li input {
  width: 200px;
}
.dl-edit_box dl ul li:first-of-type {
  margin-right: 10px;
}
.dl-edit_box form .note {
  display: block;
  width: 100%;
  margin: 0 0 20px;
  color: #1c1c1c;
  font-size: 12px;
  line-height: 16px;
}
.dl-edit_box dt {
  width: 130px;
  line-height: 50px;
  white-space: nowrap;
}
.dl-edit_box dd {
  width: 410px;
  margin: 0;
}
/* .dl-edit_box dl input:not([type="checkbox"]) {
  width: 410px;
  height: 50px;
  padding: .5em;
  font-size: 16px;
  border: 1px solid #c7c7c7;
} */
.dl-edit_box input::-webkit-input-placeholder {
  color: #7f7f7f;
  font-size: 16px;
  letter-spacing: 1px;
}
/* IE */
.dl-edit_box input:-ms-input-placeholder {
  color: #7f7f7f;
  font-size: 16px;
  letter-spacing: 1px;
}
/* firefox */
.dl-edit_box input::-moz-placeholder {
  color: #7f7f7f;
  font-size: 16px;
  letter-spacing: 1px;
}
/* Edge */
.dl-edit_box input::-ms-input-placeholder {
  color: #7f7f7f;
  font-size: 16px;
  letter-spacing: 1px;
}
.dl-edit_box .edit-gender select {

}
.dl-edit_box .edit-save {
  width: 290px;
  height: 50px;
  margin: 0 auto;
  letter-spacing: 1px;
  margin-top: 50px;
}
.dl-edit_box .edit-save input {
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  color: #fff;
  background: #ff4e7c;
  white-space: nowrap;
}
.dl-edit_box .edit-save a {
  display: inline-block;
  width: 100%;
  line-height: 50px;
  font-size: 18px;
  font-weight: 600;
  color: #707070;
  background: #fff;
  white-space: nowrap;
  border-radius: 4px;
  border: 1px solid #c7c7c7;
  text-align: center;
  vertical-align: middle;
}
.dl-edit_box .edit-save:hover {
  opacity: .7;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.dl-edit_box dl .data-ruby input ,
.dl-edit_box dl .data-name input {
  width: 200px;
}
.edit-subscribed {
  margin-bottom: 0;
  height: 40px;
  display: table;
}
.edit-subscribed-ttl {
  display: table-cell;
}
.data-subscribed {
  vertical-align: middle;
}
/* ======================================
= .mypage-edit-page-- =
========================================= */
.mypage-customer_addresses-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#mypage-customer_addresses-box .customer_addresses_box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.customer_addresses_box .new_addresses .link_button {
  margin-bottom: 30px;
  font-size: 16px;
  padding-left: 2.5em;
  padding-right: 2.5em;
}
.customer_addresses_box .regulatory_address {
  float: left;
  line-height: 50px;
  font-weight: 600;
  font-size: 20px;
}
.customer_addresses_box .regulatory_address img {
  margin-right: 15px;
  width: 40px;
  height: 40px;
}
.customer_addresses_box .edit_delete ul {
  display: flex;
  float: right;
  margin-bottom: 10px;
}
.customer_addresses_box .edit_delete ul li {
  margin-right: 10px;
}
.customer_addresses_box .edit_delete ul .edit-btn {
  color: #fff;
  background: #707070;
  border: 1px solid #707070;
  font-weight: normal;
}
.customer_addresses_box .edit_delete ul .delete-btn {
  color: #707070;
  border: 1px solid #C7C7C7;
  font-weight: normal;

}
.customer_addresses_box .edit_delete ul::after {
  content: "";
  clear: both;
  display: block;
}
.customer_addresses_box .addresses {
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  margin-bottom: 50px;
}
.customer_addresses_box .addresses tr {
  border-top: 1px solid #c7c7c7;
}
.customer_addresses_box .addresses th {
  width: 200px;
  padding: 20px 0;
  line-height: 1.6;
}
.customer_addresses_box .addresses td {
  line-height: 1.6;
  padding: 20px 0;
}


/* ======================================
= .mypage-customer_addresses_create-box-- =
========================================= */
.mypage-customer_addresses_create-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#mypage-customer_addresses_create-box .inner,
#questionnaire-box .inner {
  padding-bottom: 100px;
}
#mypage-customer_addresses_create-box .dl-edit_box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 30px 50px;
  border: 1px solid #c7c7c7;
}
#mypage-customer_addresses_create-box form {
  margin: 0 auto 40px;
}
#mypage-customer_addresses_create-box dl {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 50px;
  text-align: left;
  margin-bottom: 20px;
  color: #1c1c1c;
  font-size: 16px;
  line-height: 28px;
  background: #fff;
}
#mypage-customer_addresses_create-box dl ul {
  display: flex;
}
#mypage-customer_addresses_create-box dl.edit-name ul li input,
#mypage-customer_addresses_create-box dl.edit-ruby ul li input {
  width: 200px;
}
#mypage-customer_addresses_create-box dl ul li:first-of-type {
  margin-right: 10px;
}
#mypage-customer_addresses_create-box form .note {
  display: block;
  width: 100%;
  margin: 0 0 20px;
  color: #1c1c1c;
  font-size: 12px;
  line-height: 16px;
}
#mypage-customer_addresses_create-box dt {
  width: 180px;
  line-height: 50px;
  white-space: nowrap;
}
#mypage-customer_addresses_create-box dt .small {
  margin-left: .5em;
  font-size: inherit;
  font-weight: normal;
}
#mypage-customer_addresses_create-box dd {
  width: 790px;
  margin: 0;
}
/* #mypage-customer_addresses_create-box dl input {
  width: 100%;
  max-width: 790px;
  height: 50px;
  padding: .5em;
  font-size: 16px;
  border: 1px solid #c7c7c7;
} */
#mypage-customer_addresses_create-box input::-webkit-input-placeholder {
  color: #7f7f7f;
  font-size: 16px;
  letter-spacing: 1px;
}
/* IE */
#mypage-customer_addresses_create-box input:-ms-input-placeholder {
  color: #7f7f7f;
  font-size: 16px;
  letter-spacing: 1px;
}
/* firefox */
#mypage-customer_addresses_create-box input::-moz-placeholder {
  color: #7f7f7f;
  font-size: 16px;
  letter-spacing: 1px;
}
/* Edge */
#mypage-customer_addresses_create-box input::-ms-input-placeholder {
  color: #7f7f7f;
  font-size: 16px;
  letter-spacing: 1px;
}
#mypage-customer_addresses_create-box .edit-postal_code input {
  width: 110px;
}
/* #mypage-customer_addresses_create-box .edit-prefectures select {
  width: 110px;
  height: 50px;
  padding: 0 .5em;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid #c7c7c7;
  background: #fff;
  background: url('/img/user/mypage/icon-caret-down.png') right 10px center no-repeat;
  background-size: 16px;
} */
#mypage-customer_addresses_create-box .edit-tel input {
  width: 410px;
}
#mypage-customer_addresses_create-box .edit-regulation input {
  width: 16px;
  /* height: 50px; */
  margin-right: 5px;
  /* float: left; */
  vertical-align: baseline;
}
#mypage-customer_addresses_create-box .edit-regulation .radio_btn {
  display: inline-block;
  width: auto;
  /* line-height: 50px; */
  margin-right: 20px;
  white-space: nowrap;
}
#mypage-customer_addresses_create-box .edit-save {
  width: 290px;
  height: 50px;
  margin: 0 auto;
  border-radius: 4px;
  background: #ff4e7c;
}
#mypage-customer_addresses_create-box .edit-save input {
  width: 100%;
  height: 100%;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
#mypage-customer_addresses_create-box .edit-save:hover {
  opacity: .7;
  transition: all .3s;
}
/* -----------------------------------------
2020-11-11 endo ここまで
----------------------------------------- */
/* -----------------------------------------
2020-11-13 endo ここから
----------------------------------------- */
.mypage-favorites-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#mypage-favorites-box {
  padding-bottom: 100px;
}

.favorites_box {
  width: 980px;
  margin: auto;
}
.favorites_box .favorites_items {

}
.favorites_items .items_detail {
  width: 100%;
  margin: 0 auto 20px;
  border: 1px solid #c7c7c7;
  display: inline-flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  padding: 0;
}

.favorites_items .item_image_block {
  width: 140px;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 20px;
}
.favorites_items .item_detail_block {
  width: calc( 100% - 140px );
  padding: 20px 20px 20px 0;
}

.favorites_items .item_image_block .img_wrap {
  display: block;
  width: 100px;
  box-sizing: border-box;
  height: auto;
  padding: 5px;
  border: 1px solid #c7c7c7;
}

.favorites_items .item_price {
  color: #555;
}
.favorites_items .item_ttl {
  font-feature-settings: "palt";
}
.favorites_items .item_ttl a {
  color: #ff4e7c;
  font-weight: bold;
}
.favorites_items .delete_btn_wrap .btn {
  font-weight: normal;
}
.item_option_btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}
.item_option_btns > * {
  margin-left: 20px;
}
.item_option_btns .link_button {
  font-size: 16px;
  padding: .5em 1em;

}
.item_option_btns .shopping_cart {
  font-size: 16px;
  padding: .5em 1em .5em 50px;
}
.shopping_cart {
  position: relative;
  padding-left: 50px;
}
.shopping_cart::before {
  position: absolute;
  top: 13px;
  left: 19px;
  content: "";
  display: inline-block;
  width: 21px;
  height: 18px;
  background: url("/img/user/common/icon_shoppingcart.svg") no-repeat;
  background-size: cover;
}
.item_option_btns .no_stock {
  color: #555;
}

.category_list {
  margin: .2em 0 .5em;
}
.category_list li {
  display: inline-block;
  position: relative;
}

.category_list li + li {
  margin-left: 18px;
}

.category_list li + li::after {
  display: block;
  content: "";
  position: absolute;
  top: .5em;
  left: -1em;
  width: 8px;
  height: 8px;
  border-right: 1px solid #444;
  border-bottom: 1px solid #444;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* ======================================
= .social_reviews-page-- =
========================================= */
#mypage-reviews-box .inner {
  padding-bottom: 100px;
}
.mypage-reviews-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
.item_comment_title {
  font-weight: bold;
  margin: .5em auto;
}
.item_comment_text {
  font-size: 14px;
  margin: .5em auto;
}
/* ======================================
= .social_accounts-page-- =
========================================= */
.social_accounts-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#social_accounts-page-box .inner {
  padding-bottom: 100px;
}
#social_accounts-page-box .social_accounts-page_cnt {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 28px;
  color: #1c1c1c;
  border-top: 1px solid #c7c7c7;
}
.social_accounts-page_cnt dl {
  display: flex;
  min-height: 96px;
  border-bottom: 1px solid #c7c7c7;
  letter-spacing: 1px;
}
.social_accounts-page_cnt dt {
  width: 450px;
  padding-top: 35px;
  font-weight: 600;
}
.social_accounts-page_cnt dd {
  width: 120px;
  text-align: center;
}
.social_accounts-page_cnt dd.link {
  padding-top: 28px;
}
.social_accounts-page_cnt dd.linked {
  padding-top: 35px;
}
.social_accounts-page_cnt dd.linked .txt {
  color: #ff4e7c;
}
.social_accounts-page_cnt dd.unlink {
  padding-top: 28px;
}

#contact-page-box .inquiry_form.confirm dl dd {
    margin: auto;
}

.social_accounts-page_cnt .link_button {
  font-size: 16px;
  padding: .5em 1em;

}
.unlink .btn {
  font-weight: normal;
}

/* -----------------------------------------
2020-11-13 endo ここまで
----------------------------------------- */


/* -----------------------------------------
2020-11-16 endo ここから
----------------------------------------- */


/* ======================================
= .cart-page-- =
========================================= */
#cart-box .inner {
  padding-bottom: 100px;
}
.cart-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
.tbl_container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.cart_tbl_box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #c7c7c7;
}



.cart-detail_box {
}
.cart-detail_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
}
.cart-detail_item .img_block .img_wrap {
  border: 1px solid #c7c7c7;
  display: inline-block;
}
.cart-detail_item .img_block img {
  vertical-align: top;
}
.cart-detail_item .detail_block > *{
  margin: 10px auto;
  display: flex;
  align-items: center;
}
.cart-detail_item .detail_block > *:first-of-type,
.cart-detail_item:first-of-type {
  margin-top: 0;
}

.cart-detail_item .detail_block .title {
  margin-right: 1em;
  font-weight: normal;
}
.cart-detail_item .cart-price .title {
  margin-right: 1em;
}
.cart-detail_item .cart-detail {
  vertical-align: middle;
}

.cart_tbl_box .annotation {
  margin-top: 1em;
  font-size: 14px;
}


.cart_tbl_box .img_block {
  width: 170px;
  flex-shrink: 0;
  flex-grow: 0;
}
.cart_tbl_box .img_wrap {
  width: 150px;
}
.cart_tbl_box .img_block img {
  width: 100%;
  height: auto;
}
.cart_tbl_box .detail_block {
  width: calc(100% - 170px);
}
.cart-detail_item .detail_block .cart-name .title  {
  align-self: flex-start;
}
.cart_tbl_box .cart-name a {
  color: #ff4e7c;
  font-size: 16px;
  font-weight: 600;
}
.cart_btn_wrap {
  margin: 10px auto;
}
.delete_btn  {
  font-size: 14px;
  font-weight: normal;
  color: #707070;
  background: #fff;
  border: 1px solid #c7c7c7;
  padding: .3em 1em;
}
.favorite_btn  {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  background: #707070;
  border: 1px solid #504545;
  padding: .3em 1em;
}
.cart_btn_wrap .btn {
  margin-right: 10px;
}

.cart_tbl_box .cart-capacity select {
  min-width: 60px;
  height: auto;
  padding: .3em 3em .3em 1em;

  font-size: 14px;
  border: 1px solid #c7c7c7;
  background-size: 12px;
}









.cart_tbl_box .subtotal {
  padding-top: 20px;
  border-top: 1px solid #c7c7c7;
}
.cart_tbl_box .subtotal_tbl {
  /* float: right; */
  margin:auto 0 auto auto;
  width: auto;
}
.cart_tbl_box .subtotal_tbl th,
.cart_tbl_box .subtotal_tbl td {
  font-size: 16px;
  font-weight: 600;
}
.cart_tbl_box .subtotal_tbl th {
  padding-right: .8em;
}
.cart_tbl_box .subtotal::after {

}
.customers_btn {
  display: flex;
  margin-bottom: 50px;
  border-bottom: 1px solid #c7c7c7;
  justify-content: center;
}
.customers_btn .ttl {
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: #1c1c1c;
}
.customers_btn .customers {
  /* width: 50%; */
  padding: 50px 0;
  /* margin: auto; */
  /* width: 300px; */
  width: 290px;
}
.customers_btn .non_member {
  /* width: 50%; */
  padding: 50px 0;
  /* margin: auto; */
  /* width: 300px; */
  width: 290px;
  margin-left: 60px;
}
.customers_btn .submit_btn,
.customers_btn .register_btn {
  width: 290px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 4px;
  background: #ff4e7c;
}
.customers_btn .not_register_btn {
  width: 290px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 4px;
  background: #707070;
}
.customers_btn input {
  width: 100%;
  height: 100%;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.customers_btn input:hover {
  opacity: .7;
  transition: all .3s;
}
.continue a {
  /* display: block;
  width: 290px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  color: #707070;
  border: 1px solid #c7c7c7;
  border-radius: 4px;
  white-space: nowrap; */
  display: block;
  font-size: 18px;
  width: 290px;
  padding: .585em;
  margin: auto;
}
.continue a .txt {
  letter-spacing: 1px;
}


/* -----------------------------------------
2020-11-16 endo ここまで
--------------------------*/
/* ======================================
= .order-gift-page-- =
========================================= */
.order-gift-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#order-gift-box .inner {
  padding-bottom: 100px;
}
.tbl_container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 50px;
  padding: 20px;
  /* border: 1px solid #c7c7c7; */
}

.tbl_container .gift_ttl {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 1em;
  white-space: nowrap;
}

.gift_tbl_box table {
  width: auto;
  margin-bottom: 20px;
}
.gift_tbl_box table tbody {
  display: block;
  margin-bottom: 20px;
}
.gift_tbl_box table th {
  width: auto;
  font-weight: normal;
}
.gift_tbl_box .item_image {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  min-width: auto;
  min-height: auto;
  margin: 0;
  margin-right: 20px;
  background: #fff;
  border: 1px solid #c7c7c7;
  overflow: hidden;
}
.gift_tbl_box .item_image img {
  padding: 5px;
}
.gift_tbl_box td {
  vertical-align: top
}
.gift_tbl_box .item_td {
  line-height: 28px;
}
.gift_tbl_box .item_ttl {
  font-weight: 600;
}
.gift_tbl_box .brand_txt {
  margin-right: .5em;
}
.gift_wrapping_box .wrapping_cnt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}
.gift_wrapping_box .wrapping_cnt>* {
  width: 464px;
  padding: 10px;
  font-size: 16px;
  color: #1c1c1c;
  background: #f0f0f0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  align-content: center;
}
.gift_wrapping_box input[type="checkbox"] {
  display: none;
}
.gift_wrapping_box .ck_label {
  position: relative;
  /* width: 150px; */
}
.gift_wrapping_box label {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  width: 100%;
  /* height: 80px; */
  /* line-height: 80px; */
  padding-left: 80px;
  vertical-align: middle;
  cursor: pointer;
}
.gift_wrapping_box label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 80px;
  height: 80px;
  background: url("/img/user/gift/icon-gift_nocheck_mark.png") center no-repeat;
  background-size: 40px;
  cursor: pointer;
}
.gift_wrapping_box input[type="checkbox"]:checked + label::after {
  background: url("/img/user/gift/icon-gift_check_mark.png") center no-repeat;
}
.gift_wrapping_box .order-price td {
  vertical-align: top;
}
.gift_wrapping_box .order-wrapping_type {
  line-height: 1.4;
  font-size: 16px;
  font-weight: 600;
}
.gift_wrapping_box .wrapping img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}
.gift_wrapping_box .wrapping img + .wrap {
  line-height: 1.4;
}
.edit-save {
  width: 290px;
  height: 50px;
  margin: 0 auto;
  border-radius: 4px;
  background: #ff4e7c;
}
.edit-save input,
.no-save a {
  width: 100%;
  height: 100%;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  margin: 0 auto;
}

.no-save {
  width: 290px;
  height: 50px;
  margin: 2em auto 0;
  border-radius: 4px;
  background: #707070;
}
.no-save a {
  display: block;
  padding: .64em 1em;
  text-align: center;
}

/* ======================================
= .order-input-page-- =
========================================= */
.order-input-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#order-input-box .inner {
  padding-bottom: 100px;
}
#order-input-box .tbl_container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  color: #1c1c1c;
  border:none;
}

.dl-input_box .input_info {
  margin-bottom: 10px;
  border-bottom: 1px solid #c7c7c7;
  display: flex;
  justify-content: space-between;
}
.dl-input_box .info_ttl {
  /* float: left; */
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
}
.dl-input_box .address_ttl a {
  /* float: right; */
  width: 200px;
  margin-bottom: 11px;
  /* text-align: center; */
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #707070;
}
.dl-input_box .address_ttl a:hover {
  color: #fff;

}
.dl-input_box .address_ttl a .txt {
  letter-spacing: 1px;
}

.dl-input_box dl {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  text-align: left;
  color: #1c1c1c;
  font-size: 16px;
  line-height: 28px;
  background: #fff;
}
.dl-input_box dl.input-e_mail {
  padding-bottom: 20px;
}
.dl-input_box dt {
  width: 200px;
  margin: auto 0;
  padding: 10px 0;
  white-space: nowrap;
}
.dl-input_box dd {
  width: 760px;
  height: auto;
  padding: 10px 0;
  margin: auto 0;
}
.dl-input_box dl input[type="text"],
.dl-input_box dl input[type="email"] {
  width: 410px;
}

.dl-input_box .input_box-01 {
  margin-bottom: 60px;
  border-bottom: 1px solid #c7c7c7;
}
.dl-input_box .input_box-01 select {
  /* height: 50px;
  padding: 0 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid #c7c7c7;
  background: url('/img/user/order/icon-caret-down.png') right 10px center no-repeat;
  background-size: 16px;
  background-color: #fff; */
}
.dl-input_box .input_box-01 .input-shipping_destination select {
  /*width: 270px;*/
  /* padding-right: calc(18px + 1em); */
}
.dl-input_box .input_box-01 .input-delivery_info select {
  /* width: 165px; */
  /* padding-right: calc(18px + 1em); */
  margin-left: .5em;
}
.dl-input_box .input_box-01 .input-payment_info input {
  margin-left: 1em;
}
.dl-input_box .bdr-top {
  min-height: 90px;
  padding: 20px 0;
  border-top: 1px solid #c7c7c7;
}

.dl-input_box .input_box-02 {
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c7c7c7;
  font-size: 16px;
}
.dl-input_box .input_box-02 dt {
  padding: 12.5px 0;
}
.dl-input_box .input_box-02 dd {
  padding: 12.5px 0;
}
.dl-input_box .input_box-02 .info_ttl {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 1em;
  margin-bottom: 30px;
  border-bottom: 1px solid #c7c7c7;
}
.dl-input_box .input_box-02 select {

}
.dl-input_box .input_box-02 select.month {
  /* width: 80px; */
  margin-right: 20px;
}
.dl-input_box .input_box-02 select.year {
  /* width: 100px; */
}
.dl-input_box .input_box-02 input[type="checkbox"]{
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.dl-input_box .input_box-02 .input-payment select {
  /* width: 80px; */
  /* height: 50px; */
}

.dl-input_box .input_box-03 {
  margin-bottom: 50px;
}
.dl-input_box .input_box-03 dl {
  margin-bottom: 20px;
}
.dl-input_box .input_box-03 .info_ttl {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: .75em;
}
.dl-input_box .input_box-03 textarea {
  width: 100%;
  max-width: 980px;
  height: 300px;
  margin: 0 auto 10px;
  padding: .5em;
  border: 1px solid #c7c7c7;
}
.dl-input_box .note {
  display: block;
  width: 100%;
  color: #1c1c1c;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 8px;
}

.dl-input_box .gift-return {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
}
.dl-input_box .gift-return input {
  display: inline-block;
  /* width: 290px; */
  /* height: 50px; */
  margin: 0 auto;
  letter-spacing: 1px;
  /* border-radius: 4px; */
  /* background: #707070; */
}
.dl-input_box .gift-return .return_btn {
  margin-right: 20px;
  color: #707070;
  font-size: 18px;
  font-weight: normal;
  background: #fff;
  border: 1px solid #707070;
}
.dl-input_box .gift-return input {
  font-size: 18px;
  font-weight: 600;
  /* color: #fff; */
  white-space: nowrap;
}
.dl-input_box .gift-return input:hover {
  opacity: .7;
  transition: all .3s;
}

.input-couponcode {}
.input-couponcode .note {
  margin-top: 10px;
}


/* ======================================
= .order-addresses-page-- =
========================================= */
.order-addresses-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#order-addresses-box .inner {
  padding-bottom: 100px;
}
.addresses_box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  color: #1c1c1c;
}

.new_addresses {
  display: inline-block;
  margin-bottom: 30px;
}
.new_addresses .btn {
  display: inline-block;
  width: 140px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background: #ff4e7c;
  padding: .4em;
}

.addleses_box .regulatory_address {
  padding-bottom: 20px;
  border-bottom: 1px solid #c7c7c7;
  display: flex
}
.addleses_box .regulatory_address .txt {
  color: #1c1c1c;
  font-size: 20px;
  font-weight: 600;
}
.addresses_item {
  display: flex;
  justify-content: space-between;
}
.addresses_body_txt_wrap {
}
.addresses_ck {
  /* height: 140px; */
}
.addresses_body {
  width: calc(100% - 110px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.addresses_edit_btn_wrap {
  width: 140px;
}
.addresses_ck label {
  display: block;
  width: 110px;
  height: 100%;
  cursor: pointer;
  position: relative;
}
.addresses_ck input[type="radio"] {
  display: none;
}
.addleses_box  label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  display: block;
  width: 40px;
  height: 40px;
  margin: auto;
  text-align: center;
  cursor: pointer;
  background: url("/img/user/order/icon-nocheck_mark.png") center no-repeat;
  border-radius: 50px;
}
.addresses_ck input[type="radio"]:checked + label:after {
  background: url("/img/user/order/icon-check_mark.png") center no-repeat;
}
.addresses_ck {
  width: 110px;
  height: 140px;
  text-align: center;
}

.addleses_box .name {
  margin-bottom: .75em;
}
.addleses_box .address {
  vertical-align: top;
  line-height: 1.75;
  margin-bottom: .5em;
}
.addleses_box .addresses_edit_btn_wrap {
  text-align: right;
  width: 140px;
}
.addleses_box .addresses_edit_btn_wrap a {
  width: 140px;
  text-align: center;
  font-size: 16px;
  padding: .5em;
  font-weight: 600;
  color: #fff;
  background: #707070;
  border-radius: 4px;
}
.addleses_box-01 {
  margin-bottom: 60px;
  border-bottom: 1px solid #c7c7c7;
}
.addleses_box-02 {
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
}
.addleses_box-03 {
  margin-bottom: 30px;
  border-bottom: 1px solid #c7c7c7;
}

.addresses_set_wrap {
  margin: 50px auto 20px;
  text-align: center;
}
.addresses_set_wrap input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
}
.addresses_set_wrap .txt {
  font-size: 14px;
  color: #1c1c1c;
  letter-spacing: 1px;
}

.addresses-save {
  width: 290px;
  margin: 0 auto;
}
.addresses-save input {
  width: 100%;
  height: 100%;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  white-space: nowrap;
}


/* ======================================
= .order-confirm-page-- =
========================================= */
.order-confirm-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#order-confirm-box .inner {
  padding-bottom: 100px;
}
#order-confirm-box .confirm_box {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  color: #1c1c1c;
}
.order-confirm_box_discount {
  margin-left: auto;
  margin-bottom: 10px;
  text-align: right;
}

.order-confirm_box_total {
  margin-left: auto;
  margin-bottom: 50px;
  border-bottom: 2px solid #c7c7c7;
  width: 300px;
  text-align: right;
}

.order-confirm_box_total tr.total td {
    font-weight: bold;
    font-size: 20px;
}
#order-confirm-box .ttl {
  display: block;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 1em;
  border-bottom: 1px solid #c7c7c7;
}

.confirm_box-order {
  margin-bottom: 40px;
  border-top: 1px solid #c7c7c7;
  border-right: 1px solid #c7c7c7;
  border-left: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
}
.confirm_box-order .order-contents {
  height: 170px;
  line-height: 28px;
  margin-bottom: 10px;
  padding: 10px 20px 20px;
  background: #F0F0F0;
  border-bottom: 1px solid #c7c7c7;
}
.confirm_box-order .order-contents th {
  width: 110px;
  white-space: nowrap;
}

#order-confirm-box .order-contents th,
#order-confirm-box .order-contents td {
  padding-bottom: 12px;
}

#order-confirm-box .confirm_box_recent_order .recent_order_contents table {
  margin: 10px 0px;
}
#order-confirm-box .confirm_box_recent_order .recent_order_contents th {
  background-color: #f0f0f0;
}
#order-confirm-box .confirm_box_recent_order .recent_order_contents th,
#order-confirm-box .confirm_box_recent_order .recent_order_contents td {
  border: 1px solid #c7c7c7;
  text-align: center;
  padding: 8px 0;
}

#order-confirm-box .confirm_tbl {
  padding: 0 20px 20px;
}
.confirm_box-order a {
  color: #ff4e7c;
  font-size: 16px;
  font-weight: 600;
  font-feature-settings: "palt";
}
.confirm_box-order .items_detail {
  display: block;
  margin-bottom: 20px;
}
.confirm_box-order .items_detail tbody {
  display: block;
  padding-bottom: 20px;
}
.confirm_box-order .items_detail tbody:last-of-type {
  border-bottom: 1px solid #c7c7c7;
}
.confirm_box-order .items_detail td {
  vertical-align: top;
  line-height: 28px;
}
.confirm_box-order .item_image {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  min-width: auto;
  min-height: auto;
  margin: 0;
  margin-right: 20px;
  background: #fff;
  border: 1px solid #c7c7c7;
  overflow: hidden;
}
.confirm_box-order .item_image img {
  padding: 5px;
}
.confirm_box-order .item {
  margin-right: .5em;
}

.order-amount_details {
  text-align: right;
  width: auto;
  margin: 20px 0 auto auto;
}
.order-amount_details th {
  font-weight: normal;
  text-align: right;
}
.order-amount_details td {
  width: 90px;
  white-space: nowrap;
}
.order-amount_details tr.total {
  height: 40px;
  font-weight: 600;
  vertical-align: bottom;
}
.order-amount_details tr.total th {
  font-weight: 600;
}
.confirm_box-payment_info .dl_cont,
.confirm_box-shipping_info .dl_cont,
.confirm_box-orderer_info .dl_cont {
  margin-bottom: 40px;
  padding: 8px 0;
  border-bottom: 1px solid #c7c7c7;
}
.confirm_box-payment_info dl,
.confirm_box-shipping_info dl,
.confirm_box-orderer_info dl {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  text-align: left;
  color: #1c1c1c;
  font-size: 16px;
  line-height: 28px;
  background: #fff;
}
.confirm_box-payment_info dt,
.confirm_box-shipping_info dt,
.confirm_box-orderer_info dt {
  display: inline-block;
  width: 200px;
  padding: 10px 0;
  white-space: nowrap;
}
.confirm_box-payment_info dd,
.confirm_box-shipping_info dd,
.confirm_box-orderer_info dd {
  width: 760px;
  height: auto;
  padding: 10px 0;
  margin: 0;
}

.confirm_box-comment {
  margin-bottom: 40px;
  border-bottom: 1px solid #c7c7c7;
}
.comment-contents {
  font-size: 16px;
  line-height: 28px;
  padding: 20px 0;
}
.comment-contents .txt {
  letter-spacing: 1px;
}

.order-confirm {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
}
.order-confirm input {
  display: inline-block;
  width: 290px;
  margin: 0 auto;
  letter-spacing: 1px;
}
.order-confirm .submit_btn {
}
.order-confirm .return_btn {
  margin-right: 20px;
  color: #707070;
  font-size: 18px;
  font-weight: normal;
  background: #fff;
  border: 1px solid #c7c7c7;
}
.order-confirm input {
  font-size: 18px;
  font-weight: 600;
  /* color: #fff; */
  white-space: nowrap;
}

/* --------------- */

/* -----------------------------------------
2020-11-19 endo ここから
----------------------------------------- */


/* ======================================
= .informations-top-page-- =
========================================= */
.informations-top-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#informations-top-box .inner {
  padding-bottom: 100px;
}
.informations-list {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 30px;
  border: 1px solid #c7c7c7;
}
.informations-list dl {
  display: flex;
  padding: 18px 0;
  font-size: 14px;
  line-height: 1.25;
  color: #1c1c1c;
  border-bottom: 1px solid #c7c7c7;
}
.informations-list dl:last-of-type {
  border-bottom: none;
}
.informations-list dt {
  width: 115px;
  min-width: 115px;
  max-width: 115px;
  font-weight: normal;
}
.informations-list dd {
  margin: 0;
}
.informations-list a:hover {
  text-decoration: underline;
}

/* ======================================
= .informations_news-page-- =
========================================= */
.informations_news-page h1 {
  max-width: 640px;
  font-size: 30px;
  margin: 40px auto 60px;
}
#informations-news-box .inner {
  padding-bottom: 100px;
}
#informations-news-box .informations-news-cnt {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: .75px;
  color: #1c1c1c;
}
#informations-news-box img {
  display: block;
  margin: 0 auto 20px;
  text-align: center;
}
#informations-news-box p {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: .75px;
}
#informations-news-box .informations_post-link a {
  display: inline-block;
  padding: .25em 0;
  color: #1c1c1c;
  text-decoration: underline;
}
#informations-news-box .informations_post-link a:hover {
  opacity: .7;
  text-decoration: none;
}


/* -----------------------------------------
2020-11-19 endo ここまで
----------------------------------------- */

/* -----------------------------------------
2020-11-20 mr ここから
----------------------------------------- */
/* ======================================
= .contact-page-- =
========================================= */
#contact-page-box h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#contact-page-box .inner {
  padding-bottom: 100px;
}

/* .contact-page_cnt */
.contact-page_cnt {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.25;
  color: #1c1c1c;
  letter-spacing: .75px;
}

/* .contactpage-faq-box */
.contactpage-faq-box {
  margin-bottom: 40px;
  padding: 20px 30px;
  background: #f0f0f0;
}
.contactpage-faq-box h2 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  margin-bottom: 10px;
  padding-bottom: 18px;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #c7c7c7;
}
.contactpage-faq-box .faqLst_box {
  display: flex;
  margin-bottom: 28px;
}
.contactpage-faq-box ul {
  width: 300px;
  margin-right: 10px;
  font-size: 16px;
}
.contactpage-faq-box ul:last-of-type {
  margin-right: 0;
}
.contactpage-faq-box ul li {
  line-height: 40px;
}
.contactpage-faq-box li a:hover {
  text-decoration: underline;
}
.contactpage-faq-box .link_btn a {
  display: block;
  width: 350px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #707070;
  border-radius: 4px;
}

/* .contactpage-guide */
.contactpage-guide {
  margin: 0 auto 30px;
}
.contactpage-guide .txt_box p {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: normal;
}
.contactpage-guide a {
  text-decoration: underline;
}
.contactpage-guide a:hover {
  text-decoration: none;
}

/* .member_login */
.member_login {
  margin-bottom: 20px;
  padding: 20px 30px;
  background: #f0f0f0;
}
.member_login th {
  width: 103px;
  font-size: 18px;
  font-weight: 600;
  vertical-align: middle;
  border-right: 1px solid #c7c7c7;
}
.member_login td {
  vertical-align: middle;
}
.member_login td.txt {
  padding-left: 30px;
  font-size: 16px;
  line-height: 28px;
}
.member_login .login_btn {
  text-align: right;
}
.member_login .login_btn .submit_btn {
  display: inline-block;
  width: 130px;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: #ff4e7c;
  border-radius: 4px;
  transition: .3s;
}
.member_login .login_btn .submit_btn:hover {
  opacity: .7;
}

/* .contact-page_cnt .inquiry_box */
.contact-page_cnt .inquiry_box {
  margin-bottom: 10px;
}
.contact-page_cnt .inquiry_box ul {
  display: flex;
  margin-bottom: 20px;
}
.contact-page_cnt .inquiry_box p {
  font-size: 16px;
  line-height: 28px;
}
.contact-page_cnt .inquiry_box li {
  width: 320px;
  height: 50px;
  line-height: 50px;
  margin-right: 10px;
  text-align: center;
}
.contact-page_cnt .inquiry_box li {
  display: block;
  width: 100%;
  height: 100%;
  color: #707070;
  background: #f0f0f0;
}
.contact-page_cnt .inquiry_box li.select {
  color: #fff;
  background: #707070;
  cursor: initial;
}
.contact-page_cnt .inquiry_box li:last-of-type {
  margin-right: 0;
}
.contact-page_cnt .inquiry_box .note {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1px;
}

/* .contact-page_cnt .inquiry_form */
.contact-page_cnt .inquiry_form {
  margin-bottom: 100px;
  padding: 20px 15px;
  border: 15px solid #f0f0f0;
}
.contact-page_cnt .inquiry_form .note {
  display: inline-block;
  margin-bottom: 20px;
  color: #ff0000;
}
.contact-page_cnt .inquiry_form .red {
  color: #ff0000;
}
.contact-page_cnt .inquiry_form .required {
  font-size: inherit;
  font-weight: 600;
  color: #ff0000;
}
.contact-page_cnt .inquiry_form .inquiry_form-box {
  width: 850px;
  margin: 0 auto;
}
.contact-page_cnt .inquiry_form .inquiry_form-box form {
  margin-bottom: 40px;
  border-bottom: 1px solid #c7c7c7;
}
.contact-page_cnt .inquiry_form dl {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  min-height: 50px;
  text-align: left;
  margin-bottom: 20px;
  color: #1c1c1c;
  font-size: 16px;
  background: #fff;
}
.contact-page_cnt .inquiry_form dl:last-of-type {
  margin-bottom: 50px;
}
.contact-page_cnt .inquiry_form dl ul {
  display: flex;
}
.contact-page_cnt .inquiry_form dl.edit-name ul li input,
.contact-page_cnt .inquiry_form dl.edit-ruby ul li input {
  width: 320px;
}
.contact-page_cnt .inquiry_form dl ul li:first-of-type {
  margin-right: 20px;
}
.contact-page_cnt .inquiry_form form .note {
  display: block;
  width: 100%;
  margin: 0 0 20px;
  color: #1c1c1c;
  font-size: 12px;
  line-height: 16px;
}
.contact-page_cnt .inquiry_form dt {
  width: 190px;
  margin: auto;
}
.contact-page_cnt .inquiry_form dd {
  width: 660px;
  height: 100%;
  margin: 0;
}
.contact-page_cnt .inquiry_form dl input {
  width: 100%;
  height: 100%;
  min-height: 50px;
  padding: .5em;
  font-size: 16px;
  border: 1px solid #c7c7c7;
}
.contact-page_cnt .inquiry_form input::-webkit-input-placeholder,
.contact-page_cnt .inquiry_form textarea::-webkit-input-placeholder {
  color: #c7c7c7;
  font-size: 16px;
  letter-spacing: 1px;
}
/* IE */
.contact-page_cnt .inquiry_form input:-ms-input-placeholder,
.contact-page_cnt .inquiry_form textarea:-ms-input-placeholder {
  color: #c7c7c7;
  font-size: 16px;
  letter-spacing: 1px;
}
/* firefox */
.contact-page_cnt .inquiry_form input::-moz-placeholder,
.contact-page_cnt .inquiry_form textarea::-moz-input-placeholder {
  color: #c7c7c7;
  font-size: 16px;
  letter-spacing: 1px;
}
/* Edge */
.contact-page_cnt .inquiry_form input::-ms-input-placeholder,
.contact-page_cnt .inquiry_form textarea::-ms-input-placeholder {
  color: #c7c7c7;
  font-size: 16px;
  letter-spacing: 1px;
}
.contact-page_cnt .inquiry_form .edit-mail dt {
  margin-top: .75em;
}
.contact-page_cnt .inquiry_form .edit-mail input:first-of-type {
  margin-bottom: 20px;
}
.contact-page_cnt .inquiry_form .edit-orderNo dt {
  line-height: 1.1;
}
.contact-page_cnt .inquiry_form .edit-orderNo dt .red {
  font-size: 12px;
  font-weight: normal;
  line-height: .5;
  color: #ff0000;
}
.contact-page_cnt .inquiry_form .data-inquiryType select {
  width: 100%;
  height: 50px;
  padding: .5em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid #c7c7c7;
  background: #fff;
  background: url(/img/user/contact/icon-caret-down.png) right 10px center no-repeat;
  background-size: 16px;
}
.contact-page_cnt .inquiry_form .edit-inquiryLetter dt {
  margin-top: 1.25em;
}
.contact-page_cnt .inquiry_form .edit-inquiryLetter textarea {
  width: 100%;
  min-height: 300px;
  padding: 1em .75em;
  border: 1px solid #c7c7c7;
}

/* .contact-page_cnt .inquiry_txt_box */
.contact-page_cnt .inquiry_txt_box {
  padding-bottom: 20px;
}
.contact-page_cnt .inquiry_txt_box p {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 1px;
}
.contact-page_cnt .inquiry_txt_box a {
  text-decoration: underline;
}
.contact-page_cnt .inquiry_txt_box a:hover {
  text-decoration: none;
}

/* .contact-page_cnt .inquiry_submit */
.contact-page_cnt .inquiry_submit {
  display: flex;
  align-items: center;
  max-width: 606px;
  margin: 0 auto;
  white-space: nowrap;
}
.contact-page_cnt .inquiry_submit .return_btn {
  width: 290px;
  height: 50px;
  margin-right: 20px;
  font-size: 18px;
  font-weight: normal;
  color: #707070;
  background: #fff;
  text-align: center;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 1px solid #c7c7c7;
}
.contact-page_cnt .inquiry_submit .submit_btn {
  width: 290px;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #707070;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 0;
}
.contact-page_cnt .inquiry_submit input:hover {
  opacity: .7;
  transition: all .3s;
}
/* -----------------------------------------
2020-11-20 mr ここまで
----------------------------------------- */

/* -----------------------------------------
2020-11-26 endo ここから
----------------------------------------- */
.common_table {
  border-collapse: collapse;
  table-layout: fixed;
  table-layout: auto;
  text-indent: 0;
}
.common_table th {
  background-color: #eee;
  border: 1px solid #666;
  padding: 3px 6px;
  text-indent: 0;
}

.common_table td {
  border: 1px solid #666;
  padding: 3px 6px;
  text-indent: 0;
}

.review-post-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
.review-post-page_cnt {

}
.review-post-page_cnt .inner {
  padding-bottom: 100px;
}
.review-post-page_cnt .box {
  border: 1px solid #c7c7c7;
  max-width: 980px;
  padding: 20px 40px 50px;
}
.review-post-message-box {
  border: 1px solid #c7c7c7;
  margin: 20px auto;
  padding: 20px;
}
.review-post-message-box .title {
  font-weight: 600;
}
.review-post-message-box .text {
}
.review-post-page_cnt .box dl {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
  color: #1c1c1c;
  font-size: 16px;
  line-height: 28px;
  background: #fff;
}
.review-post-page_cnt .box dt {
  width: 230px;
  padding: .5em 0;
  /* line-height: 50px; */
}
.review-post-page_cnt .box dd {
  width: 790px;
  /* margin: 0; */
}
.review-post-page_cnt .box a {
  color: #ff4e7c;
  font-weight: 600;
}
.review-post-page_cnt .box dl label {
  min-width: 13em;
  display: inline-block;
}
.review-post-prof_list li {
  margin-bottom: 10px;
}
.review-post-page_cnt .box .btn_wrap {
  text-align: center;
  margin-top: 40px;
}
.review-post-page_cnt .box .btn_wrap .confirm {
  color: #fff;
  background: #707070;
  letter-spacing: .1em;
  padding: .75em;
}


/* ======================================
= .faq-page-- =
========================================= */
.faq-page h1 {
  text-align: center;
  font-size: 30px;
  font-weight: normal;
  margin: 40px auto 60px;
}
.faq-page .txt_box p {
  margin-bottom: 40px;
  text-align: center;
  font-size: 16px;
}
.faq-page main {
  position: relative;
  width: 100%;
  min-width: 980px;
  margin: 0 auto;
}
.faq-page .main_container {
  width: 100%;
  max-width: 980px;
  height: 100%;
  margin: 0 auto;
}

/* .faq-page .rightcol */
.faq-page .rightcol {
  float: right;
  width: 750px;
  max-width: 750px;
  padding-left: 0;
  padding-bottom: 60px;
  height: 100%;
  overflow: hidden;
}
#faq-page-box .inner {
  padding-bottom: 100px;
}
.faq-page_cnt {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 40px;
  font-size: 16px;
  line-height: 28px;
  color: #1c1c1c;
  border-top: 1px solid #c7c7c7;
}
.faq-page_cnt .ttl {
  padding-bottom: 30px;
  font-size: 16px;
  font-weight: 600;
}
.faq-page_cnt dl {
  display: block;
  width: 100%;
  padding-left: 15px;
  line-height: 26px;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1px;
}
.faq-page_cnt .faq_qa {
  margin-bottom: 40px;
  border-bottom: 1px solid #c7c7c7;
}
.faq-page_cnt .faq_q {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}
.faq-page_cnt .faq_a {
  padding-left: 15px;
}
.faq-page_cnt dd p {
  margin-bottom: 1em;
  line-height: 26px;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: .75px;
}
.faq-page_cnt dd p:last-of-type {
  margin-bottom: 30px;
}

/* .faq-page aside */
.faq-page .aside_inner div {
  border-bottom: 1px solid #c7c7c7;
}
.faq-page aside {
  float: left;
  width: 200px;
  max-width: 200px;
  height: 100%;
  overflow: hidden;
  font-size: 16px;
  line-height: 28px;
  color: #1c1c1c;
  border-top: 1px solid #c7c7c7;
}
.faq-page aside .aside_tgl_point {
  position: relative;
  /* font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
  padding-left: 0;
  color: #1c1c1c;
  line-height: 71.5px;
  vertical-align: middle;
  height: 71.5px;
  font-size: 12px;
  font-weight: 600;
  vertical-align: middle;
  cursor: pointer;
}
.faq-page .aside_tgl_point::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 2.5px);
  left: auto;
  right: 0;
  width: 10px;
  height: 10px;
  background: url(/img/user/common/icon_minus.svg) no-repeat;
  background-size: 100%;
  transition: ease .3s;
}
.faq-page .aside_tgl_point.plus::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 5px);
  left: auto;
  right: 0;
  width: 10px;
  height: 10px;
  background: url(/img/user/common/icon_plus.svg) no-repeat;
  background-size: 100%;
  transition: ease .3s;
}
.faq-page .aside_ct ul {
  padding: 0 0 0 11.5px;
}
.faq-page .aside_ct ul li {
  margin-bottom: 1em;
  font-size: 12px;
  line-height: 22px;
  white-space: normal;
}
.faq-page .aside_ct ul li .txt {
  letter-spacing: 1px;
}


/* ======================================
= .commercial_transactions-page-- =
========================================= */
.commercial_transactions-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#commercial_transactions-page-box .inner {
  padding-bottom: 100px;
}
.commercial_transactions-page_cnt {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 28px;
  color: #1c1c1c;
  border-top: 1px solid #c7c7c7;
}
.commercial_transactions-page_cnt dl {
  display: flex;
  border-bottom: 1px solid #c7c7c7;
  letter-spacing: 1px;
  align-items: flex-start;
}
.commercial_transactions-page_cnt dt {
  width: 200px;
  padding: 1.2em 0;
  font-weight: 600;
}
.commercial_transactions-page_cnt dd {
  width: 100%;
  padding: 1.2em 0 1.2em 20px;
}
.commercial_transactions-page_cnt dd .address_txt {
  display: block;
}
.commercial_transactions-page_cnt .price_other {
  padding-bottom: 10px;
}

.commercial_transactions-page_cnt .price_other p {
  font-size: 16px;
  margin-bottom: 1em;
}
.commercial_transactions-page_cnt .price_other dd *:last-of-type {
  margin-bottom: auto;

}
.commercial_transactions-page_cnt a {
  color: #ff4e7c;
}
.commercial_transactions-page_cnt a:hover {
  text-decoration: underline;
}


/* ======================================
= .policy-page-- =
========================================= */

.policy-page h1 {
  font-size: 30px;
  margin: 40px auto 60px;
}
#policy-page-box .inner {
  padding-bottom: 100px;
}
.policy-page .main_container {
  width: 90%;
}
.policy-page_cnt {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 26px;
  color: #1c1c1c;
}
.policy-page_cnt p,
.policy-page_cnt li {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
}
.policy-page_cnt .common_table {
  margin: 1em 20px 2em;
  width: calc(100% - 40px);
}
.policy-page_cnt .common_table a {
  color: #07079a;
}
.policy-page_txt_box {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.policy-page_cnt h2 {
  /* margin-bottom: 1em; */
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1c;
  margin: 3em auto .5em;
}
.policy-page_txt_box p {
  /* text-align: center; */
  font-size: 16px;
}
.policy-page_cnt .text p {
  padding: 0 20px;
  margin: .5em auto 1em;
}
.policy-page_cnt .order_lst ol {
  padding: 0 0 40px 20px;
  counter-reset: item;
  list-style-type: none;
}
.policy-page_cnt .order_lst li {
  text-indent: -2em;
  padding-left: 2em;
  margin-bottom: 1em;
}
.policy-page_cnt .order_lst li:before {
  display: inline-block;
  width: 2em;
  counter-increment: item;
  content: counter(item) ".";
  padding-left: calc(20px + .5em);
  font-size: 14px;
  font-weight: normal;
  color: #1c1c1c;
}
.policy-page_cnt .order_lst li div {
  padding-left: 30px;
}

.policy-page_cnt .article-10 table {
}
.policy-page_cnt .article-10 table tr td:first-child {
  width: 30%;
}
/* -----------------------------------------
2020-11-26 endo ここまで
----------------------------------------- */

/* ======================================
= .questionnaire-page =
========================================= */
.questionnaire-page .form_box_tbl dl {
    display: block;
    width: auto;
}
.questionnaire-page .form_box_tbl dd {
    margin-left: 60px;
}
.questionnaire-page .checkbox_btn {
    margin-right: 12px;
    line-height: 28px;
    white-space: nowrap;
}
.questionnaire-page .radio_btn {
    line-height: 42px;
}
.questionnaire-page .radio_btn input[type="radio"] {
    margin-left: 0;
}

/* -----------------------------------------
- .ambassador-icon
----------------------------------------- */
.ambassador-icon {
  display: block;
  width: 160px;
  height: 160px;
  padding: 2px;
  border: 1px solid #c7c7c7;
  border-radius: 50%;
}
.ambassador-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.description .ambassador-comment {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.description .ambassador-comment .ambassador-icon {
  width: 80px;
  height: 80px;
}
.description .ambassador-comment dd {
  margin-left: 32px;
}

/* -----------------------------------------
- .ambassador_list
----------------------------------------- */
.ambassador_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 2px;
}

.ambassador_list>li {
  display: flex;
  text-align: center;
  flex-direction: column;
  margin-right: 36px;
  margin-bottom: 36px;
}

.ambassador_list>li:nth-child(6n) {
  margin-right: 0;
}

.index-page .ambassador_list .ambassador-icon {
  width: 100px;
  height: 100px;
}
.index-page .ambassador_list>li {
  margin-right: 32px;
}

.index-page .ambassador_list>li p {
  margin-top: 6px;
  max-width: 100px;
  overflow: hidden;
  font-size: .85em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* -----------------------------------------
- .ambassador_profile
----------------------------------------- */
.ambassador_profile {
  display: flex;
  margin-bottom: 32px;
}

.ambassador_profile .ambassador-icon {
  flex-basis: 240px;
  height: 240px;
  margin-right: 48px;
}

.ambassador_profile .ambassador_profile_data {
  flex-shrink: 999;
}

.ambassador_profile .ambassador_profile_data div p {
  margin: 20px 0;
}

.ambassador_profile .ambassador_profile_data div dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}

.ambassador_profile .ambassador_profile_data dl dt {
  margin-bottom: 12px;
}
.ambassador_profile .ambassador_profile_data dl dt img {
  width: 32px;
  height: 32px;
}
.ambassador_profile .ambassador_profile_data dl dd {
  margin-left: 12px;
  line-height: 32px;
}
