@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;
}

li {
  word-wrap: break-word;
  white-space: normal;
}

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: #00c5e7;
}

/* CONTENTS
----------------------------------------------------------------------------------------------------*/
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "Yu Gothic", "YuGothic", "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", "Arial", "Meiryo", "sans-serif";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  text-align: center;
  background-color: #000000;
  background-image: url(../image/bg_line.png);
  background-repeat:no-repeat;
  background-size: 100% auto;
  background-attachment: fixed;
  background-position: center bottom;
  color: #fff;
}

.contents {
  width: 95%;
  max-width: 1024px;
  margin: 0 auto;
}

/* MAIN
--------------------------------------------------------------------------------------*/
main {
  display: block;
  margin: 0 auto;
  font-size: 1.6rem;
}

.main_cont {
  padding: 15px 0 0 0;
  line-height: 0;
}

.main_cont .contents {
  width: 100%;
  max-width: 100%;
}

.main_img {
  width: 100%;
  max-width: 700px;
}

/* LOOP
*************************************** */
.loop_cont {
  overflow: hidden;
  width: 100%;
  margin: 25px 0 15px;
}

.loop_detail {
  display: flex;
  width: 3490px;
  animation: loopLeft 20s linear infinite; /* スピードは秒数で調整 */
  will-change: transform; 
  backface-visibility: hidden;
}

.loop_detail img {
  width: 1745px;
  height: auto;
  flex-shrink: 0; /* 画面幅が狭まっても画像が潰れないように固定 */
}

@keyframes loopLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1745px, 0, 0); /* 正確に1枚分の幅だけ左へ移動 */
  }
}

/* FLEX BOX
*************************************** */
.point_box {
  width: 90%;
  max-width: 800px;
  margin: 40px auto 50px;
  background: linear-gradient(-30deg, #cb9b0c 0%, #fffcc4 50%, #cb9b0c 100%);
  padding: 15px;
}

.flex_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 15px;
  background-color: #c0000f;
  line-height: 1.4;
}

.flex_box .left {
  margin: 0 20px;
}

.flex_box .title {
  font-size: 2rem;
  font-weight: bold;
}

.flex_box .btn {
  min-width: 240px;
  margin-bottom: 0;
  background-color: #fff;
  color: #c0000f;
}

.flex_box .btn:hover {
  color: #fff;
}

.qr_img {
  width: 100%;
  max-width: 100px;
}

/* SECTION
*************************************** */
section {
  padding: 50px 0;
}

h2 {
  margin-bottom: 30px;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.3rem;
}

/* FADE UP
*************************************** */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
  opacity:0;
}
 
/*アニメーションの開始から終了までを指定する*/
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
 
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.fadeUpTrigger{
  opacity: 0;
}

/* NEWS
*************************************** */
.news_list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 20px;
  border: solid 1px #fff;
  text-align: left;
}

.news_list li {
  padding-bottom: 15px;
  border-bottom: solid 1px #fff;
}

.news_list li:first-child {
  padding-top: 5px;
}

.news_list li:last-child {
  padding-bottom: 0;
  border-bottom: unset;
}

.news_list .link {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 0 0 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  transition: all .2s ease-in-out;
}

.news_list .link:hover {
  color: #c0000f;
}

.news_list .day {
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.news_list .day, .news_list .title {
  line-height: 1.2;
}

.news_list .fas {
  margin-left: 5px;
}

/* CART
*************************************** */
.pick_box {
  text-align: left;
}

.pick_info {
  display: flex;
  max-width: 800px;
  margin: 0 auto 20px;
  padding: 20px;
  border: solid 1px #fff;
}

.img_box {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.img_box img {
  width: 100%;
  max-width: 300px;
}

h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 15px 0px 5px;
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.4;
}

h3 span {
  display: inline-block;
}

.type {
  display: inline-block;
  margin-bottom: 15px;
  padding: 3px 10px;
  background-color: #195DBA;
  font-weight: bold;
  text-align: center;
}

@media all and (-ms-high-contrast:none) {
  .type {
    padding-top: 10px;
  }
}

h4 {
  margin: 5px 0 10px;
  font-size: 2rem;
  font-weight: bold;
}

.btn {
  display: block;
  width: 90%;
  max-width: 400px;
  margin: 15px 0;
  padding: 10px;
  border: solid 1px #fff;
  background-color: #c0000f;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  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 {
  background-color: #808080;
}

.detail_box {
  width: 100%;
  margin-left: 30px;
  line-height: 1.4;
}

/* MOVIE
*************************************** */
.movie_box {
  display: flex;
  flex-wrap: wrap;
}

.movie {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border: solid 1px #fff;
}

.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Carousel
*************************************** */
.owl-carousel {
  width: 100%;
  margin: 0 auto 40px;
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
  display: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  display: block;
  position: absolute;
  top: 45%;
  overflow: hidden;
  width: 30px;
  height: 30px;
  background-color: #666;
  border: 2px solid #666;
  border-radius: 50%;
  transition: all .5s ease-in-out;
}

.owl-carousel .owl-nav button.owl-next {
  right: 25px;
}

.owl-carousel .owl-nav button.owl-prev {
  left: 25px;
}

.owl-prev::before, .owl-next::before {
  content: "";
  position: absolute;
  top: 7.5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.owl-prev::before {
  right: 7px;
  transform: rotate(225deg);
}

.owl-next::before {
  left: 7px;
  transform: rotate(45deg);
}

.owl-carousel .owl-dots {
  margin-top: 15px;
}

.owl-carousel button.owl-dot {
  width: 10px;
  height: 10px;
  margin-right: 5px;
  background: #fff;
  border: solid 1px #fff;
  border-radius: 50%;
}

.owl-carousel button.active {
  background: #c0000f;
  border: solid 1px #c0000f;
}

.owl-carousel img {
  max-width: 400px;
  max-height: 300px;
}

/* FOOTER
----------------------------------------------------------------------------------------------------*/
footer {
  width: 100%;
  padding: 30px 5px 85px;
  font-size: 1.4rem;
}

footer p {
  margin-bottom: 10px;
}

/* PAGE TOP
----------------------------------------------------------------------------------------------------*/
.page-top {
  display: none;
  position: fixed;
  overflow: hidden;
  width: 50px;
  height: 50px;
  right: calc(50% - 500px);
  bottom: 0;
  margin-bottom: 30px;
  padding: 7px 13px;
  border-radius: 50%;
  background-color: #000;
  border: solid 2px #fff;
  z-index: 80;
  transition: all .2s ease-in-out;
}

.page-top .top {
  transition:all 0.5s;
}

.top{
  position: relative;
  top: 7px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 13px solid #fff;
}

.page-top:hover {
  border: solid 2px #000;
  background-color: #fff;
}

.page-top:hover .top {
  border-bottom: 13px solid #000;
}

/* -------------------- for SP (480px) ---480px以下
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  /* CONTENTS
  --------------------------------------------------------------------------------------*/
  body {
    background-image: unset;
  }

  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image: url(../image/bg_line_s.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center 15vw;
  }

  /* MAIN
  --------------------------------------------------------------------------------------*/
  /* SECTION
  *************************************** */
  section {
    padding: 30px 0;
  }

  /* CART
  *************************************** */
  .pick_box {
    margin-top: 25px;
  }

  h2 {
    font-size: 3.5rem;
  }

  .pick_info {
    display: block;
  }

  .img_box {
    max-width: unset;
  }

  .img_box img {
    max-width: unset;
  }

  .detail_box {
    margin: 0 auto;
  }

  h3 {
    font-size: 2rem;
  }
  
  .flex_box .title span {
    display: inline-block;
  }

  .btn {
    width: 100%;
    margin: 0 auto;
  }

  .flex_box .btn {
    margin: 15px auto;
  }

  .flex_box .btn {
    min-width: unset;
  }

  /* Carousel
  *************************************** */
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev {
    top: 35%;
  }

  /* PAGE TOP
  *************************************** */
  .page-top {
    right: 2vw;
  }
}
/* (max-width: 480px) end */


/* -------------------- for Tablet (481px) and (1023px) ---481から1023px以内
----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 481px) and (max-width: 1023px) {
  /* MAIN
  --------------------------------------------------------------------------------------*/
  /* CART
  *************************************** */
  .pick_info {
    display: block;
  }

  .detail_box {
    margin: 0 5px;
  }

  h3 {
    justify-content: center;
    text-align: center;
  }

  h4 {
    text-align: center;
  }

  .type {
    display: block;
    width: 100%;
    max-width: 100px;
    margin: 0px auto 15px;
  }

  .btn {
    margin: 15px auto 0;
  }

  /* Carousel
  *************************************** */
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev {
    top: 40%;
  }

  /* PAGE TOP
  *************************************** */
  .page-top {
    right: 25px;
  }
}
/* (min-width: 481px) and (max-width: 1023px) end */
