@charset "UTF-8";
/* variable ------------------------- */
/* mixin ------------------------- */
/* base ------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  height: 100%;
}

body.noscroll {
  overflow: hidden;
}

* html body {
  font-size: 3.33vw;
}

*:first-child + html body {
  font-size: 3.33vw;
}

img {
  width: 100%;
}

.pc_only {
  display: none;
}

/*------------------------------------------------------------
レイアウト
------------------------------------------------------------*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #FFFFFF;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  color: inherit;
  font-family: inherit;
  padding: 8px 10px;
  width: 100%;
  height: 42px;
  font-size: 3.33vw;
}

input[type=submit] {
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

input[type=submit]:hover {
  opacity: 0.7;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus {
  border: 1px solid rgba(0, 110, 255, 0.753);
  box-shadow: none;
  outline: none;
}

textarea {
  border: 1px solid rgba(0, 0, 0, 0.16);
  width: 100%;
  padding: 15px;
  line-height: 180%;
  height: 40vh;
  font-size: 3.33vw;
}

input::placeholder {
  color: #cacaca;
}

/* IE */
input:-ms-input-placeholder {
  color: #cacaca;
}

/* Edge */
input::-ms-input-placeholder {
  color: #cacaca;
}

.select_n {
  overflow: hidden;
  width: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #ffffff;
  height: 42px;
  display: inline-block;
  vertical-align: bottom;
}
.select_n select {
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 8px 38px 8px 8px;
  color: #666666;
  font-size: 3.33vw;
}
.select_n select::-ms-expand {
  display: none;
}
.select_n:before {
  position: absolute;
  top: 1.5em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

.select_row {
  display: flex;
  flex-wrap: wrap;
}

.select_row li {
  width: 25%;
  margin-right: 1.5%;
}

.w_full {
  width: 310px !important;
}

.w_half {
  width: calc(50% - 5px) !important;
}

.w_third {
  width: calc(33% - 5px) !important;
}

.w_short {
  width: 45% !important;
}

.w_shorter {
  width: 100px !important;
}

.w_search {
  width: calc(100% - 37px) !important;
}

input[type=radio]:checked, input[type=checkbox]:checked {
  background-color: #333 !important;
}

input[type=radio], input[type=checkbox], input[type=check] {
  padding: 5px;
  line-height: 1.5;
  margin-right: 0.5em;
}

input[type=radio] {
  border-radius: 7.5px;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  border: solid 2px #ccc;
  margin: -3px 5px 0 0;
}

input[type=checkbox] {
  border-radius: 2px;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  border: solid 2px #ccc;
  margin: -2px 5px 0 0;
}

.form_list dt,
.form_list_underline dt {
  margin-bottom: 7px;
}

.form_list dd {
  margin-bottom: 18px;
}

.form_list_underline dd {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: #e3e3e3 1px solid;
}

input.disabled_input {
  background-color: #D1D1D1 !important;
  pointer-events: none;
}

.form_list_mypage input[name=addr01] {
  margin: 5px 0;
}

#now_execute {
  margin-top: 30px;
}

#now_execute p {
  text-align: center;
}

/* layout ------------------------- */
#wrapper {
  font-size: 3.05vw;
  overflow: clip;
}

.LC_Page_Index #container {
  position: relative;
  top: -13.88vw;
}
.LC_Page_Index #global_header {
  background-color: transparent;
  transition: background-color 0.5s ease;
}
.LC_Page_Index #global_header.global_header_active {
  background-color: #FFF;
}
.LC_Page_Index #global_footer {
  margin-top: 5.55vw;
}

.undercolumn_small {
  width: 95%;
  margin: 0 auto 0 auto;
  padding-top: 20px;
}

#undercolumn_cart {
  margin-bottom: 40px;
}

.undercolumn_middle {
  width: 95%;
  margin: 0 auto 0 auto;
  padding-top: 20px;
}

#undercolumn_blog {
  width: 90%;
  margin: 0 auto 0 auto;
  padding-top: 20px;
}

.flex_between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex_center {
  display: flex;
  align-items: center;
}

.attention {
  color: #cd0000;
}

.block_gray,
.undercolumn_message_block {
  background-color: #f3f3f3;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 2.77vw;
}

.default_dl_list dt {
  width: 100%;
  margin-bottom: 10px;
  font-weight: 700;
}

.default_dl_list dd {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}

/*ポップアップ------------------------------------*/
#window_area {
  font-size: 3.05vw;
  line-height: 160%;
  padding: 25px 7%;
}

#inline_content {
  width: 88%;
  margin: 20px 6%;
}

.mg_b10list li {
  margin-bottom: 10px;
}

#popup_area {
  width: 100% !important;
  padding: 20px 5%;
  font-size: 3.05vw;
  line-height: 160%;
}

.subbox_tit {
  background-color: #f6f6f6;
  line-height: 45px;
  padding: 0 20px;
}

.subbox_inner {
  border-right: 1px solid #e4e4e4;
  border-left: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  padding: 20px;
}

#window_area {
  padding: 25px 7%;
}

#mail-dialog {
  display: none;
  line-height: 180%;
  padding: 20px 15px;
  word-break: break-all;
  font-size: 3.05vw;
}

#mail-dialog-title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f3f3f3;
}

.dialog-title {
  display: none;
}

#float_login {
  margin-bottom: 25px;
}

#float_login li {
  margin-bottom: 10px;
}

#pop_up_txt {
  margin-top: 25px;
}
#pop_up_txt p {
  margin-bottom: 15px;
  letter-spacing: normal;
}
#pop_up_txt p:last-child {
  margin-bottom: 0px;
}

#mail_itemblock {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  padding: 25px 0;
  margin: 25px 0;
}

#mail_itemphoto {
  width: 25%;
  margin-right: 4.5%;
}
#mail_itemphoto img {
  vertical-align: bottom;
}

#mail_text {
  width: 70.5%;
  letter-spacing: normal;
}

#inline_content2 {
  font-size: 1.2rem;
  line-height: 200%;
  padding: 75px;
}

/* title ------------------------- */
.tit_default {
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 3.88vw;
}

.tit_default_s {
  font-weight: 300;
  margin-bottom: 20px;
  font-size: 3.61vw;
}

.tit_gray_bar {
  background-color: #f3f3f3;
  font-weight: 700;
  padding: 10px;
  font-size: 3.05vw;
}

.tit_block_login {
  margin-bottom: 20px;
}

.tit_mini_center_border {
  font-size: 3.88vw;
  font-weight: 300;
  text-align: center;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.tit_full_slider {
  font-size: 4.166vw;
  padding: 0px 7vw 10vw 7vw;
}

/*Btn Default--------------------------------------------------*/
.btn_area {
  margin-top: 40px;
}

.btn_area_S {
  margin-top: 20px;
}

.btn_area_wait {
  text-align: center;
  font-weight: 700;
  margin-top: 40px;
  display: none;
}

.btn_area_center {
  margin-top: 20px;
}

.btn_area ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 15px;
}

.btn_gray {
  width: 100%;
  color: #FFF;
  background: #000000 !important;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 10px 7px;
  display: table;
  cursor: pointer;
  min-height: 45px;
  line-height: 25px;
}

.btn_gray_norm {
  display: inline-block;
  width: 100%;
  color: #FFF;
  height: 45px;
  background-color: #000 !important;
  line-height: 45px;
  text-align: center;
  cursor: pointer;
  font-size: 3.33vw;
}

.btn_gray_norm_S {
  display: inline-block;
  width: 100%;
  color: #FFF;
  height: 32px;
  background-color: #000 !important;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  font-size: 3.33vw;
}

.btn_orange_norm {
  display: inline-block;
  width: 100%;
  color: #000;
  height: 45px;
  background: #f5d78a !important;
  background: -moz-linear-gradient(center top, #F6DD9F 5%, #F0C24D 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #F6DD9F), color-stop(1, #F0C24D));
  line-height: 45px;
  text-align: center;
  cursor: pointer;
}

.btn_lgray_norm {
  display: inline-block;
  width: 100%;
  color: #FFF;
  height: 45px;
  background-color: #bababa !important;
  line-height: 45px;
  text-align: center;
  cursor: pointer;
}

.btn_lgray {
  width: 100%;
  color: #FFF;
  background: #bababa !important;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 10px 7px;
  display: table;
  cursor: pointer;
  border: none;
  min-height: 45px;
  line-height: 25px;
}

a.btn_lgray_norm:hover {
  color: #FFF;
}

.btn_fix_w {
  width: 45%;
}

.btn_gray_norm_S {
  display: inline-block;
  width: 100%;
  color: #FFF;
  height: 32px;
  background-color: #000;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  font-size: 2.77vw;
}

/*ページング------------------------------------------*/
.paging {
  width: 100%;
  margin-top: 30px;
  border-top: 1px solid #d3d6d6;
  padding: 20px 0 20px 0;
  font-size: 3.33vw;
  display: flex;
  justify-content: space-between;
}

.nav_prev, .nav_next {
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 4.45vw;
  line-height: 30px;
}

.nav_prev a, .nav_next a {
  width: 100%;
  height: 100%;
  display: block;
}

.list_pageer {
  display: flex;
  gap: 15px;
}

.list_pageer li {
  line-height: 30px;
  width: 15px;
  height: 30px;
}

.list_pageer li a {
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
  border-bottom: 1px solid #FFF;
}

.list_pageer li strong {
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
  border-bottom: 1px solid #000;
  font-weight: normal;
}

.paging ul {
  display: flex;
  justify-content: space-between;
}

/* header ------------------------- */
#global_header {
  height: 50px;
  padding: 0 4% 0 3.5%;
}
#global_header h1 {
  width: 100px;
}
#global_header h1 a {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

#header_nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 20px;
}

#global_nav_btn {
  width: 18px;
  height: 18px;
}

.menu-trigger {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
  box-sizing: border-box;
}
.menu-trigger a {
  display: block;
  width: 100%;
  height: 100%;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  display: inline-block;
  box-sizing: border-box;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.menu-trigger span:nth-of-type(1) {
  top: 4px;
}
.menu-trigger span:nth-of-type(2) {
  bottom: 4px;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(4.5px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
  transform: translateY(-4.5px) rotate(315deg);
}

#header_news_inner {
  height: 25px;
  overflow: hidden;
  font-size: 2.77vw;
}

#header_news {
  background-color: #dddddd;
  color: #000;
  height: 25px;
  padding: 0 20px;
  text-align: center;
  line-height: 25px;
  z-index: 1000;
  position: relative;
  font-weight: 300;
}
#header_news a {
  color: #000;
}

/* footer ----------------------- */
#global_footer {
  background-color: #000;
  padding-top: 19.44vw;
  padding-bottom: 19.44vw;
  padding-left: 13.88vw;
  padding-right: 13.88vw;
  margin-top: 19.44vw;
  color: #FFFFFf;
}
#global_footer a {
  color: #FFFFFf;
}

#footer_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 10%;
  line-height: 220%;
}

.footer_list_inner {
  width: 45%;
}

#footer_sns {
  margin: 0 auto;
}
#footer_sns ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 30px;
  margin: 50px 0;
}
#footer_sns ul li {
  width: clamp(20px, 2vw, 25px);
}
#footer_sns ul li a {
  width: 100%;
  height: 100%;
  display: block;
}
#footer_sns ul li a img {
  display: block;
}

#footer_copy {
  font-size: 2.77vw;
  text-align: center;
}

/* navi ----------------------- */
#right_nav {
  width: 100%;
  height: 100vh;
  background-color: #000;
  position: fixed;
  top: 0;
  right: -170%;
  z-index: 1010;
  line-height: 220%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-size: 3.61vw;
}
#right_nav a {
  color: #FFFFFf;
}

.nav_active {
  right: 0 !important;
  transform: rotate(0deg) scale(1) !important;
}
.nav_active .menu-trigger {
  display: block;
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 1000;
}
.nav_active .menu-trigger span {
  background-color: #FFFFFf;
}

#right_nav_search {
  margin-bottom: 11.11vw;
}
#right_nav_search form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#right_nav_search input[type=text] {
  border: none;
  border-bottom: 1px solid #FFFFFf;
  background-color: #000;
  color: #FFFFFf;
  padding: 12px 8px;
  width: calc(100% - 35px);
}
#right_nav_search input[type=text]:focus {
  outline: none;
}
#right_nav_search input[type=image] {
  width: 25px;
  margin-left: 5px;
}

#right_nav_inner {
  position: relative;
  max-height: 100%;
  top: 20px;
  opacity: 0;
  padding-top: 10vh;
  overflow-y: auto;
  transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  padding-bottom: 13.88vw;
  padding-left: 13.88vw;
  padding-right: 13.88vw;
}

.right_nav_inner_active {
  top: 0 !important;
  opacity: 1 !important;
}

#right_nav_schedule_list {
  padding-bottom: 4.166vw;
}

#nav_other {
  padding-bottom: 4.166vw;
}

#nav_other2 {
  padding-bottom: 8.33vw;
}

#right_nav_category_list {
  padding-bottom: 11.11vw;
}

#right_nav_category_list_block #right_nav_category_list .haschild ul {
  margin-left: 8.33vw;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
#right_nav_category_list_block #right_nav_category_list .haschild ul li:last-child {
  padding-bottom: 2.77vw;
}
#right_nav_category_list_block #right_nav_category_list .haschild ul li a:hover {
  padding-left: 5px;
}
#right_nav_category_list_block #right_nav_category_list .haschild ul.haschild_active {
  margin-left: 5.55vw;
  max-height: 500px;
  opacity: 1;
}
#right_nav_category_list_block #right_nav_category_list {
  margin-left: 8.33vw;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
}
#right_nav_category_list_block #right_nav_category_list.haschild_active {
  margin-left: 5.55vw;
  max-height: 500px;
  opacity: 1;
}

#right_nav_maker_category_list_block {
  padding-bottom: 4.166vw;
}
#right_nav_maker_category_list_block #right_nav_maker_category_list .haschild ul {
  margin-left: 8.33vw;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
#right_nav_maker_category_list_block #right_nav_maker_category_list .haschild ul li:last-child {
  padding-bottom: 2.77vw;
}
#right_nav_maker_category_list_block #right_nav_maker_category_list .haschild ul li a:hover {
  padding-left: 5px;
}
#right_nav_maker_category_list_block #right_nav_maker_category_list .haschild ul.haschild_active {
  margin-left: 5.55vw;
  max-height: 500px;
  opacity: 1;
}
#right_nav_maker_category_list_block #right_nav_maker_category_list {
  margin-left: 8.33vw;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
}
#right_nav_maker_category_list_block #right_nav_maker_category_list.haschild_active {
  margin-left: 5.55vw;
  max-height: 500px;
  opacity: 1;
}

#nav_maker #right_nav_maker_list .haschild ul {
  margin-left: 8.33vw;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
#nav_maker #right_nav_maker_list .haschild ul li:last-child {
  padding-bottom: 2.77vw;
}
#nav_maker #right_nav_maker_list .haschild ul li a:hover {
  padding-left: 5px;
}
#nav_maker #right_nav_maker_list .haschild ul.haschild_active {
  margin-left: 5.55vw;
  max-height: 500px;
  opacity: 1;
}
#nav_maker #right_nav_maker_list {
  margin-left: 8.33vw;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
}
#nav_maker #right_nav_maker_list.haschild_active {
  margin-left: 5.55vw;
  max-height: 500px;
  opacity: 1;
}

#right_nav_category_list_opener a,
#right_nav_maker_list_opener a,
#right_nav_maker_category_list_opener a {
  display: flex;
  align-items: center;
  gap: 7px;
}
#right_nav_category_list_opener a::after,
#right_nav_maker_list_opener a::after,
#right_nav_maker_category_list_opener a::after {
  width: 13px;
  height: 13px;
  content: "";
  display: block;
  background: url(../images/ico_arrow_w_down.png) no-repeat center center;
  background-size: cover;
}
#right_nav_category_list_opener.list_open a::after,
#right_nav_maker_list_opener.list_open a::after,
#right_nav_maker_category_list_opener.list_open a::after {
  width: 12px;
  height: 12px;
  content: "";
  display: block;
  background: url(../images/ico_arrow_w_up.png) no-repeat center center;
  background-size: cover;
}

#nav_sns ul {
  display: flex;
  gap: 0 20px;
}
#nav_sns ul li {
  width: 18px;
  height: 18px;
}
#nav_sns ul li a {
  width: 100%;
  height: 100%;
  display: block;
}
#nav_sns ul li a img {
  display: block;
}

/*------------------------------------------------------------
カート
------------------------------------------------------------*/
#cart_flow {
  width: 100%;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  margin-bottom: 20px;
  font-size: 2.77vw;
}

#cart_flow ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#cart_flow ul li {
  width: 33.3%;
  text-align: center;
  padding: 10px 0;
}

.active_flow {
  background-color: #f3f3f3;
}

.cart_inner_txt {
  margin-bottom: 20px;
}

.cart_item {
  position: relative;
}

.cart_item_delete_btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 25px;
  z-index: 90;
}

.cart_item_flex {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgb(201, 201, 201);
  padding: 15px 0;
}

.cart_item_photo {
  width: 40%;
}

.cart_item_photo_inner {
  position: relative;
  margin: 0 auto;
  width: 80%;
}
.cart_item_photo_inner:before {
  content: "";
  display: block;
  padding-bottom: 140%;
}
.cart_item_photo_inner img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cart_item_flex_inner {
  width: 60%;
  padding: 0 10px;
}

.cart_item_name {
  margin-bottom: 10px;
}
.cart_item_name p:first-child {
  margin-bottom: 10px;
}

.cart_item_price {
  margin-bottom: 10px;
}

.cart_item_quantity {
  margin-bottom: 10px;
}

.quantity_level {
  display: flex;
  align-items: center;
  width: 50%;
}

.quantity_minus {
  width: 20%;
}

.quantity_plus {
  width: 20%;
}

.quantity_num {
  width: 50%;
  text-align: center;
  font-size: 3.33vw;
}

.cart_sum {
  width: 100%;
}

.cart_sum_flex {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #dddddd;
}

.cart_sum_tit {
  width: 70%;
  text-align: right;
  background-color: #f3f3f3;
  padding: 10px;
}

.cart_sum_value {
  width: 30%;
  padding: 10px;
  text-align: center;
}

.cart_novelty_option {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.cart_novelty_option p:first-child {
  width: 55px;
  margin: 0;
}

.cart_novelty_option .select_n {
  width: calc(100% - 55px);
}

.point_add_attention {
  margin-top: 10px;
  text-align: right;
  font-size: 2.77vw;
}

.deliv_info {
  margin-top: 30px;
}

.user_info_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dddddd;
}

.user_info_radio {
  width: 10%;
  text-align: center;
}

.user_info_value {
  width: 90%;
  padding: 15px 0;
}

.user_info_value_flex {
  position: relative;
}

.user_info_deliv {
  width: 100%;
}

.user_info_change {
  position: absolute;
  bottom: 0px;
  right: 10px;
}

.user_info_change {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}

.deliv_addbtn {
  margin-top: 15px;
  text-align: right;
}

.deliv_time {
  margin-top: 30px;
}

.user_deliv_time {
  padding: 15px 15px 5px 15px;
  border-bottom: 1px solid rgb(201, 201, 201);
}
.user_deliv_time .select_n {
  width: 42%;
}

.deliv_date_flex {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.deliv_date_flex p {
  width: 30%;
}

.payment_block {
  margin-top: 30px;
}

.user_info_payment_image {
  width: 20%;
  margin-left: auto;
}

.point_txt {
  padding: 10px;
}

.point_block {
  margin-top: 30px;
}

.coupon_block {
  margin-top: 30px;
}

.cart_no_error {
  margin-top: 20px;
  text-align: center;
}

#block_login {
  width: 100%;
}
#block_login section {
  width: 100%;
  padding: 5%;
  border: 1px solid #dddddd;
  margin-bottom: 20px;
}

#block_login_form li {
  margin-bottom: 10px;
}
#block_login_form li:last-child {
  margin: 0;
}

.logintext {
  margin-bottom: 39px;
}

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

#cart_form_input {
  padding: 40px 3% 0 3%;
  border-top: 1px solid #dddddd;
}

.cart_block {
  margin-top: 30px;
}
.cart_block:first-child {
  margin-top: 0px;
}

.black_list {
  margin-top: 30px;
  text-align: center;
}

.cart_gift_block {
  margin-top: 40px;
}

.cart_gift {
  margin-top: 20px;
}

.gift_block {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
}

.gift_outer {
  display: flex;
  column-gap: 20px;
}

.gift_photo {
  width: 40%;
}

.gift_content {
  width: calc(60% - 20px);
}

.gift_option {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 10px;
}

.gift_content .red {
  font-size: 2.77vw;
}

.gift_variation_tit {
  width: 25%;
}

.gift_variation {
  width: calc(75% - 10px);
}

.gift_name {
  font-size: 3.33vw;
  margin-bottom: 10px;
}

.gift_price {
  font-size: 2.77vw;
  margin-bottom: 10px;
}

.gift_price span {
  font-size: 12px;
  padding-right: 5px;
}

.cart_gift_btn {
  width: 100%;
  height: 40px;
  margin-top: 20px;
}

.cart_gift_btn a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #FFF;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
}

.cart_gift_block {
  margin-top: 40px;
}

.cart_gift {
  margin-top: 20px;
}

.gift_block {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(201, 201, 201);
}

.gift_outer {
  display: flex;
  gap: 0 20px;
}

.gift_photo {
  width: 40%;
}

.gift_content {
  width: calc(60% - 20px);
}

.gift_option {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 10px;
}

.gift_content .red {
  font-size: 10px;
}

.gift_variation_tit {
  width: 25%;
}

.gift_variation {
  width: calc(75% - 10px);
}

.gift_name {
  font-size: 12px;
  margin-bottom: 10px;
}

.gift_price {
  font-size: 10px;
  margin-bottom: 10px;
}

.gift_price span {
  font-size: 12px;
  padding-right: 5px;
}

.cart_gift_btn {
  width: 100%;
  height: 40px;
  margin-top: 20px;
}

.cart_gift_btn a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #FFF;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
}

/*------------------------------------------------------------
カート/アマゾンペイ
------------------------------------------------------------*/
.btn_box0622 {
  margin-top: 30px;
  border: 20px solid #f3f3f3;
  padding: 30px;
  text-align: center;
}

.amazon_button {
  margin: 20px auto 0 auto;
  width: 80%;
  height: 60px !important;
}

.result_area {
  padding: 20px 15px;
}

.result_area ul li {
  display: flex;
  gap: 0 5px;
}

.cart_total {
  background-color: #f3f3f3;
  margin: 0 15px;
  padding: 20px 15px;
}

.cart_price_total #payment_total {
  font-size: 5vw;
}

/*------------------------------------------------------------
確認画面
------------------------------------------------------------*/
.confirm_default {
  margin-top: 40px;
}

.confirm_default_inner {
  padding: 15px 15px 0px 15px;
}

.confirm_default_inner li {
  display: flex;
  margin-bottom: 10px;
}

.confirm_sub_tit {
  width: 26%;
}

.confirm_sub_tit_L {
  width: 37% !important;
}

#confirm_message {
  background-color: #f3f3f3;
  padding: 5vw;
  margin-bottom: 30px;
}

#confirm_message .btn_fix_w {
  margin: 20px auto 0 auto;
}

/*------------------------------------------------------------
完了画面
------------------------------------------------------------*/
#complete_payment_data {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f3f3f3;
}

.complete_message {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f3f3f3;
}

.complete_message_tit {
  font-weight: 700;
  margin-bottom: 20px;
}

.line_complete {
  margin-top: 20px;
  width: 100%;
}

/*------------------------------------------------------------
クレジットカード
------------------------------------------------------------*/
.bdr_block {
  padding: 0px 10px;
}

#registered_card, #use_registeredcard_check {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f3f3f3;
}

#registeredcard_list li {
  display: flex;
  align-items: center;
}

#registeredcard_list li p:first-child {
  padding: 7px;
}

#registered_card_list_delete {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.card_input_list_flex_left {
  width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

.card_input_list_flex_right {
  width: 100%;
}
.card_input_list_flex_right .mini {
  margin-top: 10px;
  font-size: 2.5vw;
  line-height: 170%;
}

#card_expire_list .select_n {
  width: 30%;
}

#card_expire_list {
  gap: 0 6px;
}

#card_input_list li {
  margin-bottom: 20px;
}

.card_sample {
  width: 40%;
}

.card_error {
  background-color: #f3f3f3;
  padding: 15px;
  margin-bottom: 30px;
  color: #B50003;
}

/*------------------------------------------------------------
MY PAGE
------------------------------------------------------------*/
#mypagecolumn {
  width: 90%;
  padding-top: 20px;
  margin: 0 auto;
}

#mycontents_area {
  margin-bottom: 40px;
}

#mycontentmain_area {
  order: 1;
  width: 100%;
  margin-bottom: 20px;
}

#mynavi_area {
  order: 2;
  width: 100%;
  padding: 20px;
  background-color: #f3f3f3;
  margin-top: 50px;
}

.mynavi_list li {
  margin: 7px 0;
}

.order_list {
  padding: 20px 25px;
  border: 15px solid #f3f3f3;
  margin-bottom: 20px;
}

#mypage_order_discription {
  margin-bottom: 20px;
}

#my_page_refuse {
  text-align: right;
}

.mypage_gray_header {
  display: none;
}

#mypage_order_list ul {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f3f3f3;
}

#mypage_order_list ul li:last-child {
  margin-top: 10px;
}

#mypage_order_list ul li:last-child a {
  display: block;
  background-color: #000;
  color: #FFF;
  border-radius: 5px;
  text-align: center;
  line-height: 350%;
}

.mypage_pagenumber_area {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 18px;
  margin-top: 20px;
}

.mypage_pagenumber_area strong {
  border-bottom: 1px solid #000;
}

.mypage_pagenumber_area a {
  border-bottom: 1px solid #FFF;
}

.mail_history li {
  border-top: 1px solid #dddddd;
  padding-top: 15px;
  margin-bottom: 15px;
}
.mail_history li:first-child {
  border: none;
  padding-top: 0;
}

#mypage_favorite_list {
  margin-top: 20px;
}
#mypage_favorite_list li {
  padding: 15px 0;
}

#mypage_favorite_list .mypage_gray_header {
  display: none;
}

.mypage_favorite_inner_image {
  width: 20%;
}

.mypage_favorite_inner_content {
  width: 80%;
}

.mypage_favorite_inner_list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #dddddd;
}

.mypage_favorite_inner_image div {
  position: relative;
}

.mypage_favorite_inner_image div:before {
  content: "";
  display: block;
  padding-bottom: 120%;
}

.mypage_favorite_inner_image div img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mypage_favorite_inner_content {
  text-align: left;
}

.mypage_favorite_inner_info {
  padding-left: 20px;
}

.mypage_favorite_inner_btn {
  width: 100%;
  padding-left: 20px;
  margin-top: 10px;
}

.favorite_cart {
  display: flex;
  justify-content: space-between;
  row-gap: 10px;
}

.favorite_cart li {
  padding: 0 !important;
  width: 50%;
}

.favorite_cart li:first-child a {
  display: block;
  background-color: #000;
  color: #FFF;
  border-radius: 5px;
  text-align: center;
  padding: 7px 0;
  font-size: 2.77vw;
}

.favorite_cart li:last-child a {
  display: block;
  background-color: #ccc;
  color: #FFF;
  border-radius: 5px;
  text-align: center;
  padding: 7px 0;
  font-size: 2.77vw;
}

#mycontentmain_area .bdr_block {
  padding: 20px 15px;
}

.mypage_register_list li {
  margin-bottom: 15px;
}

.mypage_register_list li:last-child {
  margin-bottom: 0;
}

.segment_announce {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #dddddd;
}

.point_announce {
  margin-top: 15px;
}

#mypage_customer_info {
  margin-bottom: 20px;
  padding: 20px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #F1F1F1;
  text-align: center;
}

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

.mypage_qrcode img {
  width: 25%;
  height: auto;
}

/*お問い合わせ --------------------------------*/
#undercolumn_contact {
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}
#undercolumn_contact input[name=email] {
  margin-bottom: 5px;
}

/*特定商取引 ----------------------------------*/
#undercolumn_entry {
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}

/*ご利用規約 ----------------------------------*/
.kiyaku_text {
  font-size: 2.77vw;
}

/*商品一覧ページ--------------------------------*/
#item_list_page {
  margin-bottom: 13.88vw;
}

#list_header {
  padding: 7vw 7vw 0 7vw;
}

.tit_list {
  display: flex;
  align-items: baseline;
  column-gap: 10px;
}
.tit_list h1 {
  font-size: 4.166vw;
}

.LC_Page_Products_List .index_item_list {
  margin-top: 0;
  padding-top: 20px;
}

#sort_area {
  width: 100%;
  padding: 5vw 0px;
  letter-spacing: normal;
}

#sort_parent {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding: 0 0px;
  gap: 0 5.5vw;
}

.open_sort {
  position: relative;
  cursor: pointer;
}

#sort_select {
  position: relative;
}

#sort_children {
  width: 100%;
}

.select_for_default {
  width: 100%;
}

.select_for_default_wrap {
  gap: 7px 1%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.select_for_default_wrap li {
  width: 49%;
}

.open_sort_children_tit,
.select_for_default a {
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.open_sort_children_tit::before,
.select_for_default a::before {
  display: block;
  content: "";
  height: 1px;
  width: 5px;
  background-color: #000;
}

.open_sort_children_tit {
  font-weight: 700;
  margin-bottom: 5px;
}

.sort_cat_list div {
  margin-bottom: 8px;
}

.sort_cat_list div ul {
  display: none;
  padding-left: 25px;
}

.sort_cat_list div ul li {
  margin-bottom: 5px;
}

.open_sort_children {
  display: none;
  padding: 5vw;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  margin-top: 15px;
}

.open_sort_children_inner {
  display: flex;
}

.sort_active {
  font-weight: 700;
}

/*search_zero_error ----------------------------*/
#undercolumn_error {
  min-height: 15vh;
}

/*商品詳細----------------------------------------*/
#item_detail_block {
  display: flex;
  flex-wrap: wrap;
}

body.no-scroll {
  overflow: hidden;
}

#sp_header {
  order: 1;
  width: 100%;
  padding: 1.38vw 2.77vw;
  position: sticky;
  top: 0;
  z-index: 1005;
  background-color: #FFF;
}
#sp_header #sp_header_top {
  font-size: 2.77vw;
  display: flex;
  justify-content: space-between;
}
#sp_header #sp_header_top #item_spec_tit {
  font-size: 3.05vw;
}
#sp_header #sp_header_bottom {
  font-size: 2.77vw;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.38vw;
}
#sp_header #sp_header_bottom #item_spec_status {
  display: flex;
  column-gap: 7px;
  color: #dddddd;
}
#sp_header #sp_header_bottom #detail_price {
  display: flex;
  align-items: baseline;
  column-gap: 7px;
  font-size: 3.33vw;
}
#sp_header #sp_header_bottom #detail_price .font_through {
  position: relative;
  font-size: 3.05vw;
}
#sp_header #sp_header_bottom #detail_price .font_through:before {
  position: absolute;
  top: 50%;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
}
#sp_header #sp_header_bottom #detail_price .cart_text_inc_tax {
  display: inline-block;
  padding-left: 5px;
}
#sp_header #sp_header_bottom #detail_price .cart_text_inc_tax::before {
  content: "yen";
  display: block;
  font-size: 2.77vw;
}
#sp_header #sp_header_bottom #detail_price .cart_text_discount_rate {
  display: inline-block;
}
#sp_header #sp_header_bottom #detail_price .cart_text_discount_rate::before {
  content: "%OFF";
  display: block;
  font-size: 2.77vw;
}

#scroll_to_bottom {
  position: fixed;
  right: 15px;
  bottom: 70px;
  width: 10%;
  z-index: 10;
  opacity: 0.7;
}

#scroll_to_top {
  position: fixed;
  right: 15px;
  bottom: 70px;
  width: 10%;
  z-index: 10;
  opacity: 0.7;
  display: none;
}

#menu_to_bottom {
  position: fixed;
  right: 15px;
  top: 75px;
  width: 10%;
  z-index: 10;
  opacity: 0.7;
  display: none;
}

#item_spec {
  order: 3;
  width: 100%;
}

#item_photo {
  order: 2;
  width: 100%;
  margin-bottom: 20px;
}
#item_photo #item_photo_inner ul li {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#item_photo #item_photo_inner ul li::before {
  content: "";
  display: block;
  padding-top: 140%;
  margin-bottom: 1px;
}
#item_photo #item_photo_inner ul li div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#item_photo #item_photo_inner ul li div p {
  font-size: 3.05vw;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  padding: 1.2%;
  z-index: 10;
  background-color: #FFF;
  opacity: 0.6;
}
#item_photo #item_photo_inner ul li div video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#cart_multi_view_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 20;
  text-align: center;
  padding: 1.38vw;
}
#cart_multi_view_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

#cart_select_multi_outer {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
}
#cart_select_multi_outer.cart_active {
  bottom: 0;
}
#cart_select_multi_outer #cart_select_multi_outer_header {
  position: relative;
  text-align: center;
  font-size: 3.33vw;
  font-weight: 700;
  line-height: 60px;
}
#cart_select_multi_outer #cart_select_multi_outer_header #cart_close {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 15px;
  right: 0px;
}
#cart_select_multi_outer #cart_select_multi_outer_header #cart_close a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/ico_close_b.png) no-repeat center center;
  background-size: 50%;
}
#cart_select_multi_outer #cart_select_multi {
  height: calc(70vh - 60px);
  overflow: scroll;
}
#cart_select_multi_outer {
  padding: 0 2.77vw;
  width: 100%;
  position: fixed;
  bottom: -70vh;
  background-color: #FFF;
  z-index: 30;
}
#cart_select_multi_outer .cart_select_multi_list:first-child {
  border-top: 1px solid #dddddd;
}
#cart_select_multi_outer .cart_select_multi_color {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 15px;
  padding: 4.166vw 0;
  border-bottom: 1px solid #dddddd;
}
#cart_select_multi_outer .cart_select_multi_color p {
  font-size: 3.88vw;
  font-weight: 700;
}
#cart_select_multi_outer .cart_select_multi_color .cart_select_img {
  width: 15%;
  position: relative;
  overflow: hidden;
}
#cart_select_multi_outer .cart_select_multi_color .cart_select_img:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
#cart_select_multi_outer .cart_select_multi_color .cart_select_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
#cart_select_multi_outer .cart_select_multi_size ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4.166vw 0;
  border-bottom: 1px solid #dddddd;
}
#cart_select_multi_outer .cart_select_multi_size ul .cart_select_multi_size_name {
  width: 53%;
  margin-right: 5%;
  font-size: 2.5vw;
}
#cart_select_multi_outer .cart_select_multi_size ul .cart_select_multi_size_name p {
  margin-top: 5px;
  color: #868696;
}
#cart_select_multi_outer .cart_select_multi_size ul .cart_select_multi_size_name p:first-child {
  font-size: 3.05vw;
  font-weight: 700;
  margin-top: 0;
  color: #000;
}
#cart_select_multi_outer .cart_select_multi_size ul .cart_select_multi_btn {
  width: calc(42% - 40px);
}
#cart_select_multi_outer .cart_select_multi_size ul .cart_select_multi_btn p {
  height: 40px;
}
#cart_select_multi_outer .cart_select_multi_size ul .cart_select_multi_btn p a {
  font-size: 2.77vw;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  text-align: center;
  border-radius: 5px 0 0 5px;
}
#cart_select_multi_outer .cart_select_multi_size ul .cart_select_multi_btn p a span {
  line-height: 40px;
}
#cart_select_multi_outer .cart_select_multi_size ul .favorite_select_multi_btn {
  display: block;
  width: 40px;
  height: 40px;
}
#cart_select_multi_outer .cart_select_multi_size ul .favorite_select_multi_btn p {
  width: 100%;
  height: 100%;
  background-color: #dddddd;
  border-radius: 0 5px 5px 0;
}
#cart_select_multi_outer .cart_select_multi_size ul .favorite_select_multi_btn a {
  display: block;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  border-left: 1px solid #FFFFFF;
  background: url(../images/ico_heart.png) no-repeat center center;
  background-size: 40%;
}
#cart_select_multi_outer .cart_select_multi_size ul .favorite_select_multi_btn a.fav_on {
  background: url(../images/ico_heart_on.png) no-repeat center center;
  background-size: 40%;
}
#cart_select_multi_outer .cart_select_multi_size ul .cart_text_reserve_date,
#cart_select_multi_outer .cart_select_multi_size ul .cart_text_sell_start,
#cart_select_multi_outer .cart_select_multi_size ul .cart_text_sale,
#cart_select_multi_outer .cart_select_multi_size ul .cart_text_deliv_date {
  display: inline;
}
#cart_select_multi_outer .cart_select_multi_size ul .sale_span,
#cart_select_multi_outer .cart_select_multi_size ul .coming_sales_start,
#cart_select_multi_outer .cart_select_multi_size ul .reserve_deliv_date,
#cart_select_multi_outer .cart_select_multi_size ul .reserve_span,
#cart_select_multi_outer .cart_select_multi_size ul .cart_stock {
  line-height: 130%;
}

.cart_text_reserve_date,
.cart_text_sell_start,
.cart_text_sale,
.cart_text_deliv_date {
  display: inline-block;
  padding-right: 5px;
}
.cart_text_reserve_date::before,
.cart_text_sell_start::before,
.cart_text_sale::before,
.cart_text_deliv_date::before {
  display: inline;
}

.tit_product_detail {
  padding: 2.77vw;
}

#item_spec_schedule {
  padding: 4.166vw;
}

#set_products {
  padding: 4.166vw 4.166vw 0 4.166vw;
}
#set_products .set_block_outer {
  margin-bottom: 30px;
}
#set_products .default_slider {
  margin: 0 calc(50% - 50vw) 0 0;
  width: 100vw;
}
#set_products .default_slider .index_slide-pagination {
  padding-right: 6.94vw;
}
#set_products .set_block {
  margin-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #dddddd;
}
#set_products .set_block .set_title {
  font-weight: 700;
  margin-bottom: 20px;
}
#set_products .set_block .set_comment {
  margin-bottom: 4.166vw;
}
#set_products .set_block .set_text {
  margin-bottom: 20px;
}

#sub_comment {
  padding: 0 4.166vw 8.33vw 4.166vw;
}
#sub_comment iframe {
  width: 100% !important;
  margin: 10px 0 !important;
  max-width: 100% !important;
}

.tit_product_detail_toggle {
  cursor: pointer;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.tit_product_detail_toggle:before {
  content: "+";
  display: inline-block;
  margin-right: 10px;
}

.tit_product_detail_active:before {
  content: "-";
  display: inline-block;
  margin-right: 10px;
}

#item_comment,
#item_size {
  padding: 0 4.166vw;
  margin-bottom: 30px;
}

#item_detail_txt {
  margin-bottom: 5.55vw;
}

.item_comment_inner {
  display: none;
  padding-top: 20px;
}
.item_comment_inner .item_comment_inner_static {
  padding: 5.55vw;
  background-color: #f3f3f3;
}
.item_comment_inner .item_comment_inner_static p {
  margin-bottom: 2.77vw;
}
.item_comment_inner .item_comment_inner_static p:last-child {
  margin-bottom: 0;
}

#item_detail_txt {
  margin-bottom: 30px;
}

.item_comment_inner {
  display: none;
  padding-top: 30px;
}
.item_comment_inner .item_comment_inner_static {
  padding: 8.33vw;
  background-color: #f3f3f3;
}
.item_comment_inner .item_comment_inner_static p {
  margin-bottom: 15px;
}
.item_comment_inner .item_comment_inner_static p:last-child {
  margin-bottom: 0;
}

.tit_detail_snap {
  font-size: 3.88vw;
  margin-bottom: 20px;
  padding: 0 5.55vw;
}

#detail_snap_list {
  margin-bottom: 40px;
}
#detail_snap_list .txt_area {
  font-size: 2.77vw;
  line-height: 170%;
  padding: 10px;
}

.item_size_inner {
  display: none;
  padding-top: 20px;
}

#size_table_outer {
  margin-bottom: 30px;
}

#size_table {
  display: flex;
  font-size: 2.77vw;
  overflow: auto;
}
#size_table ul {
  width: 100%;
  letter-spacing: normal;
}
#size_table ul li {
  min-height: 30px;
  padding: 4px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  white-space: nowrap;
}
#size_table ul li:first-child {
  background: #f5f5f5;
  text-align: center;
}

#size_table li:nth-child(odd) {
  background: #f5f5f5;
}

#item_data {
  margin: 4.166vw 4.166vw 11.11vw 4.166vw;
  padding: 20px;
  background-color: #f3f3f3;
  font-size: 3.05vw;
}

#item_detail_sub li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
#item_detail_sub li p {
  line-height: 220%;
}
#item_detail_sub li p:first-child {
  width: 65px;
}
#item_detail_sub li a {
  text-decoration: underline;
}

#item_data_static {
  font-size: 2.5vw;
  margin-top: 15px;
  line-height: 200%;
}

#wear_it_on_view,
#recommend_item_view {
  margin-bottom: 11.11vw;
}

.paidy_price {
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 0 4.166vw;
  font-size: 3.33vw;
}
.paidy_price img {
  width: 55px;
  height: auto;
  vertical-align: middle;
}

/*詳細ページajaxポップアップ----------------------------------------*/
#ajax_cart_in_outer {
  opacity: 0;
  transition: opacity 0.5s;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
}

#ajax_cart_bg {
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

#ajax_cart_in_tit {
  text-align: center;
  font-size: 4.166vw;
  margin-bottom: 25px;
}

#ajax_cart_in_inner {
  width: 90%;
  padding: 5%;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#ajax_cart_in_close {
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.cart_in_active {
  display: block; /* まずdisplayを切り替える */
  opacity: 1 !important;
}

#cart_in_product {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#cart_in_photo {
  width: 35%;
}

#cart_in_txt {
  width: 60%;
}

#cart_in_btn {
  margin-top: 20px;
  width: 100%;
  height: 50px;
}

#cart_in_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  width: 100%;
  height: 50px;
  background-color: #000;
}

/*LOOKBOOK-----------------------------------------*/
.look_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.look_list li {
  width: calc((100% - 20px) / 3);
}
.look_list li.look_col1 {
  width: 100%;
}
.look_list li.look_col2 {
  width: calc((100% - 10px) / 2);
}
.look_list li img {
  vertical-align: bottom;
}

.LC_Page_Lookbook_Detail .index_item_list {
  margin-top: 0 !important;
}

.LC_Page_Coordinate_List .index_item_list {
  margin-top: 0 !important;
}

#coordinate_text {
  margin: 6.94vw 0;
}

.coordinate_tit {
  font-size: 3.88vw;
  margin-bottom: 2.77vw;
}

#lookbook_items {
  margin-top: 20px;
}

.lookbook_tit {
  font-weight: 300;
  font-size: 4.45vw;
}

#lookbook_group_comment {
  margin-top: 50px;
}

.look_movie {
  width: 100%;
  aspect-ratio: 16/9;
}

.look_movie iframe {
  width: 100%;
  height: 100%;
}

.look_movie {
  margin-bottom: 30px;
}

/*コーディネート詳細------------------------------------*/
.LC_Page_Coordinate_Detail .undercolumn_middle {
  padding-top: 0;
  width: 100%;
  margin: 0;
}

#coordinate_block {
  display: flex;
  gap: 30px 0;
  flex-wrap: wrap;
}

#coordinate_items {
  width: 90%;
  margin: 0 auto;
  padding-top: 2.77vw;
}

#coordinate_photo {
  position: relative;
  overflow: hidden;
}

#coordinate_photo_outer {
  position: relative;
}

#coordinate_txt {
  position: relative;
}

#coordinate_tit1 {
  font-weight: 300;
  margin: 5.55vw 0;
  font-size: 4.166vw;
}

.coordinate_tit2 {
  font-weight: 300;
  font-size: 4.166vw;
}

#coordinate_icon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 6.66vw;
}

#coordinate_item_block {
  margin-top: 8.33vw;
}

.coordinate_item_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}

.coordinate_item_list {
  margin-top: 4.166vw;
}

.list_pict_inner {
  position: relative;
}
.list_pict_inner .over_img {
  position: absolute;
  top: 0;
  left: 0;
}

.LC_Page_Coordinate_List .index_item_list {
  margin-top: 0 !important;
  padding-top: 20px;
}

.coordinate_item_list .list_info {
  margin-top: 2.77vw;
}
.coordinate_item_list .list_info .list_name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.coordinate_item_list .list_status {
  margin-top: 1.38vw;
}

.coordinate_item_list li {
  width: calc((100% - 20px) / 3);
}
.coordinate_item_list li .item_overlay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  color: #FFF;
  font-weight: 400;
}
.coordinate_item_list li .item_overlay::before {
  content: "";
  display: block;
  background-color: #000;
  opacity: 0.25;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.coordinate_item_list li .item_overlay p {
  z-index: 10;
}

#coordinate_other_block {
  margin-top: 11.11vw;
}

.other_coordinate {
  margin-bottom: 4.166vw;
}

/*swiperテーマ上書き-----------------------------------------*/
.swiper-button-next {
  right: 20px !important;
}

.swiper-button-prev {
  left: 20px !important;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 13px !important;
  height: 27px !important;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 13px 27px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-black {
  color: #000 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 5vw;
}

.detail-swiper-pagination {
  text-align: center;
}

/*FAQ--------------------------------------------*/
.guide_outer {
  display: none;
}
.guide_outer .guide_inner h2 {
  height: 45px;
  margin-bottom: 1px;
  width: 100%;
}
.guide_outer .guide_inner h2 a {
  width: 100%;
  height: 100%;
  line-height: 45px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #f3f3f3;
  padding-left: 5.55vw;
}
.guide_outer .guide_inner .guide_answer {
  display: none;
  padding: 4.166vw;
  line-height: 220%;
}

.guide_cat_title {
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #dddddd;
  padding-left: 4.166vw;
}
.guide_cat_title a {
  width: 100%;
  height: 100%;
  line-height: 50px;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.guide_cat_title a::before {
  content: "＋";
  display: block;
}
.guide_cat_title a.opened::before {
  content: "ー";
  display: block;
}

/*------------------------------------------------------------
ブログ投稿
------------------------------------------------------------*/
.ttl_blog {
  font-size: 3.88vw;
}

.blog_side_title {
  border-bottom: 1px solid #dddddd;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.blog_cat_list {
  line-height: 220%;
}

#blog_navi {
  margin-top: 30px;
}

#blog_navi_category {
  margin-bottom: 25px;
}

.blog_day {
  margin-top: 2.77vw;
}

#blog_post_block {
  line-height: 200%;
  margin-top: 8.33vw;
}

#blog_post_block h1 {
  font-size: var(--fontXXXL);
}

#blog_post_block h2 {
  font-size: var(--fontXXL);
}

#blog_post_block h3 {
  font-size: var(--fontXL);
}

#blog_post_block h4 {
  font-size: var(--fontL);
}

#blog_post_block img {
  max-width: 100% !important;
  height: auto !important;
}

#blog_post_block h1,
#blog_post_block h2,
#blog_post_block h3,
#blog_post_block h4,
#blog_post_block p {
  margin-bottom: 10px;
}

#blog_post_block .image-style-block-align-left,
#blog_post_block .image-style-block-align-right {
  max-width: calc(100% - 5px);
}

#blog_post_block .image-style-align-left,
#blog_post_block .image-style-align-right {
  clear: none;
}

#blog_post_block .image-style-side {
  float: right;
  margin-left: 5px;
  max-width: 50%;
}

#blog_post_block .image-style-align-left {
  float: left;
  margin-right: 5px;
}

#blog_post_block .image-style-align-center {
  margin-left: auto;
  margin-right: auto;
}

#blog_post_block .image-style-align-right {
  float: right;
  margin-left: 5px;
}

#blog_post_block .image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}

#blog_post_block .image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}

#blog_post_block p + .image-style-align-left,
#blog_post_block p + .image-style-align-right,
#blog_post_block p + .image-style-side {
  margin-top: 0;
}

#blog_post_block .image-inline.image-style-align-left,
#blog_post_block .image-inline.image-style-align-right {
  margin-bottom: 2.5px;
  margin-top: 2.5px;
}

#blog_post_block .image-inline.image-style-align-left {
  margin-right: 2.5px;
}

#blog_post_block .image-inline.image-style-align-right {
  margin-left: 2.5px;
}

#blog_post_block .image figcaption {
  text-align: center;
  background-color: var(--light_gray);
  padding: 5px;
}

#blog_post_block figure.image {
  margin-bottom: 5px;
}

#blog_post_block p:has(iframe),
#blog_post_block div:has(iframe) {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#blog_post_block iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ranking_icon_1,
.ranking_icon_2,
.ranking_icon_3,
.ranking_icon_4,
.ranking_icon_5,
.ranking_icon_6,
.ranking_icon_7,
.ranking_icon_8,
.ranking_icon_9,
.ranking_icon_10 {
  position: absolute;
  top: 0;
  left: 0;
  width: 6.94vw;
  height: 6.94vw;
  z-index: 1000;
  background-color: #a9a9a9;
  color: #FFF;
  font-size: 3.88vw;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking_icon_1 {
  background-color: #dbac34;
}

.ranking_icon_2 {
  background-color: #d0d0d0;
}

.ranking_icon_3 {
  background-color: #715d2a;
}

.item_list_slider_default {
  margin-top: 16.66vw;
}
.item_list_slider_default .swiper {
  padding-top: 2.77vw;
  margin-top: 8.33vw;
}

/*カスタムスライダー*/
.custom_slider .swiper-pagination-bullet {
  width: 5.55vw;
  height: 0.83vw;
  margin: 0 1.38vw !important;
  border-radius: 0 !important;
  background-color: #9c9c9c;
}
.custom_slider .index_slide-pagination {
  margin-top: 1.38vw;
  text-align: right;
  position: relative;
}
.custom_slider li img {
  width: 100%;
}
.custom_slider li .img {
  margin-bottom: 2.77vw;
}
.custom_slider li .img .discount_icon {
  font-size: 2.22vw;
  font-weight: 700;
  min-width: 11.11vw;
  height: 20px;
  line-height: 20px;
  text-align: center;
  padding: 0 5px;
}
.custom_slider li .img .item_overlay p {
  font-size: 3.33vw;
}
.custom_slider li .color_list {
  display: flex;
  gap: 0 2.5vw;
  margin-bottom: 2.77vw;
}
.custom_slider li .color_list li {
  width: 5.55vw;
  height: 5.55vw;
  border: 1px solid #dddddd;
}
.custom_slider li .color_list li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.custom_slider li .color_list li a span {
  display: none;
}
.custom_slider li .color_list li a.no_stock::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 141.4%;
  height: 1px;
  background-color: #d9d9d9;
  transform: rotate(45deg);
  transform-origin: top left;
}
.custom_slider li .situation {
  margin-bottom: 1.38vw;
}
.custom_slider li .situation span {
  margin-right: 2.77vw;
}
.custom_slider li .name {
  margin-bottom: 1.38vw;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.custom_slider li .sale {
  margin-bottom: 1.38vw;
}
.custom_slider li .price {
  margin-bottom: 1.38vw;
}
.custom_slider li .price strike {
  margin-right: 2.77vw;
}
.custom_slider li .txt_area {
  margin: 0 2.77vw;
  font-size: 2.77vw;
  line-height: 130%;
}
.custom_slider li .ranking_icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
}

/*トップ下バナーエリア----------------------*/
.index_bn_area {
  width: 90%;
  margin: 8.33vw auto 0 auto;
  position: relative;
}
.index_bn_area .swiper-container {
  overflow: hidden;
}
.index_bn_area .index_bn_slide-pagination {
  position: relative;
  bottom: auto;
  margin-top: 4.166vw;
}
.index_bn_area .swiper-pagination-bullet {
  border-radius: 0;
  background-color: #9c9c9c;
}
.index_bn_area .swiper-pagination-bullet-active {
  background-color: #000;
}
.index_bn_area .swiper-pagination-bullet {
  width: 5.55vw;
  height: 0.83vw;
  margin: 0 1.38vw !important;
}

/* popupバナー ---------------- */
.popup_overlay .popup_inner {
  width: 90%;
  max-width: 400px;
}

.popup_overlay .popup_close {
  right: 2.77vw;
  top: 1.38vw;
  font-size: 11.11vw;
}

.ttl_popup {
  margin-bottom: 5.55vw;
  padding-bottom: 2.77vw;
}

/* header改修 ---------------- */
.header_favorite {
  width: 4.166vw;
}

.header_search_tgl {
  width: 4.166vw;
  height: 4.166vw;
}

.header_search_area {
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 86px;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  padding-left: 4.166vw;
  padding-right: 4.166vw;
  display: none;
}
.header_search_area .header_search_close {
  width: 5.55vw;
  line-height: 0;
}
.header_search_area .header_search_form form {
  width: 100%;
}
.header_search_area .header_search_form {
  width: calc(100% - 8.33vw);
}
.header_search_area .txt {
  width: calc(100% - 11.11vw);
}
.header_search_area .txt input {
  height: 8.33vw;
}
.header_search_area .btn {
  width: 5.55vw;
  margin-right: 2.77vw;
}

.header_search_area_on {
  display: flex !important;
}

.header_search_tgl.active {
  background-position: top 1px center;
  background-size: 80%;
}

.index_slide_area .index_slide-pagination {
  margin-top: 5.55vw;
}
.index_slide_area .swiper-pagination-bullet {
  width: 5.55vw;
  height: 0.83vw;
  margin: 0 1.38vw !important;
}

.ttl_r, .ttl_l, .ttl_c {
  font-size: 4.166vw;
}

.ttl_l {
  margin-left: 15px;
  margin-right: 15px;
}

.page_ttl {
  margin-top: 8.33vw;
  margin-bottom: 8.33vw;
}

.more_r {
  font-size: 2.77vw;
}

.index_new_arrivals {
  margin-top: 16.66vw;
}
.index_new_arrivals .ttl_r {
  margin-right: 4.166vw;
}
.index_new_arrivals .more_r {
  margin-right: 4.166vw;
  margin-top: 1.38vw;
}

#blog_post_item_list {
  padding-top: 5.55vw;
}
#blog_post_item_list .index_item_list {
  padding-top: 0;
  margin-top: 5.55vw;
}
#blog_post_item_list .blog_tit {
  font-size: 4.166vw;
}

.index_item_list {
  padding-top: 2.77vw;
  justify-content: space-between;
  gap: 8.33vw 0;
  margin-top: 8.33vw;
}
.index_item_list li {
  width: 49.9%;
}
.index_item_list li img {
  width: 100%;
}
.index_item_list li .img {
  margin-bottom: 4.166vw;
}
.index_item_list li .img .discount_icon {
  font-size: 2.22vw;
  font-weight: 700;
  min-width: 11.11vw;
  height: 20px;
  line-height: 20px;
  text-align: center;
  padding: 0 5px;
}
.index_item_list li .img .item_overlay p {
  font-size: 3.33vw;
}
.index_item_list li .color_list {
  display: flex;
  gap: 0 2.5vw;
  margin-bottom: 2.77vw;
}
.index_item_list li .color_list li {
  width: 5.55vw;
  height: 5.55vw;
  border: 1px solid #dddddd;
}
.index_item_list li .color_list li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.index_item_list li .color_list li a span {
  display: none;
}
.index_item_list li .color_list li a.no_stock::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 141.4%;
  height: 1px;
  background-color: #d9d9d9;
  transform: rotate(45deg);
  transform-origin: top left;
}
.index_item_list li .situation {
  margin-bottom: 1.38vw;
}
.index_item_list li .situation span {
  margin-right: 2.77vw;
}
.index_item_list li .name {
  margin-bottom: 1.38vw;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.index_item_list li .sale {
  margin-bottom: 1.38vw;
}
.index_item_list li .price {
  margin-bottom: 1.38vw;
}
.index_item_list li .price strike {
  margin-right: 2.77vw;
}
.index_item_list li .txt_area {
  margin: 0 2.77vw;
  font-size: 2.77vw;
  line-height: 130%;
}

.default_slider .swiper-pagination-bullet {
  width: 5.55vw;
  height: 0.83vw;
  margin: 0 1.38vw !important;
}
.default_slider .index_slide-pagination {
  margin-top: 1.38vw;
  text-align: right;
}
.default_slider li img {
  width: 100%;
}
.default_slider li .img {
  margin-bottom: 4.166vw;
}
.default_slider li .img .discount_icon {
  font-size: 2.22vw;
  font-weight: 700;
  min-width: 11.11vw;
  height: 20px;
  line-height: 20px;
  text-align: center;
  padding: 0 5px;
}
.default_slider li .img .item_overlay p {
  font-size: 3.33vw;
}
.default_slider li .color_list {
  display: flex;
  gap: 0 2.5vw;
  margin-bottom: 2.77vw;
}
.default_slider li .color_list li {
  width: 5.55vw;
  height: 5.55vw;
  border: 1px solid #dddddd;
}
.default_slider li .color_list li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.default_slider li .color_list li a span {
  display: none;
}
.default_slider li .color_list li a.no_stock::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 141.4%;
  height: 1px;
  background-color: #d9d9d9;
  transform: rotate(45deg);
  transform-origin: top left;
}
.default_slider li .situation {
  margin-bottom: 1.38vw;
}
.default_slider li .situation span {
  margin-right: 2.77vw;
}
.default_slider li .name {
  margin-bottom: 1.38vw;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.default_slider li .sale {
  margin-bottom: 1.38vw;
}
.default_slider li .price {
  margin-bottom: 1.38vw;
}
.default_slider li .price strike {
  margin-right: 2.77vw;
}
.default_slider li .txt_area {
  margin: 0 2.77vw;
  font-size: 2.77vw;
  line-height: 130%;
}
.default_slider li .ranking_icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.index_porducts {
  margin-top: 13.88vw;
}
.index_porducts .ttl_r {
  margin-right: 4.166vw;
}
.index_porducts .more_r {
  margin-right: 4.166vw;
  margin-top: 1.38vw;
}

.index_products_list {
  padding-top: 11.11vw;
}
.index_products_list li {
  margin-top: 1vw;
}
.index_products_list li img {
  width: 100%;
}
.index_products_list .index_products_list01 {
  width: 65.65%;
}
.index_products_list .index_products_list02 {
  width: 33.5%;
}
.index_products_list .index_products_list03 {
  width: 49.55%;
}
.index_products_list .index_products_list04 {
  width: 49.55%;
}
.index_products_list .index_products_list05 {
  width: 65.65%;
}
.index_products_list .index_products_list06 {
  width: 33.5%;
}
.index_products_list .index_products_list07 {
  width: 49.55%;
}
.index_products_list .index_products_list08 {
  width: 49.55%;
}
.index_products_list .txt {
  font-size: 3.88vw;
}

.index_collection {
  margin-top: 5.55vw;
}
.index_collection .ttl_r {
  margin-right: 4.166vw;
  padding-top: 11.11vw;
  color: #000;
}
.index_collection .more_r {
  margin-right: 4.166vw;
  margin-top: 1.38vw;
  padding-bottom: 11.11vw;
  color: #000;
}

.index_collection_list li {
  top: 50px;
}
.index_collection_list .txt_area {
  width: 100%;
  left: 0;
  bottom: 8.33vw;
  text-align: center;
}
.index_collection_list .txt_area .txt {
  font-size: 4.166vw;
}
.index_collection_list .txt_area .link {
  font-size: 2.5vw;
  margin-top: 1.38vw;
}

.index_news {
  margin-top: 16.66vw;
}
.index_news .ttl_r {
  margin-right: 4.166vw;
}
.index_news .more_r {
  margin-right: 4.166vw;
  margin-top: 1.38vw;
}
.index_news .news_list {
  margin-top: 11.11vw;
}

.news_list {
  border-top: solid 1px #d9d9d9;
}
.news_list li {
  box-sizing: border-box;
  border-bottom: solid 1px #d9d9d9;
  padding: 4.166vw;
}
.news_list li a {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news_list li .ttl_area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 5.55vw;
}
.news_list li .ttl_area .ttl {
  font-size: 3.33vw;
  width: calc(100% - 22.22vw);
}
.news_list li .ttl_area .day {
  text-align: right;
  font-size: 2.22vw;
  width: 16.66vw;
}
.news_list li .img {
  width: 35%;
}
.news_list li .txt {
  width: calc(65% - 5.55vw);
  font-size: 2.77vw;
  line-height: 140%;
  height: 19.44vw;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.news_ttl {
  margin-bottom: 5.55vw;
}

.news_day {
  margin-bottom: 5.55vw;
}

.btm_cont {
  margin-left: 15px;
  margin-right: 15px;
}

#header_news_inner {
  height: 6.94vw;
  overflow: hidden;
  font-size: 2.77vw;
}

#header_news {
  height: 6.94vw;
  padding: 0 5.55vw;
  line-height: 6.94vw;
}
#header_news li {
  height: 6.94vw !important;
  line-height: 6.94vw !important;
}
#header_news li a {
  display: block;
  height: 6.94vw !important;
  line-height: 6.94vw !important;
}

#global_header h1 {
  width: 27.77vw;
}

#global_header {
  height: 13.88vw;
}

.beginner_data .beginner_data_heading {
  font-size: 4.166vw;
  margin-top: 8.33vw;
}
.beginner_data .beginner_data_text {
  margin-top: 5.55vw;
}
.beginner_data .beginner_data_text .beginner_data_explain {
  margin-bottom: 2.77vw;
}

.sp_scroll table {
  width: 100%;
}

.sp_scroll {
  overflow-x: auto;
  white-space: nowrap;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  margin: 1em 0;
}

.sp_scroll::-webkit-scrollbar {
  height: 5px;
}

.sp_scroll::-webkit-scrollbar-track {
  background: #ccc;
}

.sp_scroll::-webkit-scrollbar-thumb {
  background: #777;
}

.beginner_rank_list {
  margin: 20px 0;
}

.beginner_rank_list th {
  text-align: center;
  font-size: 4.166vw;
  padding: 4.166vw;
}

.beginner_rank_list th.rank_regular {
  border: 1px solid #ccc;
  background: #fff;
}

.beginner_rank_list th.rank_silver {
  border: 1px solid #ccc;
  background: #c9caca;
}

.beginner_rank_list th.rank_gold {
  border: 1px solid #ccc;
  background: #c1ab05;
  color: #FFF;
}

.beginner_rank_list th.rank_platinum {
  border: 1px solid #ccc;
  background: #778899;
  color: #FFF;
}

.beginner_rank_list th.rank_vip {
  border: 1px solid #ccc;
  background: #2e2d32;
  color: #FFF;
}

.beginner_rank_list td {
  vertical-align: middle;
  text-align: center;
  border: 1px solid #ccc;
  padding: 1em;
  font-size: 3.33vw;
}

.beginner_rank_list td span {
  font-size: 2.77vw;
}

.company_data {
  width: 100%;
}

.company_data--th, .company_data--td {
  display: block;
  width: 100%;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.company_data--th {
  font-size: 3.61vw;
  font-weight: bold;
  background-color: #f2f2f2;
  padding: 4.166vw 2.77vw;
}

.company_data--td {
  padding: 3.33vw 2.77vw;
}

.btn_btm {
  width: 69.44vw;
  margin-left: auto;
  margin-right: auto;
}
.btn_btm a {
  height: 11.11vw;
  line-height: 11.11vw;
}

.b_privacy_inner {
  padding: 0 2.77vw;
}

.privacy_data {
  counter-reset: decimal;
}

.privacy_data + .privacy_data {
  margin-top: 6.94vw;
}

.privacy_section_heading {
  color: #000;
  font-size: 4.45vw;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 11.11vw;
  margin-top: 11.11vw;
}

.privacy_data_heading {
  color: #000;
  font-size: 3.88vw;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8.33vw;
}

.privacy_data_text {
  color: #000;
  font-size: 3.88vw;
  line-height: 1.4;
}

.privacy_data_text a {
  text-decoration: underline;
}

.privacy_data--link:before {
  display: inline-block;
  content: "└";
  padding-right: 0.27vw;
}

.privacy_data--link {
  word-break: break-all;
}

.privacy_data_explain {
  font-size: 3.88vw;
  margin-bottom: 1.38vw;
}

.privacy_data_list {
  display: table;
  font-size: 3.88vw;
  counter-reset: decimal decimal-bracket decimal-bracket1;
}

.privacy_data_item {
  display: table-row;
  line-height: 1.4;
}

.privacy_data_item.type_disc:before {
  content: "・";
  display: table-cell;
  width: 3.33vw;
  padding-right: 1.11vw;
  white-space: nowrap;
}

.privacy_data_item.type_decimal:before {
  counter-increment: decimal;
  content: counter(decimal) ".";
  display: table-cell;
  width: 14px;
  padding-right: 1.11vw;
  white-space: nowrap;
}

.privacy_data_item.type1_decimal_bracket:before {
  counter-increment: decimal-bracket;
  content: counter(decimal-bracket) ")";
  display: table-cell;
  width: 3.88vw;
  padding-right: 1.11vw;
  white-space: nowrap;
}

.privacy_data_item.type2_decimal_bracket:before {
  counter-increment: decimal-bracket1;
  content: "(" counter(decimal-bracket1) ")";
  display: table-cell;
  width: 3.88vw;
  padding-right: 1.11vw;
  white-space: nowrap;
}

.privacy_data_item:after {
  content: "";
  display: block;
  margin-bottom: 0.2em;
}

.privacy_data_table th, .privacy_data_table td {
  font-size: inherit;
  vertical-align: middle;
  padding: 4.166vw;
  border: 1px solid #ccc;
}

.privacy_data_table {
  margin-bottom: 1em;
  margin-top: 5.55vw;
}

/*マイページログイン画面に会員表の追加--------------------------------------*/
.beginner_rank_list_s td {
  vertical-align: middle;
  text-align: center;
  border: 1px solid #ccc;
  padding: 0.6em;
  font-size: 3.33vw;
}

.beginner_rank_list_s th {
  text-align: center;
  font-size: 3.33vw;
  padding: 3.33vw;
}

.beginner_data .beginner_data_text_s {
  margin-top: 2.22vw;
}

/* lp250901 ------------------------- */
.header_mg {
  padding-top: 13.88vw;
  margin-top: -13.88vw;
}

.lp250901_fv_slide .lp250901_fv_slide_area {
  padding-top: 177.8%;
  background-size: 30% auto;
}

.lp250901_nav {
  text-align: center;
  font-size: 120%;
  margin-top: 16.66vw;
}

.lp250901_all_item {
  width: 50%;
  margin-top: 11.11vw;
}
.lp250901_all_item a {
  height: 11.11vw;
  line-height: 11.11vw;
  font-size: 140%;
}

.lp250901_txt01 {
  margin-top: 16.66vw;
  font-size: 6.94vw;
}

.lp250901_txt02 {
  margin-top: 2.22vw;
  font-size: 2vw;
  margin-bottom: 19.44vw;
  padding-left: 34%;
}

.lp250901_subttl {
  font-size: 5.55vw;
}

.lp250901_01 {
  padding-top: 35.6vw;
  padding-bottom: 19.44vw;
  margin-top: 13.88vw;
}
.lp250901_01 .lp250901_subttl {
  left: 13.33%;
  top: 12.8vw;
}
.lp250901_01 .img01_01 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.lp250901_01 .lp250901_check {
  margin-top: 5.55vw;
}

.lp250901_check {
  width: 19.44vw;
}
.lp250901_check a {
  height: 6.94vw;
  line-height: 6.94vw;
  font-size: 110%;
}

.lp250901_01_03 {
  width: 87%;
  margin-left: 13%;
  margin-top: 12vw;
}

.lp250901_01_04 {
  margin-top: 22.22vw;
}
.lp250901_01_04 .lp250901_check {
  margin-left: 9.722vw;
  margin-top: 5.55vw;
}
.lp250901_01_04 .lp250901_credit {
  margin-left: 5.55vw;
  margin-right: 5.55vw;
}

.lp250901_01_05 {
  width: 80%;
  margin-left: 20%;
  margin-top: 11.11vw;
}

.lp250901_07 {
  margin-top: 16.66vw;
  width: 70%;
  margin-left: 9%;
}
.lp250901_07 .lp250901_check {
  margin-top: 5.55vw;
  margin-left: 0;
}

.lp250901_07_credit {
  margin-left: 5.55vw;
  margin-right: 5.55vw;
  margin-bottom: 11.11vw;
}

.lp250901_08 {
  width: 46%;
  margin-left: 50%;
}

.lp250901faq_txt {
  font-size: 1.95vw;
}
.lp250901faq_txt .txt {
  font-size: 120%;
}

.lp250901faq_txt::before {
  width: 5.55vw;
  height: 5.55vw;
  margin-bottom: 6.94vw;
}

.lp250901_faq01 {
  padding-top: 16.66vw;
}
.lp250901_faq01 .lp250901faq_txt01 {
  margin-left: 6%;
}
.lp250901_faq01 .lp250901_faq_img {
  margin-top: -1em;
}
.lp250901_faq01 .lp250901faq_txt02 {
  margin-left: 35%;
  margin-top: 4.166vw;
}
.lp250901_faq01 .lp250901_faq_img_txt {
  font-size: 7vw;
  left: 7%;
  bottom: 5vw;
}

.lp250901_02 {
  padding-top: 28vw;
  margin-top: 13.88vw;
  padding-bottom: 11.11vw;
}
.lp250901_02 .lp250901_subttl {
  right: 11.11vw;
  top: 13.88vw;
}

.lp250901_02_01 {
  width: 80%;
}
.lp250901_02_01 .lp250901_check {
  margin-left: 10%;
  margin-top: 5.55vw;
}
.lp250901_02_01 .lp250901_credit {
  margin-left: 5.55vw;
}

.lp250902_03 {
  width: 87%;
  margin-left: 13%;
  margin-top: 12.49vw;
}

.lp250902_04 {
  margin-top: 16.66vw;
}
.lp250902_04 .lp250901_check {
  margin-left: 10%;
  margin-top: 5.55vw;
}
.lp250902_04 .lp250901_credit {
  margin-left: 5.55vw;
  margin-right: 5.55vw;
}

.lp250901_02_flex02 .img02_06 {
  width: 80%;
  margin-left: 20%;
  margin-top: 11.11vw;
}
.lp250901_02_flex02 .moview02_05 {
  width: 87%;
  margin-top: 11.11vw;
}
.lp250901_02_flex02 .img02_07 {
  width: 46%;
  margin-top: 8.33vw;
  margin-left: 49%;
}

.lp250901_faq02 {
  padding-top: 8.33vw;
}
.lp250901_faq02 .lp250901_faq_img {
  margin-top: 5.55vw;
  margin-left: auto;
  margin-right: auto;
  width: 66%;
}
.lp250901_faq02 .lp250901faq_txt01 {
  margin-left: 45%;
}
.lp250901_faq02 .lp250901faq_txt02 {
  margin-left: 10%;
}
.lp250901_faq02 .lp250901faq_txt03 {
  margin-left: 8.5%;
  margin-top: -8.33vw;
}
.lp250901_faq02 .lp250901faq_txt04 {
  margin-left: 34%;
  margin-top: 5.55vw;
}
.lp250901_faq02 .pc_only {
  display: none !important;
}
.lp250901_faq02 .lp250901_faq_img_txt {
  font-size: 7vw;
  top: 5.55vw;
  right: -12.5vw;
  white-space: nowrap;
}

.lp250901_03 {
  padding-top: 30vw;
  margin-top: 6.94vw;
  padding-bottom: 17.3vw;
}
.lp250901_03 .lp250901_subttl {
  left: 14%;
  top: 8.66vw;
}

.lp250901_03_01 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.lp250901_03_01 .lp250901_check {
  margin-top: 5.55vw;
}

.lp250901_03_flex01 .img03_02 {
  width: 80%;
  margin-top: 11.11vw;
}
.lp250901_03_flex01 .movie03_03 {
  width: 87%;
  margin-left: 13%;
  margin-top: 11.11vw;
}

.lp250901_03_04 {
  width: 46%;
  margin-left: 4.166vw;
  margin-top: 11.11vw;
}

.lp250901_faq03 {
  padding-top: 12vw;
  padding-bottom: 27.77vw;
}
.lp250901_faq03 .lp250901faq_txt01 {
  margin-left: 9.722vw;
}
.lp250901_faq03 .lp250901faq_txt02 {
  margin-left: 44%;
  margin-top: 4.166vw;
}
.lp250901_faq03 .lp250901_faq_img {
  margin-top: -2.77vw;
}
.lp250901_faq03 .lp250901faq_txt03 {
  margin-left: 9.722vw;
  margin-top: 16.66vw;
}
.lp250901_faq03 .lp250901faq_txt04 {
  margin-left: 30%;
  margin-top: 6.94vw;
}
.lp250901_faq03 .lp250901_faq_img_txt {
  font-size: 7vw;
  left: 7.7vw;
  bottom: -8vw;
}

.lp250901_04 {
  padding-top: 19.44vw;
  padding-bottom: 19.44vw;
}
.lp250901_04 .lp250901_subttl {
  right: 7.3%;
  top: -18vw;
}

.lp250901_04_01 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.lp250901_04_02_img {
  width: 60%;
  margin-top: 13.88vw;
}

.lp250901_04_03 {
  width: 60%;
  margin-left: 40%;
  margin-top: 5.55vw;
}

.lp250901_04_04 {
  font-size: 5vw;
  margin-top: 5.55vw;
  margin-left: 10%;
  line-height: 140%;
}

.lp250901_04_txt {
  font-size: 1.8vw;
  margin-top: 4.166vw;
  margin-left: 10%;
  line-height: 180%;
  position: relative;
  z-index: 10;
}

.lp250901_05 {
  margin-top: 16.66vw;
}

.lp250901_05_01 {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.lp250901_05_txt01 {
  margin-top: 14.5vw;
  font-size: 3.5vw;
}

.lp250901_05_txt02 {
  margin-top: 2.77vw;
  font-size: 1.8vw;
  line-height: 180%;
}

.lp250901_credit {
  margin-top: 5.55vw;
  font-size: 2.3vw;
}

.lp250901_logo {
  margin-top: 11.11vw;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}/*# sourceMappingURL=smart.css.map */