/* selection
----------------------------------------------- */
::selection {
  color: #fff;
  background-color: #000;
}

/* html
----------------------------------------------- */
html {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-print-color-adjust: exact;
}

/* sp */
@media only screen and (max-width: 999px) {
  html {
    height: auto;
  }
}
/* body
----------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: rgb(50, 50, 50);
  font-family: YakuHanJPs_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  word-break: break-word;
  background-image: url(img/background.png);
  background-color: rgb(245, 245, 245);
}
body a {
  color: rgb(50, 50, 50);
}

/* pc */
@media only screen and (min-width: 1000px) {
  body a:hover {
    text-decoration: underline;
  }
  .hover {
    transition-property: opacity;
    transition-duration: 0.25s;
    will-change: opacity;
  }
  .hover:hover {
    opacity: 0.7;
    transition-duration: 0s;
  }
}
/* sp */
@media only screen and (max-width: 999px) {
  body {
    height: auto;
  }
}
/* display
----------------------------------------------- */
/* pc */
@media only screen and (min-width: 1000px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
/* sp */
@media only screen and (max-width: 999px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
/* swiper
----------------------------------------------- */
.swiper-slide {
  will-change: transform;
}

/* loading
----------------------------------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}
.loading__mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(245, 245, 245);
  z-index: 1;
}
.loading__outer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.loading__inner {
  position: absolute;
  top: 15px;
  left: 295px;
  z-index: 1;
}
.loading__icon i {
  color: rgb(180, 180, 180);
  font-size: 15px;
  animation-name: loading;
  animation-duration: 0.65s;
  animation-iteration-count: infinite;
}

/* sp */
@media only screen and (max-width: 999px) {
  .loading__outer {
    top: 55px;
  }
  .loading__inner {
    top: 10px;
    left: 15px;
  }
  .loading__icon {
    margin: 15px 2px 0;
  }
  .loading__icon i {
    font-size: 12px;
  }
}
/* keyframes */
@keyframes loading {
  100% {
    transform: rotate(360deg);
  }
}
/* js */
.js-loading-ready {
  transition-property: visibility;
}
.js-loading-ready .loading__mask {
  transition-property: opacity;
}
.js-loading-ready .loading__icon {
  transition-property: opacity;
}
.js-loading-end {
  pointer-events: none;
  visibility: hidden;
  transition-duration: 0s;
  transition-delay: 1s;
}
.js-loading-end .loading__mask {
  opacity: 0;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
.js-loading-end .loading__icon {
  opacity: 0;
  transition-duration: 0.25s;
  transition-delay: 0.25s;
}

/* wrapper
----------------------------------------------- */
.wrapper {
  height: 100%;
}
.wrapper__column {
  display: flex;
  align-items: stretch;
  min-height: 100%;
}
.wrapper__col:first-child {
  position: relative;
  padding: 60px 0;
  width: 280px;
  border-top: 5px solid #1e96e6;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  z-index: 5;
}
.wrapper__col:last-child {
  width: calc(100% - 280px);
}

/* sp */
@media only screen and (max-width: 999px) {
  .wrapper__column {
    display: block;
    min-height: initial;
  }
  .wrapper__col:first-child {
    padding: 0;
    width: auto;
    border-top: none;
    background-color: transparent;
    box-shadow: none;
  }
  .wrapper__col:last-child {
    width: auto;
  }
}
/* header
----------------------------------------------- */
.header__logo {
  margin: auto;
  width: 200px;
}
.header__logo a {
  display: block;
  line-height: 1em;
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* sp */
@media only screen and (max-width: 999px) {
  .header {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    height: 60px;
    border-top: 5px solid #1e96e6;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    z-index: 5;
  }
  .header__logo {
    margin: 0 15px;
    width: 120px;
  }
  .header__menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    cursor: pointer;
    z-index: 1;
  }
  .header__menu span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -10px;
    width: 20px;
    height: 2px;
    background-color: #1e96e6;
  }
  .header__menu span:before, .header__menu span:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #1e96e6;
    z-index: 1;
  }
  .header__menu span:before {
    top: -6px;
  }
  .header__menu span:after {
    bottom: -6px;
  }
  /* js */
  .js-menu-ready span:before, .js-menu-ready span:after {
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.87, 0, 0.13, 1);
  }
  .js-menu-open span:before {
    transform: translateY(6px);
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  .js-menu-open span:after {
    transform: translateY(-6px);
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
}
/* footer
----------------------------------------------- */
.footer__outer {
  margin: 0 30px;
  padding: 30px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 30px;
  max-width: 1280px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.footer p {
  color: rgb(180, 180, 180);
  font-size: 12px;
  font-weight: 500;
  line-height: 1em;
}
.footer a {
  color: rgb(180, 180, 180);
}

/* sp */
@media only screen and (max-width: 999px) {
  .footer__outer {
    margin: 0 15px;
  }
  .footer__inner {
    display: block;
    padding: 10px 15px;
    max-width: initial;
    text-align: center;
  }
  .footer p {
    margin: 5px 0;
    font-size: 12px;
  }
}
/* nav
----------------------------------------------- */
.nav__main {
  border-bottom: 1px solid rgb(230, 230, 230);
}
.nav__main li {
  line-height: 1em;
  border-top: 1px solid rgb(230, 230, 230);
}
.nav__main a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1em;
}
.nav__main a .icon {
  margin-right: 10px;
}
.nav__sub {
  padding: 20px 0;
  border-bottom: 1px solid rgb(230, 230, 230);
}
.nav__sub li {
  line-height: 1em;
}
.nav__sub li.is-active a {
  color: #1e96e6;
  font-weight: 700;
}
.nav__sub a {
  display: block;
  padding: 10px 30px 10px 55px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25em;
}

/* pc */
@media only screen and (min-width: 1000px) {
  .nav__inner {
    padding-top: 60px;
  }
  .nav__main a:hover {
    text-decoration: none;
    background-color: rgb(245, 245, 245);
  }
  .nav__sub a:hover {
    background-color: rgb(245, 245, 245);
  }
}
/* sp */
@media only screen and (max-width: 999px) {
  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
  }
  .nav__mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  .nav__outer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    border-top: 1px solid rgb(230, 230, 230);
    background-color: #fff;
    overflow: auto;
    z-index: 1;
  }
  .nav__main li:first-child {
    border-top: none;
  }
  /* js */
  .js-nav {
    pointer-events: none;
    visibility: hidden;
  }
  .js-nav .nav__mask {
    opacity: 0;
  }
  .js-nav .nav__outer {
    transform: translateX(100%);
  }
  .js-nav-ready {
    transition-property: visibility;
    transition-duration: 0s;
    transition-delay: 0.5s;
  }
  .js-nav-ready .nav__mask {
    transition-property: opacity;
    transition-duration: 0.25s;
    transition-delay: 0.25s;
  }
  .js-nav-ready .nav__outer {
    transition-property: transform;
    transition-duration: 0.5s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.87, 0, 0.13, 1);
  }
  .js-nav-open {
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }
  .js-nav-open .nav__mask {
    opacity: 1;
    transition-delay: 0s;
  }
  .js-nav-open .nav__outer {
    transform: translateX(0);
  }
}
/* main
----------------------------------------------- */
.main {
  margin-top: 60px;
}
.main__outer {
  margin: 0 30px;
}
.main__inner {
  margin: auto;
  max-width: 1280px;
}

/* sp */
@media only screen and (max-width: 999px) {
  .main {
    margin-top: 85px;
  }
  .main__outer {
    margin: 0 15px;
  }
  .main__inner {
    max-width: initial;
  }
}
/* location
----------------------------------------------- */
.location {
  margin-top: 30px;
}
.location__outer {
  margin: 0 30px;
}
.location__inner {
  margin: auto;
  max-width: 1280px;
}
.location li {
  display: inline;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5em;
}
.location li:after {
  display: inline;
  content: " / ";
}
.location li i {
  margin-right: 5px;
}
.location li:last-child {
  font-weight: 700;
}
.location li:last-child:after {
  display: none;
}

/* sp */
@media only screen and (max-width: 999px) {
  .location__outer {
    margin: 0 30px;
  }
  .location__inner {
    max-width: inherit;
  }
}
/* pagetitle
----------------------------------------------- */
.pagetitle {
  display: flex;
  align-items: center;
}
.pagetitle h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5em;
}
.pagetitle .icon {
  margin: -2px 15px 0 0;
}

/* sp */
@media only screen and (max-width: 999px) {
  .pagetitle {
    margin: 0 15px;
  }
  .pagetitle h1 {
    font-size: 25px;
  }
}
/* rating
----------------------------------------------- */
.rating {
  color: rgb(180, 180, 180);
  font-size: 12px;
  text-decoration: none;
  line-height: 1em;
}
.rating__star {
  display: inline-block;
}
.rating__star em {
  color: rgb(240, 180, 0);
}
.rating__count {
  display: inline-block;
  margin-left: 5px;
  font-size: 11px;
}
.rating--dark em {
  color: rgb(50, 50, 50);
}
.rating a {
  color: rgb(180, 180, 180);
}

/* sp */
@media only screen and (max-width: 999px) {
  .rating {
    font-size: 11px;
  }
  .rating__count {
    font-size: 10px;
  }
}
/* icon
----------------------------------------------- */
.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 15px;
  line-height: 1em;
  background-color: #1e96e6;
  border-radius: 50%;
}

/* label
----------------------------------------------- */
.label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1em;
}
.label small {
  display: block;
  margin-top: 5px;
  color: rgb(180, 180, 180);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 1em;
}

/* more
----------------------------------------------- */
.more {
  line-height: 1em;
}
.more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 34px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1em;
  border: 1px solid #1e96e6;
  background-color: #1e96e6;
  box-sizing: border-box;
  border-radius: 100px;
}
.more span {
  display: block;
  padding-top: 0.05em;
  letter-spacing: 0.1em;
  line-height: 1em;
}
.more i {
  margin-left: 10px;
}

/* pc */
@media only screen and (min-width: 1000px) {
  .more a {
    transition-property: color, background-color;
    transition-duration: 0.25s;
  }
  .more a:hover {
    color: #1e96e6;
    text-decoration: none;
    background-color: #fff;
    transition-duration: 0.1s;
  }
}
/* pickup
----------------------------------------------- */
.pickup {
  margin-top: 60px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.pickup__column {
  display: flex;
  flex-wrap: wrap;
  margin: 0 30px 0 0;
  padding-bottom: 30px;
}
.pickup__col {
  margin: 30px 0 0 30px;
  width: calc(50% - 30px);
  border: 1px solid rgb(230, 230, 230);
  border-radius: 10px;
  box-sizing: border-box;
}
.pickup__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 15px;
  border-bottom: 1px solid rgb(230, 230, 230);
}
.pickup__header .more {
  margin: 5px 0;
}
.pickup__title {
  display: flex;
  align-items: center;
}
.pickup__title .icon {
  margin-right: 15px;
}

/* sp */
@media only screen and (max-width: 999px) {
  .pickup {
    margin-top: 30px;
  }
  .pickup__column {
    display: block;
    margin: 0 15px;
    padding: 15px 0;
  }
  .pickup__col {
    margin: 15px 0 0 0;
    width: auto;
  }
  .pickup__col:first-child {
    margin-top: 0;
  }
  .pickup__title .icon {
    margin-right: 10px;
  }
}
/* section
----------------------------------------------- */
.section {
  margin-top: 60px;
  background-color: rgb(250, 250, 250);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.section__header {
  padding: 40px 30px;
  border-bottom: 1px solid rgb(230, 230, 230);
  border-radius: 5px 5px 0 0;
  background-color: #fff;
}
.section__title {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5em;
}

/* sp */
@media only screen and (max-width: 999px) {
  .section {
    margin-top: 30px;
  }
  .section__header {
    padding: 30px 15px;
  }
  .section__title {
    font-size: 18px;
  }
}
/* trend
----------------------------------------------- */
.trend__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 30px 0 0;
  padding-bottom: 30px;
}
.trend__item {
  position: relative;
  margin: 30px 0 0 30px;
  z-index: 1;
}
.trend__item a {
  display: block;
}
.trend__item:before {
  display: flex;
  justify-content: center;
  align-items: center;
  content: attr(data-rank);
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  background-color: #1e96e6;
  border-radius: 50%;
  z-index: 1;
}
.trend__image {
  border: 1px solid rgb(230, 230, 230);
  box-sizing: border-box;
  border-radius: 5px;
  overflow: hidden;
  will-change: transform;
}
.trend__image img {
  display: block;
  width: 100%;
  height: auto;
}
.trend__status {
  display: flex;
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trend__store {
  margin-top: 5px;
}
.trend__store img {
  display: block;
  width: 60px;
  height: 15px;
}
.trend__rating {
  margin-top: 5px;
}
.trend__rating .rating__count {
  display: none;
}
.trend__name {
  display: none;
}
.trend--col1 .trend__item {
  width: calc(100% - 30px);
}
.trend--col2 .trend__item {
  width: calc(50% - 30px);
}
.trend--col3 .trend__item {
  width: calc(33.3333333333% - 30px);
}
.trend--col4 .trend__item {
  width: calc(25% - 30px);
}
.trend--col5 .trend__item {
  width: calc(20% - 30px);
}
.trend--col6 .trend__item {
  width: calc(16.6666666667% - 30px);
}
.trend--col7 .trend__item {
  width: calc(14.2857142857% - 30px);
}
.trend--col8 .trend__item {
  width: calc(12.5% - 30px);
}
.trend--col9 .trend__item {
  width: calc(11.1111111111% - 30px);
}
.trend--col10 .trend__item {
  width: calc(10% - 30px);
}

/* sp */
@media only screen and (max-width: 999px) {
  .trend__list {
    margin: 0 15px 0 0;
    padding-bottom: 30px;
  }
  .trend__item {
    margin: 30px 0 0 15px;
  }
  .trend__item:before {
    top: -10px;
    left: -5px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .trend--col1 .trend__item {
    width: calc(50% - 15px);
  }
  .trend--col2 .trend__item {
    width: calc(50% - 15px);
  }
  .trend--col3 .trend__item {
    width: calc(50% - 15px);
  }
  .trend--col4 .trend__item {
    width: calc(50% - 15px);
  }
  .trend--col5 .trend__item {
    width: calc(50% - 15px);
  }
  .trend--col6 .trend__item {
    width: calc(50% - 15px);
  }
  .trend--col7 .trend__item {
    width: calc(50% - 15px);
  }
  .trend--col8 .trend__item {
    width: calc(50% - 15px);
  }
  .trend--col9 .trend__item {
    width: calc(50% - 15px);
  }
  .trend--col10 .trend__item {
    width: calc(50% - 15px);
  }
}
/* item
----------------------------------------------- */
.item__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 30px 0 0;
  padding-bottom: 30px;
}
.item__item {
  position: relative;
  margin: 30px 0 0 30px;
  z-index: 1;
}
.item__item a {
  display: block;
}
.item__image {
  border: 1px solid rgb(230, 230, 230);
  box-sizing: border-box;
  border-radius: 5px;
  overflow: hidden;
  will-change: transform;
}
.item__image img {
  display: block;
  width: 100%;
  height: auto;
}
.item__tag {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 10px;
}
.item__point {
  margin-right: 10px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1em;
}
.item__point em {
  font-size: 1.1em;
  font-weight: 700;
  font-style: normal;
}
.item__point img {
  display: inline-block;
  width: 14px;
  height: 14px;
}
.item__price {
  font-size: 12px;
  font-weight: 500;
  line-height: 1em;
}
.item__price em {
  font-size: 1.25em;
  font-weight: 700;
  font-style: normal;
}
.item__discount {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: #1e96e6;
  border-radius: 50%;
  z-index: 1;
}
.item__discount span {
  display: block;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 500;
}
.item__discount span em {
  font-size: 1.25em;
  font-weight: 700;
  font-style: normal;
}
.item__brand {
  position: absolute;
  left: 5px;
  bottom: 20px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid rgb(230, 230, 230);
  background-color: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  z-index: 2;
}
.item__name {
  display: none;
}
.item--col1 .item__item {
  width: calc(100% - 30px);
}
.item--col2 .item__item {
  width: calc(50% - 30px);
}
.item--col3 .item__item {
  width: calc(33.3333333333% - 30px);
}
.item--col4 .item__item {
  width: calc(25% - 30px);
}
.item--col5 .item__item {
  width: calc(20% - 30px);
}
.item--col6 .item__item {
  width: calc(16.6666666667% - 30px);
}
.item--col7 .item__item {
  width: calc(14.2857142857% - 30px);
}
.item--col8 .item__item {
  width: calc(12.5% - 30px);
}
.item--col9 .item__item {
  width: calc(11.1111111111% - 30px);
}
.item--col10 .item__item {
  width: calc(10% - 30px);
}

/* pc */
@media only screen and (min-width: 1000px) {
  .item__item a:hover {
    text-decoration: none;
  }
}
/* sp */
@media only screen and (max-width: 999px) {
  .item__list {
    margin: 0 15px 0 0;
    padding-bottom: 30px;
  }
  .item__item {
    margin: 30px 0 0 15px;
  }
  .item__discount {
    top: -10px;
    right: -5px;
    width: 34px;
    height: 34px;
  }
  .item__discount span {
    font-size: 9px;
  }
  .item--col1 .item__item {
    width: calc(50% - 15px);
  }
  .item--col2 .item__item {
    width: calc(50% - 15px);
  }
  .item--col3 .item__item {
    width: calc(50% - 15px);
  }
  .item--col4 .item__item {
    width: calc(50% - 15px);
  }
  .item--col5 .item__item {
    width: calc(50% - 15px);
  }
  .item--col6 .item__item {
    width: calc(50% - 15px);
  }
  .item--col7 .item__item {
    width: calc(50% - 15px);
  }
  .item--col8 .item__item {
    width: calc(50% - 15px);
  }
  .item--col9 .item__item {
    width: calc(50% - 15px);
  }
  .item--col10 .item__item {
    width: calc(50% - 15px);
  }
}
/* gallery
----------------------------------------------- */
.gallery {
  position: relative;
  z-index: 1;
}
.gallery__slider {
  padding-bottom: 50px;
  border: 1px solid rgb(230, 230, 230);
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #fff;
  overflow: hidden;
  will-change: transform;
}
.gallery__slide a {
  display: block;
  position: relative;
  padding-bottom: 100%;
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: 1;
}
.gallery__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}
.gallery__pagenation {
  display: flex;
  justify-content: center;
  bottom: 20px !important;
  padding-top: 20px;
  line-height: 1em;
  border-top: 1px solid rgb(230, 230, 230);
}
.gallery__pagenation span {
  margin: 0 10px !important;
  width: 10px;
  height: 10px;
  border: 1px solid rgb(230, 230, 230);
  background-color: rgb(250, 250, 250);
  box-sizing: border-box;
  opacity: 1;
}
.gallery__pagenation span.swiper-pagination-bullet-active {
  border-color: #1e96e6;
  background-color: #1e96e6;
}
.gallery__button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  width: 40px;
  height: 40px;
  color: #1e96e6;
  font-size: 18px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.gallery__button:after {
  display: none;
}
.gallery__button--prev {
  left: -20px;
}
.gallery__button--next {
  right: -20px;
}

/* detail
----------------------------------------------- */
.detail {
  margin-top: 60px;
  background-color: rgb(250, 250, 250);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.detail__column {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 60px;
  padding: 60px 0;
  z-index: 1;
}
.detail__col:first-child {
  width: calc(50% - 60px);
}
.detail__col:last-child {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.detail__col:last-child > *:first-child {
  margin-top: 0;
}
.detail__headline {
  margin-top: 30px;
  color: #1e96e6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
}
.detail__description {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.85em;
}
.detail__status {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  line-height: 1em;
}
.detail__shipping {
  font-size: 15px;
  font-weight: 700;
}
.detail__tag {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.detail__point {
  display: flex;
  font-size: 12px;
  font-weight: 500;
  line-height: 1em;
}
.detail__point img {
  display: block;
  width: 14px;
  height: 14px;
}
.detail__price {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1em;
}
.detail__price em {
  font-size: 1.25em;
  font-style: normal;
}
.detail__price small {
  margin-right: 10px;
  color: rgb(180, 180, 180);
  font-size: 0.8em;
  text-decoration: line-through;
}
.detail__more {
  display: flex;
  justify-content: space-between;
}
.detail__more .button {
  width: calc(50% - 5px);
}
.detail__footer {
  margin-top: auto;
  padding-top: 60px;
}
.detail__discount {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 40px;
  left: -20px;
  width: 50px;
  height: 50px;
  text-align: center;
  background-color: #1e96e6;
  border-radius: 50%;
  z-index: 1;
}
.detail__discount span {
  display: block;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.detail__discount span em {
  font-size: 1.25em;
  font-weight: 700;
  font-style: normal;
}

/* sp */
@media only screen and (max-width: 999px) {
  .detail {
    margin-top: 30px;
  }
  .detail__column {
    display: block;
    margin: 0 10px;
    padding: 10px 0;
  }
  .detail__col:first-child {
    width: auto;
  }
  .detail__col:last-child {
    display: block;
    margin: 30px 15px 0;
    padding-bottom: 15px;
    width: auto;
  }
  .detail__headline {
    margin-top: 0;
    font-size: 18px;
  }
  .detail__description {
    margin-top: 20px;
  }
  .detail__status {
    margin-top: 30px;
  }
  .detail__shipping {
    font-size: 12px;
  }
  .detail__price {
    margin-top: 15px;
    font-size: 18px;
  }
  .detail__more {
    display: block;
    padding-top: 10px;
  }
  .detail__more .button {
    margin: 10px 0 0;
    width: auto;
  }
  .detail__footer {
    padding-top: 0px;
  }
  .detail__discount {
    top: -15px;
    left: auto;
    right: -15px;
  }
}
/* button
----------------------------------------------- */
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  width: 100%;
  height: 60px;
  line-height: 1em;
  border: 2px solid rgb(230, 230, 230);
  background-color: rgb(245, 245, 245);
  box-sizing: border-box;
  border-radius: 5px;
}
.button span {
  font-size: 15px;
  font-weight: 700;
}
.button span i {
  margin-right: 5px;
}
.button--cart {
  color: #fff;
  border-color: #1e96e6;
  background-color: #1e96e6;
}

/* pc */
@media only screen and (min-width: 1000px) {
  .button {
    transition-property: border-color, background-color;
    transition-duration: 0.25s;
  }
  .button:hover {
    text-decoration: none;
    background-color: rgb(230, 230, 230);
    transition-duration: 0.1s;
  }
  .button--cart:hover {
    border-color: rgb(50, 50, 50);
    background-color: rgb(50, 50, 50);
  }
}