@charset "utf-8";
/* Common CSS */

/* RESET
----------------------------------------------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, cite, img, strong, i, dl, dt, dd, ol, ul, li,
form, label, table, tbody, thead, tr, th, td, article, embed, figure, figcaption, footer, header, hgroup, nav, section, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
article, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

body {
  line-height: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

object {
  pointer-events: none;
}

img {
  pointer-events: none;
}

a {
  text-decoration: none;
  color: #000;
}

/* CONTENTS
----------------------------------------------------------------------------------------------------*/
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
}

body {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "sans-serif", "Arial", "Meiryo", "-apple-system";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  background-color: #03a6b0;
  text-align: center;
  color: #000;
  font-size: 1.6rem;
}

/* NAV
----------------------------------------------------------------------------------------------------*/
nav {
  position: fixed;
  top: 10px;
  right: calc(50% - 495px);
  z-index: 110;
  line-height: 0;
}

.button {
  display: flex;
  align-items: center;
}

.button li {
  margin-right: 10px;
  font-weight: bold;
}

.button li:last-child {
  margin-right: 0;
}

.button a {
  display: block;
  padding: 5px;
  color: #fff;
  border-radius: 5px;
  transition: all .2s ease-in-out;
}

.use {
  background-color: #65320b;
}

.cart {
  background-color: #e50012;
}

.button a:hover {
  background-color: #2f2f2f;
}

.button a img {
  width: 100%;
  max-width: 50px;
}

/* MAIN
----------------------------------------------------------------------------------------------------*/
main {
  width: 100%;
}

.loading {
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.7);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20000;
}

.loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
}

#main_cont {
  position: relative;
  padding-bottom: 25px;
  background: linear-gradient(to top, #CFEAF7, #03a6b0);
}

.main_img {
  line-height: 0;
}

#main_cont img {
  width: 100%;
}

.top_text {
  position: relative;
  width: 95%;
  max-width: 990px;
  margin: 0 auto;
  padding: 15px;
  border: solid 5px #03a6b0;
  border-radius: 100px;
  background-color: #fff;
  color: #03a6b0;
}

.top_text::before, .top_text::after {
  position: absolute;
  top: -15px;
  width: 100px;
  height: 100px;
  display: block;
  content: '';
  background-size: contain;
}

.top_text::before {
  left: 25px;
  background-image: url(../image/deco_l.png);
}

.top_text::after {
  right: 25px;
  background-image: url(../image/deco_r.png);
}

h1 {
  position: relative;
  font-size: 2.8rem;
  font-weight: bold;
  text-shadow: 2px 2px 0 #fff, -2px 2px 5px #fff, 2px -2px 0 #fff, -2px -2px 5px #fff;
  line-height: 1.4;
  z-index: 80;
}

h1 span {
  display: inline-block;
}

.limited {
  width: 80%;
  max-width: 685px;
  margin: 15px auto;
  font-size:2rem;
  font-weight: bold;
}

.limited_title {
  padding: 8px 15px;
  border-radius: 5px;
  background-color: #db2850;
  color: #fff;
}

@media all and (-ms-high-contrast: none) {
  .limited_title {
    padding-top: 10px;
  }
}

.blue_title {
  background-color: #03a6b0;
}

.limited_day {
  padding: 10px;
  border-radius: 5px;
  background-color: #f5f5f5;
  color: #db2850;
}

.blue {
  color: #03a6b0;
}

.attn {
  position: relative;
  color: #393939;
  font-size: 1.3rem;
  font-weight: normal;
  text-align: left;
  line-height: 1.2;
}

.attn:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.25rem;
  font-weight: normal;
  vertical-align: middle;
}

.attn p {
  margin-left: 13px;
}

.day {
  margin-bottom: 10px;
}

.goods_btn {
  background-color: #f29600;
}

.memo {
  margin: 15px 0;
  padding: 0 10px;
  line-height: 1.3;
}

.memo span {
  display: inline-block;
}

.special_box {
  background: linear-gradient(to left, #4ec2fb, #8fd7fa 50%, #4ec2fb);
}

.special {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 75px;
  background: url(../image/special_bg.png) center bottom no-repeat;
  background-size: 100% auto;
  font-weight: bold;
}

.special_title {
  position: relative;
  margin-bottom: 20px;
  padding: 5px;
  background-color: #db2850;
  color: #fff;
  font-size: 3rem;
  line-height: 1.4;
}

.special_title span {
  display: block;
}

.special_title::before {
  position: absolute;
  bottom: 10px;
  left: 0;
  display: block;
  width: 250px;
  height: 78px;
  content: '';
  background-image: url(../image/supe_parts_l.png);
  background-size: contain;
}

.special_title::after {
  position: absolute;
  bottom: 10px;
  right: 0;
  display: block;
  width: 250px;
  height: 78px;
  content: '';
  background-image: url(../image/supe_parts_r.png);
  background-size: contain;
}

/* GOODS
--------------------------------------------------*/
#goods {
  position: relative;
  padding-top: 50px;
  background: -webkit-repeating-linear-gradient(-45deg, #CFEAF7, #CFEAF7 4px, #dff0f8 6px, #dff0f8 10px);
  background: repeating-linear-gradient(-45deg, #CFEAF7, #CFEAF7 4px, #dff0f8 6px, #dff0f8 10px);
}

.product {
  padding-bottom: 30px;
}

h2 {
  padding: 10px 5px 8px;
  color: #fff;
  font-size: 3.5rem;
  font-weight: bold;
}

@media all and (-ms-high-contrast: none) {
  h2 {
    padding-top: 15px;
  }
}

#goods h2 {
  background-color: #f29600;
}

.cont_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 15px;
}

.content {
  position: relative;
  width: 23%;
  margin: 8px 6px;
  padding: 15px 5px 50px;
  border: solid 2px #db2850;
  border-radius: 10px;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

#special .content {
  width: 30%;
}

.icon_box {
  height: 30px;
}

.new_icon {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 5px;
  box-sizing: border-box;
  padding: 7px 12px;
  margin: 0;
  height: 30px;
  background: #db2850;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12);
  color: #fff;
  font-size: 1.6rem;
}

.new_icon:before {
  position: absolute;
  content: '';
  top: 0;
  left: -7px;
  border: none;
  height: 38px;
  width: 7px;
  background: #db2850;
  border-radius: 5px 0 0 5px;
}

.new_icon:after {
  position: absolute;
  content: '';
  bottom: -7px;
  left: -5px;
  border: none;
  height: 7px;
  width: 5px;
  background: #b32241;
  border-radius: 5px 0 0 5px;
}

h3 {
  display: inline-grid;
  align-items: center;
  height: 85px;
  font-size: 1.5rem;
  line-height: 1.4;
}

#goods h3 {
  height: 60px;
}

.cont_title p {
  margin-bottom: 5px;
}

.cont_title p:last-child {
  margin-bottom: 0;
}

.type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.type span {
  margin: 2px 5px;
  padding: 5px;
  border-radius: 5px;
  color: #fff;
  font-size: 1.4rem;
}

.type .bd {
  background-color: #0eb7e8;
}

.type .dvd {
  background-color: #fe8922;
}

.type .cd {
  background-color: #5ec63e;
}

h3 span {
  display: block;
}

/* Carousel
--------------------------------------------------*/
.carousel_box {
  position: relative;
  margin: 0 auto 15px;
  max-width: 192px;
}

.culumn_no {
  margin: 0 auto 56px;
}

.carousel_box .zoom {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 100%;
  max-width: 20px;
  border: none;
  z-index: 100;
}

.owl-carousel {
  width: 192px;
  height: 192px;
  margin: 5px auto;
  border: solid 1px #d1d1d1;
  background-color: #fff;
}

.owl-carousel .popup {
  display: block;
  width: 100%;
  height: 100%;
}

.owl-carousel .owl-item .image {
  width: 100%;
}

.mfp-title {
  font-size: 1.4rem;
}

.owl-carousel .owl-dots.disabled {
  display: block;
}

.culumn_no .owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: unset;
}

.column, .owl-dots {
  display: flex;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 5px;
}

.owl-theme .owl-dots .owl-dot {
  margin: 3px;
  border: solid 1px #fff;
}

.column {
  display: flex;
  flex-wrap: wrap;
}

.column li {
  margin: 3px;
  border: solid 1px #d1d1d1;
}

.column .li_border {
  border: none;
}

.column a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: unset;
  background-color: rgba(255, 255, 255, .5);
}

.column img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 30px;
  max-height: 30px;
  margin: auto;
}

/* POPUP DETAIL
--------------------------------------------------*/
.inline-link, .other-link {
  position: relative;
  padding: 5px 5px 5px 23px;
  color: #e50012;
  font-size: 1.5rem;
  cursor: pointer;
  text-decoration: underline;
}

.inline-link:hover, .other-link:hover {
  text-decoration: none;
}

.inline-link::before, .other-link::before {
  position: absolute;
  top: 15%;
  left: 0;
  display: block;
  content: url(../image/arrow_color.png);
}

.popup_detail {
  position: relative;
  width: 95%;
  max-width: 550px;
  margin: 30px auto;
  padding: 0 15px 15px;
  border: solid 2px #e50012;
  border-radius: 15px;
  background-color: #fff;
  font-size: 1.6rem;
}

.mfp-bg {
  background-color: #7dd5ff;
  transition: all 0.15s ease-out;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-close {
  right: 3px;
  top: 3px;
  width: 25px !important;
  height: 25px !important;
  line-height: 20px !important;
  padding: 0 !important;
  border: solid 2px !important;
  border-radius: 50%;
  background-color: #fff;
  color: #e50012 !important;
  font-size: 2.7rem;
  text-align: center !important;
  cursor: pointer !important;
  opacity: 1;
}

.mfp-close:active{
  top: 3px;
}

.mfp-close span {
  padding-left: 2px;
}

.mfp-title {
  color: #000;
  font-weight: bold;
}

.mfp-counter {
  color: #fff;
}

.popup_detail p {
  margin: 10px 0;
  line-height: 1.4;
}

.popup_detail p:last-child {
  margin-bottom: 0;
}

.popup_detail .p_title {
  margin: 20px 0px 15px;
  padding: 5px;
  border-radius: 5px;
  background-color: #e50012;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

.p_title span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: normal;
}

.p_list li {
  margin-left: 20px;
  list-style-type: disc;
  line-height: 1.5;
}

.p_list li span {
  display: inline-block;
}

/*--------------------------------------------------*/

.price {
  padding: 15px 0;
}

.price span {
  font-size: 1.3rem;
}

.select {
  width: 75%;
  max-width: 200px;
  height: 35px;
  padding: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}

form {
  padding-bottom: 15px;
}

.point {
  padding-bottom: 15px;
  color: #e50012;
  font-size: 1.5rem;
  font-weight: bold;
}

.btn {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  width: 90%;
  max-width: 250px;
  margin: 0 auto 15px;
  padding: 10px;
  border-radius: 5px;
  background-color: #e50012;
  color: #fff;
  font-weight: bold;
  transition: all .2s ease-in-out;
}

@media all and (-ms-high-contrast: none) {
  .btn {
    padding-top: 15px;
  }
}

.btn:hover {
  background-color: #2f2f2f;
}

.cart_end {
  background-color: #808080;
}

.cart_end:hover {
  opacity: 1;
}

#goods .memo {
  margin-top: 30px;
}

/* ATTENTION
--------------------------------------------------*/
#attention {
  line-height: 1.6;
}

.attention {
  width: 95%;
  max-width: 1024px;
  margin: 30px auto 0;
  color: #000;
  text-align: left;
}

.attention .attention_title {
  padding-bottom: 15px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

.attention .li_style, .attention a {
  color: #03a6b0;
  font-weight: bold;
}

.attention ul {
  padding: 5px 15px 15px;
  border-radius: 20px;
  background-color: #fff;
  font-size: 1.4rem;
}

.attention li {
  margin-left: 20px;
  list-style-type: disc;
}

.attention .li_style {
  margin: 22px 0 3px;
  list-style-type: none;
}

.en {
  display: block;
}

/* FOOTER
----------------------------------------------------------------------------------------------------*/
footer p {
  padding: 35px 10px;
}

/* PAGETOP
----------------------------------------------------------------------------------------------------*/
.page-top {
  display: none;
  position: fixed;
  overflow: hidden;
  width: 60px;
  height: 60px;
  right: calc(50% - 500px);
  bottom: 20px;
  cursor:pointer;
  z-index: 110;
}

.page-top a {
  display: block;
  width: 60px;
  height: 60px;
  background: url(../image/top.png) center top no-repeat;
}

/* -------------------- for SP (480px) ---480px以下
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  /* NAV
  --------------------------------------------------------------------------------------*/ 
  nav {
    right: 10px;
  }

  .button a img {
    width: 10vw;
    min-width: 40px;
  }

  /* MAIN
  --------------------------------------------------------------------------------------*/
  .top_text {
    padding: 5px;
    border-radius: 25px;
  }

  .top_text::before {
    left: -10px;
  }

  .top_text::after {
    right: -10px;
  }

  .top_text::before, .top_text::after {
    width: 16vw;
    height: 16vw;
  }

  h1 {
    padding: 10px 15px 0;
    font-size: 2rem;
  }

  .limited {
    width: 95%;
    margin: 2vw auto;
    font-size: 1.8rem;
  }

  .special {
    margin: 15px auto 0;
  }

  .special_title {
    font-size: 2rem;
  }

  .special_title::before, .special_title::after {
    width: 23vw;
    height: 7vw;
  }

  /* GOODS
  *************************************** */
  h2 {
    font-size: 2rem;
  }

  .cont_box {
    justify-content: space-between;
    padding: 0 2vw;
  }
  
  #special .content, .content {
    width: 49%;
    min-width: 140px;
    margin: 8px auto 0;
    padding: 2vw 2vw 45px;
    font-size: 1.6rem;
  }

  .new_icon {
    font-size: 3.5vw;
  }

  h3 {
    height: auto;
  }

  #goods h3 {
    height: auto;
    min-height: 45px;
  }

  #disc h3 span {
    font-size: 1.6rem;
  }

  /* Carousel
  --------------------------------------------------*/
  .carousel_box {
    max-width: 185px;
  }

  .owl-carousel {
    width: 39vw;
    height: 39vw;
    max-width: 185px;
    max-height: 185px;
  }

  .column {
    width: 38vw;
    max-width: 185px;
    margin: auto;
  }

  .column li, .owl-theme .owl-dots .owl-dot span {
    width: 6.5vw;
    height: 6.5vw;
  }

  .column li, .owl-theme .owl-dots .owl-dot {
    margin: 0.5vw;
  }

  .column a {
    width: 100%;
    height: 100%;
  }

  .column img {
    max-width: 98%;
    max-height: 98%;
  }

  .hinban_box {
    display: block;
  }

  .hinban {
    max-width: 85px;
    margin: 0 auto 7px;
  }

  .hinban_val {
    margin-left: 0;
  }

  .btn {
    margin: 0 auto 2vw;
    padding: 2vw;
  }

  .special .btn {
    margin: 0 auto 15px;
  }
  
  .select {
    font-size: 1.4rem;
  }

  .popup_detail {
    padding: 0 10px 10px;
  }

  /* ATTENTION
  --------------------------------------------------*/
  .attention {
    padding: 15px 10px;
  }

  /* FOOTER
  --------------------------------------------------------------------------------------*/
  footer p {
    padding-bottom: 80px;
  }

  /* PAGETOP
  --------------------------------------------------------------------------------------*/
  .page-top{
    right: 10px;
    bottom: 10px;
  }  
}

/* -------------------- for Tablet (481px) and (1023px) ---481から1023px以内
----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 481px) and (max-width: 1023px) {

  /* NAV
  --------------------------------------------------------------------------------------*/ 
  nav {
    right: 10px;
  }

  /* MAIN
  --------------------------------------------------------------------------------------*/
  .top_text::before, .top_text::after {
    top: -2vw;
    width: 12vw;
    min-width: 80px;
    height: 12vw;
    min-height: 80px;
  }

  .top_text::before {
    left: 0;
  }

  .top_text::after {
    right: 0;
  }

  h1 {
    padding: 10px 15px 0;
    font-size: 2rem;
  }

  .limited {
    font-size: 1.8rem;
  }

  .limited_title {
    min-width: 100px;
    padding: 8px;
  }
  
  @media all and (-ms-high-contrast: none) {
    .limited_title {
      padding-top: 12px;
    }
  }

  .special_title::before, .special_title::after {
    width: 23vw;
    height: 7vw;
  }
  
  /* GOODS
  *************************************** */
  h2 {
    font-size: 2.5rem;
  }

  .cont_box {
    padding: 0 15px;
  }
  
  #special .content, .content {
    min-width: 200px;
    padding: 10px 10px 50px;
  }

  /* Carousel
  --------------------------------------------------*/
  .carousel_box {
    max-width: 175px;
  }

  .owl-carousel {
    width: 175px;
    height: 175px;
  }

  .column {
    width: 35vw;
    max-width: 175px;
    margin: auto;
  }

  .column li, .owl-theme .owl-dots .owl-dot span {
    width: 2.5vw;
    min-width: 27px;
    height: 2.5vw;
    min-height: 27px;
  }

  .column li, .owl-theme .owl-dots .owl-dot {
    margin: 0.3vw;
  }

  .column a {
    width: 100%;
    height: 100%;
  }

  .column img {
    max-width: 98%;
    max-height: 98%;
  }

  /* PAGETOP
  --------------------------------------------------------------------------------------*/
  .page-top{
    right: 25px;
  }  
}