@charset "UTF-8";
html {

}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  min-width: 320px;
}

main {
  overflow: hidden;
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  transition: .2s;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -ms-transition: .2s;
  -o-transition: .2s;
}

a:hover {
  opacity: .7;
}

#page-top a {
  position: relative;
  display: block;
  background: #ec5e6c;
  width: 65px;
  height: 65px;
  transition: all 0.3s;
}

#page-top a::before {
  content: "";
  position: absolute;
  top: calc(50% + 3px);
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

#page-top a:hover {
  opacity: .7;
}

#page-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
      opacity: 0;
      transform: translateY(100px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  to {
      opacity: 1;
      transform: translateY(100px);
  }
}

header {
  position: fixed;
  display: flex;
  align-items: flex-end;
  width: auto;
  height: 70px;
  z-index: 99;
}

header h1 {
  width: 90px;
  margin-left: 30px;
}

section {
  padding: 0 30px;
  background: #980c11
}

.contents {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

h2 {
  height: 100%;
  height: 124px;
  margin-bottom: 40px;
}

h2 img {
  width: auto;
  max-width: 100%;
  height: 100%;
}

#mv,#copy {
  background: #d80d18;
}

.mv_container {
  margin: 0 auto;
  padding: 120px 0 180px;
  max-width: 1200px;
}

#copy .copy_container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 100px 0 ;
  max-width: 807px;
}
#copy .copy_container div{
  width: 42%;
}
#copy .copy_container div:last-child{
  padding-top: 9%;
}


#nav .contents{
  position: relative;
  max-width: 1200px;
  padding: 200px 0 50px;
  margin: auto;
}

.nav_btn {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav_btn li {
  width: calc(100% / 2 - 10px) ;
}

.nav_btn li:hover {
  transform: translate(2px, 5px);
  -webkit-transform: translate(2px, 5px);
  -moz-transform: translate(2px, 5px);
  -ms-transform: translate(2px, 5px);
  -o-transform: translate(2px, 5px);
}

#eventbnr .contents{
  padding: 20px;
}
#eventbnr .event_container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
#eventbnr .event_container .grid_column3{
  grid-column: 1 / 3;
}
#eventbnr .event_container .grid_column3 ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#eventbnr .contents:last-child ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
#eventbnr .pointer_none a{
  pointer-events: none;
}

#bargaininfo {
  position: relative;
  background: #980c11;
}

#bargaininfo .contents {
  padding-top: 150px;
}

.bargain_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bargain_container .tab_label:nth-of-type(2),
.bargain_container .tab_label:nth-of-type(3) {
  border-left: 0px;
}

.tab_label {
  order: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(98% / 3);
  height: 60px;
  border: 1px solid #fff;
  border-bottom: 0px;
}

.tab_label:hover {
  cursor: pointer;
}

.tab_label span {
  font-size: 1.6rem;
  color: #fff;
}

/* #tab_01+.tab_label {
  background: url("../images/tab_fashion.svg");
  background-repeat: no-repeat;
  background-position: bottom;
}

#tab_02+.tab_label {
  background: url("../images/tab_item.svg");
  background-repeat: no-repeat;
  background-position: bottom;
}

#tab_03+.tab_label {
  background: url("../images/tab_cosme.svg");
  background-repeat: no-repeat;
  background-position: bottom;
}

#tab_04+.tab_label {
  background: url("../images/tab_food.svg");
  background-repeat: no-repeat;
  background-position: bottom;
} */

.bargain_content {
  width: 100%;
  display: none;
  background: #fff;
}

.tab_menu:checked+.tab_label {
  background: #fff;
}

.tab_menu:checked+.tab_label span {
  color: #bc0f20;
}

.tab_menu:checked+.tab_label+.bargain_content {
  display: block;
  position: relative;
  padding: 50px 0 70px;
}
.tab_menu {
  display: none;
}

.bargain_content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.bargain_content ul::before {
  content: "";
  width: calc(98% / 3);
  order: 2;
}

.bargain_content ul::after {
  content: "";
  width: calc(98% / 3);
  order: 3;
}

.bargain_content ul li {
  box-sizing: content-box;
  position: relative;
  width: calc(98% / 3);
  outline: 1px solid #e8eeee;
  outline-offset: -1px;
  order: 1;
}

.bargain_content ul li.item2x {
  width: calc(100% / 3 * 2);
}

#bargaininfo p {
  margin: 15px 0 0;
  text-align: right;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.bargain_content::before{
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  z-index: -1;
}
.bargain_content::after{
  position: absolute;
  content: "※記載の内容は予告なく変更となる場合がございます";
  bottom: 40px;
  right: 0;
  color: #bc0f20;
}



footer {
  background: #d80d18;
}

footer div {
  width: 120px;
  margin: 0 auto;
  padding: 100px 0 30px;
}

footer p {
  color: #fff;
  text-align: center;
  padding: 0 0 60px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

/* 20241212 */
.dialogue {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100lvh;
  background: rgba(240, 240, 240, 0.7);
  z-index: 98;
}

.dialogue.active {
  display: flex;
}

.dialogue-wrap p {
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 20px;
}

.dialogue-app {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.dialogue-app button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 2rem;
  width: 120px;
  height: 50px;
  border-radius: 30px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
}

.dialogue-app button:hover {
  color: #fff;
  background: #000;
}

.dialogue-app button span {
  margin-right: 0.2em;
}
.btn-volume button.active {
  opacity: 1;
  z-index: 1;
}
.en {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#mv {
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

#mv video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.relative{
  position: relative;
}
.absolute{
  position: absolute;
}
.btn-volume {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 50px;
  height: 50px;
}

.btn-volume button {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  background: #fff;
  border: 1px solid #000;
  color: #000;
}

.btn-volume button:hover {
  color: #fff;
  background: #000;
}

.btn-volume button.active {
  opacity: 1;
  z-index: 1;
}
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
.mv01{
  z-index: 1;
  right: -270px;
  top: 5%;

}
.mv01 img{
  width: 40%;
}
.mv02{
  z-index: 1;
  left: 5%;
  bottom: 5%;

}
.mv02 img{
  width: 30%;
}
.flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
  gap: 20px;
}
.tab_img{
  width: 11.5%;
}
.sp{
display: none;
}
#mv .top{
  top: 5%;
  right: 3%;
  width: 16%;
}

#mv .bottom{
  bottom: 8%;
  left: 3%;
  width: 11%;
}
