@charset "UTF-8";

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text-strike {
  text-decoration: line-through;
}

.text-color-orange {
  color: #ed4c0d;
}

.text-color-pink {
  color: #ea335e;
}

.text-color-blue {
  color: #2196f3;
}

.text-color-white {
  color: #fff;
}

.text-color-red {
  color: #de0404;
}

.btn {
  padding: 5px 25px;
  display: inline-block;
  text-align: center;
  border-radius: 999px;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

@media screen and (min-width: 800px) {
  .btn:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.5);
    position: relative;
  }

  .btn:hover::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
  }
}

input.btn {
  font-size: 1rem;
  border: 0;
  outline: 0;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

.plain-btn {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  color: #999;
}

.active > .plain-btn,
.plain-btn.active {
  background: #090909;
  color: #fff;
}

.filter-labels .main-label {
  margin: 10px 0;
}

.filter-labels .main-label ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

@media screen and (min-width: 800px) {
  .filter-labels .main-label ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow-x: auto;
  }
}

.filter-labels .main-label ul li {
  margin: 10px 10px 10px 0;
}

.filter-labels .sub-label {
  margin: 10px 0;
}

.filter-labels .sub-label ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 800px) {
  .filter-labels .sub-label ul > li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow-x: auto;
  }
}

.filter-labels .sub-label ul > li > a {
  margin: 0 5px;
}

.filter-labels .sub-label ul > li > a:first-child {
  margin-left: 0;
}

.btn-blue {
  color: #fff;
  background-color: #2196f3;
}

.btn-pink {
  color: #fff;
  background-color: #ea335e;
}

.btn-orange {
  color: #fff;
  background-color: #ed4c0d;
}

.btn-yellow {
  color: #fff;
  background-color: #e99a01;
}

.btn-white {
  color: #000;
  background-color: #fff;
}

.btn-gray {
  color: #fff;
  background-color: #999;
}

.btn-black {
  color: #fff;
  background-color: #000;
}

.btn-light-black {
  color: #fff;
  background-color: #262626;
}

.border-radius-max {
  border-radius: 999px;
}

.star-rating {
  position: relative;
  font-size: 1rem;
  display: inline-block;
}

.star-rating-0 .star::after {
  width: 0%;
}

.star-rating-1 .star::after {
  width: 20%;
}

.star-rating-1_5 .star::after {
  width: 30%;
}

.star-rating-2 .star::after {
  width: 40%;
}

.star-rating-2_5 .star::after {
  width: 50%;
}

.star-rating-3 .star::after {
  width: 60%;
}

.star-rating-3_5 .star::after {
  width: 70%;
}

.star-rating-4 .star::after {
  width: 80%;
}

.star-rating-4_5 .star::after {
  width: 90%;
}

.star-rating-5 .star::after {
  width: 100%;
}

.star-rating .star {
  color: #ccc;
}

.star-rating .star::after {
  content: '\2605\2605\2605\2605\2605';
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #ffcc33;
}

.swiper-button-disabled {
  display: none;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: #222;
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

b,
th,
strong,
.bold {
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: bold;
}

html {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

body {
  color: #222;
  font-size: 16px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  min-width: 320px;
  background-color: #f0f0f0;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  user-select: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#campaign {
  height: 60px;
}

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

@media screen and (min-width: 800px) {
  #header {
    position: static;
    top: auto;
    z-index: auto;
  }
}

#header #action_panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #262626;
  position: relative;
}

@media screen and (min-width: 800px) {
  #header #action_panel {
    z-index: 2;
    background-color: #fff;
  }
}

#header #action_panel_left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  #header #action_panel_left {
    margin-right: 20px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
  }
}

#header #action_panel_right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  #header #action_panel_right {
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
  }
}

#header #action_panel_right #mypage {
  width: 35px;
  height: 44px;
}

@media screen and (min-width: 800px) {
  #header #action_panel_right #mypage {
    margin: 0 10px;
    position: relative;
  }

  #header #action_panel_right #mypage:hover .menu {
    display: block;
  }
}

#header #action_panel_right #mypage.open .menu {
  display: block;
}

#header #action_panel_right #mypage > a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/imagedata/images/icons.png");
  background-repeat: no-repeat;
  background-size: 175px;
  background-position: -70px -88px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media screen and (min-width: 800px) {
  #header #action_panel_right #mypage > a {
    -webkit-transform: none;
            transform: none;
    background-position: -70px 0;
  }

  #header #action_panel_right #mypage > a:hover {
    background-position: -70px -44px;
  }
}

#header #action_panel_right #mypage > a span {
  display: none;
}

#header #action_panel_right #mypage .menu {
  display: none;
  position: fixed;
  top: 0px;
  bottom: 0px;
  z-index: 2;
  left: 0px;
  right: 0px;
  -webkit-filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.2));
}

@media screen and (min-width: 800px) {
  #header #action_panel_right #mypage .menu {
    padding-top: 10px;
    position: absolute;
    top: 100% !important;
    bottom: auto;
  }
}

#header #action_panel_right #mypage .menu .mobile {
  display: none;
}

@media screen and (max-width: 800px) {
  #header #action_panel_right #mypage .menu .mobile {
    display: block;
  }
}

#header #action_panel_right #mypage .menu a {
  padding: 0 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#header #action_panel_right #mypage .menu a::after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  background-image: url("/imagedata/images/arrow-right-01.png");
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 10px;
}

#header #action_panel_right #mypage .menu > ul {
  padding: 20px 0;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
}

#header #action_panel_right #mypage .menu > ul::before {
  position: absolute;
  top: -10px;
  right: 58px;
  content: '';
  width: 0;
  height: 0;
  display: block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

@media screen and (min-width: 800px) {
  #header #action_panel_right #mypage .menu > ul::before {
    right: 15px;
  }
}

#header #action_panel_right #mypage .menu > ul > li {
  border-top: 1px solid #ddd;
}

#header #action_panel_right #mypage .menu > ul > li:last-child {
  border-bottom: 1px solid #ddd;
}

#header #action_panel_right #mypage .menu > ul > li.open > a::after {
  background-image: url("/imagedata/images/arrow-down-02.png");
}

#header #action_panel_right #mypage .menu > ul > li.open ul {
  display: block;
}

#header #action_panel_right #mypage .menu > ul > li > a {
  height: 60px;
  font-size: 0.85rem;
  font-weight: bold;
}

#header #action_panel_right #mypage .menu > ul > li > ul {
  display: none;
}

#header #action_panel_right #mypage .menu > ul > li > ul li {
  border-top: 1px solid #ddd;
}

#header #action_panel_right #mypage .menu > ul > li > ul li a {
  height: 40px;
  font-size: 0.8rem;
  background-color: #eee;
}

#header #action_panel_right .service-links {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  #header #action_panel_right .service-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#header #action_panel_right .service-links a {
  font-weight: 600;
  margin-right: .5em;
  position: relative;
  padding-right: 30px;
}

#header #action_panel_right .service-links a::after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  background-image: url(/imagedata/images/arrow-right-02.png);
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 0;margin-left: 5px;
  margin-right: 7px;
}

#header #action_panel_right .account {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1280px) {
  #header #action_panel_right .account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#header #action_panel_right .account a {
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header #action_panel_right .link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header #action_panel_right .link ul li {
  margin: 0 10px 0 5px;
  width: 35px;
  height: 44px;
}

@media screen and (min-width: 800px) {
  #header #action_panel_right .link ul li {
    margin: 0 10px;
  }
}

#header #action_panel_right .link ul li a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/imagedata/images/icons.png");
  background-repeat: no-repeat;
  background-size: 175px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media screen and (min-width: 800px) {
  #header #action_panel_right .link ul li a {
    -webkit-transform: none;
            transform: none;
  }
}

#header #action_panel_right .link ul li a span {
  display: none;
}

#header #action_panel_right .link ul li.guide,
#header #action_panel_right .link ul li.help {
  display: none;
}

@media screen and (min-width: 800px) {
  #header #action_panel_right .link ul li.guide,
  #header #action_panel_right .link ul li.help {
    display: block;
  }
}

#header #action_panel_right .link ul li.cart a {
  background-position: -105px -88px;
}

@media screen and (min-width: 800px) {
  #header #action_panel_right .link ul li.cart a {
    background-position: -105px 0;
  }

  #header #action_panel_right .link ul li.cart a:hover {
    background-position: -105px -44px;
  }
}

#header #action_panel_right .link ul li.guide a {
  background-position: -35px 0;
}

#header #action_panel_right .link ul li.guide a:hover {
  background-position: -35px -44px;
}

#header #action_panel_right .link ul li.help a {
  background-position: 0 0;
}

#header #action_panel_right .link ul li.help a:hover {
  background-position: 0 -44px;
}

@media screen and (min-width: 800px) {
  #header #action_panel #menu {
    width: 60px;
  }
}

#header #action_panel #menu.open::after {
  content: '';
  display: block;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

#header #action_panel #menu.open #menu_button {
  position: relative;
  z-index: 3;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#header #action_panel #menu.open #menu_button .menu-button-bar:nth-of-type(1) {
  -webkit-transform: translateY(100%) rotate(45deg);
          transform: translateY(100%) rotate(45deg);
}

#header #action_panel #menu.open #menu_button .menu-button-bar:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: scale(0.2, 0.2);
          transform: scale(0.2, 0.2);
}

#header #action_panel #menu.open #menu_button .menu-button-bar:nth-of-type(3) {
  -webkit-transform: translateY(-100%) rotate(-45deg);
          transform: translateY(-100%) rotate(-45deg);
}

#header #action_panel #menu.open #menu_contents {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
}

@media screen and (min-width: 800px) {
  #header #action_panel #menu:hover {
    -webkit-filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.2));
  }

  #header #action_panel #menu:hover #menu_contents {
    display: block;
  }
}

#header #action_panel #menu_button {
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 800px) {
  #header #action_panel #menu_button {
    width: 60px;
    height: 60px;
    background-color: #fff;
  }
}

#header #action_panel #menu_button .menu-button-bar {
  margin: 0 10px;
  height: 1px;
  background-color: #fff;
  border-radius: 1.5px;
  -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

@media screen and (min-width: 800px) {
  #header #action_panel #menu_button .menu-button-bar {
    height: 3px;
    background-color: #444;
  }
}

#header #action_panel #menu_button .menu-button-bar:nth-of-type(1) {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

@media screen and (min-width: 800px) {
  #header #action_panel #menu_button .menu-button-bar:nth-of-type(1) {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

#header #action_panel #menu_button .menu-button-bar:nth-of-type(3) {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

@media screen and (min-width: 800px) {
  #header #action_panel #menu_button .menu-button-bar:nth-of-type(3) {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

#header #action_panel #menu_contents {
  position: relative;
  padding: 10px 0;
  background-color: #fff;
  z-index: 3;
  display: none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 800px) {
  #header #action_panel #menu_contents {
    position: absolute;
    top: 100%;
    width: 360px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}

#header #action_panel #menu_contents:hover {
  display: block;
}

#header #action_panel #menu_contents .account {
  padding: 0 0 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#header #action_panel #menu_contents .account a {
  width: 45%;
  height: 50px;
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header #action_panel #menu_contents .navi {
  padding-top: 5px;
}

#header #action_panel #menu_contents .navi > ul ul {
  display: none;
  background-color: #ddd;
}

#header #action_panel #menu_contents .navi > ul > li {
  border-top: 1px solid #ccc;
}

#header #action_panel #menu_contents .navi > ul .open > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#header #action_panel #menu_contents .navi > ul .open .title::after {
  background-image: url("/imagedata/images/arrow-down-02.png");
}

#header #action_panel #menu_contents .navi .level-1 > .title {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 52px;
  font-size: 0.9rem;
  font-weight: bold;
  border-left-style: solid;
  border-left-width: 10px;
  cursor: pointer;
  position: relative;
}

#header #action_panel #menu_contents .navi .level-1 > .title:hover {
  background-color: #eee;
}

#header #action_panel #menu_contents .navi .level-1 > .title::after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  background-image: url("/imagedata/images/arrow-right-01.png");
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 10px;
}

#header #action_panel #menu_contents .navi .level-1 > ul > li {
  width: 50%;
  border-top: 1px solid #ddd;
}

#header #action_panel #menu_contents .navi .level-2.open > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
}

#header #action_panel #menu_contents .navi .level-2.open .subtitle {
  background-color: #ddd;
}

#header #action_panel #menu_contents .navi .level-2.open .subtitle::after {
  background-image: url("/imagedata/images/arrow-down-02.png");
}

#header #action_panel #menu_contents .navi .level-2.open:nth-child(even) > ul {
  margin-left: -100%;
}

#header #action_panel #menu_contents .navi .level-2 > ul {
  position: relative;
  z-index: 1;
}

#header #action_panel #menu_contents .navi .level-2 > ul > li {
  padding: 5px 10px;
  width: 50%;
}

#header #action_panel #menu_contents .navi .level-2 > ul > li a {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8rem;
  border-radius: 999px;
}

#header #action_panel #menu_contents .navi .level-2 > ul > li a:hover {
  background-color: #fff;
}

#header #action_panel #menu_contents .navi .level-2 > a,
#header #action_panel #menu_contents .navi .level-2 > .subtitle {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  font-size: 0.8rem;
  font-weight: bold;
  background-color: #eee;
  position: relative;
  cursor: pointer;
}

#header #action_panel #menu_contents .navi .level-2 > a::after,
#header #action_panel #menu_contents .navi .level-2 > .subtitle::after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  background-image: url("/imagedata/images/arrow-right-01.png");
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 10px;
}

#header #action_panel #menu_contents .link li {
  border-top: 1px solid #ccc;
}

#header #action_panel #menu_contents .link li.cart a {
  border-color: #fce470;
}

#header #action_panel #menu_contents .link li.guide a {
  border-color: #9dc0f4;
}

#header #action_panel #menu_contents .link li.help a {
  border-color: #9dc0f4;
}

#header #action_panel #menu_contents .link a {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 52px;
  font-size: 0.9rem;
  font-weight: bold;
  border-left-style: solid;
  border-left-width: 10px;
  cursor: pointer;
  position: relative;
}

#header #action_panel #menu_contents .link a:hover {
  background-color: #eee;
}

#header #action_panel #menu_contents .link a::after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  background-image: url("/imagedata/images/arrow-right-01.png");
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 10px;
}

#header #action_panel #menu_contents .search {
  border-bottom: 1px solid #ccc;
}

#header #action_panel #menu_contents .search > ul ul {
  display: none;
  background-color: #ddd;
}

#header #action_panel #menu_contents .search > ul > li {
  border-top: 1px solid #ccc;
}

#header #action_panel #menu_contents .search > ul .open > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#header #action_panel #menu_contents .search > ul .open .title::after {
  background-image: url("/imagedata/images/arrow-down-02.png");
}

#header #action_panel #menu_contents .search .level-1 > .title {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 52px;
  font-size: 0.9rem;
  font-weight: bold;
  border-left-style: solid;
  border-left-width: 10px;
  cursor: pointer;
  position: relative;
  border-color: #d89ee5;
}

#header #action_panel #menu_contents .search .level-1 > .title:hover {
  background-color: #eee;
}

#header #action_panel #menu_contents .search .level-1 > .title::after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  background-image: url("/imagedata/images/arrow-right-01.png");
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 10px;
}

#header #action_panel #menu_contents .search .level-1 > ul > li {
  width: 50%;
  border-top: 1px solid #ddd;
}

#header #action_panel #menu_contents .search .level-2 > a {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  font-size: 0.8rem;
  font-weight: bold;
  background-color: #eee;
  position: relative;
  cursor: pointer;
}

#header #action_panel #menu_contents .search .level-2 > a::after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  background-image: url("/imagedata/images/arrow-right-01.png");
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 10px;
}

#header #action_panel #menu_contents .normal,
#header #action_panel #menu_contents .r18 {
  padding-top: 10px;
}

#header #action_panel #menu_contents .normal a,
#header #action_panel #menu_contents .r18 a {
  margin: auto;
  width: 320px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #444;
  border-radius: 999px;
}

#header #action_panel #menu_contents .normal a:hover {
  color: #2196f3;
  border-color: #2196f3;
}

#header #action_panel #menu_contents .r18 a:hover {
  color: #ea335e;
  border-color: #ea335e;
}

@media screen and (min-width: 400px) {
  #header #action_panel #search {
    margin-left: 10px;
  }
}

@media screen and (min-width: 800px) {
  #header #action_panel #search {
    margin-left: 0;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 1280px) {
  #header #action_panel #search {
    width: 480px;
  }
}

#header #action_panel #search.open .input {
  display: block;
}

#header #action_panel #search .icon {
  width: 35px;
  height: 44px;
  background-image: url("/imagedata/images/icons.png");
  background-repeat: no-repeat;
  background-size: 175px;
  background-position: -140px -88px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

@media screen and (min-width: 800px) {
  #header #action_panel #search .icon {
    display: none;
  }
}

#header #action_panel #search .icon span {
  display: none;
}

#header #action_panel #search .input {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 2;
  display: none;
}

@media screen and (min-width: 800px) {
  #header #action_panel #search .input {
    display: block;
    position: static;
    top: auto;
    left: auto;
    padding: 0 10px;
  }
}

#header #action_panel #search .input form {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  background-color: #fff;
}

@media screen and (min-width: 800px) {
  #header #action_panel #search .input form {
    padding: 0;
    background: none;
    position: relative;
  }
}

#header #action_panel #search .input input {
  padding: 0 35px 0 5px;
  width: 100%;
  height: 35px;
  line-height: 30px;
  font-size: 1rem;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background-image: url("/imagedata/images/icon-search.png");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 25px;
}

#header #action_panel #search .input input:focus {
  outline: none;
}

@media screen and (min-width: 800px) {
  #header #action_panel #search .input input {
    padding: 0 35px 0 20px;
    background-color: #090909;
    background-image: url("/imagedata/images/icon-search-white.png");
    background-size: 30px;
    background-position: right 5px center;
    border: none;
    border-radius: 999px;
  }
}

#header #action_panel #search .input button {
  position: absolute;
  color: #fff;
  top: 50%;
  width: 30px;
  height: 35px;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  opacity: 0;
  cursor: pointer;
}

@media screen and (min-width: 800px) {
  #header #action_panel #search .input button {
    right: 5px;
  }
}

#header #action_panel #logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  #header #action_panel #logo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/* .r18 #header #action_panel #logo a {
  background-position: 0 100%;
} */

#header #action_panel #logo a {
  display: block;
  width: 140px;
  height: 9px;
  background-image: url("/imagedata/images/logo_sp.png");
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 350px) {
  #header #action_panel #logo a {
    width: 166px;
    height: 18px;
  }
}

@media screen and (min-width: 800px) {
  #header #action_panel #logo a {
    width: 287px;
    height: 23px;
    background-image: url("/imagedata/images/logo.png");
    background-position: 0 0;
  }
}

@media screen and (min-width: 1280px) {
  #header #action_panel #logo a {
    width: 324px;
    height: 26px;
    background-image: url("/imagedata/images/logo.png");
    background-position: 0 0;
  }
}

#header #action_panel #logo a span {
  display: none;
}

#header #action_panel #switcher {
  padding-right: 5px;
  display: none;
}

@media screen and (min-width: 800px) {
  #header #action_panel #switcher {
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#header #action_panel #switcher a {
  margin: 0 5px;
  padding: 0 15px;
  color: #fff;
  width: 100px;
  height: 40px;
  font-size: 0.8rem;
  border: 1px solid #fff;
  border-radius: 999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header #action_panel #switcher a:hover {
  color: #2196f3;
  border-color: #2196f3;
}

#header #action_panel #switcher a.r18:hover {
  color: #ea335e;
  border-color: #ea335e;
}

@media screen and (min-width: 800px) {
  #header #action_panel #switcher a {
    color: #262626;
    border-color: #262626;
  }
}

#header #global_navi {
  display: none;
  height: 80px;
  background-color: #262626;
}

@media screen and (min-width: 800px) {
  #header #global_navi {
    display: block;
  }
}

#header #global_navi > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header #global_navi > ul > li {
  width: 150px;
  height: 80px;
}

@media screen and (min-width: 1280px) {
  #header #global_navi > ul > li {
    width: 190px;
  }
}

#header #global_navi > ul > li:hover,
#header #global_navi > ul > li.active {
  background-color: #090909;
}

#header #global_navi > ul > li:hover > .nav-menu {
  display: block;
}

#header #global_navi > ul > li > a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header #global_navi > ul > li > .nav-menu {
  display: none;
  position: relative;
  z-index: 3;
  width: 100%;
  height: 360px;
}

#header #global_navi > ul > li > .nav-menu ul {
  font-size: 0.9rem;
  height: 100%;
  background-color: #fff;
}

#header #global_navi > ul > li > .nav-menu ul.parent {
  padding: 20px 0;
  width: 100%;
  border-right: 1px solid #ccc;
}

#header #global_navi > ul > li > .nav-menu ul.parent > li {
  margin-right: -1px;
  border-top: 1px solid #ccc;
}

#header #global_navi > ul > li > .nav-menu ul.parent > li:hover {
  border-right: 1px solid #fff;
}

#header #global_navi > ul > li > .nav-menu ul.parent > li:hover > a {
  color: #ed4c0d;
}

#header #global_navi > ul > li > .nav-menu ul.parent > li:hover > a:after {
  background-image: url("/imagedata/images/arrow-right-02.png");
}

#header #global_navi > ul > li > .nav-menu ul.parent > li:last-child {
  border-bottom: 1px solid #ccc;
}

#header #global_navi > ul > li > .nav-menu ul.parent > li > a {
  padding: 0 10px;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#header #global_navi > ul > li > .nav-menu ul.parent > li > a::after {
  content: '';
  display: block;
  width: 20px;
  height: 100%;
  background-image: url("/imagedata/images/arrow-right-01.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
}

#header #global_navi > ul > li > .nav-menu ul.lv-1 {
  border-bottom-left-radius: 15px;
}

#header #global_navi > ul > li > .nav-menu ul.lv-1 > li:hover > ul {
  display: block;
}

#header #global_navi > ul > li > .nav-menu ul.lv-2 {
  padding: 20px 0 20px 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  display: none;
  left: 100%;
  width: 150px;
  font-size: 0.8rem;
  border-right: 1px solid #ccc;
}

#header #global_navi > ul > li > .nav-menu ul.lv-2 > li:hover > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#header #global_navi > ul > li > .nav-menu ul.lv-3 {
  width: 340px;
  padding: 20px 0 20px 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  display: none;
  font-size: 0.66rem;
  left: calc(100% + 1px);
  border-bottom-right-radius: 15px;
}

#header #global_navi > ul > li > .nav-menu ul.lv-3 > li {
  width: 33%;
}

#header #global_navi > ul > li > .nav-menu ul.lv-3 > li a {
  padding: 0 10px;
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 999px;
}

#header #global_navi > ul > li > .nav-menu ul.lv-3 > li a:hover {
  background-color: #eee;
}

@media (max-width: 890px) {
  #header #global_navi > ul > li:nth-child(3) > .nav-menu ul.lv-3 {
    left: -330px;
    background-color: #fff;
    z-index: 1;
    border-right: 1px solid #ccc;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 0;
  }
}

@media (min-width: 891px) and (max-width: 1010px) {
  #header #global_navi > ul > li:nth-child(3) > .nav-menu ul.lv-3 {
    left: calc(100% + 1px);
    border-right: none;
  }
}

@media (max-width: 1050px) {
  #header #global_navi > ul > li:nth-child(4) > .nav-menu ul.lv-3 {
    left: -330px;
    background-color: #fff;
    z-index: 1;
    border-right: 1px solid #ccc;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 0;
  }
}

@media (min-width: 1051px) and (max-width: 1160px) {
  #header #global_navi > ul > li:nth-child(4) > .nav-menu ul.lv-3 {
    left: calc(100% + 1px);
    border-right: none;
  }
}

#main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

#main #container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 800px) {
  #main #container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#main #sidebar {
  display: none;
  width: 160px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
}

@media screen and (min-width: 800px) {
  #main #sidebar {
    display: block;
  }
}

#main #sidebar .sidebar-content {
  margin-bottom: 5px;
  padding: 15px 0;
  background-color: #fff;
  position: relative;
}

#main #sidebar .sidebar-content-title {
  margin: 5px 0 5px 0;
  padding: 0 10px 0 25px;
  font-size: 0.8rem;
  text-indent: -17px;
}

#main #sidebar .sidebar-content-title::before {
  margin-right: 5px;
  content: '\25BC';
}

#main #sidebar .sidebar-content hr {
  margin: 10px;
  height: 0px;
  background: none;
  border: none;
  border-bottom: 1px solid #ccc;
}

#main #sidebar .sidebar-content-list {
  margin: 2px 0;
  font-size: 0.8rem;
}

#main #sidebar .sidebar-content-list.active {
  padding: 3px 10px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #ed4c0d;
  cursor: pointer;
}

#main #sidebar .sidebar-content-list.active .close {
  cursor: pointer;
}

#main #sidebar .sidebar-content-list a {
  padding: 3px 10px;
  display: block;
  width: 100%;
  height: 100%;
}

#main #sidebar .sidebar-content-list a:hover {
  background-color: #ccc;
}

#main #sidebar .sidebar-content-more {
  margin-top: 15px;
  padding: 0 10px;
  font-size: 0.8rem;
}

#main #sidebar .sidebar-content-more.open .sidebar-content-more-panel {
  display: block;
}

#main #sidebar .sidebar-content-more > a {
  position: relative;
  padding-right: 15px;
}

#main #sidebar .sidebar-content-more > a::after {
  content: '';
  display: block;
  background-image: url("/imagedata/images/icon-menu.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
}

#main #sidebar .sidebar-content-more-panel {
  position: absolute;
  top: 0;
  left: 100%;
  width: 550px;
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 3;
  display: none;
}

#main #sidebar .sidebar-content-more-panel ul {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#main #sidebar .sidebar-content-more-panel ul li {
  margin: 5px 5px;
  padding: 0;
}

#main #sidebar .sidebar-content-more-panel ul li a {
  padding: 0 25px 0 20px;
  color: #222;
  width: 170px;
  height: 40px;
  font-size: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main #sidebar .sidebar-content-more-panel ul li a.active,
#main #sidebar .sidebar-content-more-panel ul li a:hover {
  color: #fff;
  background-color: #ed4c0d;
  border-radius: 999px;
  position: relative;
}

#main #sidebar .sidebar-content-more-panel ul li a.active::after {
  content: 'x';
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#main #sidebar .sidebar-content-page {
  margin-top: 10px;
  padding: 0 10px;
  font-size: 0.8rem;
}

#main #sidebar .sidebar-content-page::after {
  padding: 0 2px 0 3px;
  content: '>';
}

#main #sidebar .sidebar-bottom-title {
  padding: 0 10px;
  color: #fff;
  font-size: 1rem;
  line-height: 30px;
  background-color: #262626;
}

#main #sidebar.information .sidebar-title {
  margin-bottom: 5px;
  padding: 0 10px 0 5px;
  height: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 5px solid #ed4c0d;
  background-color: #fff;
}

#main #sidebar.information .sidebar-content-title {
  font-size: 0.75rem;
}

#main #content {
  min-width: 0;
}

@media screen and (min-width: 800px) {
  #main #content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 0 0 20px;
  }
}

#footer {
  background-color: #000;
}

/*　ページトップへ戻る　*/
#footer #goto_pagetop {
    position: fixed;
    width: 45px;
    height: 45px;
    right: 10px;
    bottom: 0;
    z-index: 2;
    background-color: #fff;
    border-radius: 999px;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 10px;
}
#footer #goto_pagetop a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
#footer #goto_pagetop a img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

#footer .share {
  padding: 20px 0 10px 0;
}

#footer .share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .share ul li {
  margin: 0 10px;
}

#footer .share ul .image img {
  width: 50px;
  display: block;
}

@media screen and (min-width: 800px) {
  #footer .share ul .image img {
    width: 70px;
  }
}

#footer .container {
  width: 100%;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 800px) {
  #footer .container {
    margin: 10px auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#footer .container .link {
  padding: 10px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (min-width: 800px) {
  #footer .container .link {
    padding: 0 40px;
  }
}

#footer .container .link a {
  color: #fff;
  display: block;
  padding: 5px 10px;
}

#footer .container .navi {
  padding: 20px 0;
  width: 100%;
}

@media screen and (min-width: 800px) {
  #footer .container .navi {
    width: 800px;
    padding: 0;
  }
}

@media screen and (min-width: 1280px) {
  #footer .container .navi {
    width: 800px;
  }
}

@media screen and (min-width: 800px) {
  #footer .container .navi ul {
    height: 165px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#footer .container .navi ul li {
  height: 40px;
  border-top: 1px solid #262626;
}

@media screen and (min-width: 800px) {
  #footer .container .navi ul li {
    margin-left: 20px;
    width: 240px;
  }
}

@media screen and (min-width: 1280px) {
  #footer .container .navi ul li {
    margin-left: 60px;
    width: 240px;
  }
}

@media screen and (min-width: 1280px) {
  #footer .container .navi ul li:nth-child(4n),
  #footer .container .navi ul li:last-child {
    border-bottom: 1px solid #262626;
  }
}

#footer .container .navi ul li a {
  padding: 10px;
  display: block;
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: 0.8rem;
  position: relative;
}

#footer .container .navi ul li a::after {
  content: '';
  display: block;
  width: 20px;
  height: 100%;
  background-image: url("/imagedata/images/arrow-right-02.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 0;
}

#footer .copyright {
  color: #fff;
  height: 40px;
  line-height: 40px;
  background-color: #262626;
}

.breadcrumb {
  font-size: 0.8rem;
  height: 50px;
  position: relative;
}

.breadcrumb ul {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

@media screen and (min-width: 800px) {
  .breadcrumb ul {
    overflow-x: auto;
  }
}

.breadcrumb ul li {
  height: 30px;
}

.breadcrumb ul li:not(:last-child)::after {
  content: '\FF1E';
  text-align: center;
  width: 30px;
  display: inline-block;
}

@media screen and (min-width: 800px) {
  .breadcrumb ul li:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.breadcrumb ul li a {
  color: #222;
}

.breadcrumb-placeholder {
  height: 50px;
}

#page_home #slider {
  margin-bottom: 20px;
}

#page_home #slider .swiper-container {
  width: 100%;
}

@media screen and (min-width: 800px) {
  #page_home #slider .swiper-container:hover .slider-swiper-navigation {
    display: block;
  }
}

#page_home #slider .swiper-container .swiper-slide {
  width: 100%;
  max-width: 960px;
  background-color: #fff;
}

#page_home #slider .swiper-container .main-slider-item .image {
  display: block;
}

#page_home #slider .swiper-container .main-slider-item .image img {
  display: block;
  max-width: 100%;
}

#page_home #slider .swiper-container .slider-swiper-navigation {
  display: none;
}

#page_home #slider .swiper-container .slider-swiper-navigation img {
  display: block;
}

#page_home #slider .swiper-container .slider-swiper-navigation .slider-button-next {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  outline: none;
  z-index: 1;
}

#page_home #slider .swiper-container .slider-swiper-navigation .slider-button-prev {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  outline: none;
  z-index: 1;
}

#page_home #news {
  padding: 0 10px;
}

@media screen and (min-width: 800px) {
  #page_home #news {
    padding: 0 80px;
  }
}

#page_detail #product_grid {
  display: -ms-grid;
  display: grid;
  grid-template-areas: 'header' 'preview' 'sidebar' 'label' 'info' 'description';
  -ms-grid-rows: auto auto auto auto auto;
  -ms-grid-columns: 100%;
}

#page_detail #product_grid #product_header {
  grid-area: header;
}

#page_detail #product_grid #product_label {
  grid-area: label;
}

#page_detail #product_grid #product_preview {
  grid-area: preview;
}

#page_detail #product_grid #product_info {
  grid-area: info;
}

#page_detail #product_grid #product_description {
  grid-area: description;
}

#page_detail #product_grid #product_sidebar {
  grid-area: sidebar;
}

#page_detail #product_grid #product_header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

#page_detail #product_grid #product_label {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

#page_detail #product_grid #product_preview {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

#page_detail #product_grid #product_info {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

#page_detail #product_grid #product_description {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

#page_detail #product_grid #product_sidebar {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-row-span: 1;
}

@media screen and (min-width: 800px) {
  #page_detail #product_grid {
    -ms-grid-rows: auto auto auto auto;
    -ms-grid-columns: 1fr 340px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 340px;
    grid-template-areas: 'header header' 'label label' 'preview sidebar' 'info sidebar' 'description sidebar';
  }

  #page_detail #product_grid #product_header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  #page_detail #product_grid #product_label {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  #page_detail #product_grid #product_preview {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  #page_detail #product_grid #product_info {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  #page_detail #product_grid #product_description {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  #page_detail #product_grid #product_sidebar {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    -ms-grid-row-span: 3;
  }

  #page_detail #product_grid #product_info {
    margin-top: 20px;
  }

  #page_detail #product_grid #product_sidebar {
    margin-left: 20px;
  }
}

@media screen and (min-width: 1280px) {
  #page_detail #product_grid {
    -ms-grid-rows: auto auto auto auto 1fr;
    -ms-grid-columns: 1fr 340px;
    grid-template-rows: auto auto auto auto 1fr;
    grid-template-columns: 1fr 340px;
    grid-template-areas: 'header header' 'label label' 'preview sidebar' 'info sidebar' 'description sidebar';
  }

  #page_detail #product_grid #product_header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  #page_detail #product_grid #product_label {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  #page_detail #product_grid #product_preview {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  #page_detail #product_grid #product_info {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  #page_detail #product_grid #product_description {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  #page_detail #product_grid #product_sidebar {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    -ms-grid-row-span: 3;
  }
}

@media screen and (min-width: 1680px) {
  #page_detail #product_grid {
    -ms-grid-rows: auto auto auto 1fr;
    -ms-grid-columns: 1fr 340px 340px;
    grid-template-rows: auto auto auto 1fr;
    grid-template-columns: 1fr 340px 340px;
    grid-template-areas: 'header header header' 'label label label' 'preview info sidebar' 'description description sidebar';
  }

  #page_detail #product_grid #product_header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  #page_detail #product_grid #product_label {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }

  #page_detail #product_grid #product_preview {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  #page_detail #product_grid #product_info {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }

  #page_detail #product_grid #product_description {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  #page_detail #product_grid #product_sidebar {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    -ms-grid-row-span: 2;
  }

  #page_detail #product_grid #product_info {
    margin: 0 0 0 20px;
  }

  #page_detail #product_grid #product_description {
    margin-top: 20px;
  }
}

#page_detail #page_body #product_header {
  margin: 10px 0;
  padding: 0 10px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_header {
    padding: 0;
  }
}

#page_detail #page_body #product_title {
  padding: 0 5px;
  font-size: 1.1rem;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_title {
    padding: 0;
  }
}

#page_detail #page_body #product_label {
  margin: 10px 0 0 0;
  padding: 0 10px;
  font-size: 0.8rem;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_label {
    margin: 0 0 10px 0;
    padding: 0;
  }
}

#page_detail #page_body #product_label ul {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #e6e6e6;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_label ul {
    padding: 0;
    background: none;
  }
}

#page_detail #page_body #product_label ul .label-name {
  margin-right: 10px;
  padding: 2px 5px;
  color: #fff;
  background-color: #ea335e;
}

#page_detail #page_body #product_info {
  padding: 0 10px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_info {
    padding: 0;
    background-color: #e6e6e6;
  }
}

#page_detail #page_body #product_info .wrapper {
  padding: 10px;
  background-color: #e6e6e6;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_info .wrapper {
    padding: 0 20px;
  }
}

@media screen and (min-width: 1280px) {
  #page_detail #page_body #product_info .wrapper {
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  #page_detail #page_body #product_info .wrapper > div {
    width: 48%;
  }
}

@media screen and (min-width: 1680px) {
  #page_detail #page_body #product_info .wrapper {
    display: block;
  }

  #page_detail #page_body #product_info .wrapper > div {
    width: auto;
  }
}

#page_detail #page_body #product_info .title {
  font-size: 1rem;
}

#page_detail #page_body #product_info .info .btn-sample {
  color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  margin: 20px 0;
  display: none;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_info .info .btn-sample {
    margin: 20px auto;
    max-width: 320px;
    display: block;
  }
}

#page_detail #page_body #product_info .info .review-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page_detail #page_body #product_info .info .review-rating .score {
  margin: 0 20px 0 10px;
}

#page_detail #page_body #product_info .info .review-rating .link a {
  font-size: 0.9rem;
}

#page_detail #page_body #product_info .info .actor a {
  margin-right: 5px;
  display: inline-block;
  font-size: 0.9rem;
}

#page_detail #page_body #product_info table {
  margin: 10px 0;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

#page_detail #page_body #product_info table tr {
  border-top: 1px solid #ccc;
}

#page_detail #page_body #product_info table th,
#page_detail #page_body #product_info table td {
  padding: 5px 5px;
}

#page_detail #page_body #product_info table th {
  padding-left: 0;
  min-width: 140px;
  font-size: 1rem;
  vertical-align: top;
}

#page_detail #page_body #product_info table td {
  font-size: 0.9rem;
}

#page_detail #page_body #product_info .tags ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_info .tags ul {
    margin-top: 20px;
  }
}

#page_detail #page_body #product_info .tags ul li {
  padding: 4px;
  width: 50%;
  height: 56px;
}

@media screen and (min-width: 400px) {
  #page_detail #page_body #product_info .tags ul li {
    width: 33.2%;
  }
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_info .tags ul li {
    margin: 0 10px 10px 0;
    width: auto;
    height: auto;
  }
}

#page_detail #page_body #product_info .tags ul li a {
  width: 100%;
  height: 100%;
  font-size: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_info .tags ul li a {
    height: auto;
    font-size: 0.75rem;
  }
}

#page_detail #page_body #product_preview .review-rating {
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page_detail #page_body #product_preview .review-rating .score {
  margin: 0 20px 0 10px;
}

#page_detail #page_body #product_preview .review-rating .link a {
  font-size: 0.9rem;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_preview .review-rating {
    display: none;
  }
}

#page_detail #page_body #product_image {
  padding-top: 56.25%;
  position: relative;
  background-color: #fff;
}

@media screen and (min-width: 1280px) {
  #page_detail #page_body #product_image {
    padding-top: 0;
    height: 500px;
  }
}

#page_detail #page_body #product_image .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#page_detail #page_body #product_image .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: 'object-fit: scale-down;';
}

#page_detail #page_body #product_video {
  padding-top: 56.25%;
  position: relative;
  background-color: #fff;
}

@media screen and (min-width: 1280px) {
  #page_detail #page_body #product_video {
    height: 500px;
  }
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_video.float:not(.video-hide) .wrapper {
    position: fixed;
    width: 320px;
    height: 180px;
    right: 10px;
    bottom: 10px;
    z-index: 2;
  }

  #page_detail #page_body #product_video.float:not(.video-hide) .wrapper .sub-wrapper .play-control:before {
    font-size: 2rem;
    padding: 0.5rem;
  }
}

#page_detail #page_body #product_video.video-hide {
  padding: 0;
  height: 0;
  overflow: hidden;
}

#page_detail #page_body #product_video:hover .close {
  opacity: 1;
}

#page_detail #page_body #product_video:hover .sub-wrapper .vjs-user-active .play-control {
  opacity: 1;
  cursor: pointer;
}

#page_detail #page_body #product_video:hover .sub-wrapper .vjs-user-active .play-control:before {
  border: 1px solid white;
  border-radius: 999px;
  padding: 1rem;
}

#page_detail #page_body #product_video .close {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  position: absolute;
  right: 5px;
  top: 5px;
  color: #fff;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999px;
}

#page_detail #page_body #product_video .close img {
  display: block;
}

#page_detail #page_body #product_video .wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

#page_detail #page_body #product_video .sub-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#page_detail #page_body #product_video .sub-wrapper .play-control {
  background: rgba(0, 0, 0, 0.5) no-repeat center;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page_detail #page_body #product_video .sub-wrapper .play-control:before {
  content: '';
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
  font-size: 5rem;
}

#page_detail #page_body #product_video .sub-wrapper .vjs-paused .play-control:before {
  content: "\F101";
}

#page_detail #page_body #product_video .sub-wrapper .vjs-playing .play-control:before {
  content: "\F103";
}

#page_detail #page_body #product_video .sub-wrapper .vjs-ended .play-control:before {
  content: "\F116";
}

#page_detail #page_body #product_video .video-js {
  width: 100%;
  height: 100%;
}

#page_detail #page_body #product_thumbnail {
  margin-top: 30px;
  height: 100px;
  position: relative;
}

#page_detail #page_body #product_thumbnail #thumbnail_swiper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_thumbnail #thumbnail_swiper {
    left: 40px;
    right: 40px;
  }
}

#page_detail #page_body #product_thumbnail #thumbnail_swiper .swiper-slide {
  width: 30%;
  max-width: 160px;
  height: 100px;
}

#page_detail #page_body #product_thumbnail #thumbnail_swiper .swiper-slide a {
  padding: 5px 10px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

#page_detail #page_body #product_thumbnail #thumbnail_swiper .swiper-slide a:hover {
  opacity: 0.75;
}

#page_detail #page_body #product_thumbnail #thumbnail_swiper .swiper-slide .thumbnail {
  width: 100%;
  height: 100%;
}

#page_detail #page_body #product_thumbnail #thumbnail_swiper .swiper-slide .thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: 'object-fit: scale-down;';
}

#page_detail #page_body #product_thumbnail #thumbnail_prev,
#page_detail #page_body #product_thumbnail #thumbnail_next {
  display: none;
  position: absolute;
  top: 2px;
  height: 100%;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_thumbnail #thumbnail_prev,
  #page_detail #page_body #product_thumbnail #thumbnail_next {
    display: block;
  }
}

#page_detail #page_body #product_thumbnail #thumbnail_prev.swiper-button-disabled,
#page_detail #page_body #product_thumbnail #thumbnail_next.swiper-button-disabled {
  opacity: 0.5;
}

#page_detail #page_body #product_thumbnail #thumbnail_prev img,
#page_detail #page_body #product_thumbnail #thumbnail_next img {
  height: 96px;
  display: block;
}

#page_detail #page_body #product_thumbnail #thumbnail_prev {
  left: 0;
}

#page_detail #page_body #product_thumbnail #thumbnail_next {
  right: 0;
}

#page_detail #page_body #product_description {
  padding: 10px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_description {
    padding: 0;
  }
}

#page_detail #page_body #product_description > div {
  margin-top: 20px;
}

#page_detail #page_body #product_description > div .header {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_description > div .header {
    border: none;
  }
}

#page_detail #page_body #product_description > div .header .icon {
  margin-right: 10px;
  width: 30px;
}

#page_detail #page_body #product_description > div .header .icon img {
  width: 100%;
  display: block;
}

#page_detail #page_body #product_description > div .header .title {
  font-size: 1.2rem;
}

#page_detail #page_body #product_description > div .body {
  margin-top: 10px;
  padding: 5px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 26px;
}

#page_detail #page_body #product_sidebar .wrapper {
  padding: 10px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar .wrapper {
    background-color: #fff;
  }
}

#page_detail #page_body #product_sidebar .title {
  font-size: 1rem;
}

#page_detail #page_body #product_sidebar_button .btn {
  margin: 10px 0;
  height: 40px;
  font-weight: bold;
}

#page_detail #page_body #product_sidebar_button .btn-sample {
  color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

#page_detail #page_body #product_sidebar_button .btn-favorite {
  color: #ea335e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar_button .btn-favorite {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #ddd;
  }
}

#page_detail #page_body #product_sidebar_button .btn-favorite span {
  margin: 0 5px;
}

#page_detail #page_body #product_sidebar_button .btn-favorite .icon img {
  display: block;
}

#page_detail #page_body #product_sidebar_button .btn-favorite .count {
  padding: 0 10px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20px;
  font-size: 0.75rem;
  background-color: #ea335e;
  border-radius: 10px;
}

#page_detail #page_body #product_sidebar #enrollment {
  margin: 20px 0;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar #enrollment {
    margin: 20px 0;
  }
}

#page_detail #page_body #product_sidebar #enrollment .button {
  padding: 10px 0;
}

#page_detail #page_body #product_sidebar #enrollment .button:first-of-type .btn {
  height: 60px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar #enrollment .button:first-of-type .btn {
    height: 80px;
  }
}

#page_detail #page_body #product_sidebar #enrollment .button .btn {
  height: 40px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page_detail #page_body #product_sidebar #enrollment .button img {
  margin: 0 auto 15px;
  max-width: 75%;
  display: block;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar #enrollment .button img {
    max-width: 90%;
  }
}

#page_detail #page_body #product_sidebar #enrollment .button p {
  margin-bottom: 15px;
  padding: 0 40px;
  font-size: 1rem;
}

#page_detail #page_body #product_sidebar #enrollment .button p.full {
  margin-bottom: 20px;
  line-height: 20px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar #enrollment .button p.full {
    padding: 0;
    line-height: 25px;
  }
}

#page_detail #page_body #product_sidebar #enrollment .button p .free {
  font-size: 0.9rem;
  display: block;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar #enrollment .button p .free {
    font-size: 1rem;
    font-weight: bold;
  }
}

#page_detail #page_body #product_sidebar #enrollment .button p .price {
  font-size: 2rem;
}

#page_detail #page_body #product_sidebar #enrollment .button p strike {
  margin-right: 5px;
  font-size: 0.9rem;
}

#page_detail #page_body #product_sidebar #product_type {
  margin-top: 20px;
}

#page_detail #page_body #product_sidebar #product_type .product-type {
  margin: 10px 0;
  border: 1px solid #ccc;
  cursor: pointer;
  background-color: #f8f8f8;
  border-radius: 3px;
}

#page_detail #page_body #product_sidebar #product_type .product-type.selected {
  background-color: #fff;
}

#page_detail #page_body #product_sidebar #product_type .product-type.selected .circle::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #ed4c0d;
  border-radius: 50%;
}

#page_detail #page_body #product_sidebar #product_type .product-type a {
  padding: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  font-size: 0.7rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page_detail #page_body #product_sidebar #product_type .product-type a .radio {
  padding: 0 10px;
}

#page_detail #page_body #product_sidebar #product_type .product-type a .radio .circle {
  background-color: #e6e6e6;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
}

#page_detail #page_body #product_sidebar #product_type .product-type a .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#page_detail #page_body #product_sidebar #product_type .product-type a .text .coupon {
  color: #ed4c0d;
}

#page_detail #page_body #product_sidebar #product_type .product-type a .text span {
  margin-right: 20px;
}

#page_detail #page_body #product_sidebar #product_type .product-type a .text span:last-child {
  margin-right: 0;
}

#page_detail #page_body #product_sidebar #product_type .product-type a .price {
  padding: 0 5px;
}

#page_detail #page_body #product_sidebar #product_type .product-type input {
  display: none;
}

#page_detail #page_body #product_sidebar #product_price {
  margin-top: 20px;
}

#page_detail #page_body #product_sidebar #product_price .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page_detail #page_body #product_sidebar #product_price .tags li {
  padding: 3px;
  width: 33%;
  font-size: 0.7rem;
}

#page_detail #page_body #product_sidebar #product_price .tags li.tag-01 span {
  background-color: #efb67d;
}

#page_detail #page_body #product_sidebar #product_price .tags li.tag-02 span {
  background-color: #fce470;
}

#page_detail #page_body #product_sidebar #product_price .tags li.tag-03 span {
  background-color: #ff7882;
}

#page_detail #page_body #product_sidebar #product_price .tags li.tag-04 span {
  background-color: #93e2d8;
}

#page_detail #page_body #product_sidebar #product_price .tags li.tag-05 span {
  background-color: #9dc0f4;
}

#page_detail #page_body #product_sidebar #product_price .tags li.tag-06 span {
  background-color: #d89ee5;
}

#page_detail #page_body #product_sidebar #product_price .tags li span {
  padding: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page_detail #page_body #product_sidebar #product_price .discount {
  margin: 10px 0;
  width: 100%;
  height: 40px;
  font-size: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 999px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar #product_price .discount {
    background-color: #eee;
    border-radius: 0;
  }
}

#page_detail #page_body #product_sidebar #product_price .delivery {
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 0.8rem;
}

#page_detail #page_body #product_sidebar #product_price .coupon {
  font-size: 1.2rem;
  height: 30px;
}

#page_detail #page_body #product_sidebar #product_price_original {
  height: 20px;
}

#page_detail #page_body #product_sidebar #product_price_current {
  height: 50px;
}

#page_detail #page_body #product_sidebar #product_price_current .price {
  margin-right: 10px;
  font-size: 2rem;
}

#page_detail #page_body #product_sidebar #product_price_current .price .yen {
  font-size: 1rem;
}

#page_detail #page_body #product_sidebar #cart_button {
  margin-top: 10px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar #cart_button {
    margin: 20px 0;
  }
}

#page_detail #page_body #product_sidebar #cart_button a,
#page_detail #page_body #product_sidebar #cart_button span {
  width: 100%;
  height: 60px;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar #cart_button a,
  #page_detail #page_body #product_sidebar #cart_button span {
    height: 80px;
  }
}

#page_detail #page_body #product_sidebar #cart_button span {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#page_detail #page_body #product_sidebar #cart_button span:hover {
  -webkit-transition: none;
  transition: none;
  -webkit-transform: none;
          transform: none;
}

#page_detail #page_body #product_sidebar #point {
  margin-top: 10px;
  width: 100%;
  height: 40px;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 999px;
}

#page_detail #page_body #product_sidebar #point .product_point {
  display: none;
}

#page_detail #page_body #product_sidebar #point .active {
  display: flex;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar #point {
    border: 1px solid #ddd;
  }
}

#page_detail #page_body #product_sidebar #favorite_button {
  margin: 10px 0;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar #favorite_button {
    display: block;
  }
}

#page_detail #page_body #product_sidebar #favorite_button .btn {
  height: 40px;
  font-weight: bold;
}

#page_detail #page_body #product_sidebar #favorite_button .btn-favorite {
  color: #ea335e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #product_sidebar #favorite_button .btn-favorite {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 1px solid #ddd;
  }
}

#page_detail #page_body #product_sidebar #favorite_button .btn-favorite span {
  margin: 0 5px;
}

#page_detail #page_body #product_sidebar #favorite_button .btn-favorite .icon img {
  display: block;
}

#page_detail #page_body #product_sidebar #favorite_button .btn-favorite .count {
  padding: 0 10px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20px;
  font-size: 0.75rem;
  background-color: #ea335e;
  border-radius: 10px;
}

#page_detail #page_body #product_sidebar #sns_share {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#page_detail #page_body #product_sidebar #sns_share span {
  margin: 0 5px;
}

#page_detail #page_body #product_sidebar #sns_share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page_detail #page_body #product_sidebar #sns_share ul li {
  margin: 0 5px;
}

#page_detail #page_body #product_sidebar #sns_share ul li img {
  width: 30px;
  height: 30px;
}

#page_detail #page_body #product_sidebar #available_device {
  margin-top: 20px;
}

#page_detail #page_body #product_sidebar #available_device .devices {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page_detail #page_body #product_sidebar #available_device .devices li {
  margin: 5px 5px;
}

#page_detail #page_body #product_sidebar #available_device .devices li .device {
  display: block;
  width: 60px;
}

#page_detail #page_body #product_sidebar #available_device .devices li .device.not-available .image {
  opacity: 0.5;
}

#page_detail #page_body #product_sidebar #available_device .devices li .device .image {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #3d425a;
}

#page_detail #page_body #product_sidebar #available_device .devices li .device .image img {
  width: 60%;
}

#page_detail #page_body #product_sidebar #available_device .devices li .device .name {
  font-size: 0.6rem;
  white-space: nowrap;
}

.vr-info {
  font-size: 0.8rem;
}

#page_detail #page_body #related .collection {
  margin-top: 20px;
  position: relative;
  height: 260px;
}

#page_detail #page_body #related .collection .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-top: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #related .collection .wrapper {
    right: 20px;
  }
}

#page_detail #page_body #related .collection-title {
  padding: 20px 0;
  font-size: 1.2rem;
}

#page_detail #page_body #related .collection-contents {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto!important;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

#page_detail #page_body #related .collection-item {
  margin-right: 10px;
}

#page_detail #page_body #related .collection-item:hover {
  opacity: 0.75;
}

#page_detail #page_body #related .collection-item img {
  display: block;
}

#page_detail #page_body #reviews {
  margin-top: 30px;
  padding: 10px;
  font-size: 0.8rem;
}

#page_detail #page_body #reviews > .header {
  padding: 10px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  position: relative;
}

#page_detail #page_body #reviews > .header::after {
  content: '';
  display: block;
  width: 12px;
  height: 100%;
  background-image: url("/imagedata/images/arrow-down-01.png");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right center;
  position: absolute;
  top: 0;
  right: 5px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #reviews > .header::after {
    background: none;
  }
}

#page_detail #page_body #reviews.open > .header::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#page_detail #page_body #reviews.open > ul {
  display: block;
}

#page_detail #page_body #reviews > ul {
  display: none;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #reviews > ul {
    display: block;
  }
}

#page_detail #page_body #reviews .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page_detail #page_body #reviews .header .icon {
  margin-right: 10px;
  width: 30px;
}

#page_detail #page_body #reviews .header .icon img {
  display: block;
  width: 100%;
  height: 100%;
}

#page_detail #page_body #reviews .review {
  margin-bottom: 10px;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

#page_detail #page_body #reviews .review .header {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page_detail #page_body #reviews .review .text {
  line-height: 23px;
}

#page_detail #page_body #reviews .review .info {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page_detail #page_body #reviews .review .info .user {
  margin-right: 20px;
  font-weight: bold;
}

#page_detail #page_body #reviews .review .vote {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page_detail #page_body #reviews .review .vote p {
  margin: 5px 10px 5px 0;
}

#page_detail #page_body #reviews .review .vote p:last-child {
  margin-right: 0;
}

#page_detail #page_body #reviews .review .vote p a {
  margin: 0 5px;
  width: 90px;
}

#page_detail #page_body #reviews .review-title {
  margin-left: 5px;
  font-size: 1rem;
}

#page_detail #page_body #reviews .review-button {
  margin: auto;
  margin-top: 40px;
  color: #222;
  width: 300px;
  height: 40px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #fff;
  border-radius: 999px;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #reviews .review-button {
    width: 480px;
    height: 60px;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1280px) {
  #page_detail #page_body #reviews .review-button {
    width: 640px;
    height: 80px;
    font-size: 1.6rem;
  }
}

#page_detail #page_body #reviews .review-button img {
  margin-right: 5px;
  width: 25px;
  height: 25px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #reviews .review-button img {
    width: 35px;
    height: 35px;
  }
}

@media screen and (min-width: 1280px) {
  #page_detail #page_body #reviews .review-button img {
    width: 40px;
    height: 40px;
  }
}

#page_detail #page_body #reviews .review-post {
  margin: 10px 0;
  display: none;
}

#page_detail #page_body #reviews .review-post .wrapper {
  margin-top: 20px;
  padding: 10px 10px;
  background-color: #fff;
  border-radius: 15px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #reviews .review-post .wrapper {
    padding: 10px 20px;
  }
}

#page_detail #page_body #reviews .review-post .required {
  margin-left: 5px;
  color: #f00;
}

#page_detail #page_body #reviews .review-post .notice .required {
  margin-left: 0;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #reviews .review-post .notice .required {
    margin-left: 5px;
  }
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #reviews .review-post .notice br.first {
    display: none;
  }
}

#page_detail #page_body #reviews .review-post .notice p {
  font-size: 0.9rem;
}

#page_detail #page_body #reviews .review-post table {
  width: 100%;
  max-width: 620px;
}

#page_detail #page_body #reviews .review-post table th {
  padding: 10px 0;
}

#page_detail #page_body #reviews .review-post table th div {
  width: 100px;
}

#page_detail #page_body #reviews .review-post table td .review-rating-post .star {
  color: #ccc;
  cursor: pointer;
}

#page_detail #page_body #reviews .review-post table td .review-rating-post .star span {
  font-size: 1.5rem;
}

#page_detail #page_body #reviews .review-post table td .review-rating-post .star span.active {
  color: #fc3;
}

#page_detail #page_body #reviews .review-post table td textarea {
  width: 100%;
  max-width: 480px;
  height: 100px;
  border: 1px solid #ccc;
  border-radius: 3px;
  resize: none;
}

#page_detail #page_body #reviews .review-post table td p {
  margin-top: -10px;
}

#page_detail #page_body #reviews .review-post .button {
  margin: 10px 0;
  padding-top: 10px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #reviews .review-post .button {
    width: 100%;
    max-width: 620px;
  }
}

#page_detail #page_body #reviews .review-post .button a {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 240px;
  height: 40px;
}

#page_detail #page_body #reviews .review-post .complete {
  padding: 20px 0;
}

#page_detail #page_body #keywords {
  margin-top: 40px;
  padding: 10px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #keywords {
    border-top: 1px solid #ccc;
  }
}

#page_detail #page_body #keywords ul {
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 400px) {
  #page_detail #page_body #keywords ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#page_detail #page_body #keywords ul li {
  padding: 10px 5px;
  width: 100%;
  font-size: 0.8rem;
}

@media screen and (min-width: 400px) {
  #page_detail #page_body #keywords ul li {
    width: 45%;
  }
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #keywords ul li {
    width: 30%;
  }
}

@media screen and (min-width: 1280px) {
  #page_detail #page_body #keywords ul li {
    width: 24%;
    max-width: 250px;
  }
}

#page_detail #page_body #keywords ul li a {
  color: #222;
}

#page_detail #page_body #popular_tags {
  margin-top: 30px;
  padding: 10px;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #popular_tags {
    padding: 40px 0;
    border-top: 1px solid #ccc;
  }
}

#page_detail #page_body #popular_tags .header {
  padding: 10px 0;
}

#page_detail #page_body #popular_tags .header .title {
  font-size: 1.5rem;
}

#page_detail #page_body #popular_tags ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #popular_tags ul {
    margin-top: 20px;
  }
}

#page_detail #page_body #popular_tags ul li {
  padding: 4px;
  width: 50%;
  height: 56px;
}

@media screen and (min-width: 400px) {
  #page_detail #page_body #popular_tags ul li {
    width: 33.2%;
  }
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #popular_tags ul li {
    margin: 0 10px 10px 0;
    width: auto;
    height: auto;
  }
}

#page_detail #page_body #popular_tags ul li a {
  width: 100%;
  height: 100%;
  font-size: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #popular_tags ul li a {
    height: auto;
    font-size: 0.75rem;
  }
}

#page_detail #preview_images {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
}

#page_detail #preview_images .wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 800px) {
  #page_detail #preview_images .wrapper {
    padding: 10px 0;
  }
}

#page_detail #preview_images .header {
  padding: 0 10px;
  position: fixed;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}

@media screen and (min-width: 800px) {
  #page_detail #preview_images .header {
    display: none;
  }
}

#page_detail #preview_images .header .button {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page_detail #preview_images .images {
  width: 100%;
  min-width: 0;
  min-height: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (min-width: 800px) {
  #page_detail #preview_images .images {
    height: 100%;
  }
}

@media all and (-ms-high-contrast: none) {
  #page_detail #preview_images *::-ms-backdrop,
  #page_detail #preview_images .images {
    padding-top: 50px;
  }
}

#page_detail #preview_images .image {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  #page_detail #preview_images .image {
    display: none;
    margin: 0;
    width: 100%;
    height: 100%;
  }

  #page_detail #preview_images .image.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#page_detail #preview_images .image img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

#page_detail #preview_images .footer {
  display: none;
  height: 60px;
}

@media screen and (min-width: 800px) {
  #page_detail #preview_images .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  #page_detail #preview_images .footer a {
    margin: 0 10px;
  }

  #page_detail #preview_images .footer a.disabled {
    opacity: 0.5;
  }
}

#page_detail #cart_icon {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 80px;
  height: 80px;
  z-index: 2;
  background-color: #fff;
  border-radius: 999px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  display: none;
}

#page_detail #cart_icon.show {
  display: block;
}

#page_detail #cart_icon.with-video {
  bottom: 200px;
}

#page_detail #cart_icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

#page_release #page_body ul {
  margin-top: 20px;
  background-color: #fff;
}

@media screen and (min-width: 800px) {
  #page_release #page_body ul {
    height: 600px;
    overflow-y: auto;
  }
}

#page_release #page_body li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 120px 1fr;
  grid-template-columns: 120px 1fr;
  grid-template-areas: 'date label' 'title title' 'subtitle subtitle' 'body body';
}

#page_release #page_body li .release-date {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
}

#page_release #page_body li .release-label {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
}

#page_release #page_body li .release-title {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

#page_release #page_body li .release-subtitle {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

#page_release #page_body li .release-body {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

#page_release #page_body li .release-date {
  grid-area: date;
}

#page_release #page_body li .release-label {
  grid-area: label;
}

#page_release #page_body li .release-title {
  grid-area: title;
}

#page_release #page_body li .release-subtitle {
  grid-area: subtitle;
}

#page_release #page_body li .release-body {
  grid-area: body;
}

@media screen and (min-width: 800px) {
  #page_release #page_body li {
    grid-template-columns: 120px 1fr auto;
    grid-template-areas: 'date title label' 'date subtitle label' 'date body label';
    -ms-grid-columns: 120px 1fr auto;
  }

  #page_release #page_body li .release-date {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-row-span: 3;
  }

  #page_release #page_body li .release-label {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-row-span: 3;
  }

  #page_release #page_body li .release-title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }

  #page_release #page_body li .release-subtitle {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }

  #page_release #page_body li .release-body {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
}

#page_release #page_body li {
  padding: 10px;
  border-bottom: 1px dashed #444;
}

@media screen and (min-width: 800px) {
  #page_release #page_body li .release-date {
    padding: 5px 0;
  }
}

@media screen and (min-width: 800px) {
  #page_release #page_body li .release-label {
    padding: 5px 0;
  }
}

#page_release #page_body li .release-label span {
  margin: 0 5px;
  padding: 2px 10px;
  color: #fff;
  font-size: 0.8rem;
  display: inline-block;
  background-color: #262626;
}

#page_release #page_body li .release-title {
  padding: 5px 0;
}

#page_release #page_body li .release-body {
  font-size: 0.8rem;
}

#page_release_detail #page_body {
  margin-top: 20px;
  padding: 10px 0;
  background-color: #fff;
}

#page_release_detail #page_body .top {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page_release_detail #page_body .top .release-date {
  padding: 2px 10px 2px 0;
}

#page_release_detail #page_body .top .release-label span {
  margin: 0 5px;
  padding: 2px 10px;
  color: #fff;
  font-size: 0.8rem;
  display: inline-block;
  background-color: #262626;
}

#page_release_detail #page_body .middle .release-title {
  padding: 10px;
  border-bottom: 1px dashed #444;
}

#page_release_detail #page_body .bottom {
  padding: 10px;
}

#page_release_detail #page_body .bottom .release-body {
  font-size: 0.8rem;
}

#page_play #player {
  margin: 20px auto;
  max-width: 800px;
}

#page_play #video {
  width: 100%;
}

#page_company {
  padding: 10px 10px 50px 10px;
}

#page_company #page_title {
  font-size: 1.2rem;
}

@media screen and (min-width: 800px) {
  #page_company #page_title {
    font-size: 1.5rem;
  }
}

#page_company table {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
}

#page_company table tr {
  border-top: 1px solid #ccc;
}

#page_company table tr:last-child {
  border-bottom: 1px solid #ccc;
}

#page_company table tr th,
#page_company table tr td {
  display: block;
  text-align: left;
}

@media screen and (min-width: 800px) {
  #page_company table tr th,
  #page_company table tr td {
    display: table-cell;
  }
}

#page_company table tr th {
  padding-top: 5px;
  font-size: 1rem;
}

@media screen and (min-width: 800px) {
  #page_company table tr th {
    padding: 10px 0;
    width: 260px;
    font-size: 1.2rem;
  }
}

#page_company table tr td {
  padding: 5px 0;
  font-size: 0.8rem;
}

@media screen and (min-width: 800px) {
  #page_company table tr td {
    padding: 10px 0;
    font-size: 1rem;
  }
}

#page_privacy {
  padding: 10px 10px 50px 10px;
  max-width: 640px;
  font-size: 0.9rem;
}

#page_privacy #page_title {
  font-size: 1.2rem;
}

@media screen and (min-width: 800px) {
  #page_privacy #page_title {
    font-size: 1.8rem;
  }
}

#page_privacy #page_body {
  line-height: 1.5rem;
  text-align: justify;
}

#page_privacy #page_body p {
  margin: 20px 0;
}

#page_privacy #page_body ul {
  padding-left: 20px;
}

#page_privacy #page_body ul li {
  margin: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page_legal {
  padding: 10px 10px 50px 10px;
}

#page_legal #page_title {
  font-size: 1.2rem;
}

@media screen and (min-width: 800px) {
  #page_legal #page_title {
    font-size: 1.8rem;
  }
}

#page_legal #page_body p {
  margin: 20px 0;
}

#page_legal #page_body p:first-child {
  margin-top: 0;
}

#page_legal #page_footer {
  margin-top: 20px;
}

#page_legal #page_footer .wrapper {
  padding: 15px;
  background-color: #fff;
  border-radius: 15px;
}

#page_legal #page_footer .wrapper p {
  margin-bottom: 15px;
  font-size: 0.8rem;
}

#page_legal #page_footer .wrapper p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 800px) {
  #page_legal #page_footer .wrapper p {
    font-size: 1rem;
  }
}

#page_legal table.outer {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

#page_legal table.outer > tbody > tr {
  border-top: 1px solid #ccc;
}

#page_legal table.outer > tbody > tr:last-child {
  border-bottom: 1px solid #ccc;
}

#page_legal table.outer > tbody > tr > th,
#page_legal table.outer > tbody > tr > td {
  display: block;
  text-align: left;
}

@media screen and (min-width: 800px) {
  #page_legal table.outer > tbody > tr > th,
  #page_legal table.outer > tbody > tr > td {
    display: table-cell;
  }
}

#page_legal table.outer > tbody > tr > th {
  padding-top: 5px;
  font-size: 1rem;
}

@media screen and (min-width: 800px) {
  #page_legal table.outer > tbody > tr > th {
    padding: 10px 0;
    width: 300px;
    font-size: 1.2rem;
  }
}

#page_legal table.outer > tbody > tr > th br {
  display: none;
}

@media screen and (min-width: 800px) {
  #page_legal table.outer > tbody > tr > th br {
    display: block;
  }
}

#page_legal table.outer > tbody > tr > td {
  padding: 5px 0;
  font-size: 0.8rem;
}

@media screen and (min-width: 800px) {
  #page_legal table.outer > tbody > tr > td {
    padding: 10px 0;
    font-size: 1rem;
  }
}

#page_legal table.inner {
  width: 100%;
  border-collapse: collapse;
}

#page_legal table.inner tr.line1 {
  background-color: #ddd;
}

#page_legal table.inner tr.line2 {
  background-color: #c9e3f1;
}

#page_legal table.inner tr.line3 {
  background-color: #dcebf3;
}

#page_legal table.inner tr th,
#page_legal table.inner tr td {
  padding: 5px 20px;
  min-width: 120px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

#page_legal table.inner tr td.price {
  text-align: right;
}

#page_legal .table-wrapper {
  display: block;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
}

#page_terms {
  padding: 10px 10px 50px 10px;
  font-size: 0.9rem;
}

#page_terms #page_title {
  font-size: 1.2rem;
}

@media screen and (min-width: 800px) {
  #page_terms #page_title {
    font-size: 1.8rem;
  }
}

#page_terms #page_body {
  text-align: justify;
}

#page_terms #page_body .rulemenu {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page_terms #page_body .rulemenu a {
  margin: 5px 20px 5px 0;
  padding: 8px 20px;
  border: 1px solid #ccc;
  border-radius: 999px;
}

#page_terms #page_body .rulemenu a:last-child {
  margin-right: 0;
}

#page_terms #page_body .rulemenu a.active {
  color: #fff;
  background-color: #090909;
}

#page_terms #page_body .ruletitle {
  margin: 20px 0;
  font-size: 1.2rem;
  font-weight: bold;
}

#page_terms #page_body .rule-wrapper {
  max-width: 640px;
}

#page_terms #page_body h4 {
  margin: 20px 0;
}

#page_terms #page_body p.p10 {
  padding: 5px 10px;
}

#page_terms #page_body p.p20 {
  padding: 5px 20px;
}

#page_terms #page_body p.p30 {
  padding: 5px 30px;
}

/*miyagawa↓*/

body.cart {
  min-width: 300px;
}

@media screen and (max-width: 800px) {
  body.cart .sp_none {
    display: none !important;
  }
}

body.cart .breadcrumb {
  font-size: 0.8rem;
}

@media screen and (max-width: 800px) {
  body.cart .breadcrumb {
    margin-bottom: 20px;
  }
}

body.cart .breadcrumb ul {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body.cart .mb20 {
  margin-bottom: 20px;
}

body.cart main #container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 800px) {
  body.cart main #container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body.cart #main #content {
  margin: 0;
  padding: 0 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 800px) {
  body.cart #main #content {
    padding: 0 10px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}

@media screen and (max-width: 1000px) {
  body.cart #page_header {
    margin-bottom: 10px;
  }
}

body.cart #page_header #page_title {
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 2rem;
  letter-spacing: -1px;
}

body.cart #page_header .page_comment {
  margin-bottom: 10px;
}

body.cart .flow {
  margin-top: 20px;
  padding: 20px 0;
}

@media screen and (max-width: 1000px) {
  body.cart .flow {
    display: none;
    margin-top: 20px;
    padding: 0;
  }
}

body.cart .flow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  body.cart .flow ul {
    display: none;
  }
}

body.cart .flow ul li {
  margin-right: 10px;
}

body.cart .flow ul li.active {
  color: #ed4c0d;
}

body.cart .flow ul li:not(:last-child)::after {
  color: #000;
  content: '-';
  text-align: center;
  width: 30px;
  display: inline-block;
  line-height: 30px;
}

body.cart #page_cart_home {
  padding-top: 20px;
  padding-bottom: 40px;
}

body.cart #page_cart_home .purchase-info {
  display: none;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .purchase-info {
    display: block;
    padding: 20px 0;
  }
}

body.cart #page_cart_home .purchase-info .order {
  padding: 10px 0 10px 0;
  text-align: center;
}

body.cart #page_cart_home .purchase-info .comment {
  margin-top: 10px;
  padding: 10px 0;
  text-align: left;
  border-top: 1px solid #ccc;
}

body.cart #page_cart_home .product_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #ccc;
  padding: 10px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .product_nav {
    padding: 10px;
  }
}

body.cart #page_cart_home .product_nav .form-checker {
  margin-right: 10px;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .product_nav {
    font-size: 0.9rem;
  }
}

body.cart #page_cart_home .product_nav .check-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.cart #page_cart_home .product_nav .check-all label {
  position: relative;
}

body.cart #page_cart_home .product_nav .check-all label input {
  opacity: 0;
}

body.cart #page_cart_home .product_nav .check-all .image {
  margin-right: 5px;
}

body.cart #page_cart_home .product_nav .check-all .image img {
  display: block;
}

body.cart #page_cart_home .product_nav .delete a {
  padding: 5px 10px;
  color: #999;
  font-size: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 999px;
  white-space: nowrap;
}

body.cart #page_cart_home .product_nav .price {
  font-size: 1.2rem;
}

body.cart #page_cart_home .product_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .product_item_tilte {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .product_item_tilte {
    display: none;
  }
}

body.cart #page_cart_home .product_item_tilte .wrap {
  width: 100%;
}

body.cart #page_cart_home .product_item .box {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .product_item .box {
    padding: 10px;
  }
}

@media screen and (max-width: 480px) {
  body.cart #page_cart_home .product_item .box {
    font-size: 0.8rem;
  }
}

body.cart #page_cart_home .product_item .box_01 {
  width: 62%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .product_item .box_01 {
    width: 100%;
  }
}

body.cart #page_cart_home .product_item .box_02 {
  width: 19%;
  background-color: #dcebf3;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .product_item .box_02 {
    display: none;
  }
}

body.cart #page_cart_home .product_item .box_03 {
  padding-bottom: 0;
  width: 19%;
  background-color: #c9e3f1;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .product_item .box_03 {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .product_item .box_03 {
    width: 100%;
    background-color: transparent;
  }
}

body.cart #page_cart_home .product_item .box_04 {
  width: 19%;
  background-color: #dcebf3;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .product_item .box_04 {
    display: none;
  }
}

body.cart #page_cart_home .product_item .box_05 {
  width: 6%;
  background-color: #c9e3f1;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .product_item .box_05 {
    margin-left: 165px;
    width: auto;
    float: left;
    background-color: transparent;
  }
}

body.cart #page_cart_home .product_item .box_06 {
  width: 13%;
  background-color: #c9e3f1;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .product_item .box_06 {
    margin-left: 1em;
    width: auto;
    float: left;
    background-color: transparent;
  }
}

body.cart #page_cart_home .product_item .box .amount {
  width: 100%;
  text-align: center;
}

body.cart #page_cart_home .product_item .check label {
  position: relative;
}

body.cart #page_cart_home .product_item .check label input {
  opacity: 0;
}

body.cart #page_cart_home .product_item .thumbnail {
  margin-right: 5px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .product_item .thumbnail {
    width: 180px;
  }
}

body.cart #page_cart_home .product_item .thumbnail .image {
  width: 120px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 15px;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .product_item .thumbnail .image {
    max-width: 170px;
    width: auto;
  }
}

body.cart #page_cart_home .product_item .thumbnail .image img {
  display: block;
  max-width: 150px;
  max-height: 150px;
}

body.cart #page_cart_home .product_item .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body.cart #page_cart_home .product_item .info .title {
  word-break: break-all;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1em;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .product_item .info .title {
    font-size: 0.9rem;
    font-weight: normal;
    margin-bottom: 1em;
    line-height: 1.5;
  }
}

body.cart #page_cart_home .product_item .info .limit {
  font-size: 0.8rem;
}

body.cart #page_cart_home .product_item .txt {
  font-size: 0.8rem;
}

body.cart #page_cart_home .product_item .price {
  font-size: 1.2rem;
  font-weight: bold;
  width: 100%;
}

body.cart #page_cart_home .product.cart-mail .grid {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  -ms-grid-columns: auto auto auto 1fr;
  grid-template-areas: 'check thumbnail info info' 'check thumbnail amount total-price';
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .product.cart-mail .grid {
    grid-template-columns: auto auto 1fr 19% 6% 13%;
    grid-template-areas: 'check thumbnail info single-price amount total-price';
  }
}

body.cart #page_cart_home .product.cart-mail .grid .check {
  grid-area: check;
}

body.cart #page_cart_home .product.cart-mail .grid .thumbnail {
  grid-area: thumbnail;
}

body.cart #page_cart_home .product.cart-mail .grid .info {
  grid-area: info;
}

body.cart #page_cart_home .product.cart-mail .grid .single-price {
  grid-area: single-price;
}

body.cart #page_cart_home .product.cart-mail .grid .amount {
  grid-area: amount;
}

body.cart #page_cart_home .product.cart-mail .grid .total-price {
  grid-area: total-price;
}

body.cart #page_cart_home .product.cart-mail .grid .check {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-row-span: 2;
}

body.cart #page_cart_home .product.cart-mail .grid .thumbnail {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-row-span: 2;
}

body.cart #page_cart_home .product.cart-mail .grid .info {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 2;
}

body.cart #page_cart_home .product.cart-mail .grid .amount {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}

body.cart #page_cart_home .product.cart-mail .grid .total-price {
  -ms-grid-row: 2;
  -ms-grid-column: 4;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .product.cart-mail .grid {
    -ms-grid-columns: auto auto 1fr 19% 6% 13%;
  }

  body.cart #page_cart_home .product.cart-mail .grid .check {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-row-span: 1;
  }

  body.cart #page_cart_home .product.cart-mail .grid .thumbnail {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-row-span: 1;
  }

  body.cart #page_cart_home .product.cart-mail .grid .info {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-row-span: 1;
  }

  body.cart #page_cart_home .product.cart-mail .grid .single-price {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }

  body.cart #page_cart_home .product.cart-mail .grid .amount {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }

  body.cart #page_cart_home .product.cart-mail .grid .total-price {
    -ms-grid-row: 1;
    -ms-grid-column: 6;
  }
}

body.cart #page_cart_home .product.cart-mail .grid .check,
body.cart #page_cart_home .product.cart-mail .grid .thumbnail,
body.cart #page_cart_home .product.cart-mail .grid .info,
body.cart #page_cart_home .product.cart-mail .grid .single-price,
body.cart #page_cart_home .product.cart-mail .grid .amount,
body.cart #page_cart_home .product.cart-mail .grid .total-price {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body.cart #page_cart_home .product.cart-mail .grid .thumbnail,
body.cart #page_cart_home .product.cart-mail .grid .amount,
body.cart #page_cart_home .product.cart-mail .grid .single-price {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.cart #page_cart_home .product.cart-mail .grid .total-price {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 0.5em;
}

body.cart #page_cart_home .product.cart-mail .grid .thumbnail .image {
  width: 100%;
}

body.cart #page_cart_home .product.cart-mail .grid .single-price,
body.cart #page_cart_home .product.cart-mail .grid .amount,
body.cart #page_cart_home .product.cart-mail .grid .total-price {
  padding-top: 0;
}

body.cart #page_cart_home .product.cart-mail .grid .single-price {
  display: none;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .product.cart-mail .grid .single-price,
  body.cart #page_cart_home .product.cart-mail .grid .amount,
  body.cart #page_cart_home .product.cart-mail .grid .total-price {
    padding-top: 10px;
  }

  body.cart #page_cart_home .product.cart-mail .grid .single-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  body.cart #page_cart_home .product.cart-mail .grid .total-price {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-left: 0;
  }

  body.cart #page_cart_home .product.cart-mail .grid .single-price {
    background-color: #dcebf3;
  }

  body.cart #page_cart_home .product.cart-mail .grid .amount,
  body.cart #page_cart_home .product.cart-mail .grid .total-price {
    background-color: #c9e3f1;
  }
}

body.cart #page_cart_home .more {
  padding: 10px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

body.cart #page_cart_home .more .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .more .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

body.cart #page_cart_home .more .box.box_01 {
  font-size: 0.9rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .more .box.box_01 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

body.cart #page_cart_home .more .box.box_02 {
  width: 100%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 400px) {
  body.cart #page_cart_home .more .box.box_02 {
    width: 360px;
  }
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .more .box.box_02 {
    width: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

body.cart #page_cart_home .more .box.box_02 .wrap {
  padding: 10px 0;
  width: 100%;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .more .box.box_02 .wrap {
    padding: 0;
  }
}

body.cart #page_cart_home .more .box.box_02 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 80px;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_home .more .box.box_02 a {
    padding: 10px 30px;
    width: 200px;
    height: 60px;
  }
}

body.cart #page_cart_home .more .box .tilte {
  float: left;
  padding: 10px;
}

body.cart #page_cart_home .more .box .itmes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
}

body.cart #page_cart_home .more .box .itmes li {
  margin-right: 10px;
}

body.cart #page_cart_home .account {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .account {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

body.cart #page_cart_home .account > div {
  margin-bottom: 30px;
  margin-right: 20px;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_home .account > div {
    margin: 0 10px 30px;
  }
}

body.cart #page_cart_home .account > div p {
  margin-bottom: 20px;
  font-weight: bold;
}

body.cart #page_cart_home .account > div a {
  padding: 15px 40px;
  width: 200px;
}

body.cart #page_cart_home #recommend {
  width: 100%;
  margin-top: 40px;
  padding: 20px 0;
}

body.cart #page_cart_home #recommend .title {
  padding: 20px 0;
}

body.cart #page_cart_home #recommend .table-scroll {
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
}

body.cart #page_cart_home #recommend .table-scroll table {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #ddd;
}

body.cart #page_cart_home #recommend .table-scroll .items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

body.cart #page_cart_home #recommend .table-scroll .items li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

body.cart #page_cart_home #recommend .table-scroll .items li .image {
  width: 115px;
  height: 160px;
}

body.cart #page_cart_home #recommend .table-scroll .items li .image img {
  width: 100%;
  height: 100%;
  display: block;
}

body.cart #page_cart_confirm {
  padding-top: 20px;
  padding-bottom: 40px;
}

body.cart #page_cart_confirm .product_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_confirm .product_item_tilte {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_confirm .product_item_tilte {
    display: none;
  }
}

body.cart #page_cart_confirm .product_item_tilte .wrap {
  width: 100%;
}

body.cart #page_cart_confirm .product_item .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 480px) {
  body.cart #page_cart_confirm .product_item .box {
    font-size: 0.8rem;
  }
}

body.cart #page_cart_confirm .product_item .box_01 {
  width: 62%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_confirm .product_item .box_01 {
    width: 100%;
  }
}

body.cart #page_cart_confirm .product_item .box_02 {
  width: 19%;
  background-color: #dcebf3;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_confirm .product_item .box_02 {
    display: none;
  }
}

body.cart #page_cart_confirm .product_item .box_03 {
  width: 19%;
  background-color: #c9e3f1;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_confirm .product_item .box_03 {
    width: 100%;
    background-color: transparent;
  }
}

body.cart #page_cart_confirm .product_item .check {
  display: none;
}

body.cart #page_cart_confirm .product_item .thumbnail {
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 200px;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_confirm .product_item .thumbnail {
    width: 180px;
    display: none;
  }
}

body.cart #page_cart_confirm .product_item .thumbnail .image {
  width: 170px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_confirm .product_item .thumbnail .image {
    max-width: 170px;
    width: auto;
  }
}

body.cart #page_cart_confirm .product_item .thumbnail .image img {
  display: block;
  max-width: 150px;
  max-height: 150px;
}

body.cart #page_cart_confirm .product_item .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body.cart #page_cart_confirm .product_item .info .title {
  word-break: break-all;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1em;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_confirm .product_item .info .title {
    font-size: 0.9rem;
    font-weight: normal;
    margin-bottom: 1em;
    line-height: 1.5;
  }
}

body.cart #page_cart_confirm .product_item .info .limit {
  font-size: 0.8rem;
}

body.cart #page_cart_confirm .product_item .txt {
  font-size: 0.8rem;
}

body.cart #page_cart_confirm .product_item .price {
  font-size: 1.2rem;
  font-weight: bold;
  width: 100%;
}

body.cart #page_cart_confirm .product .details {
  background-color: #ddd;
  padding: 10px;
}

body.cart #page_cart_confirm .product .summary {
  padding: 10px 0;
  border-top: 1px solid #ccc;
}

body.cart #page_cart_confirm .product .summary_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body.cart #page_cart_confirm .product .summary_item-bgr {
  margin-top: 10px;
  padding: 10px 0;
  background-color: #ddd;
}

body.cart #page_cart_confirm .product .summary_item .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.9rem;
}

body.cart #page_cart_confirm .product .summary_item .box-total {
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 480px) {
  body.cart #page_cart_confirm .product .summary_item .box {
    font-size: 0.8rem;
  }
}

body.cart #page_cart_confirm .product .summary_item .box_01 {
  width: 62%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_confirm .product .summary_item .box_01 {
    width: 100%;
  }
}

body.cart #page_cart_confirm .product .summary_item .box_02 {
  width: 19%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_confirm .product .summary_item .box_02 {
    width: 50%;
  }
}

body.cart #page_cart_confirm .product .summary_item .box_03 {
  width: 19%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_confirm .product .summary_item .box_03 {
    width: 50%;
  }
}

body.cart #page_cart_confirm .product .summary_item .box .text-right {
  width: 100%;
  text-align: right;
}

body.cart #page_cart_confirm .product .summary_item .box .total-price {
  padding: 0;
}

body.cart #page_cart_confirm .product .summary_item .box .total-price span.price {
  margin-left: 10px;
  font-size: 1.4rem;
  display: inline-block;
}

body.cart #page_cart_complete {
  padding-top: 20px;
  padding-bottom: 40px;
}

body.cart #page_cart_complete .complete {
  padding: 40px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

body.cart #page_cart_complete .complete .title {
  font-size: 1.3rem;
  margin: 10px 0;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_complete .complete .title {
    font-size: 1.5rem;
  }
}

body.cart #page_cart_complete .link {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

body.cart #page_cart_complete .link a {
  margin-right: 20px;
}

body.cart #page_cart_intro {
  padding-top: 20px;
  padding-bottom: 20px;
}

body.cart #page_cart_intro .product_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #ccc;
  position: relative;
}

body.cart #page_cart_intro .product_item:last-child {
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_intro .product_item_tilte {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_intro .product_item_tilte {
    display: none;
  }
}

body.cart #page_cart_intro .product_item_tilte .wrap {
  width: 100%;
}

body.cart #page_cart_intro .product_item .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.cart #page_cart_intro .product_item .box_pd_tb20 {
  padding: 20px 10px;
}

body.cart #page_cart_intro .product_item .box .wrap {
  width: 100%;
  position: relative;
}

body.cart #page_cart_intro .product_item .box .wrap p {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_intro .product_item .box .wrap p {
    text-align: right;
  }
}

@media screen and (max-width: 480px) {
  body.cart #page_cart_intro .product_item .box {
    font-size: 0.8rem;
  }
}

body.cart #page_cart_intro .product_item .box_01 {
  width: 44%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_intro .product_item .box_01 {
    width: 100%;
  }
}

body.cart #page_cart_intro .product_item .box_02 {
  width: 17%;
  background-color: #dcebf3;
}

body.cart #page_cart_intro .product_item .box_02 .value {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_intro .product_item .box_02 .value {
    text-align: right;
  }
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_intro .product_item .box_02 {
    width: 100%;
  }

  body.cart #page_cart_intro .product_item .box_02 .wrap.sp_view::before {
    content: '\5546\54C1\4EF6\6570';
    position: absolute;
    top: 5px;
    left: 0;
  }
}

body.cart #page_cart_intro .product_item .box_03 {
  width: 17%;
  background-color: #c9e3f1;
}

body.cart #page_cart_intro .product_item .box_03 .value {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_intro .product_item .box_03 {
    width: 100%;
  }

  body.cart #page_cart_intro .product_item .box_03 .wrap.sp_view::before {
    content: '\5408\8A08\91D1\984D\FF08\7A0E\8FBC\FF09';
    position: absolute;
    top: 5px;
    left: 0;
  }
}

body.cart #page_cart_intro .product_item .box_04 {
  width: 22%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_intro .product_item .box_04 {
    width: 100%;
  }

  body.cart #page_cart_intro .product_item .box_04 .wrap p {
    text-align: right;
  }

  body.cart #page_cart_intro .product_item .box_04 .wrap p.btn_confirm {
    text-align: center;
  }
}

body.cart #page_cart_intro .product_item .check {
  display: none;
}

body.cart #page_cart_intro .product_item .btn_confirm {
  text-align: center;
}

@media screen and (min-width: 1280px) {
  body.cart #page_cart_intro .product_item .btn_confirm {
    margin: 5px 0;
  }
}

body.cart #page_cart_intro .product_item .btn_confirm a {
  padding: 10px 25px;
}

@media screen and (min-width: 1000px) {
  body.cart #page_cart_intro .product_item .btn_confirm a {
    font-size: 0.675rem;
  }
}

@media screen and (min-width: 1200px) {
  body.cart #page_cart_intro .product_item .btn_confirm a {
    font-size: 0.8rem;
  }
}

body.cart #page_cart_intro .product_item .thumbnail {
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 200px;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_intro .product_item .thumbnail {
    width: 180px;
    display: none;
  }
}

body.cart #page_cart_intro .product_item .thumbnail .image {
  width: 170px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_intro .product_item .thumbnail .image {
    max-width: 170px;
    width: auto;
  }
}

body.cart #page_cart_intro .product_item .thumbnail .image img {
  display: block;
  max-width: 150px;
  max-height: 150px;
}

body.cart #page_cart_intro .product_item .info {
  width: auto;
}

body.cart #page_cart_intro .product_item .info .title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1em;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_intro .product_item .info .title {
    font-size: 0.9rem;
    font-weight: normal;
    margin-bottom: 1em;
    line-height: 1.5;
  }
}

body.cart #page_cart_intro .product_item .info .limit {
  font-size: 0.8rem;
}

body.cart #page_cart_intro .product_item .txt {
  font-size: 0.8rem;
}

body.cart #page_cart_intro .product_item .bold {
  font-size: 1.2rem;
  font-weight: bold;
  width: 100%;
}

body.cart #page_cart_intro .product .details {
  background-color: #ddd;
  padding: 10px;
}

body.cart #page_cart_delivery {
  padding-top: 20px;
  padding-bottom: 40px;
}

body.cart #page_cart_delivery .product_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
  position: relative;
}

body.cart #page_cart_delivery .product_item:last-child .box {
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery .product_item:last-child .box {
    border-bottom: 0;
  }
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery .product_item_tilte {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery .product_item_tilte {
    display: none;
  }
}

body.cart #page_cart_delivery .product_item_tilte .wrap {
  width: 100%;
}

body.cart #page_cart_delivery .product_item .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.cart #page_cart_delivery .product_item .box .wrap {
  width: 100%;
  position: relative;
}

@media screen and (max-width: 480px) {
  body.cart #page_cart_delivery .product_item .box {
    font-size: 0.8rem;
  }
}

body.cart #page_cart_delivery .product_item .box_01 {
  width: 62%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery .product_item .box_01 {
    width: 100%;
  }
}

body.cart #page_cart_delivery .product_item .box_02 {
  width: 19%;
  background-color: #dcebf3;
}

body.cart #page_cart_delivery .product_item .box_02 .value {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery .product_item .box_02 .value {
    text-align: right;
  }
}

body.cart #page_cart_delivery .product_item .box_02 .wrap {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery .product_item .box_02 {
    width: 50%;
    background: transparent;
  }

  body.cart #page_cart_delivery .product_item .box_02 .wrap.sp_view {
    text-align: left;
  }

  body.cart #page_cart_delivery .product_item .box_02 .wrap.sp_view::before {
    display: inline-block;
    content: '\500B\6570';
    margin-right: 1em;
  }
}

body.cart #page_cart_delivery .product_item .box_03 {
  width: 19%;
  background-color: #c9e3f1;
}

body.cart #page_cart_delivery .product_item .box_03 .value {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
}

body.cart #page_cart_delivery .product_item .box_03 .wrap {
  text-align: right;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery .product_item .box_03 {
    width: 50%;
    background: transparent;
  }
}

body.cart #page_cart_delivery .product_item .check {
  display: none;
}

body.cart #page_cart_delivery .product_item .btn_confirm {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery .product_item .btn_confirm {
    text-align: right;
  }
}

body.cart #page_cart_delivery .product_item .btn_confirm a {
  padding: 5px 10px;
  color: #999;
  font-size: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 999px;
  white-space: nowrap;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery .product_item .btn_confirm a {
    letter-spacing: -1px;
    font-size: 0.7rem;
  }
}

body.cart #page_cart_delivery .product_item .btn_confirm a :hover {
  pointer: cursor;
}

body.cart #page_cart_delivery .product_item .thumbnail {
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 200px;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery .product_item .thumbnail {
    width: 180px;
    display: none;
  }
}

body.cart #page_cart_delivery .product_item .thumbnail .image {
  width: 170px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery .product_item .thumbnail .image {
    max-width: 170px;
    width: auto;
  }
}

body.cart #page_cart_delivery .product_item .thumbnail .image img {
  display: block;
  max-width: 150px;
  max-height: 150px;
}

body.cart #page_cart_delivery .product_item .info {
  width: auto;
}

body.cart #page_cart_delivery .product_item .info .title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1em;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery .product_item .info .title {
    font-size: 0.9rem;
    font-weight: normal;
    margin-bottom: 1em;
    line-height: 1.5;
  }
}

body.cart #page_cart_delivery .product_item .info .limit {
  font-size: 0.8rem;
}

body.cart #page_cart_delivery .product_item .txt {
  font-size: 0.8rem;
}

body.cart #page_cart_delivery .product_item .bold {
  font-size: 1.2rem;
  font-weight: bold;
  width: 100%;
}

body.cart #page_cart_delivery .product .details {
  background-color: #ddd;
  padding: 10px;
}

body.cart #page_cart_delivery .product .summary {
  padding: 30px 0 10px;
  border-top: 1px solid #ccc;
}

body.cart #page_cart_delivery .product .summary_note {
  font-size: 0.8rem;
}

body.cart #page_cart_delivery #shipping_address {
  margin-top: 40px;
  border-bottom: 1px solid #ccc;
}

body.cart #page_cart_delivery #shipping_address .title {
  padding: 0 20px;
  font-size: 1rem;
  line-height: 40px;
  background-color: #dddddd;
  margin-bottom: 20px;
}

body.cart #page_cart_delivery #shipping_address .item .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery #shipping_address .item .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body.cart #page_cart_delivery #shipping_address .item .box_title {
  width: 240px;
  font-weight: 600;
  margin-bottom: 10px;
}

body.cart #page_cart_delivery #shipping_address .item .box_title label {
  position: relative;
  padding: 0 0 0 25px;
}

body.cart #page_cart_delivery #shipping_address .item .box_title label input {
  opacity: 0;
}

body.cart #page_cart_delivery #shipping_address .item .box_title label .image_radio {
  position: absolute;
  left: 0;
  top: -6px;
  display: block;
  background: url("/imagedata/images/radio.png") no-repeat 0 0;
  width: 30px;
  height: 30px;
}

body.cart #page_cart_delivery #shipping_address .item .box_title label input:checked + .image_radio {
  background-position: 0 -30px;
}

body.cart #page_cart_delivery #shipping_address .item .box_content {
  width: 100%;
}

body.cart #page_cart_delivery #shipping_address .form_item {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 15px 15px 15px 15px;
  max-width: 800px;
  width: 100%;
}

@media screen and (max-width: 800px) {
  body.cart #page_cart_delivery #shipping_address .form_item {
    border: none;
    border-top: 1px solid #ccc;
    border-radius: 0;
    padding: 0;
  }
}

body.cart #page_cart_delivery #shipping_address .form_item li {
  max-width: 800px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  line-height: 1.2;
}

body.cart #page_cart_delivery #shipping_address .form_item li:last-child {
  border-bottom: none;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery #shipping_address .form_item li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

body.cart #page_cart_delivery #shipping_address .form_item li > div:first-child {
  width: 280px;
  margin-top: 5px;
  margin-bottom: 5px;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery #shipping_address .form_item li > div:first-child {
    margin-bottom: 10px;
  }
}

body.cart #page_cart_delivery #shipping_address .form_item li > div:first-child span {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: -1px;
  white-space: nowrap;
}

body.cart #page_cart_delivery #shipping_address .form_item li > div:last-child {
  width: 100%;
}

body.cart #page_cart_delivery #shipping_address .form_item li input[type="text"] {
  padding: 9px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #cccccc;
  border-radius: 3px;
  font-size: .9rem;
  color: #333;
  letter-spacing: -1px;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery #shipping_address .form_item li input[type="text"] {
    margin-bottom: 0;
  }
}

body.cart #page_cart_delivery #shipping_address .form_item li input:focus,
body.cart #page_cart_delivery #shipping_address .form_item li select:focus {
  outline: 0;
}

body.cart #page_cart_delivery #shipping_address .form_item li input[type="button"] {
  padding: 7px 20px;
  border: 1px solid #eee;
  border-radius: 50px;
  background: #fff;
  font-size: .9rem;
  color: #333;
  letter-spacing: -1px;
  box-shadow: 0px 1px 0px 0px #ccc;
  -moz-box-shadow: 0px 1px 0px 0px #ccc;
  -webkit-box-shadow: 0px 1px 0px 0px #ccc;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery #shipping_address .form_item li input[type="button"] {
    margin-top: 10px;
    margin-right: 10px;
  }
}

body.cart #page_cart_delivery #shipping_address .form_item .postcode div:nth-child(2) input[type="text"] {
  margin-top: 5px;
  margin-bottom: 5px;
  width: 300px;
}

body.cart #page_cart_delivery #shipping_address .form_item .postcode div:nth-child(2) a {
  white-space: nowrap;
  font-size: 0.8rem;
  vertical-align: middle;
}

body.cart #page_cart_delivery #shipping_address .form_item .postcode div:nth-child(2) a.btn {
  padding-top: 10px;
  padding-bottom: 10px;
}

body.cart #page_cart_delivery #shipping_address .form_item .address2 div:nth-child(2),
body.cart #page_cart_delivery #shipping_address .form_item .address3 div:nth-child(2),
body.cart #page_cart_delivery #shipping_address .form_item .phone div:nth-child(2) {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
}

body.cart #page_cart_delivery #shipping_address .form_item .address2 div:nth-child(2) input[type="text"],
body.cart #page_cart_delivery #shipping_address .form_item .address3 div:nth-child(2) input[type="text"],
body.cart #page_cart_delivery #shipping_address .form_item .phone div:nth-child(2) input[type="text"] {
  width: 100%;
}

body.cart #page_cart_delivery #shipping_address .form_item .select-group {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 4px;
  border-radius: 3px;
  vertical-align: middle;
  border: 1px solid #ccc;
  background-color: #fff;
  background-repeat: no-repeat;
}

body.cart #page_cart_delivery #shipping_address .form_item .select_address select {
  position: relative;
  z-index: 1;
  line-height: 2;
  display: block;
  width: 240px;
  padding: 0;
  text-indent: 8px;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: .9rem;
}

body.cart #page_cart_delivery #shipping_address .form_item .select-group:after {
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  content: '';
  border-top: 4px solid #333;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

body.cart #page_cart_delivery #shipping_address .form_item .name div:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.cart #page_cart_delivery #shipping_address .form_item .name div:nth-child(2) .last_name {
  width: 50%;
  background: #ddd;
  font-size: .9rem;
  border-radius: 3px;
  margin-right: 10px;
  position: relative;
  padding-left: 30px;
}

@media screen and (max-width: 480px) {
  body.cart #page_cart_delivery #shipping_address .form_item .name div:nth-child(2) .last_name {
    margin-right: 5px;
  }
}

body.cart #page_cart_delivery #shipping_address .form_item .name div:nth-child(2) .last_name::before {
  content: '\59D3';
  position: absolute;
  top: 8px;
  left: 8px;
}

body.cart #page_cart_delivery #shipping_address .form_item .name div:nth-child(2) .first_name {
  width: 50%;
  background: #ddd;
  font-size: .9rem;
  margin-left: 10px;
  border-radius: 3px;
  position: relative;
  padding-left: 30px;
}

@media screen and (max-width: 480px) {
  body.cart #page_cart_delivery #shipping_address .form_item .name div:nth-child(2) .first_name {
    margin-left: 5px;
  }
}

body.cart #page_cart_delivery #shipping_address .form_item .name div:nth-child(2) .first_name::before {
  content: '\540D';
  position: absolute;
  top: 8px;
  left: 8px;
}

body.cart #page_cart_delivery #shipping_address .form_item .save div:nth-child(2) {
  line-height: 35px;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery #shipping_address .form_item .save div:nth-child(2) input[type="checkbox"] {
    margin-left: 0;
  }
}

body.cart #page_cart_delivery #shipping_address .form_item .save div:nth-child(2) label {
  position: relative;
}

body.cart #page_cart_delivery #shipping_address .form_item .save div:nth-child(2) label input {
  opacity: 0;
}

body.cart #page_cart_delivery #shipping_method {
  margin-top: 80px;
  border-bottom: 1px solid #ccc;
}

body.cart #page_cart_delivery #shipping_method .title {
  padding: 0 20px;
  font-size: 1rem;
  line-height: 40px;
  background-color: #dddddd;
  margin-bottom: 20px;
}

body.cart #page_cart_delivery #shipping_method .item .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_delivery #shipping_method .item .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body.cart #page_cart_delivery #shipping_method .item .box_title {
  width: 240px;
  font-weight: 600;
  margin-bottom: 10px;
}

body.cart #page_cart_delivery #shipping_method .item .box_title label {
  position: relative;
  padding: 0 0 0 25px;
}

body.cart #page_cart_delivery #shipping_method .item .box_title label input {
  opacity: 0;
}

body.cart #page_cart_delivery #shipping_method .item .box_title label .image_radio {
  position: absolute;
  left: 0;
  top: -6px;
  display: block;
  background: url("/imagedata/images/radio.png") no-repeat 0 0;
  width: 30px;
  height: 30px;
}

body.cart #page_cart_delivery #shipping_method .item .box_title label .image_radio:hover {
  cursor: pointer;
}

body.cart #page_cart_delivery #shipping_method .item .box_title label input:checked + .image_radio {
  background-position: 0 -30px;
}

body.cart #page_cart_delivery #shipping_method .item .box_content {
  width: 100%;
}

body.cart #page_cart_point {
  padding-top: 20px;
  padding-bottom: 40px;
}

body.cart #page_cart_point .product_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  position: relative;
}

body.cart #page_cart_point .product_item:last-child .box {
  border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item:last-child .box {
    border-bottom: 0;
  }
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item_tilte {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item_tilte {
    display: none;
  }
}

body.cart #page_cart_point .product_item_tilte .wrap {
  width: 100%;
}

body.cart #page_cart_point .product_item .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.cart #page_cart_point .product_item .box .wrap {
  width: 100%;
  position: relative;
}

@media screen and (max-width: 480px) {
  body.cart #page_cart_point .product_item .box {
    font-size: 0.8rem;
  }
}

body.cart #page_cart_point .product_item .box_01 {
  width: 62%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item .box_01 {
    width: 100%;
  }
}

body.cart #page_cart_point .product_item .box_23,
body.cart #page_cart_delivery .product_item .box_23 {
  width: 38%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item .box_23,
  body.cart #page_cart_delivery .product_item .box_23 {
    width: 100%;
  }
}

body.cart #page_cart_point .product_item .box_23 dl,
body.cart #page_cart_delivery .product_item .box_23 dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item .box_23 dl,
  body.cart #page_cart_delivery .product_item .box_23 dl {
    max-width: 280px;
    margin: 0 0 0 auto;
  }
}

body.cart #page_cart_point .product_item .box_23 dl dd,
body.cart #page_cart_point .product_item .box_23 dl dt,
body.cart #page_cart_delivery .product_item .box_23 dl dd,
body.cart #page_cart_delivery .product_item .box_23 dl dt {
  width: 50%;
  text-align: right;
}

body.cart #page_cart_point .product_item .box_23 dl dd input[type=text],
body.cart #page_cart_delivery .product_item .box_23 dl dd input[type=text] {
  height: 40px;
  width: 120px;
  padding: 0 0.5em;
  margin: 0.5em;
}

body.cart #page_cart_point .product_item .box_02 {
  width: 19%;
  background-color: #dcebf3;
}

body.cart #page_cart_point .product_item .box_02 .value {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item .box_02 .value {
    text-align: right;
  }
}

body.cart #page_cart_point .product_item .box_02 .wrap {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item .box_02 {
    width: 50%;
    background: transparent;
  }

  body.cart #page_cart_point .product_item .box_02 .wrap.sp_view {
    text-align: left;
  }

  body.cart #page_cart_point .product_item .box_02 .wrap.sp_view::before {
    display: inline-block;
    content: '\500B\6570';
    margin-right: 1em;
  }
}

body.cart #page_cart_point .product_item .box_03 {
  width: 19%;
  background-color: #c9e3f1;
}

body.cart #page_cart_point .product_item .box_03 .value {
  text-align: right;
}

body.cart #page_cart_point .product_item .box_03 .value b {
  font-size: 1.5rem;
}

body.cart #page_cart_point .product_item .box_03 .wrap {
  text-align: right;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item .box_03 {
    width: 50%;
    background: transparent;
  }
}

body.cart #page_cart_point .product_item .box_07,
body.cart #page_cart_delivery .product_item .box_07 {
  width: 62%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item .box_07,
  body.cart #page_cart_delivery .product_item .box_07 {
    width: 100%;
    display: none;
  }
}

body.cart #page_cart_point .product_item .box_08,
body.cart #page_cart_delivery .product_item .box_08 {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body.cart #page_cart_point .product_item .box_08 b,
body.cart #page_cart_delivery .product_item .box_08 b {
  font-size: 1.5rem;
}

body.cart #page_cart_point .product_item .check {
  display: none;
}

body.cart #page_cart_point .product_item .btn_confirm {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item .btn_confirm {
    text-align: right;
  }
}

body.cart #page_cart_point .product_item .btn_confirm a {
  padding: 5px 10px;
  color: #999;
  font-size: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  white-space: nowrap;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item .btn_confirm a {
    letter-spacing: -1px;
    font-size: 0.7rem;
  }
}

body.cart #page_cart_point .product_item .btn_confirm a :hover {
  pointer: cursor;
}

body.cart #page_cart_point .product_item .thumbnail {
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 200px;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item .thumbnail {
    width: 180px;
    display: none;
  }
}

body.cart #page_cart_point .product_item .thumbnail .image {
  width: 170px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item .thumbnail .image {
    max-width: 170px;
    width: auto;
  }
}

body.cart #page_cart_point .product_item .thumbnail .image img {
  display: block;
  max-width: 150px;
  max-height: 150px;
}

body.cart #page_cart_point .product_item .info {
  width: auto;
}

body.cart #page_cart_point .product_item .info .title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1em;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_point .product_item .info .title {
    font-size: 0.9rem;
    font-weight: normal;
    margin-bottom: 1em;
    line-height: 1.5;
  }
}

body.cart #page_cart_point .product_item .info .limit {
  font-size: 0.8rem;
}

body.cart #page_cart_point .product_item .txt {
  font-size: 0.8rem;
}

body.cart #page_cart_point .product_item .bold {
  font-size: 1.2rem;
  font-weight: bold;
  width: 100%;
}
body.cart #page_cart_point .product-item-sub-title,
body.cart #page_cart_delivery .product-item-sub-title {
  background: #ddd;
}

body.cart #page_cart_point .product .details {
  background-color: #ddd;
  padding: 10px;
}

body.cart #page_cart_point .product .summary {
  padding: 30px 0 10px;
  border-top: 1px solid #ddd;
}

body.cart #page_cart_point .product .summary_note {
  font-size: 0.8rem;
}

body.cart #page_cart_delivery .purchase-choice li > div,
body.cart #page_cart_point .purchase-choice li > div {
  background: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_delivery .purchase-choice li > div,
  body.cart #page_cart_point .purchase-choice li > div {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

body.cart #page_cart_delivery .purchase-choice li > div .input,
body.cart #page_cart_delivery .purchase-choice li > div .info,
body.cart #page_cart_point .purchase-choice li > div .input,
body.cart #page_cart_point .purchase-choice li > div .info {
  width: 100%;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_delivery .purchase-choice li > div .input,
  body.cart #page_cart_delivery .purchase-choice li > div .info,
  body.cart #page_cart_point .purchase-choice li > div .input,
  body.cart #page_cart_point .purchase-choice li > div .info {
    width: 48%;
  }
}
body.cart #page_cart_delivery .purchase-choice li > div .text,
body.cart #page_cart_point .purchase-choice li > div .text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_delivery .purchase-choice li > div .text,
  body.cart #page_cart_point .purchase-choice li > div .text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body.cart #page_cart_delivery .purchase-choice li > div .text > label,
body.cart #page_cart_point .purchase-choice li > div .text > label {
  font-weight: bold;
  width: 100%;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_delivery .purchase-choice li > div .text > label,
  body.cart #page_cart_point .purchase-choice li > div .text > label {
    font-weight: normal;
    width: 10em;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10em;
            flex: 0 0 10em;
  }
}

body.cart #page_cart_delivery .purchase-choice li > div .text > div,
body.cart #page_cart_point .purchase-choice li > div .text > div {
  width: 100%;
}

body.cart #page_cart_delivery .purchase-choice li > div .input,
body.cart #page_cart_point .purchase-choice li > div .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_delivery .purchase-choice li > div .input,
  body.cart #page_cart_point .purchase-choice li > div .input {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body.cart #page_cart_delivery .purchase-choice li > div .input > label,
body.cart #page_cart_point .purchase-choice li > div .input > label {
  font-weight: bold;
  width: 100%;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_delivery .purchase-choice li > div .input > label,
  body.cart #page_cart_point .purchase-choice li > div .input > label {
    font-weight: normal;
    width: 10em;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10em;
            flex: 0 0 10em;
  }
}

body.cart #page_cart_delivery .purchase-choice li > div .input > div,
body.cart #page_cart_point .purchase-choice li > div .input > div {
  width: 100%;
}

body.cart #page_cart_delivery .purchase-choice li > div .input > div select,
body.cart #page_cart_point .purchase-choice li > div .input > div select {
  height: 30px;
  width: 100%;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_delivery .purchase-choice li > div .input > div select,
  body.cart #page_cart_point .purchase-choice li > div .input > div select {
    width: 50%;
  }
}

body.cart #page_cart_delivery .purchase-choice li > div .input > div input,
body.cart #page_cart_point .purchase-choice li > div .input > div input {
  height: 30px;
  width: 100%;
  padding: 0 0.5em;
}

body.cart #page_cart_purchase {
  padding-top: 20px;
  padding-bottom: 40px;
}

body.cart #page_cart_purchase .product_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_purchase .product_item_tilte {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_purchase .product_item_tilte {
    display: none;
  }
}

body.cart #page_cart_purchase .product_item_tilte .wrap {
  width: 100%;
}

body.cart #page_cart_purchase .product_item .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 480px) {
  body.cart #page_cart_purchase .product_item .box {
    font-size: 0.8rem;
  }
}

body.cart #page_cart_purchase .product_item .box_01 {
  width: 62%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_purchase .product_item .box_01 {
    width: 100%;
  }
}

body.cart #page_cart_purchase .product_item .box_02 {
  width: 19%;
  background-color: #dcebf3;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_purchase .product_item .box_02 {
    display: none;
  }
}

body.cart #page_cart_purchase .product_item .box_03 {
  width: 19%;
  background-color: #c9e3f1;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_purchase .product_item .box_03 {
    width: 100%;
    background-color: transparent;
  }
}

body.cart #page_cart_purchase .product_item .check {
  display: none;
}

body.cart #page_cart_purchase .product_item .thumbnail {
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 200px;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_purchase .product_item .thumbnail {
    width: 180px;
    display: none;
  }
}

body.cart #page_cart_purchase .product_item .thumbnail .image {
  width: 170px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_purchase .product_item .thumbnail .image {
    max-width: 170px;
    width: auto;
  }
}

body.cart #page_cart_purchase .product_item .thumbnail .image img {
  display: block;
  max-width: 150px;
  max-height: 150px;
}

body.cart #page_cart_purchase .product_item .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body.cart #page_cart_purchase .product_item .info .title {
  word-break: break-all;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1em;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_purchase .product_item .info .title {
    font-size: 0.9rem;
    font-weight: normal;
    margin-bottom: 1em;
    line-height: 1.5;
  }
}

body.cart #page_cart_purchase .product_item .info .limit {
  font-size: 0.8rem;
}

body.cart #page_cart_purchase .product_item .txt {
  font-size: 0.8rem;
}

body.cart #page_cart_purchase .product_item .price {
  font-size: 1.2rem;
  font-weight: bold;
  width: 100%;
}

body.cart #page_cart_purchase .product .details {
  background-color: #ddd;
  padding: 10px;
}

body.cart #page_cart_purchase .product .summary {
  padding: 10px 0;
  border-top: 1px solid #ccc;
}

body.cart #page_cart_purchase .product .summary_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body.cart #page_cart_purchase .product .summary_item-bgr {
  margin-top: 10px;
  padding: 10px 0;
  background-color: #ddd;
}

body.cart #page_cart_purchase .product .summary_item .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding: 2px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.9rem;
}

body.cart #page_cart_purchase .product .summary_item .box-total {
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 480px) {
  body.cart #page_cart_purchase .product .summary_item .box {
    font-size: 0.8rem;
  }
}

body.cart #page_cart_purchase .product .summary_item .box_01 {
  width: 62%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_purchase .product .summary_item .box_01 {
    width: 100%;
  }
}

body.cart #page_cart_purchase .product .summary_item .box_02 {
  width: 19%;
  position: relative;
}

body.cart #page_cart_purchase .product .summary_item .box_02.hyphen > div {
  padding-top: 6px;
}

body.cart #page_cart_purchase .product .summary_item .box_02.hyphen::before {
  content: '-';
  position: absolute;
  top: 8px;
  right: 0;
  color: #de0404;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_purchase .product .summary_item .box_02 {
    width: 50%;
  }
}

body.cart #page_cart_purchase .product .summary_item .box_03 {
  width: 19%;
}

@media screen and (max-width: 1000px) {
  body.cart #page_cart_purchase .product .summary_item .box_03 {
    width: 50%;
  }
}

body.cart #page_cart_purchase .product .summary_item .box .text-right {
  width: 100%;
  text-align: right;
}

body.cart #page_cart_purchase .product .summary_item .box .total-price {
  padding: 0;
}

body.cart #page_cart_purchase .product .summary_item .box .total-price span.price {
  margin-left: 10px;
  font-size: 1.4rem;
  display: inline-block;
}

body.cart #page_cart_purchase .product .summary_item .box input {
  margin-right: 5px;
  padding: 0 5px;
  width: 100px;
  height: 30px;
  border-radius: 3px;
  border: 1px solid #ccc;
  text-align: right;
  font-size: 0.9rem;
}

body.cart #page_cart_notmember {
  padding-top: 20px;
  padding-bottom: 40px;
}

body.cart #page_cart_notmember #page_body .group {
  max-width: 800px;
}

body.cart #page_cart_notmember #page_body .group > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0;
  border-top: 1px solid #ccc;
}

body.cart #page_cart_notmember #page_body .group > ul > li:last-child {
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_notmember #page_body .group > ul > li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body.cart #page_cart_notmember #page_body .group > ul > li > label {
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_notmember #page_body .group > ul > li > label {
    width: 240px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 240px;
            flex: 0 0 240px;
    margin-right: 0.5em;
  }
}

body.cart #page_cart_notmember #page_body .group > ul > li > label span {
  font-weight: normal;
  font-size: 0.75rem;
  margin-left: 1em;
  display: inline-block;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_notmember #page_body .group > ul > li > label span {
    display: block;
    margin-left: 0;
  }
}

body.cart #page_cart_notmember #page_body .group > ul > li > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

body.cart #page_cart_notmember #page_body .group > ul > li > div.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body.cart #page_cart_notmember #page_body .group > ul > li > div .inline-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body.cart #page_cart_notmember #page_body .group > ul > li > div .inline-item + .inline-item {
  margin-left: 20px;
}

body.cart #page_cart_notmember #page_body .group > ul > li > div .inline-item-auto {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

body.cart #page_cart_notmember #page_body .group input[type=text],
body.cart #page_cart_notmember #page_body .group input[type=password],
body.cart #page_cart_notmember #page_body .group input[type=email],
body.cart #page_cart_notmember #page_body .group input[type=tel] {
  padding: 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #cccccc;
  border-radius: 3px;
  font-size: .9rem;
  color: #333;
  width: 100%;
}

body.cart #page_cart_notmember #page_body .group input[type=text][readonly],
body.cart #page_cart_notmember #page_body .group input[type=password][readonly],
body.cart #page_cart_notmember #page_body .group input[type=email][readonly],
body.cart #page_cart_notmember #page_body .group input[type=tel][readonly] {
  background-color: #f0f0f0;
}

body.cart #page_cart_notmember #page_body .group .select-group {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 4px;
  border-radius: 3px;
  vertical-align: middle;
  border: 1px solid #ccc;
  background-color: #fff;
  background-repeat: no-repeat;
}

body.cart #page_cart_notmember #page_body .group .select-group select {
  width: 100%;
  line-height: 2;
  display: block;
  padding: 0;
  text-indent: 8px;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: .9rem;
}

body.cart #page_cart_notmember #page_body .group {
  padding: 10px 0;
}

body.cart #page_cart_notmember #page_body .group h4 {
  border-top: 1px solid #ccc;
  font-size: 1rem;
  padding: 10px 0;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_notmember #page_body .group h4 {
    padding-top: 0;
    border-top: 0;
  }
}

body.cart #page_cart_notmember #page_body .group ul + h4 {
  margin-top: 20px;
}

body.cart #page_cart_notmember #page_body .group .wrap > a {
  font-size: 0.8rem;
  margin: 0.5em 0 0.5em 0.5em;
}

body.cart #page_cart_notmember #page_body .last_name,
body.cart #page_cart_notmember #page_body .first_name,
body.cart #page_cart_notmember #page_body .first_name_kana,
body.cart #page_cart_notmember #page_body .last_name_kana {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ddd;
  border-radius: 3px;
}

body.cart #page_cart_notmember #page_body .last_name input[type=text],
body.cart #page_cart_notmember #page_body .first_name input[type=text],
body.cart #page_cart_notmember #page_body .first_name_kana input[type=text],
body.cart #page_cart_notmember #page_body .last_name_kana input[type=text] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

body.cart #page_cart_notmember #page_body .last_name:before,
body.cart #page_cart_notmember #page_body .first_name:before,
body.cart #page_cart_notmember #page_body .first_name_kana:before,
body.cart #page_cart_notmember #page_body .last_name_kana:before {
  width: 2.5em;
  font-size: 0.9rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.5em;
          flex: 0 0 2.5em;
  text-align: center;
}

body.cart #page_cart_notmember #page_body .last_name:before {
  content: '\59D3';
}

body.cart #page_cart_notmember #page_body .first_name:before {
  content: '\540D';
}

body.cart #page_cart_notmember #page_body .first_name_kana:before {
  content: '\30BB\30A4';
}

body.cart #page_cart_notmember #page_body .last_name_kana:before {
  content: '\30E1\30A4';
}

body.cart #page_cart_notmember #page_body .required {
  font-style: normal;
  font-weight: normal;
  margin-left: 0.5em;
  color: #ed4c0d;
}

body.cart #page_cart_notmember #page_body .sex div > label + label {
  margin-left: 1.5em;
}

body.cart #page_cart_notmember #page_body .select_year,
body.cart #page_cart_notmember #page_body .select_month,
body.cart #page_cart_notmember #page_body .select_day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.cart #page_cart_notmember #page_body .select_year > div,
body.cart #page_cart_notmember #page_body .select_month > div,
body.cart #page_cart_notmember #page_body .select_day > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body.cart #page_cart_notmember #page_body .select_year:after,
body.cart #page_cart_notmember #page_body .select_month:after,
body.cart #page_cart_notmember #page_body .select_day:after {
  width: 1.5em;
  font-size: 0.9rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.5em;
          flex: 0 0 1.5em;
  text-align: center;
}

body.cart #page_cart_notmember #page_body .select_year:after {
  content: '\5E74';
}

body.cart #page_cart_notmember #page_body .select_month:after {
  content: '\6708';
}

body.cart #page_cart_notmember #page_body .select_day:after {
  content: '\65E5';
}

body.cart #page_cart_notmember #page_body .buttons {
  text-align: center;
  padding: 10px 0;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_notmember #page_body .buttons {
    text-align: left;
  }
}

body.cart #page_cart_notmember #page_body .buttons .btn {
  margin: 0 0.5em;
  padding-left: 45px;
  padding-right: 45px;
}

@media screen and (min-width: 800px) {
  body.cart #page_cart_notmember #page_body .buttons .btn {
    margin: 0 1em 0 0;
  }
}

body.cart .purchase-choice {
  margin-top: 40px;
  border-bottom: 1px solid #ccc;
}

body.cart .purchase-choice .title {
  padding: 0 20px;
  font-size: 1rem;
  line-height: 40px;
  background-color: #dddddd;
}

body.cart .purchase-choice ul.top > li ul {
  margin-left: 40px;
}

body.cart .purchase-choice ul.line > li {
  border-top: 1px solid #ccc;
}

body.cart .purchase-choice ul.line > li:first-child {
  border-top: 0;
}
body.cart .purchase-choice > ul > li:first-child {
  padding: 15px 0;
}

body.cart .purchase-choice > ul > li {
  padding: 0 0 15px;
}

body.cart .purchase-choice > ul > li > ul {
  padding: 10px 0 0;
}

body.cart .purchase-choice > ul > li > div {
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 3px;
}

body.cart .purchase-choice > ul > li > div > label {
  display: block;
  width: 100%;
  cursor: pointer;
}

body.cart .purchase-choice > ul > li > div .image {
  margin-right: 5px;
}

body.cart .purchase-choice > ul > li > div .image img {
  display: block;
  width: 20px;
}

body.cart #button {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8rem;
}

@media screen and (min-width: 800px) {
  body.cart #button {
    font-size: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

body.cart #button .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.cart #button .btn:first-child {
  margin: 30px 0;
  width: 200px;
  height: 40px;
}

@media screen and (min-width: 800px) {
  body.cart #button .btn:first-child {
    margin: 0;
  }
}

body.cart #button .btn:last-child {
  width: 200px;
  height: 60px;
}

@media screen and (min-width: 800px) {
  body.cart #button .btn:last-child {
    margin: 0 0 0 20px;
  }
}

body.cart .form-checker {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
}

body.cart .form-checker input[type=checkbox] {
  opacity: 0;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}

body.cart .form-checker input[type=checkbox]:hover {
  cursor: pointer;
}

body.cart .form-checker input[type=checkbox] + i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/imagedata/images/icon-check.png") no-repeat center center/contain;
  z-index: 1;
}

body.cart .form-checker input[type=checkbox]:checked + i {
  background-image: url("/imagedata/images/check-blue.png");
}

body.cart .form-checker input[type=radio] {
  opacity: 0;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}

body.cart .form-checker input[type=radio]:hover {
  cursor: pointer;
}

body.cart .form-checker input[type=radio] + i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/imagedata/images/radio-empty.png") no-repeat center center/contain;
  z-index: 1;
}

body.cart .form-checker input[type=radio]:checked + i {
  background-image: url("/imagedata/images/radio-red.png");
}

#page_cart_popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

#page_cart_popup_content {
  position: absolute;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 25px;
  background-color: #fff;
}

@media screen and (min-width: 400px) {
  #page_cart_popup_content {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    padding: 10px;
    border-radius: 5px;
  }
}

@media screen and (min-width: 800px) {
  #page_cart_popup_content {
    padding: 20px;
    border-radius: 15px;
  }
}

#page_cart_popup_content .scrolling {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 25px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

@media screen and (min-width: 400px) {
  #page_cart_popup_content .scrolling {
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 25px;
  }
}

@media screen and (min-width: 800px) {
  #page_cart_popup_content .scrolling {
    left: 20px;
    top: 20px;
    right: 20px;
    bottom: 20px;
  }
}

#page_cart_popup_content .scrolling #page_cart_popup_iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

#page_cart_popup_close {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -100%;
  margin: auto;
  background: #fff;
  padding: 10px;
  border-radius: 999px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.5s;
  transition: -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s;
  transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
}

@media screen and (min-width: 800px) {
  #page_cart_popup_close {
    bottom: 0;
    top: -100%;
    right: -100%;
  }
}

#page_cart_popup_close:hover {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

body.mypage #mypage_user_top {
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  padding: 0 10px;
}

@media screen and (min-width: 800px) {
  body.mypage #mypage_user_top {
    padding: 0;
    margin-bottom: 40px;
  }
}

body.mypage #mypage_user_top > span {
  font-size: 2rem;
}

body.mypage #mypage_user_top h2 {
  font-size: 1.2rem;
  font-weight: normal;
}

@media screen and (max-width: 800px) {
  body.mypage .sp_none {
    display: none !important;
  }
}

body.mypage #page_header {
  margin-bottom: 20px;
}

body.mypage #page_header #page_title {
  font-size: 2rem;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 10px;
}

body.mypage #page_body .group {
  max-width: 800px;
}

body.mypage #page_body .group > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0;
  border-top: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  body.mypage #page_body .group > ul > li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body.mypage #page_body .group > ul > li > label {
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (min-width: 800px) {
  body.mypage #page_body .group > ul > li > label {
    width: 240px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 240px;
            flex: 0 0 240px;
    margin-right: 0.5em;
  }
}

body.mypage #page_body .group > ul > li > label span {
  font-weight: normal;
  font-size: 0.75rem;
  margin-left: 1em;
  display: inline-block;
}

@media screen and (min-width: 800px) {
  body.mypage #page_body .group > ul > li > label span {
    display: block;
    margin-left: 0;
  }
}

body.mypage #page_body .group > ul > li > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

body.mypage #page_body .group > ul > li > div.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body.mypage #page_body .group > ul > li > div .inline-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body.mypage #page_body .group > ul > li > div .inline-item + .inline-item {
  margin-left: 20px;
}

body.mypage #page_body .group > ul > li > div .inline-item-auto {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

body.mypage #page_body .single h2 {
  font-size: 1.2rem;
  padding: 10px 0;
}

body.mypage #page_body .single .item-wrap {
  padding: 10px;
  background: #e6e6e6;
}

body.mypage #page_body .single .item-wrap .item {
  max-width: 800px;
}

body.mypage #page_body .single .item-wrap .item input[type=text] {
  width: 100%;
}

body.mypage #page_body .single .item-wrap .inline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 3px;
  background: #fff;
}

body.mypage #page_body .single .item-wrap .inline-item input[type=text],
body.mypage #page_body .single .item-wrap .inline-item input[type=password],
body.mypage #page_body .single .item-wrap .inline-item input[type=email],
body.mypage #page_body .single .item-wrap .inline-item input[type=tel] {
  width: 100%;
  border: 0;
}

body.mypage #page_body .single .item-wrap .inline-item input[type=submit] {
  padding: 0 2em;
  border-radius: 3px;
  border: 0;
}

body.mypage #page_body .single + .single {
  margin-top: 10px;
}

body.mypage #page_body .complex h3 {
  background: #ddd;
  padding: 10px;
}

body.mypage #page_body .complex .reminder {
  padding: 10px 0;
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 20px;
}

body.mypage #page_body .complex .reminder span {
  display: inline-block;
}

@media screen and (min-width: 800px) {
  body.mypage #page_body .complex .reminder {
    margin-top: 20px;
    text-align: left;
    border-bottom: 1px solid #ccc;
  }
}

body.mypage #page_body .group input[type=text],
body.mypage #page_body .group input[type=password],
body.mypage #page_body .group input[type=email],
body.mypage #page_body .group input[type=tel],
body.mypage #page_body .single input[type=text],
body.mypage #page_body .single input[type=password],
body.mypage #page_body .single input[type=email],
body.mypage #page_body .single input[type=tel] {
  padding: 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #cccccc;
  border-radius: 3px;
  font-size: .9rem;
  color: #333;
  width: 100%;
}

body.mypage #page_body .group input[type=text][readonly],
body.mypage #page_body .group input[type=password][readonly],
body.mypage #page_body .group input[type=email][readonly],
body.mypage #page_body .group input[type=tel][readonly],
body.mypage #page_body .single input[type=text][readonly],
body.mypage #page_body .single input[type=password][readonly],
body.mypage #page_body .single input[type=email][readonly],
body.mypage #page_body .single input[type=tel][readonly] {
  background-color: #f0f0f0;
}

body.mypage #page_body .group .select-group,
body.mypage #page_body .single .select-group {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 4px;
  border-radius: 3px;
  vertical-align: middle;
  border: 1px solid #ccc;
  background-color: #fff;
  background-repeat: no-repeat;
}

body.mypage #page_body .group .select-group select,
body.mypage #page_body .single .select-group select {
  width: 100%;
  line-height: 2;
  display: block;
  padding: 0;
  text-indent: 8px;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: .9rem;
}

body.mypage #page_body .form-checker {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin-right: 0.2em;
}

body.mypage #page_body .form-checker input[type=checkbox] {
  opacity: 0;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}

body.mypage #page_body .form-checker input[type=checkbox]:hover {
  cursor: pointer;
}

body.mypage #page_body .form-checker input[type=checkbox] + i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/imagedata/images/icon-check.png") no-repeat center center/contain;
  z-index: 1;
}

body.mypage #page_body .form-checker input[type=checkbox]:checked + i {
  background-image: url("/imagedata/images/check-blue.png");
}

body.mypage #page_body .form-checker input[type=radio] {
  opacity: 0;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}

body.mypage #page_body .form-checker input[type=radio]:hover {
  cursor: pointer;
}

body.mypage #page_body .form-checker input[type=radio] + i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/imagedata/images/radio-empty.png") no-repeat center center/contain;
  z-index: 1;
}

body.mypage #page_body .form-checker input[type=radio]:checked + i {
  background-image: url("/imagedata/images/radio-red.png");
}

body.mypage #page_body .form-switcher {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

body.mypage #page_body .form-switcher input[type=checkbox] {
  opacity: 0;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}

body.mypage #page_body .form-switcher input[type=checkbox]:hover {
  cursor: pointer;
}

body.mypage #page_body .form-switcher input[type=checkbox] + i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: black;
  z-index: 1;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

body.mypage #page_body .form-switcher input[type=checkbox] + i:before {
  content: '';
  display: block;
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  right: auto;
  margin: auto;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 999px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

body.mypage #page_body .form-switcher input[type=checkbox]:checked + i {
  background: #2196f3;
}

body.mypage #page_body .form-switcher input[type=checkbox]:checked + i:before {
  left: 35px;
}

body.mypage #page_body .buttons {
  border-top: 1px solid #ccc;
}

body.mypage #page_body .buttons .btn {
  margin: 5px;
}

body.mypage_user_top,
body.mypage .mypage-page {
  padding: 0 10px;
}

@media screen and (min-width: 800px) {
  body.mypage_user_top,
  body.mypage .mypage-page {
    padding: 0;
    margin-right: 20px;
  }
}

body.mypage .mypage-page {
  padding-bottom: 20px;
}

body.mypage #page_mypage_profile_edit #page_body .last_name,
body.mypage #page_mypage_profile_edit #page_body .first_name,
body.mypage #page_mypage_profile_edit #page_body .first_name_kana,
body.mypage #page_mypage_profile_edit #page_body .last_name_kana,
body.mypage #page_mypage_shipping_edit #page_body .last_name,
body.mypage #page_mypage_shipping_edit #page_body .first_name,
body.mypage #page_mypage_shipping_edit #page_body .first_name_kana,
body.mypage #page_mypage_shipping_edit #page_body .last_name_kana {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ddd;
  border-radius: 3px;
}

body.mypage #page_mypage_profile_edit #page_body .last_name input[type=text],
body.mypage #page_mypage_profile_edit #page_body .first_name input[type=text],
body.mypage #page_mypage_profile_edit #page_body .first_name_kana input[type=text],
body.mypage #page_mypage_profile_edit #page_body .last_name_kana input[type=text],
body.mypage #page_mypage_shipping_edit #page_body .last_name input[type=text],
body.mypage #page_mypage_shipping_edit #page_body .first_name input[type=text],
body.mypage #page_mypage_shipping_edit #page_body .first_name_kana input[type=text],
body.mypage #page_mypage_shipping_edit #page_body .last_name_kana input[type=text] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

body.mypage #page_mypage_profile_edit #page_body .last_name:before,
body.mypage #page_mypage_profile_edit #page_body .first_name:before,
body.mypage #page_mypage_profile_edit #page_body .first_name_kana:before,
body.mypage #page_mypage_profile_edit #page_body .last_name_kana:before,
body.mypage #page_mypage_shipping_edit #page_body .last_name:before,
body.mypage #page_mypage_shipping_edit #page_body .first_name:before,
body.mypage #page_mypage_shipping_edit #page_body .first_name_kana:before,
body.mypage #page_mypage_shipping_edit #page_body .last_name_kana:before {
  width: 2.5em;
  font-size: 0.9rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.5em;
          flex: 0 0 2.5em;
  text-align: center;
}

body.mypage #page_mypage_profile_edit #page_body .last_name:before,
body.mypage #page_mypage_shipping_edit #page_body .last_name:before {
  content: '\59D3';
}

body.mypage #page_mypage_profile_edit #page_body .first_name:before,
body.mypage #page_mypage_shipping_edit #page_body .first_name:before {
  content: '\540D';
}

body.mypage #page_mypage_profile_edit #page_body .first_name_kana:before,
body.mypage #page_mypage_shipping_edit #page_body .first_name_kana:before {
  content: '\30BB\30A4';
}

body.mypage #page_mypage_profile_edit #page_body .last_name_kana:before,
body.mypage #page_mypage_shipping_edit #page_body .last_name_kana:before {
  content: '\30E1\30A4';
}

body.mypage #page_mypage_profile_edit #page_body .sex div > label + label,
body.mypage #page_mypage_shipping_edit #page_body .sex div > label + label {
  margin-left: 1.5em;
}

body.mypage #page_mypage_profile_edit #page_body .select_year,
body.mypage #page_mypage_profile_edit #page_body .select_month,
body.mypage #page_mypage_profile_edit #page_body .select_day,
body.mypage #page_mypage_shipping_edit #page_body .select_year,
body.mypage #page_mypage_shipping_edit #page_body .select_month,
body.mypage #page_mypage_shipping_edit #page_body .select_day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.mypage #page_mypage_profile_edit #page_body .select_year > div,
body.mypage #page_mypage_profile_edit #page_body .select_month > div,
body.mypage #page_mypage_profile_edit #page_body .select_day > div,
body.mypage #page_mypage_shipping_edit #page_body .select_year > div,
body.mypage #page_mypage_shipping_edit #page_body .select_month > div,
body.mypage #page_mypage_shipping_edit #page_body .select_day > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

body.mypage #page_mypage_profile_edit #page_body .select_year:after,
body.mypage #page_mypage_profile_edit #page_body .select_month:after,
body.mypage #page_mypage_profile_edit #page_body .select_day:after,
body.mypage #page_mypage_shipping_edit #page_body .select_year:after,
body.mypage #page_mypage_shipping_edit #page_body .select_month:after,
body.mypage #page_mypage_shipping_edit #page_body .select_day:after {
  width: 1.5em;
  font-size: 0.9rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.5em;
          flex: 0 0 1.5em;
  text-align: center;
}

body.mypage #page_mypage_profile_edit #page_body .select_year:after,
body.mypage #page_mypage_shipping_edit #page_body .select_year:after {
  content: '\5E74';
}

body.mypage #page_mypage_profile_edit #page_body .select_month:after,
body.mypage #page_mypage_shipping_edit #page_body .select_month:after {
  content: '\6708';
}

body.mypage #page_mypage_profile_edit #page_body .select_day:after,
body.mypage #page_mypage_shipping_edit #page_body .select_day:after {
  content: '\65E5';
}

body.mypage #page_mypage_profile_edit #page_body .buttons,
body.mypage #page_mypage_shipping_edit #page_body .buttons {
  text-align: center;
  padding: 10px 0;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_profile_edit #page_body .buttons,
  body.mypage #page_mypage_shipping_edit #page_body .buttons {
    text-align: left;
  }
}

body.mypage #page_mypage_profile #page_body .group {
  margin-bottom: 40px;
}

body.mypage #page_mypage_profile #page_body .group .title {
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: -1px;
}

body.mypage #page_mypage_profile #page_body .group #section1 .content {
  padding: 0;
}

body.mypage #page_mypage_profile #page_body .group .content {
  background-color: #e6e6e6;
  padding: 10px;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_profile #page_body .group .content {
    padding: 20px;
  }
}

body.mypage #page_mypage_profile #page_body .group .content ul + a {
  margin-top: 10px;
  display: inline-block;
}

body.mypage #page_mypage_profile #page_body .group li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_profile #page_body .group li {
    padding: 10px 0;
  }
}

body.mypage #page_mypage_profile #page_body .group li:last-child {
  border-bottom: 1px solid #ccc;
}

body.mypage #page_mypage_profile #page_body .group li > div {
  padding: 10px;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_profile #page_body .group li > div {
    padding: 0;
  }
}

body.mypage #page_mypage_profile #page_body .group li > div:first-child {
  width: 100%;
  background: #dddddd;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_profile #page_body .group li > div:first-child {
    width: 300px;
    background: transparent;
    border-bottom: 0;
  }
}

body.mypage #page_mypage_profile #page_body .group li > div:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

body.mypage #page_mypage_shipping_edit #page_body .radio-item {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_shipping_edit #page_body .radio-item > label {
    min-width: 240px;
  }
}

body.mypage #page_mypage_shipping_edit #page_body .radio-item .group {
  display: none;
}

body.mypage #page_mypage_shipping_edit #page_body .radio-item.active .group {
  display: block;
  padding: 10px 0;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_shipping_edit #page_body .radio-item.active .group {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 15px;
  }
}

body.mypage #page_mypage_shipping_edit #page_body .radio-item.active .group h4 {
  border-top: 1px solid #ccc;
  font-size: 1rem;
  padding: 10px 0;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_shipping_edit #page_body .radio-item.active .group h4 {
    padding-top: 0;
    border-top: 0;
  }
}

body.mypage #page_mypage_shipping_edit #page_body .radio-item.active .group ul + h4 {
  margin-top: 20px;
}

body.mypage #page_mypage_shipping_edit #page_body .radio-item.active .group .wrap > a {
  font-size: 0.8rem;
  margin: 0.5em 0 0.5em 0.5em;
}

body.mypage #page_mypage_shipping_edit #page_body .radio-item.active .group .buttons {
  text-align: center;
}

body.mypage #page_mypage_plan_edit #page_body h4 {
  font-size: 0.8rem;
  padding: 10px 0;
}

body.mypage #page_mypage_edit_done #page_body .single > a {
  display: inline-block;
  margin-top: 10px;
}

body.mypage .show-detail li {
  line-height: 2em;
}

@media screen and (min-width: 800px) {
  body.mypage .show-detail li {
    border-top: 1px solid #ccc;
  }

  body.mypage .show-detail li:last-child {
    border-bottom: 1px solid #ccc;
  }
}

@media screen and (min-width: 800px) {
  body.mypage .show-detail li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body.mypage .show-detail li > label {
  padding: 0 5px;
  display: block;
  background: #dddddd;
  font-weight: bold;
}

@media screen and (min-width: 800px) {
  body.mypage .show-detail li > label {
    min-width: 240px;
    background: transparent;
  }
}

body.mypage .show-detail li > div {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

body.mypage .show-detail li > div span.info {
  display: block;
}

@media screen and (min-width: 800px) {
  body.mypage .show-detail li > div span.info {
    display: inline;
    margin-left: 5%;
  }
}

body.mypage .paging .paginator {
  margin-top: 10px;
  padding: 10px 10px;
  font-size: 0.9rem;
  background-color: #e6e6e6;
  border-radius: 15px;
  color: #222;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .paginator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 10px;
  }
}

body.mypage .paging .paginator > p > span.pagination-statistic-items {
  display: none;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .paginator > p > span.pagination-statistic-items {
    display: inline;
  }
}

body.mypage .paging .paginator > p > span + span {
  margin-left: 1em;
}

body.mypage .paging .pagination ul {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .pagination ul {
    margin-top: 0;
  }
}

body.mypage .paging .pagination ul li {
  margin: 5px;
  overflow: hidden;
}

body.mypage .paging .pagination ul li > a,
body.mypage .paging .pagination ul li > span {
  color: #999;
}

body.mypage .paging .pagination ul li.disabled {
  display: none;
}

body.mypage .paging .pagination ul li.active span {
  color: #fff;
  background-color: #090909;
  border-color: #090909;
}

body.mypage .paging .pagination ul li.ellipsis {
  width: 100%;
  height: 0;
  margin: 0;
  overflow: hidden;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .pagination ul li.ellipsis {
    width: auto;
    height: auto;
    margin: 5px;
    overflow: inherit;
  }
}

body.mypage .paging .pagination ul li.ellipsis span {
  border: none;
}

body.mypage .paging .pagination ul li.pagination-first {
  -webkit-box-ordinal-group: 997;
      -ms-flex-order: 996;
          order: 996;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .pagination ul li.pagination-first {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
  }
}

body.mypage .paging .pagination ul li.pagination-prev {
  -webkit-box-ordinal-group: 998;
      -ms-flex-order: 997;
          order: 997;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .pagination ul li.pagination-prev {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
  }
}

body.mypage .paging .pagination ul li.pagination-next {
  -webkit-box-ordinal-group: 999;
      -ms-flex-order: 998;
          order: 998;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .pagination ul li.pagination-next {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
  }
}

body.mypage .paging .pagination ul li.pagination-last {
  -webkit-box-ordinal-group: 1000;
      -ms-flex-order: 999;
          order: 999;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .pagination ul li.pagination-last {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
  }
}

body.mypage .paging .pagination ul a,
body.mypage .paging .pagination ul span {
  padding: 0 10px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ccc;
  border-radius: 15px;
}

body.mypage .paging .order {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .order {
    border-bottom: 1px solid #ccc;
  }
}

body.mypage .paging .order select {
  margin-left: 5px;
  border-radius: 3px;
  border: 0;
  padding: 2px 5px;
}

body.mypage .paging .order .image {
  margin-left: 5px;
}

body.mypage .paging .order .image img {
  display: block;
}

body.mypage .paging .order p {
  display: none;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .order p {
    display: block;
  }
}

body.mypage .paging .order .display-item-count {
  display: none;
}

body.mypage .paging .order .display-item-count-label {
  margin-left: 0.3em;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .order .display-item-count {
    display: block;
  }

  body.mypage .paging .order .display-item-count > a {
    cursor: pointer;
    background: #262626;
    color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 0.3em;
  }

  body.mypage .paging .order .display-item-count > a.active {
    cursor: default;
    background: #090909;
    color: #868686;
  }
}

body.mypage .paging .order a.image {
  display: none;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .order a.image {
    display: inline-block;
  }
}

body.mypage .paging .choice {
  display: none;
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  body.mypage .paging .choice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
  }
}

body.mypage .btn.btn-unavailable {
  background: transparent;
  color: #999;
  cursor: default;
  border: 1px solid #999;
  -webkit-box-shadow: none;
          box-shadow: none;
}

body.mypage .btn.btn-unavailable:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body.mypage .btn.btn-unavailable:hover:after {
  display: none;
}

body.mypage #page_mypage_index .group {
  margin-bottom: 40px;
}

body.mypage #page_mypage_index .group .title {
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: -1px;
}

body.mypage #page_mypage_index #page_body {
  margin-top: 20px;
  padding: 20px;
  background-color: #e6e6e6;
}

body.mypage #page_mypage_index #page_body .group {
  width: 100%;
  margin-bottom: 0;
}

body.mypage #page_mypage_index #page_body .group ul {
  border-top: 1px solid #ccc;
}

body.mypage #page_mypage_index #page_body .group ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 1rem;
}

body.mypage #page_mypage_index #page_body .group ul li a {
  color: #2196f3;
}

body.mypage #page_mypage_index #page_body .group ul li div:nth-child(1) {
  width: 300px;
  font-weight: 600;
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_index #page_body .group ul li div:nth-child(1) {
    width: 100%;
  }
}

body.mypage #page_mypage_index #page_body .group ul li div:nth-child(2) {
  width: 160px;
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_index #page_body .group ul li div:nth-child(2) {
    width: 100%;
  }
}

body.mypage #page_mypage_index #page_body .group ul li div:nth-child(3) {
  width: auto;
}

body.mypage #page_mypage_order #page_header .filter,
body.mypage #page_mypage_library #page_header .filter {
  margin-top: 40px;
}

body.mypage #page_mypage_order #page_header .filter select,
body.mypage #page_mypage_library #page_header .filter select {
  width: 200px;
  height: 30px;
  margin-right: 20px;
}

body.mypage #page_mypage_order #page_header .filter select:first-child,
body.mypage #page_mypage_library #page_header .filter select:first-child {
  margin-bottom: 20px;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_order #page_header .filter select:first-child,
  body.mypage #page_mypage_library #page_header .filter select:first-child {
    margin-bottom: 0;
  }
}

body.mypage #page_mypage_order #page_body {
  margin-top: 20px;
  padding: 10px;
  background-color: #e6e6e6;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_order #page_body {
    padding: 20px;
  }
}

body.mypage #page_mypage_order #page_body .btn-unavailable {
  cursor: pointer;
}

body.mypage #page_mypage_order #page_body .grid-container {
  font-size: 0.8rem;
  border-bottom: 1px solid #ccc;
  display: -ms-grid;
  display: grid;
  grid-template-areas: "date date serial detail" "type price payment detail";
  grid-template-columns: 16.5% 18.5% 1fr 110px;
  -ms-grid-columns: 16.5% 18.5% 1fr 110px;
}

body.mypage #page_mypage_order #page_body .grid-container .order-date {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

body.mypage #page_mypage_order #page_body .grid-container .order-serial {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

body.mypage #page_mypage_order #page_body .grid-container .order-detail {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-row-span: 2;
}

body.mypage #page_mypage_order #page_body .grid-container .order-type {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}

body.mypage #page_mypage_order #page_body .grid-container .order-price {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

body.mypage #page_mypage_order #page_body .grid-container .order-payment {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
}

body.mypage #page_mypage_order #page_body .grid-container .order-date {
  grid-area: date;
}

body.mypage #page_mypage_order #page_body .grid-container .order-serial {
  grid-area: serial;
}

body.mypage #page_mypage_order #page_body .grid-container .order-type {
  grid-area: type;
}

body.mypage #page_mypage_order #page_body .grid-container .order-price {
  grid-area: price;
}

body.mypage #page_mypage_order #page_body .grid-container .order-payment {
  grid-area: payment;
}

body.mypage #page_mypage_order #page_body .grid-container .order-detail {
  grid-area: detail;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_order #page_body .grid-container {
    grid-template-areas: "date serial type price payment detail";
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 150px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 150px;
  }

  body.mypage #page_mypage_order #page_body .grid-container .order-date {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  body.mypage #page_mypage_order #page_body .grid-container .order-serial {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }

  body.mypage #page_mypage_order #page_body .grid-container .order-detail {
    -ms-grid-row: 1;
    -ms-grid-column: 6;
    -ms-grid-row-span: 1;
  }

  body.mypage #page_mypage_order #page_body .grid-container .order-type {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  body.mypage #page_mypage_order #page_body .grid-container .order-price {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }

  body.mypage #page_mypage_order #page_body .grid-container .order-payment {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}

body.mypage #page_mypage_order #page_body .grid-container .order-date,
body.mypage #page_mypage_order #page_body .grid-container .order-serial,
body.mypage #page_mypage_order #page_body .grid-container .order-type,
body.mypage #page_mypage_order #page_body .grid-container .order-price,
body.mypage #page_mypage_order #page_body .grid-container .order-payment,
body.mypage #page_mypage_order #page_body .grid-container .order-detail {
  padding: 2px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.mypage #page_mypage_order #page_body .grid-container .order-detail {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_order #page_body .grid-container {
    padding: 10px 0;
  }

  body.mypage #page_mypage_order #page_body .grid-container .order-date,
  body.mypage #page_mypage_order #page_body .grid-container .order-serial,
  body.mypage #page_mypage_order #page_body .grid-container .order-type,
  body.mypage #page_mypage_order #page_body .grid-container .order-price,
  body.mypage #page_mypage_order #page_body .grid-container .order-payment,
  body.mypage #page_mypage_order #page_body .grid-container .order-detail {
    padding: 0 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  body.mypage #page_mypage_order #page_body .grid-container .order-price {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

body.mypage #page_mypage_order #page_body .grid-container.header {
  display: none;
  font-weight: bold;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_order #page_body .grid-container.header {
    display: -ms-grid;
    display: grid;
  }
}

body.mypage #page_mypage_order #page_body .grid-container.header > div {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body.mypage #page_mypage_order_detail #page_body .product-info .product-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body.mypage #page_mypage_order_detail #page_body .product-info .product-detail .product-price,
body.mypage #page_mypage_order_detail #page_body .product-info .product-detail .product-count {
  margin-left: 10px;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_order_detail #page_body .product-info .product-detail .product-price,
  body.mypage #page_mypage_order_detail #page_body .product-info .product-detail .product-count {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 0;
    padding: 0 10px;
  }
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_order_detail #page_body .product-info .product-detail {
    min-width: 30%;
  }

  body.mypage #page_mypage_order_detail #page_body .product-info .product-detail .product-count {
    background: #dcebf3;
    text-align: center;
  }

  body.mypage #page_mypage_order_detail #page_body .product-info .product-detail .product-price {
    background: #c9e3f1;
    text-align: right;
  }
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_order_detail #page_body .product-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  body.mypage #page_mypage_order_detail #page_body .product-info .product-title {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

body.mypage #page_mypage_order_detail #page_body .price-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body.mypage #page_mypage_order_detail #page_body .price-info .price-count {
  min-width: 150px;
  text-align: right;
}

body.mypage #page_mypage_order_detail #page_body .show-detail li > label {
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_order_detail #page_body .show-detail li > label {
    border-bottom: 0;
  }
}

body.mypage #page_mypage_order_detail #page_body .show-detail li > div > em {
  display: block;
  text-align: right;
  font-weight: bold;
  font-style: normal;
  font-size: 1.5rem;
  padding: 10px 0;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_order_detail #page_body .show-detail li > div > em {
    border-bottom: 0;
  }
}

body.mypage #page_mypage_order_detail #page_body .show-detail li > div > em.emphasis {
  padding: 20px 0;
}

body.mypage #page_mypage_order_detail #page_body .show-detail li:last-child > div {
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_order_detail #page_body .show-detail li:last-child > div {
    border-bottom: 0;
  }
}

body.mypage #page_mypage_order_detail #page_body .link {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_order_detail #page_body .link {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

body.mypage #page_mypage_library .show-grid .listing ul .product .product-image,
body.mypage #page_mypage_library .show-grid .listing ul .product .product-title,
body.mypage #page_mypage_library .show-grid .listing ul .product .product-favorite {
  cursor: pointer;
}

body.mypage #page_mypage_mail_magazine #page_body .inline-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body.mypage #page_mypage_mail_magazine #page_body .inline-item > div {
  margin-top: 20px;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_mail_magazine #page_body .inline-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  body.mypage #page_mypage_mail_magazine #page_body .inline-item > div {
    margin-top: 0;
    margin-left: 20px;
  }
}

body.mypage #page_mypage_mail_magazine #page_body .form-switcher {
  margin-right: 6em;
  font-size: 1rem;
}

body.mypage #page_mypage_mail_magazine #page_body .form-switcher input[type=checkbox] + i:after {
  content: '\53D7\4FE1\3057\306A\3044';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 100%;
  text-indent: 0.5em;
  font-style: normal;
  top: 0;
  bottom: 0;
  margin: auto;
  white-space: nowrap;
}

body.mypage #page_mypage_mail_magazine #page_body .form-switcher input[type=checkbox]:checked + i:after {
  content: '\53D7\4FE1\3059\308B';
}

body.mypage #page_mypage_invoice .group {
  max-width: 100%;
}

body.mypage #page_mypage_invoice .group input[type=text] {
  margin-right: 0.5em;
  width: 80%;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_invoice .group input[type=text] {
    width: 40%;
  }
}

body.mypage #page_mypage_invoice .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  body.mypage #page_mypage_invoice .buttons {
    padding-top: 20px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

body.mypage #page_mypage_digital #page_header .buttons {
  margin-top: 40px;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_digital #page_header .buttons {
    text-align: center;
    white-space: nowrap;
  }
}

body.mypage #page_mypage_digital #page_header .buttons a {
  margin-right: 20px;
  width: 240px;
  line-height: 30px;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_digital #page_header .buttons a {
    width: 200px;
    margin: 0 2px;
  }
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_digital #page_header .buttons a {
    width: auto;
    margin: 0 2px;
    font-size: .9rem;
    padding: 5px 10px;
  }
}

body.mypage #page_mypage_digital #page_body {
  margin-top: 20px;
  padding: 0;
}

body.mypage #page_mypage_digital #page_body .group {
  margin-bottom: 50px;
  clear: both;
}

body.mypage #page_mypage_digital #page_body .group .title {
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: -1px;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_digital #page_body .group .title {
    text-align: center;
  }
}

body.mypage #page_mypage_digital #page_body .group .content {
  padding: 10px 10px;
  background: #e6e6e6;
}

body.mypage #page_mypage_digital #page_body .group .content .buttons a {
  margin: 10px;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_digital #page_body .group .content .buttons a {
    margin: 5px;
  }
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_digital #page_body .group .content .buttons a {
    width: 100%;
    margin: 5px 0;
  }
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_digital #page_body .group .content .buttons {
    text-align: center;
  }
}

body.mypage #page_mypage_digital #page_body table {
  width: 100%;
  border-collapse: collapse;
}

body.mypage #page_mypage_digital #page_body table tr {
  border-top: 1px solid #ccc;
}

body.mypage #page_mypage_digital #page_body table tr:last-child {
  border-bottom: 1px solid #ccc;
}

body.mypage #page_mypage_digital #page_body table tr th,
body.mypage #page_mypage_digital #page_body table tr td {
  height: 40px;
  text-align: left;
}

body.mypage #page_mypage_digital #page_body table tr.title th {
  padding: 10px;
  font-size: .9rem;
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_digital #page_body table tr.title {
    display: none;
  }
}

body.mypage #page_mypage_digital #page_body table tr td {
  padding: 10px;
}

body.mypage #page_mypage_digital #page_body table tr td:nth-child(1) {
  width: 60%;
}

@media screen and (max-width: 1028px) {
  body.mypage #page_mypage_digital #page_body table tr td:nth-child(1) {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_digital #page_body table tr td:nth-child(1) {
    width: 100%;
    display: block;
    height: auto;
    padding: 5px 0;
    text-align: left;
    clear: both;
  }

  body.mypage #page_mypage_digital #page_body table tr td:nth-child(1) > div {
    padding: 5px 0;
  }

  body.mypage #page_mypage_digital #page_body table tr td:nth-child(1)::before {
    content: '\3054\5229\7528\4E2D\306E\6708\984D\30B5\30FC\30D3\30B9';
    font-weight: 600;
    float: left;
    width: 30%;
    text-align: left;
    padding: 10px;
    margin-right: 10px;
    line-height: 1.2;
  }
}

body.mypage #page_mypage_digital #page_body table tr td:nth-child(2) {
  width: 20%;
}

@media screen and (max-width: 1028px) {
  body.mypage #page_mypage_digital #page_body table tr td:nth-child(2) {
    width: 27%;
  }
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_digital #page_body table tr td:nth-child(2) {
    width: 100%;
    display: block;
    height: auto;
    padding: 5px 0;
    text-align: left;
    clear: both;
  }

  body.mypage #page_mypage_digital #page_body table tr td:nth-child(2) > div {
    padding: 5px 0;
  }

  body.mypage #page_mypage_digital #page_body table tr td:nth-child(2)::before {
    content: '\6709\52B9\671F\9650';
    font-weight: 600;
    float: left;
    width: 30%;
    text-align: left;
    padding: 10px;
    margin-right: 10px;
    line-height: 1.2;
  }
}

body.mypage #page_mypage_digital #page_body table tr td:nth-child(3) {
  width: 20%;
}

@media screen and (max-width: 1028px) {
  body.mypage #page_mypage_digital #page_body table tr td:nth-child(3) {
    width: 23%;
  }
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_digital #page_body table tr td:nth-child(3) {
    width: 100%;
    display: block;
    height: auto;
    padding: 5px 0;
    text-align: left;
    clear: both;
  }

  body.mypage #page_mypage_digital #page_body table tr td:nth-child(3) > div {
    padding: 5px 0;
  }

  body.mypage #page_mypage_digital #page_body table tr td:nth-child(3)::before {
    content: '\81EA\52D5\7D99\7D9A';
    font-weight: 600;
    float: left;
    width: 30%;
    text-align: left;
    padding: 10px;
    margin-right: 10px;
    line-height: 1.2;
  }
}

#page_mypage_coupon .group {
  margin-bottom: 40px;
}

#page_mypage_coupon .group .title {
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: -1px;
}

@media screen and (max-width: 800px) {
  #page_mypage_coupon .group .title {
    text-align: center;
  }
}

#page_mypage_coupon .group .content {
  padding: 20px;
  background-color: #e6e6e6;
}

#page_mypage_coupon .group .content li {
  padding: 10px 0;
  display: inherit;
  border-top: 1px solid #ccc;
}

#page_mypage_coupon .group .content li:last-child {
  border-bottom: 1px solid #ccc;
}

#page_mypage_coupon .group .content li div:nth-child(1) {
  font-weight: bold;
}

#page_mypage_coupon .group .content li div:nth-child(2) {
  margin: 0;
  font-weight: inherit;
}

#page_mypage_coupon .group .content li div:not(:first-child) {
  font-size: 0.8rem;
  padding-left: 20px;
}

.coupon_detail_head {
  min-width: 100px;
  display: inline-block;
}

@media screen and (max-width: 400px) {
  #page_mypage_coupon .group .content li div:not(:first-child) {
       padding-left: 10px;
  }
  .coupon_detail_head {
       min-width: 80px;
  }
}

body.mypage #page_mypage_coupon .group .content .coupon-rule {
  margin-top: 20px;
  font-size: 0.8rem;
}

body.mypage #page_mypage_coupon .input-group {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body.mypage #page_mypage_coupon .input-group input {
  padding: 0 10px;
  width: 520px;
  height: 40px;
  font-size: 0.8rem;
  border: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

body.mypage #page_mypage_coupon .input-group button {
  background-color: #262626;
  border: 0;
  display: block;
  width: 120px;
  color: #fff;
  border-radius: 3px;
  font-size: 0.9rem;
}

body.mypage #page_mypage_mail #page_body ul {
  padding: 20px;
  min-height: 160px;
  background-color: #e6e6e6;
}

body.mypage #page_mypage_mail #page_body li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid #ccc;
}

body.mypage #page_mypage_mail #page_body li:last-child {
  border-bottom: 1px solid #ccc;
}

body.mypage #page_mypage_mail #page_body li div:first-child {
  width: 40%;
  font-weight: bold;
  white-space: nowrap;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_mail #page_body li div:first-child {
    width: 100%;
  }
}

body.mypage #page_mypage_mail #page_body li div:nth-child(2) {
  width: 50%;
  white-space: nowrap;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_mail #page_body li div:nth-child(2) {
    width: 90%;
  }
}

body.mypage #page_mypage_mail #page_body li div:nth-child(3) {
  width: 10%;
  white-space: nowrap;
}

body.mypage #page_mypage_rank .group {
  margin-bottom: 40px;
}

body.mypage #page_mypage_rank .group .title {
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: -1px;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_rank .group .title {
    text-align: center;
  }
}

body.mypage #page_mypage_rank .group ul {
  padding: 20px;
  background-color: #e6e6e6;
}

body.mypage #page_mypage_rank #rank li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body.mypage #page_mypage_rank #rank li div:first-child {
  width: 300px;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_rank #rank li div:first-child {
    width: 100%;
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_rank #rank li div:first-child {
    text-align: left;
  }
}

body.mypage #page_mypage_rank #rank li div:nth-child(2) {
  margin-right: 10px;
  font-size: 1.8rem;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_rank #rank li div:nth-child(2) {
    width: 100%;
    margin-right: 0;
    text-align: left;
  }

  body.mypage #page_mypage_rank #rank li div:nth-child(2)::after {
    content: '\3067\3059';
    font-size: .9rem;
    margin-left: 10px;
  }
}

body.mypage #page_mypage_rank #rank li div:last-child {
  line-height: 20px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  align-self: flex-end;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_rank #rank li div:last-child {
    display: none;
  }
}

body.mypage #page_mypage_rank #point li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body.mypage #page_mypage_rank #point li div:first-child {
  width: 300px;
  font-weight: bold;
  font-size: 1.2rem;
}

@media screen and (max-width: 1000px) {
  body.mypage #page_mypage_rank #point li div:first-child {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_rank #point li div:first-child {
    width: 100%;
  }
}

body.mypage #page_mypage_rank #point li div:nth-child(2) {
  margin-right: 20px;
  font-size: 1.8rem;
}

@media screen and (max-width: 1000px) {
  body.mypage #page_mypage_rank #point li div:nth-child(2) {
    width: 50%;
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_rank #point li div:nth-child(2) {
    width: 100%;
    margin-right: 0;
  }
}

body.mypage #page_mypage_rank #point li div:nth-child(3) {
  margin-right: 40px;
}

@media screen and (max-width: 1000px) {
  body.mypage #page_mypage_rank #point li div:nth-child(3) {
    width: 47%;
    margin-right: 3%;
  }
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_rank #point li div:nth-child(3) {
    width: auto;
  }
}

body.mypage #page_mypage_rank #point li div:last-child {
  font-size: 1.2rem;
}

@media screen and (max-width: 1000px) {
  body.mypage #page_mypage_rank #point li div:last-child {
    width: 50%;
  }
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_rank #point li div:last-child {
    width: auto;
  }
}

body.mypage #page_mypage_review {
  padding-bottom: 40px;
}

body.mypage #page_mypage_review .group {
  margin-bottom: 40px;
}

body.mypage #page_mypage_review .group .title {
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: -1px;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_review .group .title {
    text-align: center;
  }
}

body.mypage #page_mypage_review .group .content {
  padding: 10px 20px 20px 20px;
  background-color: #e6e6e6;
}

body.mypage #page_mypage_review .group .content li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #ccc;
}

body.mypage #page_mypage_review .group .content li:last-child {
  border-bottom: 1px solid #ccc;
}

body.mypage #page_mypage_review .group .content li div:first-child {
  width: 500px;
}

body.mypage #page_mypage_review .group .content li div:nth-child(2) {
  margin: 0 20px;
  font-weight: bold;
}

body.mypage #page_mypage_review .group .content li div:last-child {
  font-size: 0.8rem;
}

body.mypage #page_mypage_review .group .content .coupon-rule {
  margin-top: 20px;
  font-size: 0.8rem;
}

body.mypage #page_mypage_review .input-group {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body.mypage #page_mypage_review .input-group input {
  padding: 0 10px;
  width: 520px;
  height: 40px;
  font-size: 0.8rem;
  border: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

body.mypage #page_mypage_review .input-group button {
  background-color: #262626;
  display: block;
  width: 120px;
  color: #fff;
  border-radius: 3px;
  font-size: 0.9rem;
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_review .input-group button {
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: -1px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 360px) {
  body.mypage #page_mypage_review .input-group button {
    font-size: 0.7rem;
  }
}

body.mypage #page_mypage_review #review > .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body.mypage #page_mypage_review #review > .header a {
  padding: 5px 20px;
  font-size: 1rem;
  background-color: #fff;
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_review #review > .header a {
    padding: 5px 10px;
    font-size: .8rem;
  }
}

body.mypage #page_mypage_review #review .content {
  padding: 10px 20px 30px 20px;
  background-color: #e6e6e6;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_review #review .content {
    padding: 10px 10px 30px 10px;
  }
}

body.mypage #page_mypage_review #review .content > ul > li {
  padding: 10px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

body.mypage #page_mypage_review #review .content > ul > li > div {
  margin: 20px 0;
}

body.mypage #page_mypage_review #review .content > ul > li > div.title {
  margin-top: 0;
  font-size: 1.25rem;
}

body.mypage #page_mypage_review #review .content > ul > li > div.date {
  color: #999;
  margin-top: 0;
  margin-bottom: 0;
}

body.mypage #page_mypage_review #review .content > ul > li > div.stars {
  margin-bottom: 0;
}

body.mypage #page_mypage_review #review .content > ul > li > div.extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_review #review .content > ul > li > div.extra {
    font-size: .9rem;
    letter-spacing: -1px;
  }
}

body.mypage #page_mypage_review #review .content > ul > li > div.extra .edit {
  margin-left: 30px;
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_review #review .content > ul > li > div.extra .edit {
    margin-left: 10px;
  }
}

body.mypage #page_mypage_unsubscribe .title {
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: -1px;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_unsubscribe .title {
    text-align: center;
  }
}

body.mypage #page_mypage_unsubscribe ul {
  padding: 20px;
  background-color: #e6e6e6;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_unsubscribe ul {
    width: 100%;
  }
}

body.mypage #page_mypage_unsubscribe li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_unsubscribe li {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body.mypage #page_mypage_unsubscribe li div:first-child {
  width: 260px;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_unsubscribe li div:first-child {
    width: 35%;
  }
}

@media screen and (max-width: 640px) {
  body.mypage #page_mypage_unsubscribe li div:first-child {
    width: 100%;
  }
}

body.mypage #page_mypage_unsubscribe li div:nth-child(2) {
  margin-right: 20px;
  font-size: 1.8rem;
}

@media screen and (max-width: 640px) {
  body.mypage #page_mypage_unsubscribe li div:nth-child(2) {
    margin-right: 0;
    width: 50%;
  }
}

@media screen and (max-width: 640px) {
  body.mypage #page_mypage_unsubscribe li div:nth-child(3) {
    width: 50%;
  }
}

@media screen and (max-width: 480px) {
  body.mypage #page_mypage_unsubscribe li div:nth-child(3) {
    margin-right: 0;
    width: 100%;
  }
}

body.mypage #page_mypage_unsubscribe #page_body {
  max-width: 800px;
}

body.mypage #page_mypage_unsubscribe #page_body #point {
  margin: 40px 0;
}

body.mypage #page_mypage_unsubscribe #page_body #agreement p {
  margin-bottom: 30px;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

body.mypage #page_mypage_unsubscribe #page_body #agreement .image {
  margin-right: 10px;
}

body.mypage #page_mypage_unsubscribe #page_body #agreement .image img {
  display: block;
}

body.mypage #page_mypage_unsubscribe #page_body #agreement .agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body.mypage #page_mypage_unsubscribe #page_body #agreement .agree label {
  position: relative;
  padding: 0 0 0 15px;
}

body.mypage #page_mypage_unsubscribe #page_body #agreement .agree label input {
  opacity: 0;
}

body.mypage #page_mypage_unsubscribe #page_body #agreement .agree label .image_check {
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  background: url("/imagedata/images/check.png") no-repeat 0 0;
  width: 20px;
  height: 20px;
}

body.mypage #page_mypage_unsubscribe #page_body #agreement .agree label .image_check:hover {
  cursor: pointer;
}

body.mypage #page_mypage_unsubscribe #page_body #agreement .agree label input:checked + .image_check {
  background-position: 0 -20px;
}

body.mypage #page_mypage_unsubscribe #page_body #agreement .buttons {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 0;
}

body.mypage #page_mypage_unsubscribe #page_body #agreement .buttons a {
  margin: 0 10px;
  width: 240px;
}

@media screen and (max-width: 800px) {
  body.mypage #page_mypage_unsubscribe #page_body #agreement .buttons a {
    width: auto;
  }
}

body.mypage .clear-check {
  padding: 5px 10px;
  color: #999;
  font-size: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 999px;
  white-space: nowrap;
}

/*miyagawa↑*/

/*hkuc↓*/

.product-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
}

.product-popup-close {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -100%;
  margin: auto;
  background: #fff;
  padding: 10px;
  border-radius: 999px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.5s;
  transition: -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s;
  transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
}

@media screen and (min-width: 800px) {
  .product-popup-close {
    bottom: 0;
    top: -100%;
    right: -100%;
  }
}

.product-popup-close:hover {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.product-popup-detail {
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  max-height: 510px;
  background-color: #fff;
  border-radius: 15px;
}

@media screen and (min-width: 800px) {
  .product-popup-detail {
    width: 90%;
    height: 90%;
  }
}

@media screen and (min-width: 800px) {
  .product-popup-detail {
    padding: 20px;
    max-width: 700px;
  }
}

.product-popup-detail .scrolling {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 15px;
  bottom: 30px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 800px) {
  .product-popup-detail .scrolling {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
  }
}

.product-popup-detail .wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product-popup-detail .product-popup-image {
  text-align: center;
  margin-right: 10px;
}

@media screen and (min-width: 800px) {
  .product-popup-detail .product-popup-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
    width: 140px;
    margin-right: 20px;
  }
}

.product-popup-detail .product-popup-image .limit {
  margin-top: 10px;
}

@media screen and (min-width: 800px) {
  .product-popup-detail .product-popup-image .limit {
    margin-top: 20px;
  }
}

.product-popup-detail .product-popup-image .limit h4 {
  font-size: 1.2rem;
}

.product-popup-detail .product-popup-image .limit ul {
  display: block;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.product-popup-detail .product-popup-image .limit ul li {
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: bold;
}

.product-popup-detail .product-popup-image .limit ul li span.no-limit {
  color: #ea335e;
}

.product-popup-detail .product-popup-image .review {
  font-size: 0.9rem;
  margin-top: 20px;
}

@media screen and (min-width: 800px) {
  .product-popup-detail .product-popup-image .review {
    font-size: 1rem;
  }
}

.product-popup-detail .product-popup-text h3 {
  font-size: 0.9rem;
  max-height: 2.4rem;
  line-height: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 350px) {
  .product-popup-detail .product-popup-text h3 {
    font-size: 1.1rem;
  }
}

.product-popup-detail .product-popup-text .date {
  color: #999999;
  font-size: 0.8rem;
}

.product-popup-detail .product-popup-text .platform {
  text-align: center;
}

@media screen and (min-width: 400px) {
  .product-popup-detail .product-popup-text .platform {
    padding: 10px 0;
  }
}

@media screen and (min-width: 800px) {
  .product-popup-detail .product-popup-text .platform {
    margin-top: 20px;
  }
}

.product-popup-detail .product-popup-text .platform a.btn {
  font-size: 0.7rem;
  margin: 2px;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (min-width: 350px) {
  .product-popup-detail .product-popup-text .platform a.btn {
    padding-left: 25px;
    padding-right: 25px;
    font-size: 0.9rem;
    margin: 5px;
  }
}

.product-popup-detail .product-popup-text .play ul {
  display: block;
}

@media screen and (min-width: 400px) {
  .product-popup-detail .product-popup-text .play ul > li {
    padding: 10px 0;
  }
}

.product-popup-detail .product-popup-text .play ul > li > label {
  font-size: 0.9rem;
  font-weight: bold;
}

@media screen and (min-width: 400px) {
  .product-popup-detail .product-popup-text .play ul > li > label {
    font-size: 1rem;
  }
}

.product-popup-detail .product-popup-text .play ul > li > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-popup-detail .product-popup-text .play ul > li > span a.btn {
  font-size: 0.7rem;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  width: 48%;
  border-radius: 3px;
  color: #fff;
  background: #2196f3;
}

@media screen and (min-width: 400px) {
  .product-popup-detail .product-popup-text .play ul > li > span a.btn {
    font-size: 0.9rem;
  }
}

.product-popup-detail .product-popup-text .play ul > li > span a.btn.btn-recommend {
  background: #5234e6;
}

.product-popup-detail .product-popup-text .play ul > li > span a.btn.active {
  background: transparent;
  border: 0;
  color: #000;
  position: relative;
  cursor: default;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.product-popup-detail .product-popup-text .play ul > li > span a.btn.active:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-top: 6px solid #000;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
}

.product-popup-detail .product-popup-text .play ul > li > span a.btn.active:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.product-popup-detail .product-popup-text .play .qr-wrap {
  font-size: 0.7rem;
  margin-top: 10px;
  padding: 10px;
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  font-weight: bold;
}

.product-popup-detail .product-popup-text .play .qr-wrap span {
  font-size: 0.8rem;
} 

@media screen and (min-width: 400px) {
  .product-popup-detail .product-popup-text .play .qr-wrap {
    font-size: 0.8rem;
  }
  .product-popup-detail .product-popup-text .play .qr-wrap span {
    font-size: 0.6rem;
  } 
}

@media screen and (min-width: 800px) {
  .product-popup-detail .product-popup-text .play .qr-wrap {
    font-size: 1rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 20px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 400px) {
  .product-popup-detail .product-popup-text .play .qr-wrap .qr {
    margin-right: 10px;
  }
  .product-popup-detail .product-popup-text .play .qr-wrap span {
    font-size: 0.6rem;
  }
}

@media screen and (min-width: 800px) {
  .product-popup-detail .product-popup-text .play .qr-wrap .qr {
    margin-right: 20px;
  }
  .product-popup-detail .product-popup-text .play .qr-wrap span {
    font-size: 0.6rem;
  }
}

.product-popup-detail .product-popup-text .download ul > li {
  line-height: 1.2;
  padding: 5px 0;
}

@media screen and (min-width: 400px) {
  .product-popup-detail .product-popup-text .download ul > li {
    padding: 10px 0;
  }
}

.product-popup-detail .product-popup-text .download ul > li a {
  font-size: 0.7rem;
}

@media screen and (min-width: 400px) {
  .product-popup-detail .product-popup-text .download ul > li a {
    font-size: 0.9rem;
  }
}

.product-popup-detail .product-popup-text .download ul > li > span {
  font-size: 0.7rem;
}

.product-popup-detail .product-popup-text .licence {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.product-popup-detail .product-popup-text .licence label {
  font-weight: bold;
  font-size: 0.9rem;
}

.product-popup-detail .product-popup-text .licence span {
  display: block;
  padding: 3px 5px;
  color: #ea335e;
  border: 1px solid #ccc;
}

.product-popup ul > li > label {
  display: block;
}

#page_sitemap {
  padding: 10px 10px 50px 10px;
}

@media screen and (min-width: 800px) {
  #page_sitemap {
    padding: 0 20px 50px 0;
  }
}

#page_sitemap #page_title {
  font-size: 1.2rem;
}

@media screen and (min-width: 800px) {
  #page_sitemap #page_title {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 800px) {
  #page_sitemap #page_body {
    margin-top: 40px;
  }
}

#page_sitemap #page_body h2 {
  font-size: 1.1rem;
  margin-top: 20px;
  padding: 10px 0;
}

@media screen and (min-width: 800px) {
  #page_sitemap #page_body h2 {
    font-size: 1.3rem;
    margin-top: 40px;
  }
}

#page_sitemap #page_body .sitemap-group {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 5px 0;
}

#page_sitemap #page_body .sitemap-group + .sitemap-group {
  margin-top: 10px;
}

#page_sitemap #page_body .sitemap-group h3 {
  font-size: 1rem;
  padding: 5px 0;
}

@media screen and (min-width: 800px) {
  #page_sitemap #page_body .sitemap-group h3 {
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 800px) {
  #page_sitemap #page_body .sitemap-group ul {
    margin: 0 -1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#page_sitemap #page_body .sitemap-group ul li {
  font-size: 1rem;
  padding: 5px 0;
}

@media screen and (min-width: 800px) {
  #page_sitemap #page_body .sitemap-group ul li {
    margin: 0 1em;
  }
}

#page_sitemap #page_body .sitemap-group a:hover {
  text-decoration: underline;
}

#page_guide {
  padding: 0 10px 20px;
}

@media screen and (min-width: 800px) {
  #page_guide {
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
  }
}

#page_guide #page_header h1 {
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (min-width: 800px) {
  #page_guide #page_header h1 {
    font-size: 1.5rem;
  }
}

#page_guide #page_header hr {
  border-top: 1px solid #ccc;
  border-bottom: 4px solid #ddd;
  height: 0;
}

#page_guide #page_body {
  margin-top: 20px;
}

#page_guide #page_body .guide-group h2 {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

@media screen and (min-width: 800px) {
  #page_guide #page_body .guide-group h2 {
    font-size: 1.3rem;
  }
}

#page_guide #page_body .guide-group + .guide-group {
  margin-top: 20px;
}

@media screen and (min-width: 800px) {
  #page_guide #page_body .guide-group + .guide-group {
    margin-top: 40px;
  }
}

#page_guide #page_body .guide-group ul li {
  font-size: 0.8rem;
}

@media screen and (min-width: 800px) {
  #page_guide #page_body .guide-group ul li {
    font-size: 1rem;
  }
}

#page_guide #page_body .buttons {
  text-align: center;
  margin: 20px 0;
}

@media screen and (min-width: 800px) {
  #page_guide #page_body .buttons {
    margin: 40px 0;
  }
}

#page_help {
  padding: 0 10px 20px;
}

@media screen and (min-width: 800px) {
  #page_help {
    padding: 0 0 20px 0;
    max-width: 800px;
    margin: 0 auto;
  }
}

#page_help .help-search {
  background: #fff;
  padding: 20px 0;
}

#page_help .help-search form {
  padding: 10px 50px;
  background: url("/imagedata/images/icon-search.png") no-repeat 15px center/auto 30px #eee;
  margin: 0 auto;
  max-width: 90%;
  border-radius: 999px;
  position: relative;
}

@media screen and (min-width: 800px) {
  #page_help .help-search form {
    width: 600px;
  }
}

#page_help .help-search form input[type=text] {
  height: 30px;
  width: 100%;
  border: 0;
  background: transparent;
}

@media screen and (min-width: 800px) {
  #page_help .help-search form input[type=text] {
    width: 500px;
  }
}

#page_help .help-search form input[type=submit] {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

#page_help #page_header h1 {
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (min-width: 800px) {
  #page_help #page_header h1 {
    font-size: 1.5rem;
  }
}

#page_help #page_header hr {
  border-top: 1px solid #ccc;
  border-bottom: 4px solid #ddd;
  height: 0;
}

#page_help #page_body h2 {
  font-size: 1.1rem;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  #page_help #page_body h2 {
    font-size: 1.3rem;
  }
}

#page_help #page_body #faq_list li {
  border-bottom: 1px solid #ccc;
}

#page_help #page_body #faq_list li .question,
#page_help #page_body #faq_list li .answer {
  padding: 1em 0.5em 1em 2em;
  text-indent: -1.5em;
  line-height: 1.5em;
}

#page_help #page_body #faq_list li .question span,
#page_help #page_body #faq_list li .answer span {
  display: inline-block;
  text-indent: 0;
  width: 1.5em;
}

#page_help #page_body #faq_list li .question span:after,
#page_help #page_body #faq_list li .answer span:after {
  content: '.';
}

#page_help #page_body #faq_list li .question {
  position: relative;
  padding-right: 2em;
  cursor: pointer;
}

#page_help #page_body #faq_list li .question span:before {
  content: 'Q';
  color: #134ec7;
}

#page_help #page_body #faq_list li .question:after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
  display: block;
  position: absolute;
  right: 0.5em;
  width: 1em;
  background: url("/imagedata/images/arrow-down-01.png") no-repeat center;
  top: 0;
  bottom: 0;
}

@media screen and (min-width: 800px) {
  #page_help #page_body #faq_list li .question:hover {
    background: white;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
            box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  }

  #page_help #page_body #faq_list li .question:hover:after {
    background-image: url("/imagedata/images/arrow-down-02.png");
  }
}

#page_help #page_body #faq_list li .answer {
  display: none;
  border-top: 1px solid #ccc;
}

#page_help #page_body #faq_list li .answer span:before {
  content: 'A';
  color: #de1616;
}

#page_help #page_body #faq_list li.active .question {
  background: white;
}

#page_help #page_body #faq_list li.active .question:after {
  background-image: url("/imagedata/images/arrow-down-02.png");
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#page_help #page_body #faq_list li.active .answer {
  display: block;
}

#page_help #page_body #faq_list .more {
  margin: 20px 0;
  text-align: center;
}

#page_help #page_body #faq_list .more a {
  padding-right: 1em;
  background: url("/imagedata/images/arrow-down-03.png") no-repeat right center;
}

#page_help #page_body #cate_list {
  margin-top: 40px;
}

#page_help #page_body #cate_list #cate_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 10px solid #4daae5;
}

#page_help #page_body #cate_list #cate_tab .tab {
  width: 50%;
  max-width: 10em;
  height: 4em;
  background-color: #262626;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

#page_help #page_body #cate_list #cate_tab .tab:last-child {
  margin-right: 0;
}

#page_help #page_body #cate_list #cate_tab .tab.active {
  background-color: #4daae5;
}

#page_help #page_body #cate_list #cate_tab .tab a {
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 350px) {
  #page_help #page_body #cate_list #cate_tab .tab a {
    font-size: 1rem;
  }
}

#page_help #page_body #cate_list #cate_content {
  background: white;
}

#page_help #page_body #cate_list #cate_content .tab {
  display: none;
}

#page_help #page_body #cate_list #cate_content .tab.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 800px) {
  #page_help #page_body #cate_list #cate_content .tab.active {
    padding: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  #page_help #page_body #cate_list #cate_content .tab.active > div {
    width: 30%;
  }
}

#page_help #page_body #cate_list #cate_content h4 {
  font-size: 0.9rem;
}

#page_help #page_body #cate_list #cate_content h5 {
  font-size: 0.875rem;
}

#page_help #page_body #cate_list #cate_content li {
  font-size: 0.8rem;
}

#page_help #page_body #cate_list #cate_content .primary-cate > li {
  border-bottom: 1px solid #ccc;
}

#page_help #page_body #cate_list #cate_content .primary-cate > li h4 {
  padding: 10px;
}

@media screen and (min-width: 800px) {
  #page_help #page_body #cate_list #cate_content .primary-cate > li {
    border-bottom: 0;
  }

  #page_help #page_body #cate_list #cate_content .primary-cate > li h4 {
    padding: 0;
  }

  #page_help #page_body #cate_list #cate_content .primary-cate > li + li {
    margin-top: 30px;
  }
}

#page_help #page_body #cate_list #cate_content .secondary-cate > li {
  border-top: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  #page_help #page_body #cate_list #cate_content .secondary-cate > li {
    border-top: 0;
  }
}

#page_help #page_body #cate_list #cate_content .secondary-cate > li h5 {
  cursor: pointer;
  padding: 10px 40px 10px 20px;
  position: relative;
}

@media screen and (min-width: 800px) {
  #page_help #page_body #cate_list #cate_content .secondary-cate > li h5 {
    padding: 5px 30px 5px 10px;
  }
}

#page_help #page_body #cate_list #cate_content .secondary-cate > li h5:after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
  display: block;
  position: absolute;
  right: 10px;
  width: 1em;
  background: url("/imagedata/images/arrow-down-01.png") no-repeat center;
  top: 0;
  bottom: 0;
}

@media screen and (min-width: 800px) {
  #page_help #page_body #cate_list #cate_content .secondary-cate > li:hover h5 {
    background-color: #eee;
  }
}

#page_help #page_body #cate_list #cate_content .secondary-cate > li.active .tertiary-cate {
  display: block;
}

#page_help #page_body #cate_list #cate_content .tertiary-cate {
  display: none;
}

@media screen and (min-width: 800px) {
  #page_help #page_body #cate_list #cate_content .tertiary-cate {
    padding: 5px 0;
  }
}

#page_help #page_body #cate_list #cate_content .tertiary-cate > li {
  border-top: 1px solid #ccc;
  background: #ddd;
  padding: 10px 20px;
}

@media screen and (min-width: 800px) {
  #page_help #page_body #cate_list #cate_content .tertiary-cate > li {
    background: transparent;
    border-top: 0;
    padding: 0 10px;
  }
}

#page_help #page_body #contact {
  margin-top: 40px;
}

#page_help #page_body #contact h2 {
  font-size: 1.1rem;
  border: 0;
}

@media screen and (min-width: 800px) {
  #page_help #page_body #contact h2 {
    font-size: 1.3rem;
  }
}

#page_help #page_body #contact p {
  font-size: 0.9rem;
  color: #666;
}

@media screen and (min-width: 800px) {
  #page_help #page_body #contact p {
    font-size: 1rem;
  }
}

#page_help #page_body #contact .buttons {
  margin: 20px 0;
}

#page_help_detail {
  padding: 0 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 800px) {
  #page_help_detail {
    padding: 0 0 20px 0;
    max-width: 800px;
    margin: 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#page_help_detail .help-search form {
  padding: 10px 50px;
  background: url("/imagedata/images/icon-search.png") no-repeat 15px center/auto 30px #ddd;
  margin: 0 auto;
  border-radius: 999px;
  position: relative;
}

#page_help_detail .help-search form input[type=text] {
  height: 30px;
  width: 100%;
  border: 0;
  background: transparent;
}

@media screen and (min-width: 800px) {
  #page_help_detail .help-search form input[type=text] {
    width: 460px;
  }
}

#page_help_detail .help-search form input[type=submit] {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

#page_help_detail #page_sidebar {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 20px;
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_sidebar {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: 20px;
    width: 160px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    margin-top: 0;
  }
}

#page_help_detail #page_sidebar #cate_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_sidebar #cate_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#page_help_detail #page_sidebar #cate_list .tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1em;
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_sidebar #cate_list .tab {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

#page_help_detail #page_sidebar #cate_list .tab h3 {
  text-align: center;
  position: relative;
  font-size: 0.9rem;
  font-weight: normal;
  background: black;
  color: #fff;
  cursor: pointer;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 10px 0;
}

@media screen and (min-width: 350px) {
  #page_help_detail #page_sidebar #cate_list .tab h3 {
    font-size: 1rem;
  }
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_sidebar #cate_list .tab h3 {
    font-weight: bold;
    padding: 10px;
    text-align: left;
    border-radius: 0;
  }
}

#page_help_detail #page_sidebar #cate_list .tab h3:after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
  display: none;
  position: absolute;
  right: 10px;
  width: 1em;
  background: url("/imagedata/images/arrow-down-04.png") no-repeat center;
  top: 0;
  bottom: 0;
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_sidebar #cate_list .tab h3:after {
    display: block;
  }
}

#page_help_detail #page_sidebar #cate_list .tab > ul {
  display: none;
}

#page_help_detail #page_sidebar #cate_list .tab.active h3 {
  background: #4daae5;
}

#page_help_detail #page_sidebar #cate_list .tab.active h3:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#page_help_detail #page_sidebar #cate_list .tab.active > ul {
  display: block;
}

#page_help_detail #page_sidebar #cate_list .tab:nth-child(1) .primary-cate {
  left: 0;
}

#page_help_detail #page_sidebar #cate_list .tab:nth-child(2) .primary-cate {
  left: -100%;
}

#page_help_detail #page_sidebar #cate_list .tab:nth-child(3) .primary-cate {
  left: -200%;
}

#page_help_detail #page_sidebar #cate_list .tab h3 + ul:before {
  content: '';
  display: block;
  height: 5px;
  background: #4daae5;
}

#page_help_detail #page_sidebar #cate_list .primary-cate {
  position: relative;
  /* width: 300%; */
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_sidebar #cate_list .primary-cate {
    position: static;
    width: 100%;
  }
}

#page_help_detail #page_sidebar #cate_list .primary-cate > li {
  border-bottom: 1px solid #ccc;
}

#page_help_detail #page_sidebar #cate_list .primary-cate > li h4 {
  font-size: 0.9rem;
  padding: 10px;
  background: #fff;
}

#page_help_detail #page_sidebar #cate_list .secondary-cate > li {
  border-top: 1px solid #ccc;
}

#page_help_detail #page_sidebar #cate_list .secondary-cate > li h5 {
  font-size: 0.8rem;
  background: #fff;
  cursor: pointer;
  padding: 10px 30px 10px 10px;
  position: relative;
}

#page_help_detail #page_sidebar #cate_list .secondary-cate > li h5:after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
  display: block;
  position: absolute;
  right: 10px;
  width: 1em;
  background: url("/imagedata/images/arrow-down-01.png") no-repeat center/9px auto;
  top: 0;
  bottom: 0;
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_sidebar #cate_list .secondary-cate > li:hover h5 {
    background-color: #eee;
  }
}

#page_help_detail #page_sidebar #cate_list .secondary-cate > li.active h5 {
  background-color: #eee;
}

#page_help_detail #page_sidebar #cate_list .secondary-cate > li.active .tertiary-cate {
  display: block;
}

#page_help_detail #page_sidebar #cate_list .tertiary-cate {
  display: none;
}

#page_help_detail #page_sidebar #cate_list .tertiary-cate > li {
  font-size: 0.8rem;
  border-top: 1px solid #ccc;
  background: #ddd;
  padding: 10px;
}

#page_help_detail #page_sidebar .help-search {
  background: #fff;
  padding: 20px 0;
}

#page_help_detail #page_sidebar .help-search form {
  max-width: 90%;
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_sidebar .help-search {
    display: none;
  }
}

#page_help_detail #page_content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#page_help_detail #page_content > .help-search {
  margin-bottom: 20px;
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

#page_help_detail #page_content #cate_tab {
  padding: 20px 0;
}

#page_help_detail #page_content #cate_tab li {
  padding: 0 10px;
}

#page_help_detail #page_content #search_result h1,
#page_help_detail #page_content #cate_tab h1 {
  font-size: 1.3rem;
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_content #search_result h1,
  #page_help_detail #page_content #cate_tab h1 {
    font-size: 1.5rem;
  }
}

#page_help_detail #page_content #search_result li,
#page_help_detail #page_content #cate_tab li {
  font-size: 0.9rem;
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_content #search_result li,
  #page_help_detail #page_content #cate_tab li {
    font-size: 1.1rem;
  }
}

#page_help_detail #page_content #cate_content h2 {
  font-size: 1.1rem;
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_content #cate_content h2 {
    font-size: 1.3rem;
  }
}

#page_help_detail #page_content #cate_content h2,
#page_help_detail #page_content #cate_content p {
  padding: 10px 0;
}

#page_help_detail #page_content #contact {
  margin-top: 40px;
}

#page_help_detail #page_content #contact h2 {
  font-size: 1.1rem;
  border: 0;
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_content #contact h2 {
    font-size: 1.3rem;
  }
}

#page_help_detail #page_content #contact p {
  font-size: 0.9rem;
  color: #666;
}

@media screen and (min-width: 800px) {
  #page_help_detail #page_content #contact p {
    font-size: 1rem;
  }
}

#page_help_detail #page_content #contact .buttons {
  margin: 20px 0;
}

#page_404.form-wrap {
  width: auto;
}

#page_404 #error_code {
  padding: 10px 0;
  font-size: 5rem;
  background-image: url("/imagedata/images/bg-error.png");
  background-size: contain;
  background-repeat: repeat-x;
  background-position: center center;
}

@media screen and (min-width: 800px) {
  #page_404 #error_code {
    padding: 20px;
    font-size: 9rem;
  }
}

#page_404 #error_title,
#page_404 #error_info,
#page_404 #error_back_top_page {
  text-align: center;
}

#page_404 #error_back_top_page,
#page_404 #error_info {
  margin-top: 15px;
}

#page_404 #error_title {
  font-size: 1.6rem;
}

@media screen and (min-width: 350px) {
  #page_404 #error_title {
    font-size: 1.8rem;
  }
}

#page_404 #error_back_top_page a {
  color: #2196f3;
}

@media screen and (min-width: 800px) {
  #page_404 #error_title,
  #page_404 #error_info,
  #page_404 #error_back_top_page {
    width: 800px;
    margin: auto;
  }

  #page_404 #error_back_top_page,
  #page_404 #error_info {
    margin-top: 25px;
  }
}

#page_error #error_title,
#page_error #error_info,
#page_error #error_back_top_page {
  text-align: center;
}

@media screen and (min-width: 800px) {
  #page_error #error_title,
  #page_error #error_info,
  #page_error #error_back_top_page {
    width: 800px;
    margin: auto;
  }
}

#page_error #error_back_top_page,
#page_error #error_info {
  margin-top: 15px;
}

@media screen and (min-width: 800px) {
  #page_error #error_back_top_page,
  #page_error #error_info {
    margin-top: 25px;
  }
}

#page_error #error_title {
  font-size: 1.6rem;
}

@media screen and (min-width: 800px) {
  #page_error #error_title {
    font-size: 1.8rem;
  }
}

#page_error #error_back_top_page a {
  color: #2196f3;
}

.form-wrap {
  margin: 30px 5px;
}

.form-wrap h1 {
  font-size: 1.8rem;
  line-height: 2em;
}

.form-wrap h1:after {
  content: "";
  display: block;
  border-top: 1px solid #ccc;
  border-bottom: 4px solid #ddd;
}

.form-wrap .required {
  margin-left: 0.5em;
  color: #ed4c0d;
}

.form-wrap .form-item {
  padding: 0.5rem 0;
}

.form-wrap .form-item + .form-item {
  border-top: 1px solid #ccc;
}

.form-wrap .form-item label {
  display: block;
  font-weight: bold;
  line-height: 2.5em;
}

.form-wrap .form-item input[type=text],
.form-wrap .form-item input[type=password],
.form-wrap .form-item input[type=email],
.form-wrap .form-item select,
.form-wrap .form-item textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 3px;
  text-indent: 0.5em;
  height: 30px;
  line-height: 30px;
}

.form-wrap .form-item textarea {
  height: 150px;
  vertical-align: top;
}

.form-wrap .form-item.error input[type=text],
.form-wrap .form-item.error input[type=password],
.form-wrap .form-item.error input[type=email],
.form-wrap .form-item.error select,
.form-wrap .form-item.error textarea {
  background-color: #f6ddd9;
}

.form-wrap .error_info {
  color: #ed4c0d;
}

.form-wrap .form-submit .error_info {
  text-align: center;
  margin-top: 20px;
}

.form-wrap .form-checker {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.form-wrap .form-checker input[type=checkbox] {
  opacity: 0;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  position: relative;
  z-index: 2;
}

.form-wrap .form-checker input[type=checkbox] + i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/imagedata/images/icon-check.png") no-repeat center center/contain;
  z-index: 1;
}

.form-wrap .form-checker input[type=checkbox]:checked + i {
  background-image: url("/imagedata/images/check-blue.png");
}

.form-wrap .text-center > .btn {
  margin: 2rem 0;
}

@media screen and (min-width: 800px) {
  .form-wrap {
    width: 800px;
    margin: 60px auto;
  }

  .form-wrap .form-item {
    padding: 10px 0;
  }

  .form-wrap .form-item label {
    display: inline-block;
    width: 250px;
  }

  .form-wrap .form-item input[type=text],
  .form-wrap .form-item input[type=password],
  .form-wrap .form-item input[type=email],
  .form-wrap .form-item textarea {
    width: 550px;
  }

  .form-wrap .form-item select {
    width: 50%;
  }

  .form-wrap .error_info {
    margin-left: 250px;
  }

  .form-wrap .form-submit .error_info {
    margin-left: 0;
  }

  .form-wrap a.round-btn,
  .form-wrap input.round-btn {
    height: 80px;
    line-height: 80px;
  }
}

#page_login .login-group {
  padding-top: 0.5rem;
}

#page_login .login-group h2 {
  border-bottom: 1px solid #ccc;
  margin-top: 40px;
  font-size: 1.2rem;
}

@media screen and (min-width: 350px) {
  #page_login .login-group h2 {
    font-size: 1.5rem;
  }
}

#page_login .form-item label.form-item-remember {
  font-weight: normal;
  text-align: center;
}

#page_login #register_info {
  padding-top: 20px;
}

#page_login .form-submit {
  text-align: center;
}

#page_login .form-submit a {
  color: #2196f3;
}

#page_login a.btn,
#page_login input.btn {
  min-width: 16em;
}

@media screen and (min-width: 800px) {
  #page_login .form-item label.form-item-remember {
    text-align: left;
    width: auto;
    margin-left: 250px;
  }
}

#page_register #page_body {
  margin-top: 20px;
}

@media screen and (min-width: 800px) {
  #page_register #page_body {
    margin-top: 60px;
  }
}

#page_register #page_body h2 {
  border-bottom: 1px solid #ccc;
}

#page_register #page_body .form-item-checker {
  width: 100%;
  text-align: center;
  font-weight: normal;
}

@media screen and (min-width: 800px) {
  #page_register #page_body .form-item-checker {
    padding: 10px 0;
  }
}

#page_register #page_body .term {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
}

@media screen and (min-width: 800px) {
  #page_register #page_body .term {
    font-size: 1rem;
  }
}

#page_register #page_body .term a {
  color: #2196f3;
  padding-right: 26px;
  background: url("/imagedata/images/icon-target-blank.png") no-repeat right center/contain;
  margin-right: 5px;
}

#page_register_success {
  text-align: center;
}

#page_register_success h2 {
  margin-top: 50px;
}

#page_register_success p {
  margin-top: 20px;
  font-size: 0.8rem;
}

#page_register_success .link {
  margin-top: 50px;
}

#page_register_success .link a {
  color: #2196f3;
  font-size: 1.5rem;
}

#age_confirm {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #fff;
  overflow-x: hidden;
}

#age_confirm #header #action_panel #logo {
  display: inline-block;
  height: 100%;
  padding: 15px 0 15px 10px;
}

#age_confirm .content {
  padding: 20px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 640px;
  max-height: 100%;
  overflow: auto;
  background-color: #fff;
  border-radius: 0
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#age_confirm .content .image {
  margin: 0 0 20px
}

#age_confirm .content .image img {
  width: 100px;
  display: block;
}

#age_confirm .content .text {
  font-size: 0.8rem;
}

#age_confirm .content .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#age_confirm .content .buttons a {
  margin: 10px;
  padding: 10px 20px;
  width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#age_confirm .content .buttons span {
  display: block;
}

#age_confirm .content .buttons span:first-child {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

#age_confirm .content .buttons span:last-child {
  margin-top: -5px;
  font-size: 0.8rem;
}

#age_confirm #button_exit {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

#age_confirm #button_enter {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#age_confirm #footer {
  position: absolute;
  bottom: 0;
  width: 100%;

}
@media screen and (min-width: 800px){
  #age_confirm #header {
    border-bottom: 1px solid #f0f0f0
  }
}

@media screen and (max-width: 375px) {
  #age_confirm .age_notice {
    font-size: 1rem
  }
  #age_confirm .age_text {
    font-size: .5rem
  }
}

@media screen and (min-width: 400px) {
  #age_confirm #button_exit {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  #age_confirm #button_enter {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

#age_confirm .button-black {
  color: #fff;
  background-color: #000;
  border-radius: 999px;
}

#age_confirm .button-pink {
  color: #fff;
  background-color: #ea335e;
  border-radius: 999px;
}

@media screen and (min-width: 800px) {
  #age_confirm .content {
    width: 640px;
    height: 480px;
  }

  #age_confirm .content .text {
    font-size: 1rem;
  }
}

#page_contact h1 {
  font-size: 1.8rem;
  line-height: 2em;
}

#page_contact h1:after {
  content: "";
  display: block;
  border-top: 1px solid #ccc;
  border-bottom: 4px solid #ddd;
}

#page_contact #contact_sei,
#page_contact #contact_mei {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

#page_contact #contact_name .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#page_contact #contact_name .content > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: #e6e6e6;
  width: 48%;
}

#page_contact #contact_name label {
  width: 50px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  text-align: center;
  font-weight: normal;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

#page_contact #contact_service_detail_wrapper {
  display: none;
}

#page_contact .term {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
}

#page_contact .term a {
  color: #2196f3;
  padding-right: 26px;
  background: url("/imagedata/images/icon-target-blank.png") no-repeat right center/contain;
  margin-right: 5px;
}

#page_contact a.btn,
#page_contact input.btn {
  min-width: 10em;
}

@media screen and (min-width: 800px) {
  #page_contact #contact_name {
    display: inline-block;
    width: 550px;
  }

  #page_contact #contact_name label {
    width: 100px;
  }

  #page_contact .term {
    font-size: 1em;
  }
}

#page_contact_success {
  text-align: center;
}

#page_contact_success h2 {
  margin-top: 50px;
}

#page_contact_success p {
  margin-top: 20px;
  font-size: 0.8rem;
}

#page_contact_success .link {
  margin-top: 50px;
}

#page_contact_success .link a {
  color: #2196f3;
  font-size: 1.5rem;
}

#page_video {
  padding-bottom: 30px;
}

#page_video #page_header #slider .swiper-container {
  width: 100%;
}

@media screen and (min-width: 800px) {
  #page_video #page_header #slider .swiper-container:hover .slider-swiper-navigation {
    display: block;
  }
}

#page_video #page_header #slider .swiper-container .swiper-slide {
  width: 100% !important;
}

@media screen and (min-width: 800px) {
  #page_video #page_header #slider .swiper-container .swiper-slide {
    max-width: 960px;
  }
}

#page_video #page_header #slider .swiper-container .swiper-slide img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 800px) {
  #page_video #page_header #slider .swiper-container .swiper-slide img {
    max-width: 960px;
  }
}

#page_video #page_header #slider .swiper-container .slider-swiper-navigation {
  display: none;
}

#page_video #page_header #slider .swiper-container .slider-swiper-navigation img {
  display: block;
}

#page_video #page_header #slider .swiper-container .slider-swiper-navigation .slider-button-next {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  outline: none;
  z-index: 1;
}

#page_video #page_header #slider .swiper-container .slider-swiper-navigation .slider-button-prev {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  outline: none;
  z-index: 1;
}

#page_video #page_body {
  padding: 0;
}

#page_video #page_body #recommend {
  margin-top: 40px;
  margin-bottom: 20px;
}

@media screen and (min-width: 800px) {
  #page_video #page_body #recommend {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 800px) {
  #page_video #page_body {
    padding: 0 20px 0 0;
  }
}

#page_video #page_body > .wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 10px;
}

@media screen and (min-width: 800px) {
  #page_video #page_body > .wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

#page_video #page_body > .wrapper #news {
  margin-bottom: 40px;
}

@media screen and (min-width: 800px) {
  #page_video #page_body > .wrapper #news {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 800px) {
  #page_video #page_body > .wrapper .wrapper-header {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#page_video #page_body > .wrapper .wrapper-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page_video #page_body > .wrapper .wrapper-header ul li {
  margin: 5px;
}

@media screen and (min-width: 800px) {
  #page_video #page_body > .wrapper .wrapper-header ul li {
    margin: 0 5px 0 0;
  }
}

@media screen and (min-width: 1280px) {
  #page_video #page_body > .wrapper .wrapper-header ul li {
    margin: 0 10px 0 0;
  }
}

#page_video #page_body > .wrapper .wrapper-header ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 15px;
  color: #999;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 999px;
  font-size: 0.9rem;
}

@media screen and (min-width: 350px) {
  #page_video #page_body > .wrapper .wrapper-header ul li a {
    font-size: 1rem;
  }
}

@media screen and (min-width: 800px) {
  #page_video #page_body > .wrapper .wrapper-header ul li a {
    margin: 0;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 1280px) {
  #page_video #page_body > .wrapper .wrapper-header ul li a {
    margin: 0 10px 0 0;
    font-size: 1rem;
  }
}

#page_video #page_body > .wrapper .wrapper-header ul li a.active {
  background-color: #090909;
  border-color: #090909;
  color: #fff;
}

@media screen and (min-width: 800px) {
  #page_video #page_body #page_title {
    margin-right: 10px;
  }

  #page_video #page_body #page_title h1 {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1280px) {
  #page_video #page_body #page_title {
    margin-right: 20px;
  }

  #page_video #page_body #page_title h1 {
    font-size: 2rem;
  }
}

#page_video #page_body hr {
  margin: 10px;
  height: 4px;
  border: none;
  background-color: #ddd;
  border-top: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  #page_video #page_body hr {
    margin: 0;
  }
}

@media screen and (min-width: 800px) {
  #page_video .card-collection .card-header,
  #page_video .card-collection .card-footer,
  #page_video .card-collection .card-swiper {
    padding: 0;
  }
}

#page_video .card-collection .card-swiper-navigation .card-button-next,
#page_video .card-collection .card-swiper-navigation .card-button-prev {
  z-index: 1;
}

#page_ranking {
  padding: 10px;
}

@media screen and (min-width: 800px) {
  #page_ranking {
    padding: 0 20px 0 0;
  }
}

#page_ranking .condition {
  margin: 10px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  #page_ranking .condition {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#page_ranking .condition .title {
  width: 120px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  font-size: 1rem;
}

@media screen and (min-width: 800px) {
  #page_ranking .condition .title {
    padding: 0 10px;
  }
}

#page_ranking .condition ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  #page_ranking .condition ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#page_ranking .condition ul li {
  margin: 10px 10px 10px 0;
}

#page_ranking .condition ul li a {
  width: 140px;
  height: 36px;
  font-size: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ccc;
  border-radius: 999px;
}

#page_ranking .condition ul li a.active {
  color: #fff;
  border-color: #090909;
  background-color: #090909;
}

#page_ranking #page_header {
  border-bottom: 1px solid #ccc;
}

#page_ranking #page_header #page_title {
  font-size: 1.2rem;
}

@media screen and (min-width: 800px) {
  #page_ranking #page_header #page_title {
    font-size: 1.8rem;
  }
}

#page_ranking #page_header p {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 0.7rem;
  background-color: #e6e6e6;
  border-radius: 999px;
}

@media screen and (min-width: 800px) {
  #page_ranking #page_header p {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

#page_ranking #page_body #extra {
  border-bottom: 1px solid #ccc;
}

#page_ranking #page_body #extra .condition-result {
  margin-top: 50px;
  padding: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#page_ranking #page_body #extra .condition-result .title {
  margin-right: 20px;
}

#page_ranking #page_body ul .product {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 105px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 350px) {
  #page_ranking #page_body ul .product {
    height: auto;
  }
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul .product {
    padding: 20px;
  }
}

#page_ranking #page_body ul .product .ranking {
  margin-right: 10px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 350px) {
  #page_ranking #page_body ul .product .ranking {
    width: 45px;
  }
}

@media screen and (min-width: 400px) {
  #page_ranking #page_body ul .product .ranking {
    margin-right: 20px;
    width: 60px;
  }
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul .product .ranking {
    width: 80px;
  }
}

#page_ranking #page_body ul .product .ranking .icon img {
  width: 30px;
}

@media screen and (min-width: 400px) {
  #page_ranking #page_body ul .product .ranking .icon img {
    width: 50px;
  }
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul .product .ranking .icon img {
    width: auto;
  }
}

#page_ranking #page_body ul .product .ranking .rank {
  margin-bottom: -10px;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul .product .ranking .rank {
    margin-bottom: -20px;
    font-size: 2rem;
  }
}

#page_ranking #page_body ul .product .ranking img {
  max-width: 100%;
  display: block;
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul .product .ranking img {
    max-width: inherit;
  }
}

#page_ranking #page_body ul .product .image {
  margin-right: 10px;
  padding: 0 5px;
  width: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
}

@media screen and (min-width: 350px) {
  #page_ranking #page_body ul .product .image {
    padding: 5px;
    width: 85px;
    height: 85px;
    background-color: #fff;
  }

  #page_ranking #page_body ul .product .image .link {
    width: 85px;
    height: 85px;
  }
}

@media screen and (min-width: 400px) {
  #page_ranking #page_body ul .product .image {
    padding: 10px;
    width: 120px;
    height: 120px;
    background-color: #fff;
  }

  #page_ranking #page_body ul .product .image .link {
    padding: 10px;
    width: 120px;
    height: 120px;
  }
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul .product .image {
    margin-right: 20px;
    width: 170px;
    height: 170px;
  }

  #page_ranking #page_body ul .product .image .link {
    padding: 10px;
    width: 170px;
    height: 170px;
  }
}

#page_ranking #page_body ul .product .image img {
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

#page_ranking #page_body ul .product .info {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: start;
      align-self: flex-start;
  text-align: justify;
}

@media screen and (min-width: 400px) {
  #page_ranking #page_body ul .product .info {
    margin: 0 10px;
  }
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul .product .info {
    min-height: 170px;
  }
}

#page_ranking #page_body ul .product .info .title {
  margin: 0 0 5px;
  line-height: 0.75rem;
}

@media screen and (min-width: 350px) {
  #page_ranking #page_body ul .product .info .title {
    line-height: 0.85rem;
  }
}

@media screen and (min-width: 400px) {
  #page_ranking #page_body ul .product .info .title {
    margin: 0 0 10px;
    line-height: 1rem;
  }
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul .product .info .title {
    line-height: 1.5rem;
  }
}
#page_ranking #page_body ul .product .info .title h2 {
  background: #f0f0f0;
  overflow: hidden;
  width: 100%;
}

#page_ranking #page_body ul .product .info .title a {
  font-weight: normal;
  font-size: 0.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (min-width: 350px) {
  #page_ranking #page_body ul .product .info .title a {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 400px) {
  #page_ranking #page_body ul .product .info .title a {
    font-size: 1rem;
  }
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul .product .info .title a {
    font-size: 1.2rem;
  }
}

#page_ranking #page_body ul .product .info .mobile-actor,
#page_ranking #page_body ul .product .info .maker {
  display: block;
  margin: 5px 0;
  font-size: 0.75rem;
}

#page_ranking #page_body ul .product .info .actor {
  display: none;
  margin: 5px 0;
  font-size: 0.75rem;
}

@media screen and (min-width: 400px) {
  #page_ranking #page_body ul .product .info .actor {
    margin: 10px 0;
    font-size: 1rem;
  }
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul .product .info .mobile-actor {
    display: none;
  }

  #page_ranking #page_body ul .product .info .maker,
  #page_ranking #page_body ul .product .info .actor {
    display: block;
    margin: 5px 0;
    font-size: 0.8rem;
  }
}

#page_ranking #page_body ul .product .info .actor {
  padding-left: 4em;
  text-indent: -4em;
}

#page_ranking #page_body ul.actor-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page_ranking #page_body ul.actor-list .product {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul.actor-list .product {
    padding: 20px 0;
  }
}

@media screen and (min-width: 1280px) {
  #page_ranking #page_body ul.actor-list .product {
    width: 46%;
    margin: 0 2%;
  }
}

@media screen and (min-width: 1680px) {
  #page_ranking #page_body ul.actor-list .product {
    width: 29%;
  }
}

#page_ranking #page_body ul.actor-list .product .image {
  background: none;
  margin-right: 0;
  width: 90px;
  height: 90px;
}

@media screen and (min-width: 400px) {
  #page_ranking #page_body ul.actor-list .product .image {
    width: 120px;
    height: 120px;
  }
}

#page_ranking #page_body ul.actor-list .product .image a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
}

#page_ranking #page_body ul.actor-list .product .image a img {
  display: block;
  width: 100%;
}

#page_ranking #page_body ul.actor-list .product .info {
  min-height: 90px;
}

@media screen and (min-width: 400px) {
  #page_ranking #page_body ul.actor-list .product .info {
    min-height: 120px;
  }
}

#page_ranking #page_body ul.actor-list .product .info .films {
  margin: 5px 0;
  font-size: 0.75rem;
}

@media screen and (min-width: 400px) {
  #page_ranking #page_body ul.actor-list .product .info .films {
    margin: 10px 0;
  }
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul.actor-list .product .info .films {
    display: block;
    margin: 5px 0;
    font-size: 1rem;
  }
}

#page_ranking #page_body ul.genre-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page_ranking #page_body ul.genre-list .product {
  height: auto;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

#page_ranking #page_body ul.genre-list .product .ranking {
  margin-right: 3%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto;
}

#page_ranking #page_body ul.genre-list .product .ranking img {
  max-width: 100%;
}

#page_ranking #page_body ul.genre-list .product .info {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
  margin: 0;
}

@media screen and (min-width: 1280px) {
  #page_ranking #page_body ul.genre-list .product {
    width: 46%;
    margin: 0 2%;
  }
}

@media screen and (min-width: 1680px) {
  #page_ranking #page_body ul.genre-list .product {
    width: 29%;
  }
}

#page_ranking #page_body ul.genre-list .product .genre-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page_ranking #page_body ul.genre-list .product .genre-products .genre-product {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#page_ranking #page_body ul.genre-list .product .genre-products .genre-product + .genre-product {
  margin-left: 3%;
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul.genre-list .product .genre-products .genre-product {
    background: #fff;
    border-radius: 15px;
  }
}

#page_ranking #page_body ul.genre-list .product .genre-products .genre-product-tags {
  display: none;
  font-size: 0.8rem;
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul.genre-list .product .genre-products .genre-product-tags {
    display: block;
  }
}

#page_ranking #page_body ul.genre-list .product .genre-products .genre-product-tags span {
  padding: 0 0.6em;
  color: #fff;
  display: inline-block;
  background-color: #ea335e;
  line-height: 20px;
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul.genre-list .product .genre-products .genre-product-image {
    margin: 0 5%;
  }
}

#page_ranking #page_body ul.genre-list .product .genre-products .genre-product-image img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: auto;
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul.genre-list .product .genre-products .genre-product-image img {
    width: 80%;
  }
}

#page_ranking #page_body ul.genre-list .product .genre-products .genre-product-title {
  display: none;
}

@media screen and (min-width: 800px) {
  #page_ranking #page_body ul.genre-list .product .genre-products .genre-product-title {
    display: -webkit-box;
    margin: 3% 7%;
    font-size: 0.8rem;
    line-height: 1.2rem;
    height: 2.4rem;
    overflow: hidden;
  }
}

@media screen and (min-width: 1280px) {
  #page_ranking #page_body ul.genre-list .product .genre-products .genre-product-title {
    line-height: 1rem;
    height: 2rem;
  }
}

@media screen and (min-width: 1680px) {
  #page_ranking #page_body ul.genre-list .product .genre-products .genre-product-title {
    line-height: 1.2rem;
    height: 2.4rem;
  }
}

#page_genre {
  padding: 10px;
}

@media screen and (min-width: 800px) {
  #page_genre {
    padding: 0 20px 0 0;
  }
}

#page_genre #tab {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  //border-bottom: 10px solid #4daae5;
}

#page_genre #tab .tab {
  //margin-right: 10px;
  width: 47.5%;
  max-width: 650px;
  height: 50px;
  background-color: #262626;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

#page_genre #tab .tab:last-child {
  margin-right: 0;
}

#page_genre #tab .tab.active {
  background-color: #4daae5;
}

#page_genre #tab .tab a {
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page_genre #wrapper {
  /*margin-top: 20px;*/
  padding: 10px 10px 50px 10px;
  background-color: #e6e6e6;
}

#page_genre #recommend {
  margin-bottom: 20px;
}

@media screen and (min-width: 800px) {
  #page_genre #recommend {
    margin-bottom: 40px;
  }
}

#page_genre .genre {
  border-top: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  #page_genre .genre {
    border-top: 0;
    padding-bottom: 10px;
  }
}

#page_genre .genre:last-child {
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  #page_genre .genre:last-child {
    border-bottom: 0;
  }
}

#page_genre .genre.open {
  padding-bottom: 10px;
}

#page_genre .genre.open .header::after {
  background-image: url("/imagedata/images/icon-minus.png");
}

#page_genre .genre.open .body {
  display: block;
}

#page_genre .genre .header {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#page_genre .genre .header::after {
  content: '';
  display: block;
  width: 20px;
  height: 100%;
  background-image: url("/imagedata/images/icon-plus.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  right: 10px;
}

@media screen and (min-width: 800px) {
  #page_genre .genre .header::after {
    display: none;
  }
}

#page_genre .genre .body {
  display: none;
  padding: 10px;
  background-color: #fff;
}

@media screen and (min-width: 800px) {
  #page_genre .genre .body {
    display: block;
  }
}

#page_genre .genre .body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page_genre .genre .body ul li {
  margin: 5px 0;
  width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8rem;
}

#page_genre .genre .body ul li .image {
  margin-right: 10px;
}

#page_genre .genre .body ul li .image img {
  display: block;
}

#page_series {
  padding: 10px;
}

@media screen and (min-width: 800px) {
  #page_series {
    padding: 0 20px 0 0;
  }
}

#page_series #page_body {
  margin: 10px 0;
}

@media screen and (min-width: 800px) {
  #page_series #page_body {
    border-top: 1px solid #ccc;
  }
}

#page_series #page_body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 800px) {
  #page_series #page_body ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#page_series #page_body ul .series {
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (min-width: 800px) {
  #page_series #page_body ul .series {
    margin: 0 20px 0 0;
    padding: 20px 0;
    width: 480px;
    border-bottom: 1px solid #ccc;
  }
}

#page_series #page_body ul .series .image {
  width: 100px;
  height: 100px;
  padding: 10px;
  background: #fff;
  border-radius: 15px;
}

@media screen and (min-width: 350px) {
  #page_series #page_body ul .series .image {
    width: 120px;
    height: 120px;
  }
}

@media screen and (min-width: 800px) {
  #page_series #page_body ul .series .image {
    width: 170px;
    height: 170px;
    padding: 35px;
  }
}

#page_series #page_body ul .series .image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: auto;
  vertical-align: middle;
}

#page_series #page_body ul .series .info {
  min-height: 100px;
  margin-left: 20px;
}

@media screen and (min-width: 350px) {
  #page_series #page_body ul .series .info {
    min-height: 120px;
  }
}

@media screen and (min-width: 800px) {
  #page_series #page_body ul .series .info {
    min-height: 170px;
  }
}

#page_series #page_body ul .series .info h3 {
  font-size: 1.2rem;
}

#page_series #page_body ul .series .info > p {
  margin-top: 10px;
}

@media screen and (min-width: 800px) {
  #page_series #page_body ul .series .info > p {
    font-size: 0.8rem;
  }
}

#page_series #page_body ul .series .info > a {
  display: block;
  margin-top: 10px;
}

@media screen and (min-width: 800px) {
  #page_series #page_body ul .series .info > a {
    font-size: 0.8rem;
  }
}

#page_result {
  padding: 10px;
}

#page_result .paginator {
  margin-top: 10px;
  padding: 10px 10px;
  font-size: 0.9rem;
  background-color: #e6e6e6;
  border-radius: 15px;
  color: #222;
}

@media screen and (min-width: 800px) {
  #page_result .paginator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 10px;
  }
}

#page_result .paginator > p > span + span {
  margin-left: 1em;
}

#page_result .pagination ul {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 800px) {
  #page_result .pagination ul {
    margin-top: 0;
  }
}

#page_result .pagination ul li {
  margin: 5px;
  overflow: hidden;
}

#page_result .pagination ul li > a,
#page_result .pagination ul li > span {
  color: #999;
}

#page_result .pagination ul li.disabled {
  display: none;
}

#page_result .pagination ul li.active span {
  color: #fff;
  background-color: #090909;
  border-color: #090909;
}

#page_result .pagination ul li.ellipsis {
  width: 100%;
  height: 0;
  margin: 0;
  overflow: hidden;
}

@media screen and (min-width: 800px) {
  #page_result .pagination ul li.ellipsis {
    width: auto;
    height: auto;
    margin: 5px;
    overflow: inherit;
  }
}

#page_result .pagination ul li.ellipsis span {
  border: none;
}

#page_result .pagination ul li.pagination-first {
  -webkit-box-ordinal-group: 997;
      -ms-flex-order: 996;
          order: 996;
}

@media screen and (min-width: 800px) {
  #page_result .pagination ul li.pagination-first {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
  }
}

#page_result .pagination ul li.pagination-prev {
  -webkit-box-ordinal-group: 998;
      -ms-flex-order: 997;
          order: 997;
}

@media screen and (min-width: 800px) {
  #page_result .pagination ul li.pagination-prev {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
  }
}

#page_result .pagination ul li.pagination-next {
  -webkit-box-ordinal-group: 999;
      -ms-flex-order: 998;
          order: 998;
}

@media screen and (min-width: 800px) {
  #page_result .pagination ul li.pagination-next {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
  }
}

#page_result .pagination ul li.pagination-last {
  -webkit-box-ordinal-group: 1000;
      -ms-flex-order: 999;
          order: 999;
}

@media screen and (min-width: 800px) {
  #page_result .pagination ul li.pagination-last {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
  }
}

#page_result .pagination ul a,
#page_result .pagination ul span {
  padding: 0 10px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ccc;
  border-radius: 15px;
}

#page_result #page_header > .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#page_result #page_header #search_filter {
  min-width: 114px;
}

@media screen and (min-width: 800px) {
  #page_result #page_header #search_filter {
    display: none;
  }
}

#page_result #page_header #search_filter > a {
  padding: 5px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page_result #page_header #search_filter > a img {
  margin-right: 5px;
  width: 15px;
  display: block;
}

#page_result #page_header #search_filter > ul {
  display: none;
  padding: 15px 0;
  border-radius: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 2;
}

#page_result #page_header #search_filter > ul.open {
  display: block;
}

#page_result #page_header #search_filter > ul > li {
  border-top: 1px solid #ccc;
}

#page_result #page_header #search_filter > ul > li:last-child {
  border-bottom: 1px solid #ccc;
}

#page_result #page_header #search_filter > ul > li.open > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#page_result #page_header #search_filter > ul > li.open > h3::after {
  background-image: url("/imagedata/images/arrow-down-01.png");
}

#page_result #page_header #search_filter > ul > li > h3 {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  position: relative;
}

#page_result #page_header #search_filter > ul > li > h3::after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  background-image: url("/imagedata/images/arrow-right-01.png");
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 10px;
}

#page_result #page_header #search_filter > ul > li > ul {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #ddd;
}

#page_result #page_header #search_filter > ul > li > ul > li {
  width: 50%;
  border-top: 1px solid #ddd;
}

#page_result #page_header #search_filter > ul > li > ul > li > a {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  font-size: 0.8rem;
  font-weight: bold;
  background-color: #eee;
  position: relative;
}

#page_result #page_header #search_filter > ul > li > ul > li > a.active {
  color: #fff;
  background-color: #ed4c0d;
}

#page_result #page_header #search_filter > ul > li > ul > li > a.active::after {
  width: 10px;
  background-image: url("/imagedata/images/icon-close-02.png");
}

#page_result #page_header #search_filter > ul > li > ul > li > a::after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  background-image: url("/imagedata/images/arrow-right-01.png");
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 10px;
}

#page_result #page_header #order {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page_result #page_header #order select {
  margin-left: 5px;
  border-radius: 3px;
  border: 0;
  padding: 2px 5px;
}

#page_result #page_header #order .image {
  margin-left: 5px;
}

#page_result #page_header #order .image img {
  display: block;
}

#page_result #page_header #order p {
  display: none;
}

@media screen and (min-width: 800px) {
  #page_result #page_header #order p {
    display: block;
  }
}

#page_result #page_header #order .display-item-count {
  display: none;
}

#page_result #page_header #order .display-item-count-label {
  margin-left: 0.3em;
}

@media screen and (min-width: 800px) {
  #page_result #page_header #order .display-item-count {
    display: block;
  }

  #page_result #page_header #order .display-item-count > a {
    cursor: pointer;
    background: #262626;
    color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 0.3em;
  }

  #page_result #page_header #order .display-item-count > a.active {
    cursor: default;
    background: #090909;
    color: #868686;
  }
}

#page_result #page_header #order a.image {
  display: none;
}

@media screen and (min-width: 800px) {
  #page_result #page_header #order a.image {
    display: inline-block;
  }
}

@media screen and (min-width: 800px) {
  #page_result #page_body {
    border-top: 1px solid #ccc;
    padding-top: 10px;
  }
}

#page_result #page_footer .info {
  margin-top: 10px;
}

#page_result #actor_result {
  margin-bottom: 20px;
  display: -ms-grid;
  display: grid;
  grid-template-areas: 'header header' 'image info' 'image share' 'description description';
  grid-template-columns: 140px 1fr;
  -ms-grid-rows: auto auto auto auto;
  -ms-grid-columns: 140px 1fr;
}

#page_result #actor_result .grid-header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

#page_result #actor_result .grid-image {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-row-span: 2;
}

#page_result #actor_result .grid-info {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

#page_result #actor_result .grid-share {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
}

#page_result #actor_result .grid-description {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
}

@media screen and (min-width: 800px) {
  #page_result #actor_result {
    grid-template-areas: 'header header' 'image info' 'share description';
  }

  #page_result #actor_result .grid-header {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  #page_result #actor_result .grid-image {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }

  #page_result #actor_result .grid-info {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }

  #page_result #actor_result .grid-share {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  #page_result #actor_result .grid-description {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
}

#page_result #actor_result .grid-header {
  grid-area: header;
}

#page_result #actor_result .grid-image {
  grid-area: image;
}

#page_result #actor_result .grid-info {
  grid-area: info;
}

#page_result #actor_result .grid-share {
  grid-area: share;
}

#page_result #actor_result .grid-description {
  grid-area: description;
}

#page_result #actor_result .grid-image span {
  display: block;
  border-radius: 999px;
  overflow: hidden;
  text-align: center;
  width: 120px;
  height: 120px;
}

#page_result #actor_result .grid-image span img {
  display: block;
  width: 100%;
}

#page_result #actor_result .grid-info th {
  padding-right: 2em;
  text-align: left;
}

@media screen and (min-width: 800px) {
  #page_result #actor_result .grid-share {
    margin-top: 20px;
  }
}

#page_result #actor_result .grid-share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 800px) {
  #page_result #actor_result .grid-share ul {
    margin-right: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#page_result #actor_result .grid-share ul li + li {
  margin-left: 0.5em;
}

#page_result #actor_result .grid-share ul li a {
  display: block;
  font-size: 0;
}

#page_result #actor_result .grid-share ul li img {
  width: 30px;
  vertical-align: middle;
}

#page_result #actor_result .grid-description h3 {
  font-size: 1rem;
}

#page_result #relative_actor {
  position: relative;
  padding-bottom: 26px;
  margin: 30px auto;
}

@media screen and (min-width: 800px) {
  #page_result #relative_actor {
    padding-bottom: 36px;
    margin: 60px auto;
  }
}

#page_result #relative_actor .header {
  text-align: center;
  padding: 0 3%;
  margin-bottom: 10px;
}

@media screen and (min-width: 800px) {
  #page_result #relative_actor .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    margin-bottom: 0;
    text-align: inherit;
  }
}

#page_result #relative_actor .body {
  position: relative;
  background-color: #fff;
  width: 100%;
}

@media screen and (min-width: 800px) {
  #page_result #relative_actor .body {
    margin: 20px 0;
    position: relative;
    background-color: transparent;
  }
}

#page_result #relative_actor .body .wrapper {
  padding: 3% 3% 0 3%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@media screen and (min-width: 800px) {
  #page_result #relative_actor .body .wrapper {
    padding: 0;
  }

  #page_result #relative_actor .body .wrapper .swiper-slide {
    width: 120px !important;
  }

  #page_result #relative_actor .body .wrapper .swiper-pagination {
    display: none;
  }
}

#page_result #relative_actor .body .wrapper .swiper-container {
  padding-bottom: 30px;
}

#page_result #relative_actor .collection-actor-card {
  padding-top: 10px;
}

@media screen and (min-width: 800px) {
  #page_result #relative_actor .collection-actor-card {
    background: #fff;
    border-radius: 15px;
  }
}

#page_result #relative_actor .collection-actor-card .collection-card-image {
  text-align: center;
}

#page_result #relative_actor .collection-actor-card .collection-card-image span {
  display: block;
  border-radius: 999px;
  overflow: hidden;
  font-size: 0;
}

@media screen and (min-width: 800px) {
  #page_result #relative_actor .collection-actor-card .collection-card-image span {
    width: 100px;
    margin: 0 auto;
    display: block;
  }
}

#page_result #relative_actor .collection-actor-card .collection-card-image img {
  margin: auto;
  width: 100%;
  vertical-align: middle;
}

#page_result #relative_actor .collection-actor-card .collection-card-title {
  text-align: center;
  padding: 5px 0;
  font-size: 0.7rem;
  line-height: 0.9rem;
}

@media screen and (min-width: 800px) {
  #page_result #relative_actor .collection-actor-card .collection-card-title {
    margin: 10px 10px 5px 10px;
    padding: 0;
    font-size: 1rem;
    height: 40px;
    line-height: inherit;
  }
}

#page_result #relative_actor .collection-swiper-button {
  display: none;
  position: absolute;
  top: 50%;
  height: 60px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  outline: none;
  z-index: 1;
  margin-top: -15px;
}

@media screen and (min-width: 800px) {
  #page_result #relative_actor .collection-swiper-button {
    display: block;
  }
}

#page_result #relative_actor .collection-swiper-button img {
  height: 100%;
}

#page_result #relative_actor .collection-swiper-button-next {
  right: 0;
}

#page_result #relative_actor .collection-swiper-button-prev {
  left: 0;
}

@media screen and (min-width: 800px) {
  #page_result #relative_actor .swiper-container {
    padding-bottom: 20px;
  }
}

#page_result #relative_actor .swiper-scrollbar {
  display: none;
}

@media screen and (min-width: 800px) {
  #page_result #relative_actor .swiper-scrollbar {
    display: block;
  }
}

#page_maker {
  padding: 10px;
}

@media screen and (min-width: 800px) {
  #page_maker {
    padding: 0 20px 0 0;
  }
}

#page_maker #page_body {
  margin: 10px 0;
}

@media screen and (min-width: 800px) {
  #page_maker #page_body {
    border-top: 1px solid #ccc;
  }
}

#page_maker #page_body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page_maker #page_body ul .maker {
  width: 46%;
  margin: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 400px) {
  #page_maker #page_body ul .maker {
    width: 29%;
  }
}

@media screen and (min-width: 800px) {
  #page_maker #page_body ul .maker {
    width: 46%;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 1280px) {
  #page_maker #page_body ul .maker {
    width: 29%;
  }
}

@media screen and (min-width: 1680px) {
  #page_maker #page_body ul .maker {
    width: 21%;
  }
}

#page_maker #page_body ul .maker .image {
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  width: 100%;
}

#page_maker #page_body ul .maker .image img {
  width: 100%;
}

@media screen and (min-width: 800px) {
  #page_maker #page_body ul .maker .image {
    width: 120px;
  }
}

#page_maker #page_body ul .maker .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (min-width: 800px) {
  #page_maker #page_body ul .maker .info {
    min-height: 120px;
    margin-left: 20px;
  }
}

#page_maker #page_body ul .maker .info h3 {
  font-size: 1rem;
}

@media screen and (min-width: 800px) {
  #page_maker #page_body ul .maker .info h3 {
    font-size: 1.5rem;
  }
}

#page_maker #page_body ul .maker .info p {
  display: none;
}

@media screen and (min-width: 800px) {
  #page_maker #page_body ul .maker .info p {
    display: block;
  }
}

#page_actor {
  padding: 10px;
}

@media screen and (min-width: 800px) {
  #page_actor {
    padding: 0 20px 0 0;
  }
}

#page_actor #page_body {
  margin: 10px 0;
}

#page_actor #page_body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 10px;
}

@media screen and (min-width: 800px) {
  #page_actor #page_body ul {
    background: transparent;
  }
}

#page_actor #page_body ul .performer {
  width: 46%;
  margin: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
      -ms-flex: auto;
          flex: auto;
}

@media screen and (min-width: 0px) and (max-width: 400px) {
  #page_actor #page_body ul .performer {
    max-width: 46%;
  }
}

@media screen and (min-width: 400px) and (max-width: 800px) {
  #page_actor #page_body ul .performer {
    max-width: 29%;
  }
}

@media screen and (min-width: 800px) {
  #page_actor #page_body ul .performer {
    width: 120px;
    max-width: 120px;
    margin: 10px 20px 10px 0;
    border-radius: 15px;
  }
}

#page_actor #page_body ul .performer .image {
  width: 100%;
  padding: 10px;
}

@media screen and (min-width: 800px) {
  #page_actor #page_body ul .performer .image {
    background: none;
  }
}

#page_actor #page_body ul .performer .image > a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
}

#page_actor #page_body ul .performer .image > a img {
  width: 100%;
  display: block;
}

#page_actor #page_body ul .performer .info {
  padding-bottom: 10px;
  max-height: 100%;
  width: 100%;
}

#page_actor #page_body ul .performer .info a {
  color: #2196f3;
}

#page_actor #page_body ul .performer .info a h3 {
  font-size: 1rem;
  font-weight: normal;
  overflow: hidden;
  text-align: center;
}

#page_view {
  padding-bottom: 30px;
}

#page_view #page_header #slider .swiper-container {
  width: 100%;
}

@media screen and (min-width: 800px) {
  #page_view #page_header #slider .swiper-container:hover .slider-swiper-navigation {
    display: block;
  }
}

#page_view #page_header #slider .swiper-container .swiper-slide {
  width: 100% !important;
}

@media screen and (min-width: 800px) {
  #page_view #page_header #slider .swiper-container .swiper-slide {
    text-align: center;
    max-width: 960px;
    background: #fff;
  }
}

#page_view #page_header #slider .swiper-container .swiper-slide img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 800px) {
  #page_view #page_header #slider .swiper-container .swiper-slide img {
    max-width: 960px;
  }
}

#page_view #page_header #slider .swiper-container .slider-swiper-navigation {
  display: none;
}

#page_view #page_header #slider .swiper-container .slider-swiper-navigation img {
  display: block;
}

#page_view #page_header #slider .swiper-container .slider-swiper-navigation .slider-button-next {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  outline: none;
  z-index: 1;
}

#page_view #page_header #slider .swiper-container .slider-swiper-navigation .slider-button-prev {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  outline: none;
  z-index: 1;
}

#page_view #page_body {
  padding: 0;
}

#page_view #page_body #recommend {
  margin-top: 40px;
  margin-bottom: 20px;
}

@media screen and (min-width: 800px) {
  #page_view #page_body #recommend {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 800px) {
  #page_view #page_body {
    padding: 0 20px 0 0;
  }
}

#page_view #page_body > .wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 10px;
}

@media screen and (min-width: 800px) {
  #page_view #page_body > .wrapper {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

#page_view #page_body > .wrapper #news {
  margin-bottom: 40px;
}

@media screen and (min-width: 800px) {
  #page_view #page_body > .wrapper #news {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 800px) {
  #page_view #page_body > .wrapper .wrapper-header {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#page_view #page_body > .wrapper .wrapper-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page_view #page_body > .wrapper .wrapper-header ul li {
  margin: 5px;
}

@media screen and (min-width: 800px) {
  #page_view #page_body > .wrapper .wrapper-header ul li {
    margin: 0 5px 0 0;
  }
}

@media screen and (min-width: 1280px) {
  #page_view #page_body > .wrapper .wrapper-header ul li {
    margin: 0 10px 0 0;
  }
}

#page_view #page_body > .wrapper .wrapper-header ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 15px;
  color: #222;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2); 
}

@media screen and (min-width: 800px) {
  #page_view #page_body > .wrapper .wrapper-header ul li a {
    margin: 0;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 1280px) {
  #page_view #page_body > .wrapper .wrapper-header ul li a {
    margin: 0 10px 0 0;
    font-size: 1rem;
  }
}

#page_view #page_body > .wrapper .wrapper-header ul li a.active {
  background-color: #090909;
  border-color: #090909;
  color: #fff;
}

@media screen and (min-width: 800px) {
  #page_view #page_body #page_title {
    margin-right: 10px;
  }

  #page_view #page_body #page_title h1 {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1280px) {
  #page_view #page_body #page_title {
    margin-right: 20px;
  }

  #page_view #page_body #page_title h1 {
    font-size: 2rem;
  }
}

#page_view #page_body hr {
  margin: 10px;
  height: 4px;
  border: none;
  background-color: #ddd;
  border-top: 1px solid #ccc;
}

@media screen and (min-width: 800px) {
  #page_view #page_body hr {
    margin: 0;
  }
}

@media screen and (min-width: 800px) {
  #page_view .card-collection .card-header,
  #page_view .card-collection .card-footer,
  #page_view .card-collection .card-swiper {
    padding: 0;
  }
}

#page_view .card-collection .card-swiper-navigation .card-button-next,
#page_view .card-collection .card-swiper-navigation .card-button-prev {
  z-index: 1;
}

#page_home .card-collection-actor .swiper-slide,
#page_view .card-collection-actor .swiper-slide {
  height: auto;
  padding-bottom: 15px;
}

#page_home .card-collection-actor .collection-item,
#page_view .card-collection-actor .collection-item {
  padding-top: 10px;
}

@media screen and (min-width: 800px) {
  #page_home .card-collection-actor .collection-item,
  #page_view .card-collection-actor .collection-item {
    padding-top: 30px;
    background: #fff;
    border-radius: 15px;
  }
}

#page_home .card-collection-actor .collection-item .collection-card-image span,
#page_view .card-collection-actor .collection-item .collection-card-image span {
  display: block;
  border-radius: 999px;
  overflow: hidden;
  font-size: 0;
}

@media screen and (min-width: 800px) {
  #page_home .card-collection-actor .collection-item .collection-card-image span,
  #page_view .card-collection-actor .collection-item .collection-card-image span {
    width: 170px;
    margin: 0 auto;
  }
}

#page_home .card-collection-actor .collection-item .collection-card-image img,
#page_view .card-collection-actor .collection-item .collection-card-image img {
  margin: auto;
  width: 100%;
  display: block;
}

#page_home .card-collection-actor .collection-item .collection-card-title,
#page_view .card-collection-actor .collection-item .collection-card-title {
  text-align: center;
  padding: 5px 0;
  font-size: 0.7rem;
  line-height: 0.9rem;
}

@media screen and (min-width: 800px) {
  #page_home .card-collection-actor .collection-item .collection-card-title,
  #page_view .card-collection-actor .collection-item .collection-card-title {
    margin: 10px 10px 5px 10px;
    padding: 0;
    font-size: 1rem;
    height: 40px;
    line-height: inherit;
  }
}

/*hkuc↑*/

.card-collection {
  margin: 50px 0;
  position: relative;
}

.card-collection .card-header {
  margin-bottom: 10px;
  padding: 0 10px;
}

@media screen and (min-width: 800px) {
  .card-collection .card-header {
    padding: 0 80px;
    text-align: left;
  }
}

.card-collection .card-header .title {
  font-size: 1.5rem;
}

.card-collection .card-body {
  margin-bottom: 10px;
  width: 100%;
  position: relative;
}

.card-collection .card-footer {
  padding: 0 10px;
  width: 100%;
}

@media screen and (min-width: 800px) {
  .card-collection .card-footer {
    padding: 0 80px;
    width: auto;
    text-align: right;
  }
}

.card-collection .card-item {
  padding-top: 20px;
  padding-bottom: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border-radius: 15px;
}

@media screen and (min-width: 800px) {
  .card-collection .card-item {
    padding-top: 0;
    width: 200px;
  }
}

@media screen and (min-width: 1280px) {
  .card-collection .card-item {
    width: 240px;
  }
}

.card-collection .card-item a {
  width: 100%;
  height: 100%;
  display: block;
}

.card-collection .card-item a:hover {
  opacity: 0.75;
}

.card-collection .card-item-tag {
  height: 30px;
  display: none;
}

@media screen and (min-width: 800px) {
  .card-collection .card-item-tag {
    display: block;
  }
}

.card-collection .card-item-tag span {
  padding: 5px 10px;
  color: #fff;
  display: inline-block;
  background-color: #ea335e;
  line-height: 20px;
}

@media screen and (min-width: 800px) {
  .card-collection .card-item-tag {
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 1280px) {
  .card-collection .card-item-tag {
    font-size: 1rem;
  }
}

.card-collection .card-item-image img {
  margin: auto;
  width: 100%;
  display: block;
}

@media screen and (min-width: 800px) {
  .card-collection .card-item-image img {
    margin: auto;
    width: 140px;
  }
}

@media screen and (min-width: 1280px) {
  .card-collection .card-item-image img {
    margin: auto;
    width: 170px;
  }
}

.card-collection .card-item-title {
  padding: 5px 0;
  font-size: 0.8rem;
}

@media screen and (min-width: 800px) {
  .card-collection .card-item-title {
    padding: 10px 20px 0;
  }
}

.card-collection .card-item-title p {
  line-height: 1.2rem;
  height: 2.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.card-collection .card-swiper {
  padding: 3% 3% 1% 3%;
  background-color: #fff;
}

@media screen and (min-width: 800px) {
  .card-collection .card-swiper {
    padding: 0 80px;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: inherit;
  }
}

.card-collection .card-swiper-navigation {
  display: none;
}

@media screen and (min-width: 800px) {
  .card-collection .card-swiper-navigation {
    display: block;
  }
}

.card-collection .card-swiper-navigation img {
  display: block;
}

.card-collection .card-swiper-navigation .card-button-next {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  outline: none;
}

.card-collection .card-swiper-navigation .card-button-prev {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  outline: none;
}

@media screen and (min-width: 800px) {
  .card-collection .swiper-container {
    padding-bottom: 20px;
  }
}

.card-collection .swiper-wrapper {
  padding-bottom: 35px;
}

@media screen and (min-width: 800px) {
  .card-collection .swiper-wrapper {
    padding-bottom: 0;
  }
}

.card-collection .swiper-slide {
  width: 30%;
}

@media screen and (min-width: 800px) {
  .card-collection .swiper-slide {
    width: 200px;
  }
}

@media screen and (min-width: 1280px) {
  .card-collection .swiper-slide {
    width: 240px;
  }
}

.card-collection .swiper-scrollbar {
  display: none;
}

@media screen and (min-width: 800px) {
  .card-collection .swiper-scrollbar {
    display: block;
  }
}

@media screen and (min-width: 800px) {
  .card-collection .swiper-pagination {
    display: none;
  }
}

#banner {
  margin-bottom: 50px;
  padding: 40px 0;
}

#banner .banner:hover {
  opacity: 0.75;
}

#banner .banner img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 800px) {
  #banner .swiper-container:hover .banner-swiper-navigation {
    display: block;
  }
}

#banner .swiper-wrapper {
  padding-bottom: 40px;
}

#banner .swiper-slide {
  width: 80%;
  max-width: 600px;
}

#banner .banner-swiper-navigation {
  display: none;
}

#banner .banner-swiper-navigation img {
  display: block;
}

#banner .banner-swiper-navigation .banner-button-next {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  outline: none;
  z-index: 1;
}

#banner .banner-swiper-navigation .banner-button-prev {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  outline: none;
  z-index: 1;
}

#pickup {
  margin-bottom: 50px;
  width: 100%;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  position: relative;
}

#pickup .header .title {
  padding: 20px 0;
  font-size: 1.5rem;
}

#pickup .body {
  margin: auto;
  padding: 30px 0;
  max-width: 1120px;
}

@media screen and (min-width: 800px) {
  #pickup .body {
    padding: 30px 10px;
  }
}

#pickup .footer {
  padding: 20px 0;
}

#pickup .pickup-item {
  width: 240px;
  height: 240px;
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
}

@media screen and (min-width: 350px) {
  #pickup .pickup-item {
    width: 300px;
    height: 300px;
  }
}

@media screen and (min-width: 800px) {
  #pickup .pickup-item {
    width: 360px;
    height: 360px;
    border-top-left-radius: 0;
  }
}

#pickup .pickup-item:hover {
  opacity: 0.75;
}

#pickup .pickup-item-tag {
  height: 30px;
  position: absolute;
  display: none;
}

@media screen and (min-width: 800px) {
  #pickup .pickup-item-tag {
    display: block;
  }
}

#pickup .pickup-item-tag span {
  padding: 5px 10px;
  color: #fff;
  display: inline-block;
  background-color: #ea335e;
  line-height: 20px;
}

#pickup .pickup-item-image {
  height: 160px;
  background-color: #ccc;
}

@media screen and (min-width: 350px) {
  #pickup .pickup-item-image {
    height: 200px;
  }
}

@media screen and (min-width: 800px) {
  #pickup .pickup-item-image {
    height: 240px;
  }
}

#pickup .pickup-item-image img {
  width: 100%;
  display: block;
}

#pickup .pickup-item-title {
  padding: 4px 10px;
}

#pickup .pickup-item-title h3 {
  font-size: 13px;
}

@media screen and (min-width: 350px) {
  #pickup .pickup-item-title h3 {
    font-size: 13px;
  }
}

@media screen and (min-width: 400px) {
  #pickup .pickup-item-title h3 {
    font-size: 15px;
  }
}

#pickup .pickup-item-text {
  padding: 0 10px;
  font-size: 10px;
  display: none;
}

@media screen and (min-width: 350px) {
  #pickup .pickup-item-text {
    display: block;
  }
}

@media screen and (min-width: 400px) {
  #pickup .pickup-item-text {
    font-size: 12px;
  }
}

#pickup .swiper-slide {
  width: 85%;
  max-width: 240px;
}

@media screen and (min-width: 350px) {
  #pickup .swiper-slide {
    max-width: 300px;
  }
}

@media screen and (min-width: 800px) {
  #pickup .swiper-slide {
    max-width: 360px;
  }
}

#pickup .pickup-swiper-navigation {
  display: none;
}

@media screen and (min-width: 800px) {
  #pickup .pickup-swiper-navigation {
    display: block;
  }
}

#pickup .pickup-swiper-navigation img {
  display: block;
}

#pickup .pickup-swiper-navigation .pickup-button-next {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  outline: none;
  z-index: 1;
}

#pickup .pickup-swiper-navigation .pickup-button-prev {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  outline: none;
  z-index: 1;
}

.normal #news,
.r18 #news {
  margin-top: 20px;
}

.normal #news .header,
.r18 #news .header {
  padding: 10px 0;
}

@media screen and (min-width: 800px) {
  .normal #news .header,
  .r18 #news .header {
    text-align: left;
  }
}

.normal #news .header .title,
.r18 #news .header .title {
  font-size: 1.5rem;
}

.normal #news .body ul li,
.r18 #news .body ul li {
  margin: 10px 0;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

@media screen and (min-width: 800px) {
  .normal #news .body ul li,
  .r18 #news .body ul li {
    border-radius: 999px;
  }
}

.normal #news .body .date,
.r18 #news .body .date {
  margin-right: 20px;
  display: block;
}

.normal #news .body .wrapper,
.r18 #news .body .wrapper {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (min-width: 800px) {
  .normal #news .body .title,
  .r18 #news .body .title {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.normal #news .footer,
.r18 #news .footer {
  padding: 10px 0;
}

@media screen and (min-width: 800px) {
  .normal #news .footer,
  .r18 #news .footer {
    text-align: right;
  }
}

.normal #recommend .header,
.r18 #recommend .header {
  padding: 10px 0;
}

.normal #recommend .header .title,
.r18 #recommend .header .title {
  text-align: center;
  font-size: 1.5rem;
}

@media screen and (min-width: 800px) {
  .normal #recommend .header .title,
  .r18 #recommend .header .title {
    text-align: left;
  }
}

.normal #recommend ul,
.r18 #recommend ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.normal #recommend ul li,
.r18 #recommend ul li {
  padding: 1%;
  width: 50%;
}

@media screen and (min-width: 800px) {
  .normal #recommend ul li,
  .r18 #recommend ul li {
    width: 33%;
  }
}

@media screen and (min-width: 1280px) {
  .normal #recommend ul li,
  .r18 #recommend ul li {
    width: 20%;
  }
}

.normal #recommend ul li.recommend a,
.r18 #recommend ul li.recommend a {
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
}

@media screen and (min-width: 800px) {
  .normal #recommend ul li.recommend a,
  .r18 #recommend ul li.recommend a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.normal #recommend ul li.recommend a .image,
.r18 #recommend ul li.recommend a .image {
  width: 50px;
  height: 50px;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 800px) {
  .normal #recommend ul li.recommend a .image,
  .r18 #recommend ul li.recommend a .image {
    width: 200px;
    max-width: 100%;
    height: 200px;
  }
}

.normal #recommend ul li.recommend a .image img,
.r18 #recommend ul li.recommend a .image img {
  max-width: 100%;
  max-height: 100%;
}

@media screen and (min-width: 800px) {
  .normal #recommend ul li.recommend a .image img,
  .r18 #recommend ul li.recommend a .image img {
    width: 100%;
  }
}

@media screen and (min-width: 800px) {
  .normal #recommend ul li.recommend a .title,
  .r18 #recommend ul li.recommend a .title {
    margin-top: 20px;
  }
}

.normal #ranking .card-header p,
.r18 #ranking .card-header p {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: 0.75rem;
  background-color: #e6e6e6;
  border-radius: 999px;
  text-align: left;
}

@media screen and (min-width: 350px) {
  .normal #ranking .card-header p,
  .r18 #ranking .card-header p {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 800px) {
  .normal #ranking .card-header p,
  .r18 #ranking .card-header p {
    font-size: 1rem;
  }
}

.normal #ranking.card-collection .card-swiper,
.r18 #ranking.card-collection .card-swiper {
  background: linear-gradient(to bottom, transparent 0, transparent 1.25rem, white 1.25rem, white 100%) no-repeat;
}

@media screen and (min-width: 800px) {
  .normal #ranking.card-collection .card-swiper,
  .r18 #ranking.card-collection .card-swiper {
    background: none;
  }
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-ranking,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-ranking {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-ranking .icon,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-ranking .icon {
  height: 26px;
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-ranking .rank,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-ranking .rank {
  margin-bottom: -10px;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (min-width: 800px) {
  .normal #ranking.card-collection .card-swiper .swiper-slide .card-ranking .rank,
  .r18 #ranking.card-collection .card-swiper .swiper-slide .card-ranking .rank {
    margin-bottom: -20px;
    font-size: 2rem;
  }
}

@media screen and (min-width: 400px) {
  .normal #ranking.card-collection .card-swiper .swiper-slide .card-ranking .rank,
  .r18 #ranking.card-collection .card-swiper .swiper-slide .card-ranking .rank {
    margin-bottom: -20px;
    font-size: 2rem;
  }
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-ranking img,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-ranking img {
  max-width: 100%;
  display: block;
}

@media screen and (min-width: 800px) {
  .normal #ranking.card-collection .card-swiper .swiper-slide .card-ranking img,
  .r18 #ranking.card-collection .card-swiper .swiper-slide .card-ranking img {
    max-width: inherit;
  }
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item {
  padding-top: 2rem;
  background: none;
  height: auto;
}

@media screen and (min-width: 800px) {
  .normal #ranking.card-collection .card-swiper .swiper-slide .card-item,
  .r18 #ranking.card-collection .card-swiper .swiper-slide .card-item {
    background: #fff;
  }
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item .tag-single,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item .tag-single {
  background-color: #4499b8;
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item .tag-high-resolutionh,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item .tag-high-resolutionh {
  background-color: #b53ec7;
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item .tag-sample,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item .tag-sample {
  background-color: #85c73e;
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-title p,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-title p {
  line-height: 1.2rem;
  height: 3.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  text-overflow: -o-ellipsis-lastline;
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-actor,
.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-maker,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-actor,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-maker {
  font-size: 0.8rem;
}

@media screen and (min-width: 800px) {
  .normal #ranking.card-collection .card-swiper .swiper-slide .card-item-actor,
  .normal #ranking.card-collection .card-swiper .swiper-slide .card-item-maker,
  .r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-actor,
  .r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-maker {
    padding: 0px 20px;
  }
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-actor p,
.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-maker p,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-actor p,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-maker p {
  height: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.normal #ranking.card-collection .card-swiper-navigation .card-button-next,
.normal #ranking.card-collection .card-swiper-navigation .card-button-prev,
.r18 #ranking.card-collection .card-swiper-navigation .card-button-next,
.r18 #ranking.card-collection .card-swiper-navigation .card-button-prev {
  margin-top: 60px;
}

.listing {
  padding: 10px 0;
}

.listing ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.listing ul .product {
  position: relative;
  padding: 10px;
  width: 100%;
  background: #fff;
  margin-right: 1px;
  margin-bottom: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.listing ul .product i {
  font-style: normal;
}

.listing ul .product .wrapper {
  padding-bottom: 5px;
  background-color: #fff;
}

.listing ul .product-checker {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.listing ul .product-tag {
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.listing ul .product-tag span {
  padding: 5px 10px;
  color: #fff;
  font-size: 0.8rem;
  background-color: #ea335e;
  line-height: 15px;
  height: 25px;
}

.listing ul .product-image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  height: 170px;
}

.listing ul .product-image img {
  height: 100%;
  width: 100%;
  display: block;
}

.listing ul .product-info {
  width: 100%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-left: 10px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.listing ul .product-title {
  margin-top: 10px;
  font-size: 0.8rem;
  line-height: 16px;
  height: 32px;
  overflow: hidden;
}

.listing ul .product-date {
  color: #aaa;
}

.listing ul .product-date,
.listing ul .product-genre,
.listing ul .product-recruit,
.listing ul .product-intro,
.listing ul .product-actor,
.listing ul .product-category {
  margin-top: 5px;
  font-size: 0.8rem;
  line-height: 16px;
}

.listing ul .product-category {
  color: #999;
}

.listing ul .product-price {
  margin-top: 5px;
  font-size: 1rem;
  line-height: 18px;
}

.listing ul .product-score .star {
  display: inline-block;
  margin-right: 1px;
  width: 10px;
  height: 10px;
  background: url("/imagedata/images/icon-star-empty.png") no-repeat center center/contain;
}

.listing ul .product-score .star.active {
  background-image: url("/imagedata/images/icon-star-full.png");
}

.listing ul .product-favorite {
  height: 1.2rem;
  width: 1.2rem;
  background: url("/imagedata/images/icon-favorite-empty.png") no-repeat center/contain;
  position: absolute;
  right: 5px;
  bottom: 5px;
}

.listing ul .product-favorite.active {
  background-image: url("/imagedata/images/icon-favorite.png");
}

.listing ul .product-date,
.listing ul .product-genre,
.listing ul .product-recruit,
.listing ul .product-intro,
.listing ul .product-actor i {
  display: none;
}

@media screen and (min-width: 800px) {
  .listing ul .product {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .listing ul .product-date,
  .listing ul .product-genre,
  .listing ul .product-recruit,
  .listing ul .product-intro {
    display: block;
  }

  .listing ul .product-actor i {
    display: inline;
  }
}

@media screen and (min-width: 800px) {
  .listing.listing-layout-grid ul .product {
    width: 184px;
    padding-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .listing.listing-layout-grid ul .product-info {
    margin-left: 0;
  }

  .listing.listing-layout-grid ul .product-checker {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .listing.listing-layout-grid ul .product-tag {
    position: absolute;
    left: 0;
    top: 0;
  }
}

body.normal #campaign {
  background-color: #b1ea38;
}

body.normal header #menu_contents .navi .level-1 > .title {
  border-color: #93e2d8;
}

body.r18 #campaign {
  background-color: #38eacf;
}

body.r18 header #menu_contents .navi .level-1 > .title {
  border-color: #ff7882;
}

body.cart #sidebar_cart {
  width: 160px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  background-color: #fff;
  display: none;
}

@media screen and (min-width: 800px) {
  body.cart #sidebar_cart {
    display: block;
  }
}

body.cart #sidebar_cart .sidebar-title {
  border-bottom: 5px solid #f0f0f0;
}

body.cart #sidebar_cart .sidebar-title > h3 {
  border-left: 3px solid #2196f3;
  padding: 15px 0 15px 12px;
  font-size: 0.8rem;
}

body.cart #sidebar_cart .sidebar-content {
  padding: 15px 15px 15px 25px;
  margin: 0 0 5px;
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
  letter-spacing: -1px;
  border-bottom: 5px solid #f0f0f0;
}

body.cart #sidebar_cart .sidebar-content::before {
  content: '\25BC';
  position: absolute;
  top: 17px;
  left: 13px;
  font-size: 10px;
}

body.mypage #sidebar_mypage {
  display: none;
  width: 160px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
}

@media screen and (min-width: 800px) {
  body.mypage #sidebar_mypage {
    display: block;
  }
}

body.mypage #sidebar_mypage .sidebar-title {
  margin-bottom: 5px;
  padding: 0 10px;
  height: 50px;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 5px solid #ed4c0d;
  background-color: #fff;
}

body.mypage #sidebar_mypage .sidebar-content {
  margin-bottom: 5px;
  padding: 15px 0;
  background-color: #fff;
}

body.mypage #sidebar_mypage .sidebar-content-title {
  margin: 5px 0 15px 0;
  padding: 0 10px;
  font-size: 0.75rem;
}

body.mypage #sidebar_mypage .sidebar-content-title::before {
  margin-right: 5px;
  content: '\25BC';
}

body.mypage #sidebar_mypage .sidebar-content hr {
  margin: 0 10px;
  margin-bottom: 10px;
  height: 0px;
  background: none;
  border: none;
  border-bottom: 1px solid #ccc;
}

body.mypage #sidebar_mypage .sidebar-content-list {
  margin: 2px 0;
  font-size: 0.75rem;
}

body.mypage #sidebar_mypage .sidebar-content-list.active {
  padding: 3px 10px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #ed4c0d;
  cursor: pointer;
}

body.mypage #sidebar_mypage .sidebar-content-list.active .close {
  cursor: pointer;
}

body.mypage #sidebar_mypage .sidebar-content-list a {
  padding: 3px 10px;
  display: block;
  width: 100%;
  height: 100%;
}

body.mypage #sidebar_mypage .sidebar-content-list a:hover {
  background-color: #ccc;
}

#page_detail #page_body #product_sidebar .product_price {
  display: none;
}

#page_detail #page_body #product_sidebar .active {
  display: block;
}


#verified_email {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 999;
}

#verified_email .content {
  padding: 20px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 640px;
  max-height: 480px;
  overflow: auto;
  background-color: #fff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#verified_email .content .image {
  margin: 20px 0;
}

#verified_email .content .image img {
  width: 100px;
  display: block;
}

#verified_email .content .text {
  font-size: 0.8rem;
}

#verified_email .content .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#verified_email .content .buttons a {
  margin: 10px;
  padding: 10px 20px;
  width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#verified_email .content .buttons span {
  display: block;
}

#verified_email .content .buttons span:first-child {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

#verified_email .content .buttons span:last-child {
  margin-top: -5px;
  font-size: 0.8rem;
}

#verified_email #button_exit {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

#verified_email #button_enter {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 400px) {
  #verified_email #button_exit {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  #verified_email #button_enter {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  #verified_email_form input {
    width: 60%;
  }
}

#verified_email .button-black {
  color: #fff;
  background-color: #000;
  border-radius: 999px;
}

#verified_email .button-pink {
  color: #fff;
  background-color: #ea335e;
  border-radius: 999px;
}

@media screen and (min-width: 800px) {
  #verified_email .content {
    width: 640px;
    height: 480px;
  }

  #verified_email .content .text {
    font-size: 1rem;
  }

  #verified_email_form input {
    width: 70%;
  }
}

#verified_email_close {
  position: absolute;
  top: 0%;
  right: 2%;
}

#verified_email_form {
  margin: 10px;
}

#page_common {
  margin: 20px;
}

.required {
  margin-left: 5px;
  color: #f00;
}

.inline {
  display: inline-block;
}

.popup .popup-check {
  display: none;
}
.popup .popup-body {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: 100000;
}
.popup .popup-window {
  position: relative;
  z-index: 100001;
  animation: fadein .3s 1, zoomin .3s 1;
  top: -50px;
}
.popup .popup-label {
  position: absolute;
  top: -20px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  transition: -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s;
  transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
  font-size: 35px;
}
.popup .popup-label:hover {
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
.popup .popup-label svg {
  display: flex;
  align-items: center;
  fill: #fff;
}
.popup .popup-inner {
  width: 100vw;
  max-width: 600px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}
.popup .popup-content {
  padding: 25px;
  text-align: left;
  margin: 1px;
}
.popup .popup-check:checked + .popup-body {
  animation: fadeout .2s 1 forwards, hide .1s .2s 1 forwards;
}
.popup .popup-check:checked + .popup-body .popup-window {
  animation: zoomout .2s 1 forwards;
}
.popup .popup-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.popup .popup-desc {
  font-weight: bold;
  margin-bottom: 10px;
}

.frm-authentication {
  position: relative;
  display: inline-flex;
  width: 100%;
}
.frm-authentication .authentication {
  width: 100%;
  padding: 9px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #cccccc;
  border-radius: 3px;
  font-size: .9rem;
  color: #333;
}
.frm-authentication .btn-authentication {
  position: absolute;
  right: 0px;
  cursor: pointer;
  padding: 5px 2em;
  border-radius: 3px;
  border: 0;
  height: 100%;
}
.popup-content .info {
  padding-top: 15px;
}
@media screen and (max-width: 800px) {
  .popup-content .info .hide {
     display: none;
   }
}

/* 総合トップ　*/

#pickup {
  border: 0;
}
#pickup .header .title {
  font-size: 1.25rem!important
}
#pickup .body {
  padding: 0!important;
}
#page_home #page_body > .wrapper .wrapper-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
    -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-align: center;
    -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#page_home #page_body > .wrapper .wrapper-header ul li {
  margin: 5px;
}
#page_home #page_body > .wrapper .wrapper-header ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
    -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
    -ms-flex-pack: center;
      justify-content: center;
  padding: 5px 15px;
  color: #222;
  background: #fff;
  height: 40px;
  border-radius: 999px;
  font-size: 0.9rem;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
}

}
#page_home #page_body > .wrapper .wrapper-header ul li a.active {
  background-color: #090909;
  border-color: #090909;
  color: #fff;
}
.pconly {
  display: none;
}

@media screen and (min-width: 350px) {
  #page_home #page_body > .wrapper .wrapper-header ul li a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 800px){
  #pickup .body {
    padding: 10px;
  }
  #pickup .header .title {
    font-size: 1.5rem!important
  }
  #page_home #page_body > .wrapper {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
  }
  #page_home #page_body > .wrapper .wrapper-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
      -ms-flex-align: center;
        align-items: center;
    padding: 0 80px;
  }
  #page_home #page_body > .wrapper .wrapper-header ul {
    margin: 0 auto
  }
  #page_home #page_body > .wrapper .wrapper-header ul li {
    margin: 0 5px 0 0;
  }
  #page_home #page_body > .wrapper .wrapper-header ul li a {
    margin: 0;
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 1280px) {
  #page_home #page_body > .wrapper .wrapper-header ul li {
    margin: 0 10px 0 0;
  }
  #page_home #page_body > .wrapper .wrapper-header ul li a {
    margin: 0 10px 0 0;
    font-size: 1rem;
  }
  .pconly {
    display: block;
  }
}

.card-collection {
  margin: 30px 0!important;
}
.card-collection .card-header .title {
  font-size: 100%
}
.card-text {
  font-size: 80%;
  text-align: left;
}
@media screen and (min-width:800px){
  .card-collection .card-header .title {
    font-size: 1.5rem!important;
  }
  .card-text {
    font-size: 1rem;
  }
}

/* カテゴリトップ */
#page_title {
  font-size: 1.5rem
}
#page_view #page_body > .wrapper {
  margin-top: 20px!important;
  margin-bottom: 20px!important;
}
@media screen and (min-width: 800px){
  #page_title {
    font-size: 2rem
  }
  #page_view #page_body > .wrapper {
    margin-top: 40px!important;
    margin-bottom: 40px!important;
  }
}

/* 商品詳細 */
#page_detail #page_body #product_sidebar #cart_button a, #page_detail #page_body #product_sidebar #cart_button span {
  border-radius: 999px!important;
}
#page_detail #page_body #product_sidebar #product_type .product-type a {
  font-size: 0.85rem!important;
}
#page_result #page_header #page_title {
  font-size: 0.9rem
}
@media screen and (min-width: 800px){
  #page_result #page_header #page_title {
    font-size: 1.5rem
  }
}
@media screen and (min-width: 1280px){
  #page_detail #page_body #product_info .wrapper {
    padding: 10px!important;
  }
}

@media screen and (min-width: 800px) {
  .normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image,
  .r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image {
    position: relative;
  }
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number {
  margin: auto;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: right;
}

@media screen and (min-width: 800px) {
  .normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number,
  .r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number {
    width: 140px;
  }
}

@media screen and (min-width: 1280px) {
  .normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number,
  .r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number {
    width: 170px;
  }
}

@media screen and (min-width: 800px) {
  .normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number,
  .r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number {
    top: auto;
    bottom: 0;
  }
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number span,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number span {
  position: relative;
  z-index: 1;
  width: 2em;
  height: 2em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2em;
          flex: 0 0 2em;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666666;
  background: #fff;
  border: 1px solid #e0e0e0;
  font-size: 0.8rem;
  margin: 0 auto;
  font-weight: bold;
}

@media screen and (min-width: 800px) {
  .normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number span,
  .r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number span {
    right: -0.5em;
    bottom: -0.5em;
    margin: 0 0 0 auto;
  }
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number-1 span,
.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number-2 span,
.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number-3 span,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number-1 span,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number-2 span,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number-3 span {
  color: #fff;
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number-1 span,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number-1 span {
  background: #d7af35;
  border-color: #d7af35;
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number-2 span,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number-2 span {
  background: #7d8d94;
  border-color: #7d8d94;
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number-3 span,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number-3 span {
  background: #d76335;
  border-color: #d76335;
}

.normal #ranking.card-collection .card-swiper .swiper-slide .card-item,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item {
  padding-top: 2rem!important;
}

.card-swiper .swiper-slide .card-item-image .number,
.r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number {
  top: 0!important;
  bottom: auto!important;
}


@media screen and (min-width: 800px){
  .normal #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number span,
  .r18 #ranking.card-collection .card-swiper .swiper-slide .card-item-image .number span {
    right: 0.5em!important;
    bottom: 0.5em!important;
    margin: 0 auto 0 0!important;
  }
}

.normal #ranking.card-collection .card-swiper-navigation .card-button-next,
.normal #ranking.card-collection .card-swiper-navigation .card-button-prev,
.r18 #ranking.card-collection .card-swiper-navigation .card-button-next,
.r18 #ranking.card-collection .card-swiper-navigation .card-button-prev {
  margin-top: 0!important;
}

#age_confirm #button_exit {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

#age_confirm #button_enter {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media screen and (min-width: 400px) {
  #age_confirm #button_exit {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  #age_confirm #button_enter {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}


#age_confirm .age_notice {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 600

}

#age_confirm .age_text {
  font-size: 0.75rem;
  margin-bottom: 15px;
}

#age_confirm .content .buttons a {
  margin: 5px;
  padding: 10px 20px;
  width: 200px;
}


@media screen and (min-width: 800px) {
  #age_confirm .age_notice {
    font-size: 1.5rem;
  }
  #age_confirm .content .buttons a {
    margin: 10px;
  }
}

#age_logo {
  background-position: 0 100%;
}
#age_logo {
  display: block;
  width: 200px;
  height: 20px;
  background-image: url("/imagedata/images/logo.png");
  background-position: 0 0%;
  background-repeat: no-repeat;
  background-size: 100% 300%;
}
#age_logo span {
  display: none;
}

#age_confirm #age_confirm .content {
  max-height: 490px;
}

#age_confirm .content .image {
  margin: 30px 0 10px;
}

@media screen and (max-width: 600px) {
}

@media screen and (min-width: 800px) {
  #age_logo {
    width: 220px;
    height: 21px;
    background-image: url("/imagedata/images/logo.png");
    background-position: 0 0;
  }
}

@media screen and (min-width: 1280px) {
  #age_logo {
    width: 245px;
    height: 23px;
    background-image: url("/imagedata/images/logo.png");
    background-position: 0 0;
  }
}

#page_news_detail #page_body {
    margin-top: 20px;
    padding: 10px 0;
}
#page_news_detail #page_body .top {
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#page_news_detail #page_body .top .release-date {
    padding: 2px 10px 2px 0;
}
#page_news_detail #page_body .middle .release-title {
    padding: 0 10px 10px;
    border-bottom: 1px dashed #444;
}
#page_news_detail #page_body .middle .release-title {
    border-bottom: 1px dashed #ccc;
}
#page_news_detail #page_body .bottom {
    padding: 20px 10px;
}
#page_news_detail #page_body .bottom .release-body {
    font-size: 0.85rem;
}
#page_release #page_body ul {
      background-color: transparent!important;
}

#page_release #page_body li {
    border-bottom: 1px dashed #ccc;
    background-color: #fff
}
#page_release #page_body li:last-child{
  border-bottom: none;
}

#footer .copyright p {
  font-size: 0.75em
}

body.non-ios-noscroll {
  height: 100%;
  overflow: hidden;
}

@media screen and (min-width: 800px) {
  body.non-ios-noscroll {
    height: auto;
    overflow: visible;
  }
}

body.ios-noscroll {
  position: fixed;
  left: 0;
  right: 0;
}

#header #action_panel #menu.open {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 800px) {
  #header #action_panel #menu.open {
    height: auto;
    position: static;
    top: auto;
    left: auto;
    display: block;
  }
}

#header #action_panel #menu.open + #search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header #action_panel #menu.open + #search::before {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 800px) {
  #cart_p {
    margin-top: -60px;
    border-top-width: 1px;
    border-top-style: solid;
    margin-bottom: 60px;
    border: transparent 1px solid;
  }
}

#header #action_panel_right #mypage .menu::before {
  position: absolute;
  top: 0;
  right: 58px;
  content: '';
  width: 0;
  height: 0;
  display: block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

@media screen and (min-width: 800px) {
  #header #action_panel_right #mypage .menu::before {
    right: 8px;
  }
}

#header #action_panel_right #mypage .menu .wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  bottom: 0;
  background-color: #fff;
  border-radius: 15px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 800px) {
  #header #action_panel_right #mypage .menu .wrapper {
    top: auto;
    bottom: auto;
    width: 240px;
    left: auto;
    right: -7px;
  }
}

#header #action_panel_right #mypage .menu .wrapper > ul {
  padding: 20px 0;
  position: relative;
}

#header #action_panel_right #mypage .menu .wrapper a {
  padding: 0 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#header #action_panel_right #mypage .menu .wrapper a::after {
  content: '';
  width: 20px;
  height: 100%;
  position: absolute;
  background-image: url("/img/arrow-right-01.png");
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  right: 10px;
}

#header #action_panel_right #mypage .menu .wrapper > ul > li {
  border-top: 1px solid #ddd;
}

#header #action_panel_right #mypage .menu .wrapper > ul > li:last-child {
  border-bottom: 1px solid #ddd;
}

#header #action_panel_right #mypage .menu .wrapper > ul > li > a {
  height: 60px;
  font-size: 0.85rem;
  font-weight: bold;
}

#header #action_panel_right #mypage .menu .wrapper > ul > li.open ul {
  display: block;
}

#header #action_panel_right #mypage .menu .wrapper > ul > li > ul {
  display: none;
}

#header #action_panel_right #mypage .menu .wrapper > ul > li > ul li a {
  height: 40px;
  font-size: 0.8rem;
  background-color: #eee;
}

#header #action_panel #menu_contents .scrolling {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  overflow: auto;

}

#header #action_panel #menu_contents > * {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#page_result .condition {
  margin: 10px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#page_result .condition ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#page_result .condition ul li {
  margin: 10px 10px 10px 0;
}

#page_result .condition ul li a.active {
  color: #fff;
  border-color: #000;
  background-color: #000;
}

#page_result .condition ul li a {
  width: 80px;
  height: 36px;
  font-size: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 999px;
}

#page_result .paginator {
  margin-top: 0;
}

#page_result .pagination ul li.pagination-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 0;
  order: 0;
  font-size: 0.8rem;
}

#page_result .pagination ul a, #page_result .pagination ul span {
  padding: 0 8px;
  height: 25px;
  border-radius: 999px;
}

#page_result .pagination ul li.pagination-last {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 0;
  order: 0;
  font-size: 0.8rem;
}

#page_result #page_header #order {
  padding: 0 !important;
}

body.mypage .paging .pagination ul li.pagination-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 0;
  order: 0;
}

body.mypage .paging .pagination ul li.pagination-next {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: 0;
  order: 0;
}

body.mypage .paging .pagination ul li.pagination-first,
body.mypage .paging .pagination ul li.pagination-last {
  font-size: 0.8rem
}

body.mypage .paging .pagination ul a, body.mypage .paging .pagination ul span {
  padding: 0 8px;
  height: 25px;
  border-radius:999px;
}

body.mypage .paging .paginator {
  margin-top: 0;
}

#page_mypage_favorite .product_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 800px) {
  #page_mypage_favorite .product_nav {
    padding: 10px;
  }
}

#page_mypage_favorite .product_nav .form-checker {
  margin-right: 10px;
}

@media screen and (max-width: 1000px) {
  #page_mypage_favorite .product_nav {
    font-size: 0.9rem;
  }
}


#page_mypage_favorite .product_nav .check-all label {
  position: relative;
}

#page_mypage_favorite .product_nav .check-all label input {
  opacity: 0;
}

#page_mypage_favorite .product_nav .check-all .image {
  margin-right: 5px;
}

#page_mypage_favorite .product_nav .check-all .image img {
  display: block;
}

#page_mypage_favorite .product_nav .delete a {
  padding: 5px 10px;
  color: #999;
  font-size: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 999px;
  white-space: nowrap;
}

.product-image a img:hover {
  opacity: 0.75!important
}

@media screen and (min-width: 800px) {
  #page_mypage_favorite .listing.listing-layout-grid ul .product {
     padding-top: 10px;
  }

  #page_mypage_favorite .listing.listing-layout-grid ul .product-checker {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    width: 100%
  }

  #page_mypage_favorite .product_nav {
    //border-top: 1px solid #ccc;
  }

  #page_mypage_favorite #page_footer .product_nav {
    //border-bottom: 1px solid #ccc;
    border-top: none;
  }
}

#page_mypage_favorite #page_body .listing {
  padding: 0
}

#page_mypage_favorite .order {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page_mypage_favorite .order select {
  margin-left: 5px;
  border-radius: 3px;
  border: 0;
  padding: 2px 5px;
}

#page_mypage_favorite .order .image {
  margin-left: 5px;
}

#page_mypage_favorite .order .image img {
  display: block;
}

#page_mypage_favorite .order p {
  display: none;
}

@media screen and (min-width: 800px) {
  #page_mypage_favorite .order p {
    display: block;
  }
}

#page_mypage_favorite .order .display-item-count {
  display: none;
}

#page_mypage_favorite .order .display-item-count-label {
  margin-left: 0.3em;
}

@media screen and (min-width: 800px) {
  #page_mypage_favorite .order .display-item-count {
    display: block;
  }

  #page_mypage_favorite .order .display-item-count > a {
    cursor: pointer;
    background: #262626;
    color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 0.3em;
  }

  #page_mypage_favorite .order .display-item-count > a.active {
    cursor: default;
    background: #090909;
    color: #868686;
  }
}

#page_mypage_favorite .order a.image {
  display: none;
}

@media screen and (min-width: 800px) {
  #page_mypage_favorite .order a.image {
    display: inline-block;
  }
}

@media screen and (max-width: 800px){
  #page_mypage_favorite .order {
    display: none;
  }
}


@media screen and (min-width: 800px){
  #page_mypage_favorite #page_footer .paginator {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 800px) {
  #page_result #page_header #order {
    padding: 10px 0!important;
  }
}

/* 商品詳細　*/
#page_detail #page_body #related .collection .wrapper {
  padding: 10px;
  border-top: none;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #related .collection .wrapper {
    padding: 0;
  }
}

#page_detail #page_body #related {
  margin-bottom;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body #related,
  #page_detail #page_body .relations {
    padding: 0 10px;
  }
}

#page_detail .card-collection .card-swiper-navigation .card-button-next,
#page_detail .card-collection .card-swiper-navigation .card-button-prev {
  z-index: 1;
}

@media screen and (min-width: 800px) {
  #page_detail .card-collection .card-header, #page_detail .card-collection .card-footer, #page_detail .card-collection .card-swiper {
    padding: 0;
  }
}

#page_detail #page_body .card-collection .card-header .title,
#page_detail #page_body .collection-title {
  font-size: 1rem!important;
}

@media screen and (min-width: 800px) {
  #page_detail #page_body .card-collection .card-header .title,
  #page_detail #page_body .collection-title {
    font-size: 1.2rem!important;
  }
}

#page_detail #page_body #related .collection-title {
  padding: 10px 0;
}

@media screen and (min-width: 1280px) {
  #page_detail .card-collection .card-item-image img {
    margin: auto;
    width: 100px;
  }
}

#page_detail .card-collection .card-item {
  padding-top: 0
}

#page_detail .card-collection .card-swiper {
  padding: 1% 3%;
}

@media screen and (min-width: 800px) {
  #page_detail .card-collection .card-swiper {
    padding: 0;
  }
}
@media screen and (min-width: 1280px) {
#page_detail .card-collection .card-item {
    width: 150px;
  }
}

@media screen and (min-width: 1280px) {
#page_detail .card-collection .swiper-slide {
    width: 150px;
  }
}

#page_detail .card-collection .card-item-tag {
  display: block;
  height: 20px;
}

#page_detail #jam_history .collection-contents .collection-item a img {
  width: 80px;
  height: auto
}

#page_detail #page_body #related .collection {
  margin-top: 20px;
  position: relative;
  height: 180px;
}

#header #action_panel_right .link ul li.cart a {
  position: relative;
}

#header #action_panel_right .link ul li a span {
  display: block;
}

#header #action_panel_right .link ul li a span:first-child {
  display: none;
}

.hNotice {
  position: absolute;
  width: 18px;
  height: 18px;
  font-size: 10px;
  color: #fff;
  border-radius: 15px;
  top: 0px;
  right: -6px;
  background: #e73656;
  text-align: center;
  line-height: 17px;
}

.btn-inactive {
  opacity: 0.5;
}
body.cart .purchase-choice > ul > li > div {
  padding: 15px 10px;
  display: block;
}
body.cart .caution {
  margin-top: 0 !important;
}
.select_payment {
  margin: 5px 0;
  font-size: 85%;
}
.select_payment ul {
  display: flex;
  margin-left: 0 !important;
}
.select_payment ul li {
  margin: 0 3px;
}
.payment_button {
  text-align: center;
}
@media screen and (min-width: 800px) {
.select_payment {
  font-size: 100%;
}
.payment_button {
  text-align: left;
}
}

.free_trial {
  font-size: small;
}

.link-menu {
  display: none;
}

@media (max-width: 800px) {
  .link-menu {
    display: block;
    top: 100%;
    width: 100%;
    height: 33px;
    margin: -1px 0px -1px 0px;
    padding: 0;
    font-size: 0.8em;
    background: #036;
  }
  .link-menu-item a {
    display: block;
    width: 65px;
    height: 23px;
    margin: 5px 5px 0 0;
    padding: 0;
    line-height: 23px;
    text-decoration: none;
    text-align: center;
    float: left;
    color: #fff;
    border-right: 1px solid #ddd;
  }
  .link-menu-item:last-of-type a {
    border-right: none;
  }
  .link-menu .switcher a {
    display: block;
    width: 55px;
    height: 25px;
    margin: 4px 5px 2px 0;
    padding: 0;
    line-height: 26px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    background: #000;
    border-radius: 4px;
    float: right;
  }
}

.vr-link {
  color: #ff6600;
  font-weight: bold;
  text-decoration: underline;
}
.vr-link:hover {
  color: #cc5200;
}
