@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "area-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
  width: 100%;
  line-height: 1.4;
  letter-spacing: 0.5px;
  font-size: 16px;
  overflow-x: hidden;
  margin: 0 auto;
  transition: all 1.6s ease 0s;
  display: none;
  color: #958080;
}

a {
  color: #958080;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #player {
    height: 100svh !important;
  }
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

#page-top {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  #page-top {
    right: 3%;
  }
}
#page-top img {
  width: 2.3611111111vw;
}
@media screen and (max-width: 768px) {
  #page-top img {
    width: 7.6vw;
  }
}

#page-top a {
  display: block;
  opacity: 0.9;
  transition: all 0.3s ease;
}

#page-top a:hover {
  opacity: 0.5;
}

#bg-loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background: #fff;
  z-index: 999;
  transition: opacity 0.6s ease-out 0.5s;
}

#bg-loading.hide {
  opacity: 0;
  pointer-events: none;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #fff;
  transition: all 0.8s;
}
@media screen and (min-width: 769px) {
  #g-nav {
    width: 30%;
  }
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 769px) {
  #g-nav.panelactive #g-nav-list {
    width: 30%;
  }
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #958080;
  text-decoration: none;
  padding: 13px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  display: flex;
  justify-content: space-between;
  width: 73%;
  margin: 0 auto;
  flex-direction: row-reverse;
}

#g-nav p {
  text-align: center;
  color: #958080;
}

.g_title {
  font-size: 38px;
  white-space: nowrap;
  line-height: 1.7;
}

.g_title2 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  margin-bottom: 30px;
}

.v_w {
  width: 10px;
  margin-right: 20px;
}

.mail {
  width: 90%;
  background: #958080;
  /* color: #fff; */
  padding: 13px;
  margin: 30px auto;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  border-radius: 26px;
}
.mail p {
  color: #fff !important;
  font-size: 13px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 60px;
  height: 50px;
}
@media screen and (min-width: 769px) {
  .openbtn {
    top: 40px;
    right: 40px;
    width: 80px;
  }
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #958080;
  width: 60%;
}

.openbtn {
  transition: 0.2s;
  opacity: 99999;
  opacity: 0;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

#nav_1 {
  margin: 0px auto;
  background: #F4F5F5;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  #nav_1 {
    margin: 0px auto;
  }
}
@media screen and (min-width: 769px) {
  #nav_1 {
    padding-bottom: 100px;
  }
}
#nav_1 .nav_text {
  padding: 80px 0px 3px;
  text-align: center;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #958080;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  #nav_1 .nav_text {
    padding: 120px 0px 15px;
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .pt_10 {
    padding: 25px 0px 3px !important;
  }
}
@media screen and (min-width: 769px) {
  .pt_10 {
    padding: 25px 0px 15px !important;
  }
}

.nav {
  display: flex;
  width: 48%;
  padding: 3% 0 3% 0;
  margin: 1% 1%;
  font-size: 3.3vw;
  background: #958080;
  justify-content: center;
  border-radius: 9px;
}
@media screen and (min-width: 769px) {
  .nav {
    display: flex;
    width: 22%;
    padding: 15px 0px 15px 9px;
    margin: 1% 5px;
    font-size: 1.3vw;
  }
}
.nav p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #ffffff;
  white-space: nowrap;
}
.nav svg {
  width: 10px;
}
.nav a {
  display: flex;
  width: 67%;
  justify-content: space-between;
  margin-left: 5%;
}
.nav a:hover {
  opacity: 0.6;
}
.nav img {
  margin-right: 15px;
  width: 9px;
}

.fv {
  position: relative;
  font-family: "area-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
  height: 100%;
  opacity: 0;
  animation-name: fadeIn; /*←@keyframesにも同じ名前を記述*/
  animation-duration: 1s;
  animation-fill-mode: forwards;
  height: 178vw;
}
@media screen and (min-width: 769px) {
  .fv {
    background-image: url(../images/fv_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100svh;
    overflow: hidden;
  }
}
.fv .back_img {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .fv .back_img {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.fv .logo {
  position: absolute;
  top: 15px;
  width: 16.4814814815vw;
}
@media screen and (max-width: 768px) {
  .fv .logo {
    left: 15px;
  }
}
@media screen and (min-width: 769px) {
  .fv .logo {
    top: 2vw;
    right: 2vw;
    width: 7vw;
  }
}
.fv h1 {
  left: 6vw;
  width: 87vw;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .fv h1 {
    top: 50vw;
  }
}
@media screen and (min-width: 769px) {
  .fv h1 {
    left: 5vw;
    bottom: 9vw;
    width: 42vw;
  }
}
.fv p {
  position: absolute;
  color: #fff;
  font-size: 2.3148148148vw;
  text-align: left;
  left: 7vw;
  letter-spacing: 0.3px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .fv p {
    top: 161vw;
  }
}
@media screen and (min-width: 769px) {
  .fv p {
    font-size: 1vw;
    text-align: left;
    left: 5.2vw;
    bottom: 3.7vw;
  }
}
.fv p span {
  font-size: 2.7777777778vw;
}
@media screen and (min-width: 769px) {
  .fv p span {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 769px) {
  .fv .title {
    position: absolute;
    left: 10svh;
    top: 68%;
    left: 10%;
    width: auto;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .fv .sub_t {
    white-space: nowrap;
    top: -8vw;
    font-size: 1.7361111111vw;
  }
}
@media screen and (max-width: 768px) {
  .fv {
    text-align: center;
  }
  .fv .sub_t {
    font-size: 4.6666666667vw;
    bottom: 50vw;
    white-space: nowrap;
    letter-spacing: 0.6vw;
  }
  .fv .title_01 {
    bottom: 21vw;
    font-size: 14.5333333333vw;
    letter-spacing: 1vw;
  }
  .fv .title_02 {
    bottom: 1vw;
    font-size: 20.4vw;
    letter-spacing: 7vw;
    line-height: 1;
    left: 53%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  #k_01 {
    margin: 80px auto !important;
  }
}

.k_sec {
  margin: 150px auto;
  width: 85%;
  letter-spacing: 1px;
}
@media screen and (min-width: 769px) {
  .k_sec {
    width: 58%;
  }
}
.k_sec h2 {
  color: #958080;
  text-align: center;
  margin-bottom: 9%;
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .k_sec h2 {
    margin-bottom: 4%;
    font-size: 18px;
  }
}
.k_sec .k_title {
  color: #958080;
  font-size: 50px !important;
  font-weight: 500;
  text-align: center;
  line-height: 0.5;
  font-family: "area-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
}
@media screen and (max-width: 768px) {
  .k_sec .k_title {
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .k_sec .k_title {
    margin-bottom: 10px;
    margin-left: 1%;
    font-size: 60px !important;
  }
}
.k_sec .k_title span {
  font-size: 13px;
  color: #958080;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.k_sec ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .k_sec ul {
    margin: 20px auto;
  }
}
@media screen and (max-width: 768px) {
  .k_sec ul {
    margin: 10px auto 20px;
  }
}
.k_sec ul a::after {
  content: "BUY";
  background: #958080;
  color: #fff;
  border-radius: 20px;
  font-family: "area-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
  display: block;
  width: 48%;
  margin: 15px 0 30px;
  line-height: 1;
  transition: 1s;
  text-align: center;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .k_sec ul a::after {
    padding: 5px 0;
  }
}
@media screen and (min-width: 769px) {
  .k_sec ul a::after {
    width: 30%;
    padding: 6px 4px 3px;
    margin: 10px 0 30px;
  }
}
.k_sec p {
  font-size: 11px;
  margin: 9px 0;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .k_sec p {
    font-size: 12px;
    margin: 5px 0;
  }
}
.k_sec div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  letter-spacing: 0.5px;
}
.k_sec .category div {
  display: flex;
  flex-wrap: wrap;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .k_sec .category div {
    width: 47%;
  }
}
.k_sec .category div a::after {
  content: "BUY";
  background: #958080;
  color: #fff;
  display: block;
  border-radius: 15px;
  width: 43%;
  margin: 10px 0 20px;
  line-height: 1;
  padding: 5px 0;
  transition: 1s;
  text-align: center;
  font-size: 12px;
  font-family: "area-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
}
@media screen and (max-width: 768px) {
  .k_sec .category div a::after {
    padding: 6px 0 3px;
  }
}
@media screen and (min-width: 769px) {
  .k_sec .category div a::after {
    width: 30%;
  }
}
.k_sec .fuwat {
  width: 48%;
}
.k_sec .all_btn {
  font-family: "area-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600, "INKT" 0;
  font-size: 18px;
  text-align: center;
  padding: 15px 0 13px 0;
  border: 1px solid #958080;
  color: #958080;
  border-radius: 26px;
  width: 75%;
  margin: 30px auto;
}
@media screen and (min-width: 769px) {
  .k_sec .all_btn {
    padding: 14px 0 12px 0;
    width: 45%;
  }
}
.k_sec .all_btn:hover {
  background: #958080;
  color: #fff;
  transition: 0.5s;
}

.label {
  margin-top: 17px;
}

@media screen and (min-width: 769px) {
  .category li {
    width: 23%;
    margin: 20px 1% 0 1%;
  }
}
.category li a:hover {
  opacity: 0.6;
}

@media screen and (min-width: 769px) {
  .textOverflow p {
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.3;
  }
}

.read {
  width: 80%;
  margin: 50px auto;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3.3333333333vw;
  text-align: center;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .read {
    font-size: 1.0416666667vw;
    margin: 80px auto;
  }
}

.k_read {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: 18px 0px 40px;
  line-height: 2.4;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .k_read {
    font-size: 13px;
    margin-left: 1% !important;
  }
}

.back {
  display: flex;
  width: 70%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0px auto;
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .back {
    font-size: 20px;
    margin: 10px auto;
    width: 93%;
    justify-content: space-between;
  }
}

.item_cate {
  position: fixed;
  transition: 0.5s;
  opacity: 0;
  border-top: 0.5px solid #958080;
  display: flex;
  z-index: 990;
}
@media screen and (max-width: 768px) {
  .item_cate {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    bottom: 0;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .item_cate {
    width: 100%;
    bottom: 0;
  }
}
.item_cate div {
  width: 50%;
  background: #523b3b;
  border: 0.5px solid #958080;
}
@media screen and (min-width: 769px) {
  .item_cate div {
    width: 25%;
  }
}
.item_cate div p {
  font-size: 12px;
  padding: 6% 0;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .item_cate div p {
    font-size: 14px;
    padding: 5% 0;
    text-align: center;
  }
}

/* ------------------------
footer
------------------------ */
.footer {
  margin-left: auto;
  margin-right: auto;
}

.footer a:hover, .footer-bnr:hover {
  opacity: 0.8;
}

.pagetop {
  width: 5vw;
  margin-left: 89%;
}
@media screen and (min-width: 769px) {
  .pagetop {
    margin-left: 93%;
    width: 1.7vw;
  }
}

.txt-inner {
  margin: 80px auto 140px;
}

#f-logo {
  display: block;
  margin: 50px auto 0;
  width: 110px;
}
@media screen and (min-width: 769px) {
  #f-logo {
    width: 140px;
  }
}

.footer #f-logo {
  margin-top: 90px;
}

#f-list li {
  text-align: center;
  font-size: 11px;
  padding: 2px 0;
}

#f-copy {
  text-align: center;
  font-size: 8px;
  margin: 0 auto 150px;
}

#f-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer #f-link {
  margin-top: 50px;
}

#f-link li {
  width: 24px;
  margin: 0 15px;
}

.footer #f-link li {
  margin: 0 24px;
}

#f-link a:hover {
  opacity: 0.75;
}

.footer-tit {
  text-align: right;
  display: inline-block;
}

.footer-btn a {
  border: 1px solid #958080;
  padding: 10px 35px;
  background: #fff;
}

.footer-btn a:hover {
  background: #958080;
  color: #fff;
  opacity: 1;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
}

.footer-menu li {
  width: 33.333%;
  text-align: center;
}

.footer-menu li:not(:nth-child(3n)) .menu-tit {
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.footer-menu .coming-soon p {
  color: #808080;
  padding-top: 4px;
}

.footer-menu .menu-tit {
  margin-bottom: 3px;
}

.footer-menu .menu-tit span {
  display: flex;
}

.footer-menu .coming-soon {
  pointer-events: none;
}

.coming-soon .menu-tit > div::after,
.coming-soon .menu-tit > div::before {
  display: none;
}

.border-outer {
  width: 100%;
  z-index: 9;
  position: relative;
  pointer-events: none;
}

.footer .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.f-totop {
  text-align: center;
}

.f-totop a {
  text-decoration: underline;
}

#f-link-area {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#f-link-area a:hover {
  opacity: 0.75;
}

.all-btn {
  display: block;
  padding: 12px 12px;
  color: #958080;
  background: #fff;
  border: 1px solid #958080;
  text-align: center;
  width: 35%;
  margin: 15px auto;
  border-radius: 26px;
}
@media screen and (max-width: 768px) {
  .all-btn {
    width: 85%;
  }
}

.all-btn.snap {
  border: 1px solid #958080;
  background: #958080;
  color: #fff;
}

.all-btn:hover {
  background: #958080;
  border: 1px solid #958080;
  color: #fff;
  opacity: 1 !important;
}

.all-btn.snap:hover {
  border: 1px solid #F7D264;
  background: #F7D264;
  color: #958080;
  opacity: 1 !important;
}

.info-btn {
  display: block;
  padding: 12px 12px;
  border: 1px solid #8D918B;
  background: #8D918B;
  color: #fff;
}

.info-btn:hover {
  background: #958080;
  border: 1px solid #958080;
  opacity: 1 !important;
}

.slide-item {
  padding-left: 10%;
  padding-right: 10%;
}

.footer .w88 {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

@media only screen and (min-width: 768px) {
  .slide-item {
    padding-left: 18%;
    padding-right: 18%;
  }
  #soon .w50 {
    padding-top: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .all-btn {
    padding: 12px;
  }
  .info-btn {
    padding: 12px;
  }
}
.crossfade-container {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
}

.crossfade-image-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
  z-index: 10;
  opacity: 1;
}

.crossfade-image-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
  z-index: 9;
  opacity: 0;
}

.crossfade-image-3 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
  z-index: 8;
  opacity: 0;
}

.crossfade-image-4 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
  z-index: 7;
  opacity: 0;
}

.crossfade-image-5 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
  z-index: 6;
  opacity: 0;
}

.crossfade-image-6 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
  z-index: 5;
  opacity: 0;
}

.crossfade-image-7 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
  z-index: 4;
  opacity: 0;
}

.crossfade-image-8 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
  z-index: 3;
  opacity: 0;
}

.crossfade-image-9 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
  z-index: 2;
  opacity: 0;
}

.crossfade-image-10 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
  z-index: 1;
  opacity: 0;
}

.text-red, .tt02 {
  color: #ab3600 !important;
}/*# sourceMappingURL=style.css.map */