@charset "UTF-8";

/* 画面初期設定 */
.user_onecolumn,
.user_twocolumn {
  width: 100%;
  padding-top: 10rem; /* 固定ヘッダー分 */
}
@media only screen and (max-width: 767px) {
  .user_onecolumn,
  .user_twocolumn {
    width: 100%;
    padding-top: 7rem;
  }
}
@media only screen and (min-width: 768px) {
  .user_sp-only {
    display: none;
  } /* SPのみ表示の場合 */
}
@media only screen and (max-width: 767px) {
  .user_pc-only {
    display: none;
  } /* PCのみ表示の場合 */
}
@media only screen and (max-width: 320px) {
  .user_se-none {
    display: none;
  }
}
/*　画面幅指定　*/
.user_width-100 {
  width: 100%;
}
.user_width-90 {
  width: 90%;
}
.user_width-80 {
  width: 80%;
}
.user_width-70 {
  width: 70%;
}
.user_width-60 {
  width: 60%;
}
.user_width-50 {
  width: 50%;
}
.user_width-40 {
  width: 40%;
}
.user_width-30 {
  width: 30%;
}
.user_width-25 {
  width: 25%;
}
.user_width-20 {
  width: 20%;
}
.user_width-10 {
  width: 10%;
}

/* フォント */
.user_tiny-font {
  font-size: 0.5rem;
}
.user_small-font {
  font-size: 0.8rem;
}
.user_middle-font {
  font-size: 1.2rem;
}
.user_large-font {
  font-size: 1.4rem;
}
.user_overlarge-font {
  font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .user_sp_text-center {
    text-align: center;
  }
}
.user_pc_text-right {
  text-align: right;
}

/* ロゴサイズ　*/
.user_logo-area p {
  line-height: 1rem;
}
.user_header-logo {
  width: 70px;
  height: auto;
}
.user_header-logo-2 {
  width: 120px;
  height: auto;
}
.user_header-logo-3 {
  width: 180px;
  height: auto;
}
.user_footer-logo {
  width: 100px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .user_header-logo {
    width: 3rem;
  }
  .user_logo-area p {
    line-height: 1rem;
  }
  .user_header-logo-2 {
    width: 80px;
  }
  .user_header-logo-3 {
    width: 60px;
    height: auto;
  }
  .user_footer-logo {
    width: 4rem;
    height: auto;
  }
  .user_normal-font {
    font-size: 0.875rem;
  }
}

/* アイコンサイズ */
.user_guide-icon {
  width: 4rem;
}
.user_sns-icon {
  width: 1.5rem;
  height: auto;
}

/*　ボーダー　*/
.user_border {
  border: solid 1px #141414;
}
.user_border-dotted {
  border-bottom: dotted 1px #aaa;
}
.user_cart-border {
  border-top: 1px solid #ddd;
}

/*　ボタン */
.user_button {
  display: block;
  width: 16.875rem;
}
.user_original-button {
  text-align: center;
  border: 1px solid #aaa;
  padding: 1rem 4rem;
}
.user_multi-button {
  display: block;
  width: 17.5rem;
}
.user_small-button {
  display: inline-block;
  width: 6.5rem;
}
.user_button-area {
  margin: 3rem auto 6rem auto;
}

.user_delete-button {
  position: absolute;
  top: 0;
  right: 1rem;
}
/* リンク */
.user_link-hover:hover {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  color: #141414;
  opacity: 0.6;
}

/*　見出し */
.user_title {
  margin-bottom: 3rem;
}
.user_heading {
  padding: 0.2rem 0.7rem;
  color: #141414;
  background: transparent;
  border-left: solid 5px #141414;
}
.user_subheading {
  padding: 0.2rem 0.7rem;
  background: transparent;
  border-left: solid 5px #5f7276;
}
.user_guide-heading {
  background:linear-gradient(transparent 60%, #e2e2e2 60%);
}

.user_highlighter {
  background:linear-gradient(transparent 60%, #ff6 60%);
}

/* テーブル */
.user_edit-table th {
  width: 35%;
  position: relative;
}
.user_edit-table td {
  width: 65%;
}
.user_cart-table th {
  width: 30%;
  position: relative;
}
.user_cart-table td {
  width: 70%;
}

@media only screen and (max-width: 767px) {
  .user_sp-table th,
  .user_sp-table td {
    width: 100%;
    display: block;
  }
  .user_mypage-table td:first-child {
    background: #dee2e6;
  }
  .user_mypage-table .user_thead {
    display: none;
  }
  .user_mypage-table tr {
    width: 100%;
  }
  .user_mypage-table td {
    display: block;
    text-align: right;
    width: 100%;
  }
  .user_mypage-table td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
}

/* 商品画像 */
.user_product-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.user_productshow-img {
  width: 100%;
  padding-top: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.user_productshow-img img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.user_thumbnail-img {
  width: 7rem;
  height: 7rem;
}
.user_multi-thumbnail-img {
  width: 4rem;
  height: 4rem;
  border: 1px solid #dddddd;
}
.user_cardbrand-img {
  width: 25rem;
  height: auto;
}
.user_soldout, .user_comingsoon {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -30%);
  -webkit-transform: translate(-50%, -30%);
  transform: translate(-50%, -30%);
  margin: 0;
  padding: 0;
  font-family: YakuHanJP, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium",
    "Yu Gothic", "游ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 0px #000, -1px -1px 0px #000,
              -1px 1px 0px #000,  1px -1px 0px #000,
              1px 0px 0px #000, -1px  0px 0px #000,
              0px 1px 0px #000,  0px -1px 0px #000;
}
@media only screen and (max-width: 767px) {
  .user_slick-thumbnail-img {
    width: 5rem;
    height: 5rem;
    border: 1px solid #dddddd;
  }
  .user_index-category-img {
    padding: 0 3px;
  }
}

/*====================================*/

/* announcement */
.user_index_announcement-link {
  border-bottom: 1px solid #aaa;
  line-height: 2rem;
  width: 100%;
}
.user_index_announcement-date {
  display: inline-block;
  width: 20%;
}
.user_index_announcement-title {
  display: inline-block;
  width: 80%;
}
@media only screen and (max-width: 767px) {
  .user_index_announcement-date {
    display: block;
    width: 100%;
  }
  .user_index_announcement-title {
    display: block;
    width: 100%;
  }
}

/* guide */
.user_index_guide {
  width: 100%;
}
.user_index_guide-item {
  width: 22%;
  border: 1px solid #141414;
}
.user_required {
  position: absolute;
  right: 1rem;
}
.user_anchor-link {
  display: block;
  padding-top: 9rem;
  margin-top: -9rem;
}

@media only screen and (max-width: 767px) {
  .user_index_guide-item {
    width: 100%;
  }
}

/* login */
.user_login-liststyle {
  border: 1px solid #218838;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}
.user_login-liststyle li {
  line-height: 1.5;
  padding: 0.5em 0;
}
.user_login-liststyle li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00d";
  font-weight: 900;
  position: absolute;
  left: 1em; /*左端からのアイコンまで*/
  color: #218838; /*アイコン色*/
}

/* card */
.user_creditcard_img {
  width: 12rem;
  height: auto;
}
.user_creditcard-liststyle {
  border: 1px solid #dc3545;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}
.user_creditcard-liststyle li {
  line-height: 1.5;
  padding: 0.5em 0;
}
.user_creditcard-liststyle li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  left: 1em; /*左端からのアイコンまで*/
  color: #dc3545; /*アイコン色*/
}
@media only screen and (max-width: 767px) {
  .user_creditcard_img {
    width: 9rem;
    height: auto;
  }
}

/* product */
.user_separator {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-flow: row wrap;
}
.user_separator a {
  padding: 0 1rem;
}
.user_separator li + li:before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  height: 14px;
  margin-top: -7px;
  border-right: 1px solid #585858;
}
@media only screen and (max-width: 769px) {
  .user_separator a {
    padding: 0 0.7rem;
  }
  .user_navbar {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    height: 80vh;
    scrollbar-width:none;
}
  .user_navbar::-webkit-scrollbar { 
    /* Chrome, Safari */
	  display: none;
  }
  .user_nav-border {
    border-bottom: 1px solid #e8e8e8;
  }
}

.user_relative {
  position: relative;
}
.user_mypage-height {
  min-height: 8rem;
}

.user_border-dashed{
  border-top: 1px dashed #ccc;
}
.user_dropdown-menu {
  margin-top:20px;
  width: 50vw;
}

@media only screen and (max-width: 769px) {
  .user_dropdown-menu {
    margin-top:5px;
    width: 100%;
  }
  .dropdown-menu {
    border: none;
  }
}

/* 年齢確認ポップアップ */
.user_age-overlay {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:none;
  background-color:rgba(0,0,0,0.8);
  opacity:1;
  z-index:9999;
}
.user_age-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 50%;
  background-color: #fff;
  text-align: center;
  padding: 30px;
  margin: 12px auto;
}
.user_age-title {
  font-size: 18px;
}
.user_age-text {
  font-size: 16px;
}
.user_age-question {
  font-size: 24px;
}
.user_age-select {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.age_confirm {
  display: block;
  width: 18rem;
  background: #000000;
  color: #fff !important;
  font-size: 22px;
  font-weight: bold;
  padding: 10px 20px;
  margin: 10px;
}
@media only screen and (max-width: 768px){
  .user_age-content {
    width: 100%;
    padding: 30px 10px;
  }
  .user_age-text {
    font-size: 14px;
  }
}
