/* --------------------------------------------- */
/* ▼base */
/* --------------------------------------------- */
html {
  font-size: 62.5%;
} 
body{
  font-family: "Helvetica", "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.6rem; 
}
/* --------------------------------------------- */
/* ▼header */
/* --------------------------------------------- */
header{
  width: 100%;
  position: fixed;
  z-index: 9999;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0 40px;
  top: 0;
}
header.is-open {
  opacity: 1!important;
}
header .logo {
  width: 174px;
  z-index: 9999;
}
header .logo img {
    max-width: 100%;
}
.timeLink {
  position: fixed;
}
/* --------------------------------------------- */
/* ▼humberger menu */
/* --------------------------------------------- */
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}
/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
}
/* ハンバーガーメニューのアイコン */
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 7px;
  width: 7px;
  background: #222;
  transition: 0.5s;
  position: absolute;
}
.drawer-open span:before {
  bottom: 12px;
}
.drawer-open span:after {
  top: 12px;
}
.drawer-open span:first-child:before,
.drawer-open span:first-child:after {
  left: 0px;
}
.drawer-open span:nth-child(2):before,
.drawer-open span:nth-child(2):after {
  left: 10px;
}
/* アイコンがクリックされたら両端を透明にする */
#drawer-check:checked ~ .drawer-open span:first-child:before,
#drawer-check:checked ~ .drawer-open span:nth-child(3):before,
#drawer-check:checked ~ .drawer-open span:first-child:after,
#drawer-check:checked ~ .drawer-open span:nth-child(3):after {
  background: rgba(255, 255, 255, 0);
}
/* アイコンがクリックされたらアイコンがIになるように上下の線を調整 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 20px;
  height: 16px;
}
#drawer-check:checked ~ .drawer-open span::after {
  top: 20px;
  height: 16px;
} 
/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
}
.drawer-list {
  display: grid;
  grid-template-columns: 5vw 18vw 18vw 18vw 18vw 18vw 5vw;
  grid-template-rows: 20vh 40vh 40vh;
}
.drawer-list li {
  border-right: 1px solid #F2F2F2;
  border-bottom: 1px solid #F2F2F2;
}
.drawer-list li a {
  display: block;
  height: 100%;
  width: 100%;
  padding: 4vh 0 0 20px;
  font-size: 1.8rem;
  font-weight: bold;
}
.drawer-list li a:hover {
  background-color: #222;
  color: #FFF;
}
/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}
#navTimer {
  transform:rotate(-90deg);
  position: fixed;
  top: 50%;
  right: -2%;
}
.yycountdown-box {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.4px;
}
.yyc-day-text {
  font-weight: normal;
  font-size: 1rem;
  margin-right: 4px;
}
.yyc-hou,
.yyc-hou-text,
.yyc-min,
.yyc-min-text {
  margin-right: 4px;
}
.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  }
/* --------------------------------------------- */
/* ▼grid */
/* --------------------------------------------- */
.grid {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: -1;
  position: fixed;
}
.grid div {
  height: 100%;
  border-right: 1px solid #F2F2F2;
  width: 18%;
}
.grid div:first-child {
  width: 5%;
}
.grid div.gridAnimation {
  height: 0%;
  animation: pathmove 1.5s linear forwards;
}
.grid div.gridAnimation:first-child {
  animation-delay: .0s;
}
.grid div.gridAnimation:nth-child(2) {
  animation-delay: .8s;
}
.grid div.gridAnimation:nth-child(3) {
  animation-delay: 1.3s;
}
.grid div.gridAnimation:nth-child(4) {
  animation-delay: 1.8s;
}
.grid div.gridAnimation:nth-child(5) {
  animation-delay: 2.3s;
}
.grid div.gridAnimation:nth-child(6) {
  animation-delay: 2.8s;
}
@keyframes pathmove{
	0%{
		height:0;
	}
	100%{
		height:100%;
	}
}
/* --------------------------------------------- */
/* ▼contents area */
/* --------------------------------------------- */
main {
  width: 1280px;
  min-width: 1280px;
  padding: 0 40px;
  margin: 160px auto 0 auto;
  position: relative;
}
.wrapper {
  margin: 0 auto;
  position: relative;
}
section {
  margin-bottom: 160px;
}
section .inner {
  margin-left: 190px;
}
section h1{
  font-size: 2rem;
  font-weight: bold;
  width: 400px;
  border-bottom: 1px solid #222222;
  padding-bottom: 0.5rem;
  margin-bottom: 80px;
  letter-spacing: 0.4px;
}
section h1.noBorder {
  border: none;
  margin-bottom: 0;
}
section p{
  line-height: 3.2rem;
  margin-bottom: 3.2rem;
}
.txtStament {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 1.6px;
}
.brandTit {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  border: none;
  width: auto;
  padding: 0;
}
.imgColumn {
  display: flex;
  justify-content: space-between;
}
.colImg {
  flex-direction: column;
  flex-basis: 64%;
}
.colText {
  flex-direction: column;
  flex-basis: 27%;
  margin-top:auto
}
.brandInfo {
  display: flex;
  flex-wrap: wrap;
}
.brandInfo dt{
  font-size: 1.4rem;
  font-weight: normal;
  position: relative;
  width: 32%;
  padding: 26px 0;
  border-top: 1px solid #222;
  line-height: 2em;
}
.brandInfo dd{
  font-size: 1.4rem;
  width: 68%;
  padding: 26px 0 0;
  border-top: 1px solid #222;
  line-height: 2em;
}
.movieBoxWrap {
  display: flex;
  flex-wrap: wrap;
}
.movieBox {
  border: 1px solid #222;
  border-left: none;
}
.movieBox:nth-child(even) {
  border-right: none;
}
.movieBox:nth-child(3) {
  border-top: none;
}
.movieBox:nth-child(4) {
  border-top: none;
}
.movieBoxImg {
  padding: 30px 29px 30px 0;
}
.movieBox:nth-child(even) .movieBoxImg {
  padding: 30px 0 30px 30px;
}
.movieBoxTit {
  border-top: 1px solid #222;
}
.movieBoxTit a {
  padding: 20px 30px 20px 0;
}
.movieBox:nth-child(even) .movieBoxTit a {
  padding: 20px 0 20px 30px;
}
.movieBoxTit {
  font-weight: bold;
  font-size: 1.8rem;
}
.hovArrow {
  position: relative;
  display: block;
}
.hovArrow:after {
  content: "";
  display: block;
  position: absolute;
  right: 5%;
  top: 40%;
  width: 50px;
  height: 8px;
  border: none;
  border-right: 2px solid #B82B35;
  border-bottom: 2px solid #B82B35;
  transform: skew(
    45deg
  );
  transition: .3s;
}
.hovArrow:hover:after{
  right: calc(1rem);
}
.sliderInner {
  position: relative;
}
.swiper-button-next, .swiper-button-prev {
  width: calc(var(--swiper-navigation-size)/ 44 * 62);
  top: unset;
  bottom: 0;
}
.swiper-button-next:after {
  content: "";
  display: block;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  width: 60px;
  height: 8px;
  border: none;
  border-right: 2px solid #B82B35;
  border-bottom: 2px solid #B82B35;
  transform: skew(
    45deg
  );
}
.swiper-button-prev:after {
  content: "";
  display: block;
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  width: 60px;
  height: 8px;
  border: none;
  border-left: 2px solid #B82B35;
  border-bottom: 2px solid #B82B35;
  transform: skew(
    135deg
  );
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 50px;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 50px;
}
/* --------------------------------------------- */
/* ▼ONLINE SHOP */
/* --------------------------------------------- */
.onlinshopLink {
  text-align: center;
  position: relative;
  margin: 500px 0;
}
.onlinshopLink h2 {
  font-size: 10rem;
  font-weight: bold;
  letter-spacing: 5px;
}
.onlinshopLink h2 span {
  color: #FFF;
  -webkit-text-stroke: 2px #B82B35;
  text-stroke: 2px #B82B35;
}
.onlinshopLink p {
  font-size: 2.4rem;
}
.onlinshopLink::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 516px;
  height: 516px;
  box-shadow: 4px 12px 36px #0000003D;
}
/* --------------------------------------------- */
/* ▼footer */
/* --------------------------------------------- */
footer{
  min-width: 1280px;
  background-color: #222222;
  height: 260px;
}
.footerInner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 60px 40px;
}
footer .logo {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.6rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}
footer .logo img {
  max-width: 100%;
}
.footerLink {
  font-size: 1.4rem;
  color: #FFFFFF;
}
.footerLink li{
  display: inline-block;
  margin-right: 4.7rem;
}
footer small{
  font-size: 1.4rem;
  color: #FFFFFF;
  display: block;
  text-align: center;
}
/* --------------------------------------------- */
/* ▼common class */
/* --------------------------------------------- */
.column2 {
  display: flex;
  max-width: 1010px;
  margin-left: 190px;
  justify-content: space-between;
}
.col {
	flex-direction: row;
  flex-basis: 45%;
}
.alnCenter{
  text-align: center;
}
.alnLeft{
  text-align: left;
}
.alnRight{
  text-align: right;
}
.clrRed {
  color: #C8102E;
}
.imgShadow {
  box-shadow: 4px 12px 36px #0000003D;
}
.imgShadowShort {
  box-shadow: 2px 6px 12px #0000001F;
}
.forPcMenu {
  display: grid;
}
.forSpMenu {
  display: none;
}
.forPcBlk {
  display: block;
}
.forSpBlk {
  display: none;
}
.forPcInl {
  display: inline;
}
.forSpInl {
  display: none;
}
.mT50 {
  margin-top: 50px!important;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  header {
    padding: 0 0 0 20px;
    height: 80px;
  }
  header .logo{
    width: 33%;
  }
  .drawer-open span:before, .drawer-open span:after{
    height: 5px;
    width: 5px;
  }
  #drawer-check:checked ~ .drawer-open span::after {
    height: 8px;
  }
  #drawer-check:checked ~ .drawer-open span::before {
    height: 8px;
  }
  .drawer-list {
    display: grid;
    grid-template-columns: 15vw 35vw 35vw 15vw;
    grid-template-rows: 20vh 40vh 40vh;
    grid-template-rows: 13vh 29vh 29vh 29vh;
  }
  .drawer-list li a {
    font-size: 1.6rem;
    padding: 3vh 0 0 10px;
  }
  .forPcMenu {
    display: none;
  }
  .forSpMenu {
    display: grid;
  }
  #navTimer {
    right: -13vw;
  }
  .yycountdown-box {
    font-size: 1.8rem;
  }
  main {
    width: 100%;
    min-width: unset;
    padding: 0;
    margin: 125px auto 0 auto
  }
  .wrapper {
    padding: 0 20px;
  }
  section {
    margin-bottom: 120px;
  }
  section h1 {
    width: 100%;
    margin-bottom: 30px;
  }
  section .inner {
    margin-left: 0;
  }
  .column2 {
    margin-left: 0%;
    width: 100%;
    flex-direction: column;
  }
  .col {
    flex-basis: 100%;
  }
  .brandTit {
    display: none;
  }
  .imgColumn {
    flex-direction: column;
    margin-top: 20px;
  }
  .colImg, .colText {
    flex-basis: 100%;
  }
  .colText{
    margin-top: 30px;
  }
  .colImg img,
  .movieBoxImg img,
  .swiper-container img {
    max-width: 100%;
  }
  .movieBox {
    border-right: none;
  }
  .movieBoxImg,
  .movieBox:nth-child(even) .movieBoxImg {
    padding: 30px 0 0 0;
  }
  .movieBox:nth-child(even) .movieBoxTit a {
    padding: 20px 0 20px 0;
  }
  .movieBox:nth-child(2) {
    border-top: none;
  }
  .movieBoxTit {
    border: none;
  }
  .onlinshopLink h2 {
    font-size: 4rem;
    letter-spacing: 2px;
  }
  .onlinshopLink::after {
    width: 64vw;
    height: 64vw;
  }
  .onlinshopLink {
    margin: 300px 0;
  }
  .onlinshopLink p {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .footerInner {
    padding: 40px 20px 30px 20px;
  }
  footer {
    height: 150px;
    min-width: 100%;
  }
  footer .logo {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
  .footerLink {
    font-size: 1.2rem;
  }
  .footerLink li {
    margin-right: 4rem;
  }
  footer small {
    font-size: 0.8rem;
  }
  .grid div {
    width: 35%;
  }
  .grid div:first-child {
    width: 15%;
  }
  .grid div:nth-child(4),
  .grid div:nth-child(5),
  .grid div:nth-child(6) {
    display: none;
  }
  .swiper-button-next, .swiper-button-prev {
    top: unset;
    bottom: -60px;
  }
  .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 1%;
  }
  .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 1%;
  }
  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 40px;
    height: 10px;
  }
  .forPcBlk {
    display: none;
  }
  .forSpBlk {
    display: block;
  }
  .forPcInl {
    display: none;
  }
  .forSpInl {
    display: inline;
  }
}