@charset "UTF-8";
/* --------------------
Reset
-------------------- */
a,
hr {
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
hr,
menu,
nav,
section {
  display: block;
}

abbr,
address,
article,
aside,
audio,
b,
blockquote,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

body,
html {
  margin: 0;
  padding: 0;
}

ins,
mark {
  background-color: #ff9;
  color: #000;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none;
}

a {
  margin: 0;
  vertical-align: baseline;
  background: 0 0;
}

ins {
  text-decoration: none;
}

mark {
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
}

input,
select {
  vertical-align: middle;
}

:focus {
  outline: 0;
}

*,
::after,
::before {
  border: 0;
  outline: 0;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

/* --------------------
Base
-------------------- */
html {
  font-size: 62.5%;
  font-family: -apple-system, BlinkMacSystemFont, Arial, YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Osaka, Meiryo, メイリオ, sans-serif;
  line-height: 1.75;
  color: #181818;
  /*overflow-x: hidden;*/
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #fff;
  /*overflow-x: hidden;*/
  -webkit-animation: fadeIn 4s ease 0s 1 normal;
  -moz-animation: fadeIn 4s ease 0s 1 normal;
  animation: fadeIn 4s ease 0s 1 normal;
}

@media (max-width: 768px) {
  body {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

img {
  display: block;
}

@media (max-width: 768px) {
  img {
    width: 100%;
  }
}

a {
  color: #ffe942;
}

/* --------------------
Layout
-------------------- */
/* header */
.l-header {
  position: relative;
  z-index: 1;
}

/* header/inner */
.l-header_inner {
  border-top: 1px solid #b5b5b5;
  border-bottom: 1px solid #b5b5b5;
  -webkit-box-shadow: 0 -2px 2px 0 rgba(33, 32, 23, 0.2);
  -moz-box-shadow: 0 -2px 2px 0 rgba(33, 32, 23, 0.2);
  box-shadow: 0 -2px 2px 0 rgba(33, 32, 23, 0.2);
  background: #ffe942 url(/bc/images/7iro/common/bg_deco.png) repeat scroll 0 0;
  background-size: cover;
}

@media (max-width: 768px) {
  .l-header_inner {
    padding: 8% 4%;
  }
}

@media (min-width: 769px) {
  .l-header_inner {
    padding: 2% 0;
  }
}

/* header/horizontalBox */
@media (max-width: 768px) {
  .l-header_horizontalBox {
    margin: 0 0 8%;
  }
}

@media (min-width: 769px) {
  .l-header_horizontalBox {
    width: 960px;
    margin: 0 auto 40px;
    position: relative;
  }
}

@media (max-width: 768px) {
  .l-header_horizontalBoxLeft {
    margin-bottom: 8%;
  }
}

@media (min-width: 769px) {
  .l-header_horizontalBoxLeft {
    width: 640px;
    margin: 0 20px 0 0;
  }
}

.l-header_horizontalBoxRight {
  margin: 0 auto;
}

@media (min-width: 769px) {
  .l-header_horizontalBoxRight {
    position: absolute;
    top: 0;
    right: 0;
  }
}

/* header/titleOuter */
.l-header_titleOuter {
  background-color: #ffe942;
  border-bottom: 2px solid #b5b5b5;
  -webkit-box-shadow: 0 -2px 2px 0 rgba(33, 32, 23, 0.2);
  -moz-box-shadow: 0 -2px 2px 0 rgba(33, 32, 23, 0.2);
  box-shadow: 0 -2px 2px 0 rgba(33, 32, 23, 0.2);
}

@media (max-width: 768px) {
  .l-header_titleOuter {
    padding: 8% 0;
  }
}

@media (min-width: 769px) {
  .l-header_titleOuter {
    padding: 48px 0;
  }
}

/* header/title */
.l-header_title {
  margin: 0 auto;
  display: table;
}

/* subHeader */
.l-subHeader {
  width: 100%;
  background: #fff url(/bc/images/7iro/common/bg_deco.png) repeat scroll 0 0;
  background-size: cover;
  border-bottom: 1px solid #b5b5b5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transform: translate(0, -100%);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 768px) {
  .l-subHeader {
    padding: 4% 0 2%;
  }
}

@media (min-width: 769px) {
  .l-subHeader {
    padding: 1% 0 0.5%;
  }
}

.l-subHeader.is-active {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* subHeader/line */
.l-subHeader_line {
  width: 100%;
  height: 7px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.l-subHeader_line::before, .l-subHeader_line::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url(/bc/images/7iro/common/stripe.jpg) repeat scroll 0 0;
}

.l-subHeader_line::before {
  top: 0;
  height: 3px;
}

.l-subHeader_line::after {
  bottom: 0;
  height: 2px;
}

/* subHeader/inner */
@media (max-width: 768px) {
  .l-subHeader_inner {
    width: 56%;
    margin: 0 auto 6px;
  }
}

@media (min-width: 769px) {
  .l-subHeader_inner {
    width: 960px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

/* subHeader_left */
@media (min-width: 769px) {
  .l-subHeader_left {
    width: 400px;
  }
}

/* subHeader_right */
@media (min-width: 769px) {
  .l-subHeader_right {
    width: 360px;
    margin-right: 160px;
  }
}

@media (min-width: 1350px) {
  .l-subHeader_right {
    margin-right: 80px;
  }
}

@media (min-width: 1450px) {
  .l-subHeader_right {
    margin-right: 0;
  }
}

/* header/line */
.l-header_line {
  width: 100%;
  height: 7px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.l-header_line::before, .l-header_line::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url(/bc/images/7iro/common/stripe.jpg) repeat scroll 0 0;
}

.l-header_line::before {
  top: 0;
  height: 3px;
}

.l-header_line::after {
  bottom: 0;
  height: 2px;
}

/* title */
.l-title {
  position: relative;
  background-image: url(/bc/images/7iro/common/bg_deco.png), url(/bc/images/7iro/common/bg_shadow.png);
  background-repeat: repeat, no-repeat;
  background-position: left top, center bottom;
  background-size: cover, contain;
}

@media (max-width: 768px) {
  .l-title {
    padding: 4% 4% 8%;
  }
}

@media (min-width: 769px) {
  .l-title {
    padding: 2% 0 4%;
  }
}

/* title/inner */
@media (max-width: 768px) {
  .l-title_inner {
    margin-bottom: 16px;
  }
}

@media (min-width: 769px) {
  .l-title_inner {
    width: 960px;
    margin: 0 auto;
  }
}

/* title/horizontalBox */
@media (min-width: 769px) {
  .l-title_horizontalBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .l-title_horizontalBoxLeft {
    width: 48%;
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .l-title_horizontalBoxLeft {
    width: 300px;
    margin-top: 3%;
  }
}

@media (min-width: 769px) {
  .l-title_horizontalBoxRight {
    width: 630px;
  }
}

/* title/logo */
@media (max-width: 768px) {
  .l-title_logo {
    margin-top: -20%;
  }
}

@media (min-width: 769px) {
  .l-title_logo {
    margin-top: -12%;
  }
}

/* whatIs/title */
@media (max-width: 768px) {
  .l-whatIs_title {
    margin: 0 auto 4%;
  }
}

@media (min-width: 769px) {
  .l-whatIs_title {
    margin: 0 auto 3%;
  }
}

/* whatIs/catch */
.l-whatIs_catch {
  color: #0178cb;
  margin: 0 auto 2%;
}

@media (max-width: 768px) {
  .l-whatIs_catch {
    font-size: 120%;
  }
}

@media (min-width: 769px) {
  .l-whatIs_catch {
    font-size: 160%;
    line-height: 1.5;
  }
}

/* whatIs/caution */
.l-whatIs_caution {
  margin: 0 auto 2%;
}

@media (max-width: 768px) {
  .l-whatIs_caution > * {
    text-indent: -12px;
    padding-left: 12px;
  }
}

@media (min-width: 769px) {
  .l-whatIs_caution > * {
    text-indent: -14px;
    padding-left: 14px;
  }
}

/* whatIs/cautionButton */
.l-whatIs_cautionButton {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .l-whatIs_cautionButton {
    width: 70%;
  }
}

@media (min-width: 769px) {
  .l-whatIs_cautionButton {
    display: table;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .l-whatIs_cautionButton:hover {
    opacity: 0.5;
  }
}

/* navi */
.l-navi {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #b5b5b5;
}

@media (max-width: 768px) {
  .l-navi {
    padding: 0 0 8% 0;
  }
}

@media (min-width: 769px) {
  .l-navi {
    padding: 0 0 4% 0;
  }
}

/* navi/inner */
.l-navi_inner {
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .l-navi_inner {
    max-width: 80%;
  }
}

@media (min-width: 769px) {
  .l-navi_inner {
    max-width: 64%;
  }
}

@media (min-width: 769px) {
  .l-navi_inner:hover {
    cursor: pointer;
  }
}

/* navi/shadow */
.l-navi_shadow {
  position: absolute;
  top: 0;
  z-index: 2;
  height: 100%;
}

@media (max-width: 768px) {
  .l-navi_shadow {
    width: 10%;
  }
}

@media (min-width: 769px) {
  .l-navi_shadow {
    width: 18%;
  }
}

.l-navi_shadow-left {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.l-navi_shadow-right {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(white), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(right, white 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

/* navi/img */
.l-navi img {
  width: 100%;
}

/* navi/swiper setting */
.l-navi .swiper-container {
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
}

.l-navi .swiper-pagination {
  right: 0;
  left: 0;
  margin: auto;
  line-height: 0;
}

@media (max-width: 768px) {
  .l-navi .swiper-pagination {
    bottom: -23%;
  }
}

@media (min-width: 769px) {
  .l-navi .swiper-pagination {
    bottom: -11%;
  }
}

.l-navi .swiper-pagination-bullet {
  width: 15px;
  height: 17px;
  background: transparent url(/bc/images/7iro/common/pagination.png) no-repeat scroll 0 0;
  background-size: cover;
  margin: 0 8px 0 0;
  border-radius: 0;
  opacity: 1;
}

.l-navi .swiper-pagination-bullet-active {
  background: transparent url(/bc/images/7iro/common/pagination_active.png) no-repeat scroll 0 0;
  background-size: cover;
}

.l-navi .swiper-button-prev,
.l-navi .swiper-button-next {
  margin: 0;
}

@media (max-width: 768px) {
  .l-navi .swiper-button-prev,
  .l-navi .swiper-button-next {
    width: 21px;
    height: 38px;
    top: 24%;
  }
}

@media (min-width: 769px) {
  .l-navi .swiper-button-prev,
  .l-navi .swiper-button-next {
    width: 42px;
    height: 75px;
    top: 32%;
  }
}

@media (min-width: 769px) {
  .l-navi .swiper-button-prev:hover,
  .l-navi .swiper-button-next:hover {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .l-navi .swiper-button-prev {
    background: transparent url(/bc/images/7iro/common/prev.png) no-repeat scroll 0 0;
    background-size: cover;
    left: 2%;
  }
}

@media (min-width: 769px) {
  .l-navi .swiper-button-prev {
    background: transparent url(/bc/images/7iro/common/prev.png) no-repeat scroll;
    background-size: auto;
    left: 3%;
  }
}

@media (max-width: 768px) {
  .l-navi .swiper-button-next {
    background: transparent url(/bc/images/7iro/common/next.png) no-repeat scroll 0 0;
    background-size: cover;
    right: 2%;
  }
}

@media (min-width: 769px) {
  .l-navi .swiper-button-next {
    background: transparent url(/bc/images/7iro/common/next.png) no-repeat scroll 0 0;
    background-size: auto;
    right: 3%;
  }
}

/* footer */
.l-footer {
  color: #fff;
  background: transparent url(/bc/images/7iro/common/stripe.jpg) repeat scroll 0 0;
  -webkit-box-shadow: 0 -2px 2px 0 rgba(33, 32, 23, 0.2);
  -moz-box-shadow: 0 -2px 2px 0 rgba(33, 32, 23, 0.2);
  box-shadow: 0 -2px 2px 0 rgba(33, 32, 23, 0.2);
}

@media (max-width: 768px) {
  .l-footer {
    padding: 8% 4%;
  }
}

@media (min-width: 769px) {
  .l-footer {
    padding: 4% 0;
  }
}

/* footer/inner */
.l-footer_inner > * {
  margin-bottom: 40px;
}

.l-footer_inner > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .l-footer_inner {
    width: 960px;
    margin: 0 auto;
  }
}

/* footer/caution */
@media (max-width: 768px) {
  .l-footer_caution {
    padding: 4% 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
}

@media (min-width: 769px) {
  .l-footer_caution {
    padding: 3% 0;
    background-image: url(/bc/images/7iro/common/line_caution.png), url(/bc/images/7iro/common/line_caution.png);
    background-repeat: no-repeat;
    background-position: center top, center 99%;
  }
}

.l-footer_cautionTitle {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.l-footer_cautionText {
  font-size: 12px;
  font-size: 1.2rem;
}

.l-footer_cautionList > * {
  text-indent: -12px;
  padding-left: 12px;
  margin-bottom: 4px;
}

.l-footer_cautionList > *:last-child {
  margin-bottom: 0;
}


/*#cboxLoadedContent {
  box-sizing: content-box;
  border: 8px solid rgba(0, 150, 255, 0.4);
}*/

#cboxPrevious,
#cboxNext {
  width: 18px;
  height: 31px;
  position: absolute;
  top: 50%;
  display: block;
  text-indent: -9999px;
}

#cboxPrevious {
  left: 2%;
  background: url(/bc/images/7iro/common/c_prev.png) no-repeat 0 0;
}

#cboxPrevious:hover {
  background: url(/bc/images/7iro/common/c_prev.png) 0 -31px;
}

#cboxNext {
  right: 2%;
  background: url(/bc/images/7iro/common/c_next.png) no-repeat 0 0;
}

#cboxNext:hover {
  background: url(/bc/images/7iro/common/c_next.png) 0 -31px;
}

/* --------------------
Component
-------------------- */
/* floatBox */
.c-floatBox {
  width: 100%;
  letter-spacing: -1em;
  display: table;
}

@media (max-width: 768px) {
  .c-floatBox-col-2 .c-floatBox_item {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .c-floatBox-col-2 .c-floatBox_item {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .c-floatBox-col-3 .c-floatBox_item {
    width: 50%;
  }
}

@media (min-width: 769px) {
  .c-floatBox-col-3 .c-floatBox_item {
    width: 33.3%;
  }
}

.c-floatBox_item {
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0;
}

.c-floatBox_inner {
  display: table;
  margin: 0 auto;
}

/* flexBox */
.c-flexBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.c-flexBox-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.c-flexBox-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-flexBox-space {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .c-flexBox-switch {
    display: block;
  }
}

/* caution */
.c-caution-fs12 > * {
  font-size: 12px;
  font-size: 1.2rem;
  text-indent: -12px;
  padding-left: 12px;
}

.c-caution-fs14 {
  font-size: 14px;
  font-size: 1.4rem;
  text-indent: -14px;
  padding-left: 14px;
}

.soldout {
  color: #ff0000;
  letter-spacing: 1px;
  font-weight: bold;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .soldout {
    font-size: 18px !important;
    font-size: 1.8rem !important;
  }
}

@media (min-width: 769px) {
  .soldout {
    font-size: 22px !important;
    font-size: 2.2rem !important;
  }
}

/* movie */
.c-movie {
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
  margin-right: auto;
  margin-left: auto;
}

/* movie/iframe */
.c-movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

/* pulldown */
.c-pulldown {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-pulldown--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-pulldown__text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 1em;
}

.c-pulldown__select {
  background-color: #fff;
  border: 1px solid;
  color: inherit;
  font-size: 18px;
  font-size: 1.8rem;
  height: 28px;
}

@media (max-width: 768px) {
  .c-pulldown__select {
    width: auto;
    padding: 0 0.25em;
  }
}

@media (min-width: 769px) {
  .c-pulldown__select {
    width: 60px;
  }
}

/* button */
button,
.c-button {
  cursor: pointer;
}

.c-button--primary {
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  -webkit-transition: all 0.15s ease-in-out 0s;
  -moz-transition: all 0.15s ease-in-out 0s;
  transition: all 0.15s ease-in-out 0s;
}

.c-button--primary a, .c-button--primary button {
  padding: 0.5em;
}

.c-button--primary:hover {
  opacity: 0.5;
}

.c-button--fill {
  width: 100%;
}

.c-button--medium {
  font-size: 16px;
  font-size: 1.6rem;
}

.c-button--memorial {
  color: #fff;
  background-color: #f4c00d;
}

.c-button a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.c-button button {
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* --------------------
Project
-------------------- */
/* textBlockA/title */
@media (max-width: 768px) {
  .p-textBlockA_title {
    margin-bottom: -4%;
  }
}

@media (min-width: 769px) {
  .p-textBlockA_title {
    margin-bottom: -6%;
  }
}

.p-textBlockA_title img {
  width: 100%;
}

/* textBlockA/inner */
.p-textBlockA_inner {
  background-color: #fff;
}

.p-textBlockA_inner > * {
  margin-bottom: 16px;
}

.p-textBlockA_inner > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .p-textBlockA_inner {
    padding: 8% 2% 4%;
  }
}

@media (min-width: 769px) {
  .p-textBlockA_inner {
    padding: 8% 2% 2%;
  }
}

/* textBlockA/caution */
@media (max-width: 768px) {
  .p-textBlockA_caution > * {
    font-size: 12px;
    font-size: 1.2rem;
    text-indent: -12px;
    padding-left: 12px;
  }
}

@media (min-width: 769px) {
  .p-textBlockA_caution > * {
    font-size: 14px;
    font-size: 1.4rem;
    text-indent: -14px;
    padding-left: 14px;
  }
}

/* textBlockA/indent */
@media (max-width: 768px) {
  .p-textBlockA_indent {
    font-size: 12px;
    font-size: 1.2rem;
    text-indent: -12px;
    padding-left: 12px;
  }
}

@media (min-width: 769px) {
  .p-textBlockA_indent {
    font-size: 14px;
    font-size: 1.4rem;
    text-indent: -14px;
    padding-left: 14px;
  }
}

@media (max-width: 768px) {
  .p-textBlockA_xIndent {
    font-size: 12px;
    font-size: 1.2rem;
    padding-left: 24px;
    text-indent: -12px;
  }
}

@media (min-width: 769px) {
  .p-textBlockA_xIndent {
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 28px;
    text-indent: -14px;
  }
}

/* textBlockA/pd */
@media (max-width: 768px) {
  .p-textBlockA_pd {
    padding-left: 12px;
  }
}

@media (min-width: 769px) {
  .p-textBlockA_pd {
    padding-left: 14px;
  }
}

/* textBlockB */
.p-textBlockB {
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  text-align: center;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .p-textBlockB {
    width: 96%;
    padding: 4%;
  }
}

@media (min-width: 769px) {
  .p-textBlockB {
    width: 800px;
    padding: 24px;
  }
}

.p-textBlockB-orange {
  border: 2px solid #dcad0c;
}

.p-textBlockB-skyBlue {
  border: 2px solid #00a3e8;
}

/* textBlockB/text */
.p-textBlockB_text {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
}

/* naviBlockA */
.p-naviBlockA-skyBlue a {
  color: #00a3e8;
}

.p-naviBlockA-skyBlue .p-naviBlockA_bar {
  background-color: #00a3e8;
}

/* naviBlockA/list */
@media (min-width: 769px) {
  .p-naviBlockA_list::after {
    content: '';
    display: block;
    clear: both;
  }
}

/* naviBlockA/item */
.p-naviBlockA_item {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  font-weight: bold;
}

@media (max-width: 768px) {
  .p-naviBlockA_item {
    font-size: 110%;
    margin-bottom: 3%;
  }
  .p-naviBlockA_item:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 769px) {
  .p-naviBlockA_item {
    font-size: 130%;
    width: 49%;
    float: left;
    margin-right: 2%;
  }
  .p-naviBlockA_item:nth-of-type(2n) {
    margin-right: 0;
    margin-bottom: 1%;
  }
}

.p-naviBlockA_item:last-of-type {
  margin: 0;
}

/* naviBlockA/bar */
.p-naviBlockA_bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
}

@media (min-width: 769px) {
  .p-naviBlockA_bar {
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
}

/* naviBlockA/bar/context */
@media (min-width: 769px) {
  .p-naviBlockA_item:hover .p-naviBlockA_bar {
    width: 100%;
  }
}

/* naviBlockA/a */
.p-naviBlockA a {
  display: block;
  padding: 2% 2% 2% 4%;
  position: relative;
  z-index: 1;
  text-decoration: none;
}

@media (min-width: 769px) {
  .p-naviBlockA a {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-naviBlockA a:hover {
    color: #fff;
  }
}

/* actionButton */
.p-actionButton {
  width: 100%;
  display: table;
  padding: 4% 0 0 0;
}

/* actionButton/button */
.p-actionButton button {
  display: block;
  padding: 0;
  border: none;
  background: transparent;
}

@media (min-width: 769px) {
  .p-actionButton button {
    width: 607px;
    margin: 0 auto;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-actionButton button:hover {
    opacity: 0.35;
  }
}

/* actionButton/img */
@media (min-width: 769px) {
  .p-actionButton img {
    width: 100%;
  }
}

/* fixedButton */
.p-fixedButton {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
  display: none;
}

/* fixedButton/item */
@media (max-width: 768px) {
  .p-fixedButton_item {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
  }
  .p-fixedButton_item:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 769px) {
  .p-fixedButton_item {
    margin-bottom: 10px;
  }
  .p-fixedButton_item:last-child {
    margin-bottom: 0;
  }
}

/* fixedButton/button */
.p-fixedButton button {
  display: block;
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
}

/* fixdButton-context */
.p-goodsCategory.is-active .p-fixedButton {
  display: block;
}

/* fixedButton-hover */
@media (min-width: 769px) {
  .p-fixedButton_button:hover,
  .p-fixedButton_item a:hover {
    cursor: pointer;
    opacity: 0.6;
  }
}

/* roundedHeading */
.p-roundedHeading {
  background-color: #00a3e8;
  border-radius: 100px;
  display: table;
  text-align: center;
  color: #fff;
}

@media (max-width: 768px) {
  .p-roundedHeading {
    padding: 3% 2%;
    font-size: 110%;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .p-roundedHeading {
    padding: 8px 16px;
    font-size: 120%;
  }
}

/* unitHeading */
.p-unitHeading {
  width: 90%;
  padding-bottom: 1%;
  margin-right: auto;
  margin-left: auto;
  border-bottom: 1px solid #0096ff;
}

@media (max-width: 768px) {
  .p-unitHeading {
    margin-bottom: 4%;
  }
}

@media (min-width: 769px) {
  .p-unitHeading {
    margin-bottom: 2%;
  }
}

.p-unitHeading-idolish7 {
  border-bottom: 1px solid #00aeff;
}

.p-unitHeading-trigger {
  border-bottom: 1px solid #181d1b;
}

.p-unitHeading-revale {
  border-bottom: 1px solid #040058;
}

/* unitHeading/img */
.p-unitHeading img {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .p-unitHeading img {
    width: 48%;
  }
}

@media (min-width: 769px) {
  .p-unitHeading img {
    width: 24%;
  }
}

/* information */
.p-information {
  background-color: #fff;
  border: 5px solid #137ac9;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .p-information {
    padding: 4% 2%;
  }
}

@media (min-width: 769px) {
  .p-information {
    width: 960px;
    padding: 24px;
    margin: 0 auto;
  }
}

/* information/title */
.p-information_title {
  margin-right: auto;
  margin-left: auto;
  display: table;
}

@media (max-width: 768px) {
  .p-information_title {
    width: 98%;
    margin-bottom: 6%;
  }
}

@media (min-width: 769px) {
  .p-information_title {
    margin-bottom: 28px;
  }
}

/* information/list */
@media (max-width: 768px) {
  .p-information_list {
    height: 272px;
  }
}

@media (min-width: 769px) {
  .p-information_list {
    height: 240px;
  }
}

/* information/item */
.p-information_item {
  background-color: #cdf4fe;
  border: 5px solid #004c86;
  border-radius: 100px;
  position: relative;
  font-weight: bold;
}

@media (max-width: 768px) {
  .p-information_item {
    margin-bottom: 4%;
  }
}

@media (min-width: 769px) {
  .p-information_item {
    margin-bottom: 24px;
  }
  .p-information_item:hover {
    cursor: pointer;
    opacity: 0.5;
  }
}

.p-information_item:last-of-type {
  margin: 0;
}

.p-information_item-emphasis {
  background-color: #FDDDEF;
  border: 5px solid #ff0090;
}

.p-information_item-emphasis a {
  color: #ff0090;
}

/* information/text */
@media (max-width: 768px) {
  .p-information_text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) {
  .p-information_text {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .p-information_text-xs {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

@media (min-width: 769px) {
  .p-information_text-xs {
    font-size: 12.5px;
    font-size: 1.25rem;
  }
}

/* information/a */
.p-information a {
  color: #003259;
  text-decoration: none;
  display: block;
}

@media (max-width: 768px) {
  .p-information a {
    padding: 4% 8% 4% 4%;
  }
}

@media (min-width: 769px) {
  .p-information a {
    padding: 8px 8px 8px 12px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-information a:hover {
    -webkit-transform: translate(6px, 0);
    -moz-transform: translate(6px, 0);
    -ms-transform: translate(6px, 0);
    transform: translate(6px, 0);
  }
}

/* information/date */
.p-information_date {
  color: #000;
  margin-right: 4px;
}

.p-information_date::before {
  content: '♪';
}

/* information/icon */
.p-information_icon {
  color: #000;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: table;
  font-weight: bold;
  line-height: 1;
}

@media (max-width: 768px) {
  .p-information_icon {
    right: 2%;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media (min-width: 769px) {
  .p-information_icon {
    right: 16px;
    font-size: 20px;
    font-size: 2rem;
  }
}

/* information/scroll setting */
.p-information .mCSB_scrollTools .mCSB_draggerRail {
  background-color: #0178cc;
  background-color: rgba(1, 120, 204, 0.6);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}

.p-information .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #0178cc;
  background-color: rgba(1, 120, 204, 0.6);
  filter: "alpha(opacity=70)";
  -ms-filter: "alpha(opacity=70)";
}

.p-information .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #0178cc;
  background-color: rgba(1, 120, 204, 0.6);
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.p-information .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.p-information .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #0178cc;
  background-color: rgba(1, 120, 204, 0.6);
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

/* linkBanner */
.p-linkBanner::after {
  content: '';
  display: block;
  clear: both;
}

/* linkBanner/item */
.p-linkBanner_item {
  float: left;
}

@media (max-width: 768px) {
  .p-linkBanner_item {
    width: 48%;
    margin-right: 4%;
  }
}

@media (min-width: 769px) {
  .p-linkBanner_item {
    width: 32%;
    margin-right: 2%;
  }
}

@media (max-width: 768px) {
  .p-linkBanner_item:nth-of-type(2n) {
    margin-right: 0;
    margin-bottom: 4%;
  }
}

@media (min-width: 769px) {
  .p-linkBanner_item:nth-of-type(3n) {
    margin-right: 0;
    margin-bottom: 2%;
  }
}

.p-linkBanner_item:last-of-type {
  margin: 0;
}

/* linkBanner/img */
.p-linkBanner img {
  width: 100%;
}

/* linkBanner/a */
.p-linkBanner a {
  display: block;
}

@media (min-width: 769px) {
  .p-linkBanner a {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .p-linkBanner a:hover {
    opacity: 0.65;
  }
}

/* goodsLineup */
.p-goodsLineup > * {
  margin-bottom: 4%;
}

.p-goodsLineup > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .p-goodsLineup {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* goodsLineup/title */
.p-goodsLineup_title {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 769px) {
  .p-goodsLineup_title {
    width: 960px;
  }
}

.p-goodsLineup_title img {
  width: 100%;
}

/* goodsLineup/item */
.p-goodsLineup_item {
  margin-bottom: 8%;
}

.p-goodsLineup_item:last-child {
  margin-bottom: 0;
}

/* productOuter */
.p-productOuter::after {
  content: '';
  display: block;
  clear: both;
}

@media (min-width: 769px) {
  .p-productOuter-twoBlock {
    display: table;
    margin-right: auto;
    margin-left: auto;
  }
}

/* product */
.product {
  height: 100%;
  float: left;
  line-height: 1.5;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .product {
    width: 49%;
    margin-right: 2%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media (min-width: 769px) {
  .product {
    width: 300px;
    margin-right: 30px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .product:nth-of-type(2n) {
    margin-right: 0;
    margin-bottom: 4%;
  }
}

@media (min-width: 769px) {
  .product:nth-of-type(3n) {
    margin-right: 0;
    /*margin-bottom: 30px;*/
  }
}

.product:last-of-type {
  margin: 0;
}

/* product/dt */
.product > dt {
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  word-break: break-all;
  position: relative;
}

@media (max-width: 768px) {
  .product > dt {
    padding: 4% 2%;
  }
}

@media (min-width: 769px) {
  .product > dt {
    padding: 4% 0;
  }
}

.product > dt::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 100%;
  background-image: url(/bc/images/7iro/common/item_shadow.png), url(/bc/images/7iro/common/item_shadow.png);
  background-repeat: no-repeat;
  background-position: right bottom, left bottom;
}

/* product/dd */
.product > dd {
  width: 100%;
  width: -webkit-calc(100% - 8px);
  width: -moz-calc(100% - 8px);
  width: calc(100% - 8px);
  padding: 4% 4% 32%;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  display: block;
}

/* product/ph */
.product .ph {
  width: 100%;
  margin: 0 auto 4%;
  position: relative;
}

.product .ph::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 769px) {
  .product .ph::after {
    content: none;
  }
}

@media (min-width: 769px) {
  .product .ph a:hover {
    cursor: url(/bc/images/7iro/common/cursor.cur), crosshair;
  }
}

.product .ph img {
  width: 100%;
}

/* product/price */
.product .price {
  margin: 0 0 2%;
}

@media (max-width: 768px) {
  .product .price {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

@media (min-width: 769px) {
  .product .price {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .product .price span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) {
  .product .price span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* product/txt */
@media (max-width: 768px) {
  .product .txt {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media (min-width: 769px) {
  .product .txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .product .txt > dt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media (min-width: 769px) {
  .product .txt > dt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* product/buy */
.product .buy {
  width: 100%;
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .product .buy {
    bottom: 2%;
  }
}

@media (min-width: 769px) {
  .product .buy {
    bottom: 4%;
  }
}

.product .buy b {
  margin: 0 4% 0 0;
  display: block;
}

@media (max-width: 768px) {
  .product .buy b {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media (min-width: 769px) {
  .product .buy b {
    font-size: 20px;
    font-size: 2rem;
      font-weight: bold;
  }
}

.product .buy select {
  margin: 0;
  background-color: #fff;
  box-sizing: content-box;
}

@media (max-width: 768px) {
  .product .buy select {
    width: auto;
    height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media (min-width: 769px) {
  .product .buy select {
    width: 60px;
    height: 28px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.product .buy_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* product/detail */
.product .detail a {
  display: block;
}

/* product/cart */
.product .cart a {
  display: block;
}

/* product-modifier */
.product-fullWide {
  width: 100%;
}

@media (min-width: 769px) {
  .product-fullWide > dt {
    padding: 1% 0;
  }
}

@media (max-width: 768px) {
  .product-fullWide > dd {
    padding: 4% !important;
  }
}

@media (min-width: 769px) {
  .product-fullWide > dd {
    padding: 2% !important;
  }
}

@media (min-width: 769px) {
  .product-fullWide .ph {
    width: 480px;
    float: left;
    margin: 0;
  }
}

@media (min-width: 769px) {
  .product-fullWide .right {
    width: 400px;
    float: right;
  }
}

.product-fullWide .txt > dl > dt {
  font-weight: bold;
}

@media (max-width: 768px) {
  .product-fullWide .txt > dl > dt {
    margin: 4% 0 0;
  }
}

@media (min-width: 769px) {
  .product-fullWide .txt > dl > dt {
    margin: 2% 0 0;
  }
}

@media (max-width: 768px) {
  .product-fullWide .txt > dl > dt:first-of-type {
    margin: 2% 0 0;
  }
}

@media (min-width: 769px) {
  .product-fullWide .txt > dl > dt:first-of-type {
    margin: 1% 0 0;
  }
}

@media (min-width: 769px) {
  .product-fullWide .buy {
    position: relative;
    margin: 4% 0 0 0;
  }
}

.product-fullWide .action {
  width: 100% !important;
  position: relative !important;
}

@media (max-width: 768px) {
  .product-fullWide .action {
    margin: 8% 0 0 !important;
  }
}

@media (min-width: 769px) {
  .product-fullWide .action {
    margin: 32px 0 0 !important;
  }
}

.product-fullWide .action li {
  margin: 0 0 2% !important;
}

.product-fullWide .action li:last-of-type {
  margin: 0;
}

.product-fullWide .action li a {
  cursor: pointer;
}

.product-noText > dd {
  padding: 4%;
}

.product-noText .buy {
  position: relative;
}

@media (max-width: 768px) {
  .product-noText .buy {
    margin: 12% auto 0;
  }
}

@media (min-width: 769px) {
  .product-noText .buy {
    margin: 8% auto 0;
  }
}

@media (max-width: 768px) {
  .product-noText .buy > div {
    margin: 0 auto 6%;
  }
}

@media (min-width: 769px) {
  .product-noText .buy > div {
    margin: 0 auto 4%;
  }
}

.product-noText .buy > div:last-of-type {
  margin: 0 auto;
}

.product-noText .buy b {
  margin: 0;
}

@media (min-width: 769px) {
  .product-slide .ph {
    position: relative;
  }
}

.product-slide .zoom {
  display: none;
}

@media (min-width: 769px) {
  .product-slide .zoom {
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
  }
}

@media (min-width: 769px) {
  .product-slide .zoom a {
    display: block;
    width: 100%;
    height: 100%;
  }
}

.product-slide .swiper-pagination {
  bottom: 0;
}

/* smallProduct */
.smallProduct {
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .smallProduct {
    padding: 4% 2%;
  }
}

@media (min-width: 769px) {
  .smallProduct {
    width: 49%;
    float: left;
    margin-right: 2%;
    padding: 2% 1%;
  }
}

@media (min-width: 769px) {
  .smallProduct:nth-of-type(2n) {
    margin-right: 0;
    margin-bottom: 2%;
  }
}

@media (max-width: 768px) {
  .smallProduct:not(:last-child) {
    margin-bottom: 2%;
  }
}

.smallProduct_image {
  display: table;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .smallProduct_image {
    width: 48.5%;
  }
}

@media (min-width: 769px) {
  .smallProduct_image {
    width: 28.5%;
  }
}

.smallProduct_image img {
  width: 100%;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.smallProduct_image a:hover {
  cursor: url(/bc/images/7iro/common/cursor.cur), crosshair;
}

@media (min-width: 769px) {
  .smallProduct_image:hover img {
    -webkit-transform: scale(1.05, 1.05) rotateX(0.1deg);
    -moz-transform: scale(1.05, 1.05) rotateX(0.1deg);
    transform: scale(1.05, 1.05) rotateX(0.1deg);
  }
}

@media (max-width: 768px) {
  .smallProduct_zoom {
    display: none;
  }
}

@media (min-width: 769px) {
  .smallProduct_zoom {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
  }
}

.smallProduct_zoom * {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .smallProduct_body {
    width: 48.5%;
  }
}

@media (min-width: 769px) {
  .smallProduct_body {
    width: 68.5%;
  }
}

@media (max-width: 768px) {
  .smallProduct_body > *:not(:last-child) {
    margin-bottom: 6px;
  }
}

@media (min-width: 769px) {
  .smallProduct_body > *:not(:last-child) {
    margin-bottom: 12px;
  }
}

.smallProduct_title {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
}

.smallProduct_price {
  font-size: 16px;
  font-size: 1.6rem;
}

.smallProduct_price small {
  font-size: 12px;
  font-size: 1.2rem;
}

.smallProduct_text {
  font-size: 12px;
  font-size: 1.2rem;
}

.smallProduct_caution {
  font-size: 12px;
  font-size: 1.2rem;
}

.smallProduct_caution > * {
  text-indent: -12px;
  padding-left: 12px;
}

.smallProduct_detail {
  font-weight: 500;
  text-align: center;
  color: white;
  width: 85%;
  display: table;
  line-height: 1;
  padding: 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
  font-size: 1.6rem;
}

.smallProduct_detail a {
  color: white;
  text-decoration: none;
}

.smallProduct_action {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 0;
}

.smallProduct_action p {
  margin-right: 4%;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
}

.smallProduct_action select {
  margin: 0;
  background-color: #fff;
  box-sizing: content-box;
}

@media (max-width: 768px) {
  .smallProduct_action select {
    width: auto;
    height: 22px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media (min-width: 769px) {
  .smallProduct_action select {
    width: 60px;
    height: 28px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/* inlineContent */
.p-inlineContent {
  background-color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1px;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .p-inlineContent {
    padding: 4% 2%;
  }
}

@media (min-width: 769px) {
  .p-inlineContent {
    padding: 16px 16px 20px;
  }
}

.p-inlineContent a {
  display: inline;
  color: #000;
}

.p-inlineContent .ttl {
  font-weight: bold;
  text-align: center;
  color: #0178cb;
}

@media (max-width: 768px) {
  .p-inlineContent .ttl {
    font-size: 120%;
    margin: 0 auto 2%;
  }
}

@media (min-width: 769px) {
  .p-inlineContent .ttl {
    font-size: 140%;
    margin: 0 auto 8px;
  }
}

.p-inlineContent .bullet {
  text-indent: -14pxpx;
  padding-left: 14pxpx;
}

.p-inlineContent .ml {
  margin-left: 14px;
}

.p-inlineContent .mb-child-1 > * {
  margin-bottom: 1%;
}

.p-inlineContent .mb-child-1 > *:last-child {
  margin-bottom: 0;
}

.p-inlineContent .mb-child-2 > * {
  margin-bottom: 2%;
}

.p-inlineContent .mb-child-2 > *:last-child {
  margin-bottom: 0;
}

.p-inlineContent .mb-child-4 > * {
  margin-bottom: 4%;
}

.p-inlineContent .mb-child-4 > *:last-child {
  margin-bottom: 0;
}

.p-inlineContent .mt-1 {
  margin-top: 1%;
}

.p-inlineContent .mt-2 {
  margin-top: 2%;
}

.p-inlineContent .border {
  border-bottom: 1px solid #000;
  padding-bottom: 4%;
  margin-bottom: 4%;
}

.p-inlineContent .clear {
  clear: both;
}

.p-inlineContent .fw-b {
  font-weight: bold;
}

@media (max-width: 768px) {
  .p-inlineContent-3 .ttl {
    margin-bottom: 4%;
  }
}

@media (min-width: 769px) {
  .p-inlineContent-3 .ttl {
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  .p-inlineContent-3 .text > * {
    margin-bottom: 4%;
  }
}

@media (min-width: 769px) {
  .p-inlineContent-3 .text > * {
    margin-bottom: 16px;
  }
}

.p-inlineContent-3 .text > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .p-inlineContent-3 .list > * {
    margin-bottom: 4%;
  }
}

@media (min-width: 769px) {
  .p-inlineContent-3 .list > * {
    margin-bottom: 16px;
  }
}

.p-inlineContent-3 .list > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .p-inlineContent-3 .pl {
    padding-left: 12px;
  }
}

@media (min-width: 769px) {
  .p-inlineContent-3 .pl {
    padding-left: 14px;
  }
}

/* goodsCategory */
.p-goodsCategory {

}

.p-goodsCategory > * {
  margin-bottom: 40px;
}

.p-goodsCategory > *:last-child {
  margin-bottom: 0;
}

/*
.p-goodsCategory.is-active {
  height: auto;
  overflow: auto;
  opacity: 1;
}
*/
@media (max-width: 768px) {
  .p-goodsCategory {
    padding: 4% 2% 8%;
  }
}

@media (min-width: 769px) {
  .p-goodsCategory {
    padding: 2% 0 4%;
  }
}

/* goodsCategory/title */
.p-goodsCategory_title {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 769px) {
  .p-goodsCategory_title {
    width: 960px;
  }
}

.p-goodsCategory_title img {
  width: 100%;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
}

/* goodsCategory/inner */
.p-goodsCategory_inner > * {
  margin-bottom: 40px;
}

.p-goodsCategory_inner > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .p-goodsCategory_inner {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* help */
.p-help:not(:last-child) {
  margin-bottom: 2em;
}

.p-help__title + * {
  margin-left: 1em;
}

.p-help__subTitle + * {
  margin-left: 1em;
}

.p-help__mbc-1 > *:not(:last-child) {
  margin-bottom: 1em;
}

.p-help__mb-1 {
  margin-bottom: 1em;
}

.p-help__pb-1 {
  padding-bottom: 1em;
}

.p-help__pb-2 {
  padding-bottom: 2em;
}

.p-help__pb-3 {
  padding-bottom: 3em;
}

.p-help__image img {
  width: 100%;
  border: 1px solid #999;
}

.p-help__space {
  margin-left: 1em;
}

/* twitterWidget 
.p-twitterWidget {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .p-twitterWidget {
    width: 80%;
    height: 400px;
    overflow-x: hidden;
  }
}

@media (min-width: 769px) {
  .p-twitterWidget {
    width: 300px;
    height: 100%;
  }
}*/

/* line */
.p-line {
  height: 1px;
  width: 100%;
}

.p-line-pink {
  background-color: #f95b9a;
}

.p-line-skyBlue {
  background-color: #00a3e8;
}

/* sns */
.p-sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .p-sns {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .p-sns {
    position: absolute;
    right: 8px;
    bottom: 8px;
  }
}

.p-sns__item {
  line-height: 1;
}

.p-sns__item:not(:last-child) {
  margin-right: 8px;
}




/* --------------------
Utility
-------------------- */
.u-mt-8 {
  margin-top: 8px;
}

.u-mt-16 {
  margin-top: 16px;
}

.u-nmt-8 {
  margin-top: -8px;
}

.u-nmt-16 {
  margin-top: -16px;
}

.u-mr-8 {
  margin-right: 8px;
}

.u-mr-16 {
  margin-right: 16px;
}

.u-mr-24 {
  margin-right: 24px;
}

.u-mb-1per {
  margin-bottom: 1%;
}

.u-mb-2per {
  margin-bottom: 2%;
}

.u-mb-4per {
  margin-bottom: 4%;
}

.u-mb-4 {
  margin-bottom: 4px;
}

.u-mb-6 {
  margin-bottom: 6px;
}

.u-mb-8 {
  margin-bottom: 8px;
}

.u-mb-12 {
  margin-bottom: 12px;
}

.u-mb-16 {
  margin-bottom: 16px;
}

.u-mb-24 {
  margin-bottom: 24px;
}

.u-mb-32 {
  margin-bottom: 32px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-mb-48 {
  margin-bottom: 48px;
}

.u-mb-56 {
  margin-bottom: 56px;
}

.u-mb-64 {
  margin-bottom: 64px;
}

.u-mb-72 {
  margin-bottom: 72px;
}

.u-mbc-2per > * {
  margin-bottom: 2%;
}

.u-mbc-2per > *:last-child {
  margin-bottom: 0;
}

.u-mbc-4per > * {
  margin-bottom: 4%;
}

.u-mbc-4per > *:last-child {
  margin-bottom: 0;
}

.u-mbc-8 > * {
  margin-bottom: 8px;
}

.u-mbc-8 > *:last-child {
  margin-bottom: 0;
}

.u-mbc-16 > * {
  margin-bottom: 16px;
}

.u-mbc-16 > *:last-child {
  margin-bottom: 0;
}

.u-mbc-24 > * {
  margin-bottom: 24px;
}

.u-mbc-24 > *:last-child {
  margin-bottom: 0;
}

.u-mbc-32 > * {
  margin-bottom: 32px;
}

.u-mbc-32 > *:last-child {
  margin-bottom: 0;
}

.u-mbc-40 > * {
  margin-bottom: 40px;
}

.u-mbc-40 > *:last-child {
  margin-bottom: 0;
}

.u-ml-8 {
  margin-left: 8px;
}

.u-ml-16 {
  margin-left: 16px;
}

.u-ml-24 {
  margin-left: 24px;
}

.u-nml-8 {
  margin-left: -8px;
}

.u-nml-12 {
  margin-left: -12px;
}

.u-nml-16 {
  margin-left: -16px;
}

.u-nmr-40 {
  margin-right: -40px;
}

.u-mColumn-24 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.u-mColumn-48 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.u-mRow-24 {
  margin-right: 24px;
  margin-left: 24px;
}

@media (min-width: 769px) {
  .u-margin-sp {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .u-margin-pc {
    margin: 0;
  }
}

.u-d-b {
  display: block;
}

.u-d-n {
  display: none;
}

.u-d-i {
  display: inline;
}

.u-d-t {
  display: table;
}

.u-fs-50 {
  font-size: 50%;
}

.u-fs-80 {
  font-size: 80%;
}

.u-fs-90 {
  font-size: 90%;
}

.u-fs-110 {
  font-size: 110%;
}

.u-fs-120 {
  font-size: 120%;
}

.u-fs-130 {
  font-size: 130%;
}

.u-fs-140 {
  font-size: 140%;
}

.u-fs-150 {
  font-size: 150%;
}

.u-fs-175 {
  font-size: 175%;
}

.u-fw-b {
  font-weight: bold;
}

.u-ta-r {
  text-align: right;
}

.u-ta-c {
  text-align: center;
}

.u-tb-12 {
  padding-left: 12px;
  text-indent: -12px;
}

.u-tb-14 {
  padding-left: 14px;
  text-indent: -14px;
}

.u-ts-black {
  text-shadow: 0 0 5px #000;
}

.u-ts-white {
  text-shadow: 0 0 5px #fff;
}

.u-lh-1 {
  line-height: 1;
}

.u-lh-1_5 {
  line-height: 1.5;
}

.u-c-black {
  color: #000;
}

.u-c-white {
  color: #fff;
}

.u-c-pink {
  color: #ff0090;
}

.u-fl-l {
  float: left;
}

@media (max-width: 768px) {
  .u-fl-l-pc {
    float: none;
  }
}

.u-center {
  display: table;
  margin-right: auto;
  margin-left: auto;
}

.u-icon-r {
  vertical-align: super;
  font-size: 95%;
  line-height: 1;
}

.u-hvr-opacity:hover {
  opacity: 0.6;
}

.u-hvr-opacity-transition {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.u-nolink {
  opacity: 0.65 !important;
  cursor: default !important;
  pointer-events: none !important;
}

.u-clearfix::after {
  content: '';
  display: block;
  clear: both;
}

.u-bullet {
  float: left;
}

.u-bullet + * {
  display: table;
}

.u-indent {
  padding-left: 1em;
  text-indent: -1em;
}

@media (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

@media (min-width: 769px) {
  .u-sp {
    display: none;
  }
}

.cart_btn{position: relative;}

.cart_disabled:before{
    content:'購入できません';
    color: #fff; z-index: 1000; position: absolute;
    text-shadow:0 0 2px rgba(20,20,20,.9); top: 50%; left:50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); transform: translate(-50%, -50%);
    width: 100%; margin: auto; text-align: center; font-size: 1.2em; font-weight: 700;
}

.cart_disabled:after{
    content:'';
    display: block; position: absolute; top:0; left: 0; height: 100%; width: 100%; background: rgba(120,120,120,.7);
}


/*.p-goodsCategory {
	display: none !important;
}

.p-goodsCategory-brooch,
.p-goodsCategory-stageCostumeBook {
	display: block !important;
}*/

/*# sourceMappingURL=style.css.map */