/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box
}

ul[class],
ol[class] {
  padding: 0
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5
}

ul[class],
ol[class] {
  list-style: none
}

a:not([class]) {
  text-decoration-skip-ink: auto
}

img {
  max-width: 100%;
  display: block
}

article>*+* {
  margin-top: 1em
}

input,
button,
textarea,
select {
  font: inherit
}

img:not([alt]) {
  filter: blur(10px)
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }
}

html {
  overflow-x: hidden;
}

body {
  font-size: 13px;
  font-size: 1.3rem;
  color: #212121;
  font-family: Helvetica, Arial, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック', 'Yu Gothic', YuGothic, Osaka, 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS P Gothic', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.embed-container video {
  width: 100%;
}

/*-----------------------------
BOX
-----------------------------*/
.index .main {
  background-color: #000;
}

.box {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
}

.box-icon {
  display: inline-block;
  background-color: #000;
  font-size: 1rem;
  position: absolute;
  left: -15px;
  top: 20px;
  color: #fff;
  padding: 10px 30px;
  z-index: 10;
}

.box-text {
  background-color: #fff;
  padding: 120px 80px 80px;
  width: 550px;
  color: #000;
  position: relative;
}

.box-text dl {
  margin: -20px 0 20px;
}

.box-text dl dt {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 20px;
}

.box-text dl dt:first-letter {
  color: #e60012;
}

.box-text dl dd {
  font-size: 1.1rem;
}

ul.ball-title {
  margin: 0 0 50px;
}

.ball-title li {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 5px;
  padding: 0 0 5px;
  border-bottom: 1px solid #e6e6e6;
  line-height: 1.2;
}

.ball-title li span {
  display: block;
  font-weight: normal;
  font-size: .8rem;
}

.ball-title li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.ball-title li:first-letter {
  color: #e60012;
}

.btn {
  text-align: center;
}

.btn a {
  display: inline-block;
  background-color: #e60012;
  color: #fff;
  text-decoration: none;
  padding: 10px 50px;
  min-width: 300px;
  transition: .3s;
  font-size: 1rem;
  font-weight: bold;
}

.btn a:hover {
  background-color: #000;
  color: #fff;
  transition: .3s;
}

.btn.col2 {
  display: flex;
}

.btn.col2 a {
  min-width: 48%;
  margin: 0 1%;
}

.btn.col3 {
  display: flex;
  flex-wrap: wrap;
}

.btn.col3 a {
  min-width: 48%;
  margin: 0 1% 10px;
}

.top-movie-btn .btn a {
  background-color: #000;
}

.top-movie-btn .btn a:hover {
  background-color: #e60012;
  color: #fff;
  transition: .3s;
}

.loading {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
}

.loading__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 67px;
}

#loading_logo {
  width: 400px;
  height: 67px;
}

@media screen and (max-width: 767px) {
  .box-text {
    padding: 70px 8% 20px;
    width: 92%;
    margin: 0 auto;
    position: absolute;
    bottom: 20px;
    left: 4%;
  }

  .btn a {
    min-width: 100%;
    padding: 10px 0;
  }

  .top-movie-btn .btn a {
    min-width: 60%;
  }

  .box-icon {
    font-size: .8rem;
    left: -15px;
    top: 10px;
  }

  .box-text dl {
    margin: 0 0 20px;
  }

  .box-text dl dt {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 20px;
  }

  .box-text dl dd {
    font-size: .8rem;
  }

  .loading__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 33px;
  }

  #loading_logo {
    width: 200px;
    height: 33px;
  }
}


svg:not(:root) {

  overflow: hidden;

}

.lineBlk {
  stroke: #231815;
  fill: #231815;
  fill-opacity: 0;
  stroke-width: 1;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: LINE 5s ease-in 0s forwards;
}

.lineRed {
  stroke: #e60012;
  fill: #e60012;
  fill-opacity: 0;
  stroke-width: 1;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: LINE 5s ease-in 0s forwards;
}

@keyframes LINE {
  0% {
    stroke-dashoffset: 3000;
    fill-opacity: 0;
  }

  30% {
    fill-opacity: 0;
  }

  60% {
    fill-opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}


/*----------- box0 -----------*/
.box0 video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: url('../images/dots.png');
  background-color: rgba(255, 255, 255, 0.3);
}

.login .overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-image: none;
  background-color: rgba(0, 0, 0, 0.3);
}

#main_visual {
  z-index: 2;
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 900px;
}

#main_visual #head img {
  margin: 0 auto 0px;
  width: 80%;

}

#main_visual .sub_head {
  color: #231815;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
}

#main_visual .info {
  color: #000;
  font-size: 2.5rem;
  letter-spacing: 10px;
  font-weight: bold;
}

#brand_logo {
  margin: 50px 0;
}

#brand_logo ul {
  display: flex;
  justify-content: center;
}

#brand_logo li {
  width: 20%;
  list-style: none;
  margin: 0 15px;
}

#brand_logo img {
  width: 100%;
}



@media screen and (max-width: 767px) {
  #main_visual #head img {
    width: 100%;
  }

  #main_visual {
    width: 90%;
  }

  #main_visual .sub_head {
    font-size: 1.2rem;
  }

  #main_visual .info {
    font-size: 1.5rem;
    letter-spacing: 10px;
  }

  #brand_logo {
    margin: 20px 0 0;
  }

  #brand_logo li {
    width: 20%;
  }
}

/*----------- box1 -----------*/
.box1 {
  background-color: #fff;
  padding: 200px 50px 0px;
  background-image: url('../images/top_bg_01.png');
  background-size: cover;
  background-position: center center;
  position: relative;
  width: 100%;
  height: 100vh;
}

/*----------- box2 -----------*/
.box2 {
  background-color: #fff;
  padding: 200px 50px 0px;
  background-image: url('../images/top_bg_02.png');
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/*----------- box3 -----------*/
.box3 {
  background-color: #fff;
  padding: 200px 50px 0px;
  background-image: url('../images/top_bg_03.png');
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/*----------- box4 -----------*/
.box4 {
  background-color: #fff;
  padding: 200px 50px 0px;
  background-image: url('../images/top_bg_04.png');
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/*----------- box5 -----------*/
.box5 {
  background-color: #fff;
  padding: 200px 50px 0px;
  background-image: url('../images/top_bg_05.png');
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/*----------- box6 -----------*/
.box6 {
  background-color: #fff;
  padding: 200px 50px 0px;
  background-image: url('../images/top_bg_06.png');
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/*----------- box7 -----------*/
.box7 {
  background-color: #fff;
  padding: 200px 50px 0px;
  background-image: url('../images/top_bg_07.png');
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/*----------- box8 -----------*/
.box8 {
  background-color: #fff;
  padding: 200px 50px 0px;
  background-image: url('../images/top_bg_08.png');
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/*----------- box9 -----------*/
.box9 {
  background-color: #fff;
  padding: 200px 50px 0px;
  background-image: url('../images/top_bg_09.jpg');
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/*----------- box10 -----------*/
.box10 {
  background-color: #fff;
  padding: 200px 50px 0px;
  background-image: url('../images/top_bg_10.png');
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/*----------- box11 -----------*/
.box11 {
  background-color: #fff;
  padding: 200px 50px 0px;
  background-image: url('../images/top_bg_11.png');
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

@media screen and (max-width: 767px) {

  .box1,
  .box2,
  .box3,
  .box4,
  .box5,
  .box6,
  .box7,
  .box8,
  .box9,
  .box10,
  .box11 {
    padding: 0 0;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background-position: center;
  }

  .box1 {
    background-image: url('../images/top_bg_01_sp.png');
  }

  .box2 {
    background-image: url('../images/top_bg_02_sp.png');
  }

  .box3 {
    background-image: url('../images/top_bg_03_sp.png');
  }

  .box4 {
    background-image: url('../images/top_bg_04_sp.png');
  }

  .box5 {
    background-image: url('../images/top_bg_05_sp.png');
  }

  .box6 {
    background-image: url('../images/top_bg_06_sp.png');
  }

  .box7 {
    background-image: url('../images/top_bg_07_sp.png');
  }

  .box8 {
    background-image: url('../images/top_bg_08_sp.png');
  }

  .box9 {
    background-image: url('../images/top_bg_09_sp.png');
  }

  .box10 {
    background-image: url('../images/top_bg_10_sp.png');
  }

  .box11 {
    background-image: url('../images/top_bg_11_sp.png');
  }
}

/*----------- copyright -----------*/
.index .footer-copy,
.product .footer-copy {
  color: #fff;
  font-size: .8rem;
  text-align: center;
  background-color: #323232;
  padding: 30px 0;
}

/*-----------------------------
INDEX
-----------------------------*/
.box-index {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #000;
}

.box-index .footer-copy {
  position: absolute;
  z-index: 1;
  color: #fff;
  font-size: .6rem;
  text-align: center;
  bottom: -5px;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.box-index .footer-copy span {
  display: block;
}

.box-index .footer-copy span a {
  color: #fff;
  text-decoration: none;
}

.box-index .overlay {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.box-index-list {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  animation: bgAnime 20s infinite;
  /* 4画像 × 各5s = 20s */
  background-size: cover;
  background-position: center center;
}

/* --- 段差で背景画像のアニメーションを実行 ----------------- */
.box-index-list.img-src-1 {
  background-image: url('../img/index_bg_01.png');
}

.box-index-list.img-src-2 {
  background-image: url('../img/index_bg_02.png');
  animation-delay: 5s;
}

.box-index-list.img-src-3 {
  background-image: url('../img/index_bg_03.png');
  animation-delay: 10s;
}

.box-index-list.img-src-4 {
  background-image: url('../img/index_bg_04.png');
  animation-delay: 15s;
}

@keyframes bgAnime {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  30% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

#login_visual {
  z-index: 2;
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  min-width: 480px;
}

#login_visual .form-wrapper img {
  margin: 0 auto 10px;
  width: 280px;
}

.form-header {
  margin: 0 0 30px;
}

#login_visual p {
  font-weight: bold;
}

/* Form Layout */
.form-wrapper {
  margin: 2em auto;
  padding: 0 1em;
}

.form-wrapper form {
  padding: 0 1.5em;
}

.form-item {
  margin-bottom: 0.75em;
  width: 100%;
}

.form-item input {
  border: none;
  border-bottom: 2px solid #e9e9e9;
  color: #666;
  font-size: 1rem;
  height: 50px;
  transition: border-color 0.3s;
  width: 100%;
}

.form-item input:focus {
  border-bottom: 2px solid #e60012;
  outline: none;
}

.button-panel {
  margin: 1em 0 0;
  width: 100%;
}

#login_visual .agree_text {
  font-size: .6rem;
  font-weight: normal;
}

#login_visual .agree-area {
  display: flex;
  justify-content: center;
  font-size: .8rem;
  background-color: #e6e6e6;
  padding: 10px 0;
  align-items: center;
}

#login_visual .agree-area p {
  font-size: .8rem;
}

#login_visual .agree-area input {
  width: 20px;
  height: 20px;
}

.button-panel .button {
  background: #e60012;
  border: none;
  color: #fff;
  cursor: pointer;
  height: 50px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out;
  width: 100%;
}

.button:hover {
  background: #ee3e52;
}

@media screen and (max-width: 767px) {
  .form-wrapper {
    margin: 20px 0;
  }

  #login_visual .form-wrapper img {
    width: 60%;
    margin: 0px auto;
  }

  .form-header {
    margin: 0 15px;
  }

  .form-wrapper form {
    padding: 0;
  }

  #login_visual p {
    font-size: 1rem
  }

  #login_visual {
    min-width: 90%;
  }

  #login_visual .agree-area {
    padding: 5px 0;
  }

  .form-item {
    margin: 0 0 5px;
    font-size: 10px;
  }

  .form-item input {
    height: 30px;
    font-size: 10px;
  }

  #login_visual .agree_text {
    text-align: left;
    line-height: 1.3;
  }

  .button-panel .button {
    font-size: .7rem;
  }

  .button-panel {
    margin: 0;
  }

  input::-webkit-input-placeholder {
    font-size: 10px;
  }

  input:-moz-placeholder {
    font-size: 10px;
  }

  input::-moz-placeholder {
    font-size: 10px;
  }

  input:-ms-input-placeholder {
    font-size: 10px;
  }
}

/*----------- mask -----------*/
.mask_wrap {
  display: table;
  overflow: hidden;
}

.mask-wrap .mask {
  display: table;
  position: relative;
  overflow: hidden;
}

.mask-wrap .mask-bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #e60012;
}

.pagenation {
  padding: 20px;
  position: fixed;
  right: 0;
  top: 50%;
}

.pagenation li {
  list-style-type: none;
  margin-bottom: 20px;
}

.pagenation a {
  display: block;
  height: 10px;
  border: 1px solid #000;
  width: 10px;
}

.pagenation a.active {
  background: #000;
}

#page_top {
  width: 40px;
  height: 40px;
  position: fixed;
  z-index: 99;
  right: 10px;
  bottom: 10px;
  background: #e60012;
  opacity: 0.6;
  border-radius: 20px;
}

#page_top a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
}

#page_top a::after {
  content: '▲';
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 10px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

body .remodal-confirm {
  background: #e60012;
  font-size: .8rem;
  padding: 7px 0;
  margin: 0 0 10px 0;
}

/*----------- movie -----------*/
.slick {
  display: none;
  opacity: 0;
  transition: opacity .3s linear;
}

.slick.slick-initialized {
  display: block;
  opacity: 1;
}

.product-list-movie {
  display: flex;
  justify-content: space-between;
  margin: 0 0 30px !important;
}

.product-list-movie li {
  width: 48%;
}

.product-list-movie li .movie-inner {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  margin: 0 0 80px;
}

.product-list-movie li iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.product-list-movie li h3 {
  font-size: 0.8rem;
  margin: 10px 0;
}

@media screen and (max-width: 767px) {
  .product-list-movie {
    display: block;
  }

  .product-list-movie li {
    width: 100%;
    margin-bottom: 30px;
  }

  .product-list-movie li .movie-inner {
    padding-top: 56.25%;
  }
}

.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

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

.box-movie {
  text-align: center;
  margin: 0 0 10px;
}

.box-movie video {
  margin: 0 0 10px;
}

#video {
  width: 100%;
  min-width: 1200px;
  min-height: 100%;
}

@media screen and (max-width: 767px) {
  .box-movie {
    padding: 0 10px;
  }

  .box-movie video {
    width: 100%;
    height: auto;
  }

  #video {
    width: 100%;
    min-width: 100%;
  }
}

/*----------- modal -----------*/
.lb {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, .7);
  opacity: 0;
  transition: .3s opacity ease;
  pointer-events: none;
  z-index: 100;
}

.lb img {
  width: auto !important;
  max-height: 100% !important;
  cursor: pointer;
}

.lb img,
.lb iframe {
  transform: scale(.85);
  transition: .3s all ease;
}

.lb:target {
  opacity: 1;
  pointer-events: auto;
  z-index: 101;
}

.lb:target img,
.lb:target iframe {
  transform: scale(1);
}

/* なんちゃって閉じるボタン*/
.lb::before,
.lb::after {
  display: block;
  position: fixed;
  content: "";
  width: 24px;
  height: 3px;
  top: 24px;
  right: 12px;
  background: #fff;
  border-radius: 4px;
}

.lb::before {
  transform: rotate(-315deg);
}

.lb::after {
  transform: rotate(315deg);
}