@charset "UTF-8";
/*=============================================================
 01_base
=============================================================*/
#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
}
#intro .flex-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  #intro .flex-wrap {
    width: 80.3125vw;
    transform: scale(0.9) translate(-49%, -50%);
    transform-origin: 0 0;
  }
}
#intro .flex-wrap .emblem {
  width: 140px;
  margin-right: 30px;
  transform: translateX(130%);
}
@media only screen and (max-width: 768px) {
  #intro .flex-wrap .emblem {
    width: 21.875vw;
    margin-right: 4.6875vw;
  }
}
#intro .flex-wrap .emblem img {
  transform: scale(0);
}
#intro .flex-wrap .logo-txt {
  width: 330px;
  margin-top: 14px;
  width: 0;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #intro .flex-wrap .logo-txt {
    width: 51.5625vw;
    width: 0;
    margin-right: 2.1875vw;
  }
}
#intro .flex-wrap .logo-txt span {
  display: block;
}
#intro .flex-wrap .logo-txt span:nth-child(1) {
  margin-bottom: 11px;
}
@media only screen and (max-width: 768px) {
  #intro .flex-wrap .logo-txt span:nth-child(1) {
    margin-bottom: 1.71875vw;
  }
}
#intro .flex-wrap .logo-txt span img {
  width: 330px;
}
@media only screen and (max-width: 768px) {
  #intro .flex-wrap .logo-txt span img {
    width: 51.5625vw;
  }
}
#intro .flex-wrap img {
  width: 100%;
}

#keyvisual, #header, #content, #share-area, #footer, .bg {
  opacity: 0;
}

.waku-deco {
  position: relative;
  transition: all 0.6s 0.5s ease;
  z-index: 99;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .waku-deco {
    opacity: 1;
  }
}
.waku-deco .sp-deco::before {
  top: -3.75vw;
  transition: all 0.8s ease;
}
.waku-deco .sp-deco::after {
  bottom: -3.75vw;
  transition: all 0.8s ease;
}
.waku-deco .sp-deco span::before {
  left: -1.875vw;
  transition: all 0.8s ease;
}
.waku-deco .sp-deco span::after {
  right: -1.875vw;
  transition: all 0.8s ease;
}
.waku-deco .deco.deco1::before, .waku-deco .deco.deco1::after {
  top: -3.75vw;
  transition: all 0.8s ease;
}
.waku-deco .deco.deco2::before, .waku-deco .deco.deco2::after {
  bottom: -3.75vw;
  transition: all 0.8s ease;
}
.waku-deco .deco.deco3, .waku-deco .deco.deco4, .waku-deco .deco.deco5, .waku-deco .deco.deco6 {
  opacity: 0;
  transition: all 0.3s ease 0.6s;
}
.waku-deco.active {
  opacity: 1;
}
.waku-deco.active .sp-deco::before {
  top: 0vw;
}
.waku-deco.active .sp-deco::after {
  bottom: 0vw;
}
.waku-deco.active .sp-deco span::before {
  left: 0;
}
.waku-deco.active .sp-deco span::after {
  right: 0;
}
.waku-deco.active .deco.deco1::before, .waku-deco.active .deco.deco1::after {
  top: -0.3125vw;
}
.waku-deco.active .deco.deco2::before, .waku-deco.active .deco.deco2::after {
  bottom: -0.3125vw;
}
.waku-deco.active .deco.deco3, .waku-deco.active .deco.deco4, .waku-deco.active .deco.deco5, .waku-deco.active .deco.deco6 {
  opacity: 1;
}

.waku-cover {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.8s ease;
}
@media only screen and (max-width: 768px) {
  .waku-cover {
    display: none;
  }
}
.waku-cover.active {
  width: calc(100vw - 24px);
  height: calc(100vh - 24px);
}
@media only screen and (max-width: 768px) {
  .waku-cover.active {
    width: 96.25vw;
    height: calc(100vh - 3.75vw);
  }
}

#keyvisual .main-img .image {
  overflow: hidden;
  /*
  ズーム（ズームイン）させるためのアニメーション
  コメントアウト部分を入れ替えれば、ズームアウトになります。

  拡大率（scale()）はお好みで！
  */
}
@media only screen and (max-width: 1300px) {
  #keyvisual .main-img .image .pc {
    display: none;
  }
}
#keyvisual .main-img .image .sp {
  display: none;
}
@media only screen and (max-width: 1300px) {
  #keyvisual .main-img .image .sp {
    display: block;
  }
}
#keyvisual .main-img .image.add-animation {
  /* アニメーション名 アニメーションにかかる時間 アニメーションの実行前後の状態 */
  /* zoom-fade 10秒 [実行前]最初のキーフレーム（0%） → [実行後]最後のキーフレーム（100%） */
  animation: zoom-fade 1s both;
}
@keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    transform: scale(1.1);
  }
  100% {
    /*transform: scale(1);*/
    transform: scale(1);
  }
}
#keyvisual .main-img .image img {
  width: 100%;
  height: 1000px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1300px) {
  #keyvisual .main-img .image img {
    height: 156.25vw;
  }
}

#top-bnr {
  padding: 62px 0 45px;
  background-color: #fff;
  margin-bottom: 130px;
  opacity: 0;
}
@media only screen and (max-width: 1300px) {
  #top-bnr {
    padding: 4.7692307692vw 0 3.4615384615vw;
    margin-bottom: 10vw;
  }
}
@media only screen and (max-width: 768px) {
  #top-bnr {
    padding: 7.8125vw 0 5.9375vw;
    margin-bottom: 10vw;
  }
}
@media only screen and (max-width: 768px) {
  #top-bnr.only .slick-track {
    transform: unset !important;
  }
}
#top-bnr ul {
  position: relative;
  width: 1100px;
  margin: 0 auto;
}
@media only screen and (max-width: 1300px) {
  #top-bnr ul {
    width: 84.6153846154vw;
  }
}
@media only screen and (max-width: 768px) {
  #top-bnr ul {
    width: 100%;
  }
}
#top-bnr ul li {
  width: 353px;
  box-sizing: border-box;
  border: 2px solid #000;
  margin: 0 7px;
}
@media only screen and (max-width: 1300px) {
  #top-bnr ul li {
    width: 27.1538461538vw;
    margin: 0 0.5384615385vw;
  }
}
@media only screen and (max-width: 768px) {
  #top-bnr ul li {
    width: 70vw;
    margin: 0 1.875vw;
  }
}
#top-bnr ul li a {
  display: block;
  border: 1px solid #fff;
  box-sizing: border-box;
}
#top-bnr ul li a img {
  width: 100%;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  #top-bnr .slick-list {
    height: 30.3125vw;
  }
}
#top-bnr .slick-arrow {
  font-size: 0;
  border: none;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: url("../img/icon/slide_arrow_gold.svg") no-repeat top center;
  background-size: contain;
  z-index: 2;
}
@media only screen and (max-width: 1300px) {
  #top-bnr .slick-arrow {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
  }
}
@media only screen and (max-width: 768px) {
  #top-bnr .slick-arrow {
    top: 43%;
    width: 9.375vw;
    height: 9.375vw;
  }
}
#top-bnr .slick-arrow.slick-prev {
  transform: translateY(-50%) scale(-1, -1);
  left: -20px;
}
@media only screen and (max-width: 1300px) {
  #top-bnr .slick-arrow.slick-prev {
    left: -1.5384615385vw;
  }
}
@media only screen and (max-width: 768px) {
  #top-bnr .slick-arrow.slick-prev {
    left: 3.125vw;
  }
}
#top-bnr .slick-arrow.slick-next {
  right: -20px;
}
@media only screen and (max-width: 1300px) {
  #top-bnr .slick-arrow.slick-next {
    right: -1.5384615385vw;
  }
}
@media only screen and (max-width: 768px) {
  #top-bnr .slick-arrow.slick-next {
    right: 3.125vw;
  }
}
#top-bnr .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media only screen and (max-width: 1300px) {
  #top-bnr .slick-dots {
    margin-top: 2.3076923077vw;
  }
}
@media only screen and (max-width: 768px) {
  #top-bnr .slick-dots {
    margin-top: 3.125vw;
  }
}
#top-bnr .slick-dots li {
  width: 14px;
  height: 14px;
  border-width: 1px;
  margin: 0 5px;
  background-color: #fff;
  border-radius: 20px;
}
@media only screen and (max-width: 1300px) {
  #top-bnr .slick-dots li {
    width: 1.0769230769vw;
    height: 1.0769230769vw;
  }
}
@media only screen and (max-width: 768px) {
  #top-bnr .slick-dots li {
    width: 2.1875vw;
    height: 2.1875vw;
    margin: 0 0.78125vw;
    border-radius: 3.125vw;
  }
}
#top-bnr .slick-dots li button {
  font-size: 0;
  border: none;
}
#top-bnr .slick-dots li.slick-active {
  border-color: #887D54;
  background-color: #887D54;
}

#content section h2 {
  text-align: center;
  margin-bottom: 82px;
}
@media only screen and (max-width: 1300px) {
  #content section h2 {
    margin-bottom: 6.3076923077vw;
  }
}
@media only screen and (max-width: 768px) {
  #content section h2 {
    margin-bottom: 10.625vw;
  }
}
#content section h2 span {
  line-height: 1em;
}
#content section h2 span.en {
  font-size: 86px;
  font-family: "Hanken Grotesk", sans-serif;
}
@media only screen and (max-width: 768px) {
  #content section h2 span.en {
    font-size: 12.5vw;
  }
}
#content section h2 span.jp {
  display: block;
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  #content section h2 span.jp {
    font-size: 2.8125vw;
  }
}
#content section .inner {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1300px) {
  #content section .inner {
    width: 92.3076923077vw;
  }
}
@media only screen and (max-width: 768px) {
  #content section .inner {
    width: auto;
    margin: 0 1.25vw;
  }
}
#content section .btn {
  position: relative;
  width: 300px;
  min-height: 60px;
  border-radius: 50px;
  text-align: center;
  overflow: hidden;
  margin: 0 auto;
  background-color: #887D54;
  border: 2px solid #887D54;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 1300px) {
  #content section .btn {
    width: 23.0769230769vw;
    min-height: 4.6153846154vw;
  }
}
@media only screen and (max-width: 768px) {
  #content section .btn {
    width: 59.0625vw;
    min-height: 11.875vw;
    border-radius: 7.8125vw;
    border-width: 0.3125vw;
  }
}
#content section .btn a {
  position: relative;
  display: block;
  padding: 18px 0;
  line-height: 1.2;
  font-size: 22px;
  color: #fff;
  font-family: "Hanken Grotesk", sans-serif;
  text-decoration: none;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 1300px) {
  #content section .btn a {
    padding: 1.3846153846vw 0;
    font-size: 1.6923076923vw;
  }
}
@media only screen and (max-width: 768px) {
  #content section .btn a {
    font-size: 4.53125vw;
    padding: 3.4375vw 0;
  }
}
#content section .btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 30px;
}
@media only screen and (max-width: 1300px) {
  #content section .btn a::before {
    right: 1.0769230769vw;
    width: 2vw;
    height: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  #content section .btn a::before {
    right: 2.8125vw;
    width: 5.15625vw;
    height: 5.15625vw;
  }
}
#content section .btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 16px;
  height: 13px;
  background: url("../img/icon/btn_arrow_gold.svg") no-repeat top center;
  background-size: contain;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 1300px) {
  #content section .btn a::after {
    right: 1.3846153846vw;
    width: 1.2307692308vw;
    height: 1vw;
  }
}
@media only screen and (max-width: 768px) {
  #content section .btn a::after {
    right: 3.59375vw;
    width: 3.125vw;
    height: 2.65625vw;
  }
}
#content section .btn:hover {
  background-color: #fff;
}
#content section .btn:hover a {
  color: #887D54;
}
#content section .btn:hover a::after {
  transform: translateY(-50%) scale(1.4);
}

#news {
  margin-bottom: 125px;
}
@media only screen and (max-width: 1300px) {
  #news {
    margin-bottom: 9.6153846154vw;
  }
}
@media only screen and (max-width: 768px) {
  #news {
    margin-bottom: 18.4375vw;
  }
}
#news .list {
  margin-bottom: 64px;
}
@media only screen and (max-width: 1300px) {
  #news .list {
    margin-bottom: 4.9230769231vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list {
    margin-bottom: 5.46875vw;
  }
}
#news .list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media only screen and (max-width: 1300px) {
  #news .list ul {
    margin: 0 -0.7692307692vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul {
    justify-content: left;
    width: 95.3125vw;
    margin: 0 -0.78125vw;
  }
}
#news .list ul li {
  position: relative;
  width: 285px;
  border-radius: 20px;
  background-color: #fff;
  margin: 0 10px;
}
@media only screen and (max-width: 1300px) {
  #news .list ul li {
    width: 21.9230769231vw;
    margin: 0 0.7692307692vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul li {
    width: 44.53125vw;
    border-radius: 3.125vw;
    margin: 0 1.5625vw 4.6875vw;
  }
}
#news .list ul li.new::after {
  content: "";
  position: absolute;
  top: -22px;
  left: -7px;
  width: 72px;
  height: 72px;
  background: url("../img/icon/new.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 1300px) {
  #news .list ul li.new::after {
    top: -1.6923076923vw;
    left: -0.5384615385vw;
    width: 5.5384615385vw;
    height: 5.5384615385vw;
  }
}
@media only screen and (max-width: 768px) {
  #news .list ul li.new::after {
    top: -3.4375vw;
    left: -1.09375vw;
    width: 12.5vw;
    height: 12.5vw;
  }
}
#news .list ul li a {
  display: block;
  padding: 16px;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  #news .list ul li a {
    padding: 2.5vw;
  }
}
#news .list ul li a:hover .thumb img {
  transform: scale(1.1);
}
#news .list ul li a:hover .category {
  background-color: #6B629F;
}
#news .list ul li a:hover .category p {
  color: #fff;
}
#news .list ul li a:hover .category.products {
  background-color: #DD7DAC;
}
#news .list ul li a:hover .category.event {
  background-color: #7DC9DD;
}
#news .list ul li a:hover .category.rule {
  background-color: #88DC7D;
}
#news .list ul li a:hover .category.campaign {
  background-color: #D9B86E;
}
#news .list ul li a:hover .category.other {
  background-color: #B96FD9;
}
#news .list ul li .thumb {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
@media only screen and (max-width: 768px) {
  #news .list ul li .thumb {
    border-radius: 1.5625vw;
    margin-bottom: 1.875vw;
  }
}
#news .list ul li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
#news .list ul li .flex-wrap {
  align-items: center;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  #news .list ul li .flex-wrap {
    margin-bottom: 1.25vw;
  }
}
#news .list ul li time {
  font-size: 18px;
  line-height: 1;
  font-family: "Hanken Grotesk", sans-serif;
  margin-right: 8px;
}
@media only screen and (max-width: 768px) {
  #news .list ul li time {
    font-size: 3.125vw;
    margin-right: 1.875vw;
  }
}
#news .list ul li .category {
  width: 90px;
  background-color: #fff;
  border: 1px solid #eee;
  text-align: center;
  padding: 5px 0;
  border-radius: 30px;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 768px) {
  #news .list ul li .category {
    width: 14.0625vw;
    padding: 0.78125vw 0;
  }
}
#news .list ul li .category p {
  font-size: 14px;
  line-height: 1;
  font-family: "Hanken Grotesk", sans-serif;
  transition: all 0.25s ease;
}
@media only screen and (max-width: 768px) {
  #news .list ul li .category p {
    font-size: 2.5vw;
  }
}
#news .list ul li .category.products {
  border-color: #DD7DAC;
}
#news .list ul li .category.products p {
  color: #DD7DAC;
}
#news .list ul li .category.event {
  border-color: #7DC9DD;
}
#news .list ul li .category.event p {
  color: #7DC9DD;
}
#news .list ul li .category.rule {
  border-color: #88DC7D;
}
#news .list ul li .category.rule p {
  color: #88DC7D;
}
#news .list ul li .category.campaign {
  border-color: #D9B86E;
}
#news .list ul li .category.campaign p {
  color: #D9B86E;
}
#news .list ul li .category.other {
  border-color: #B96FD9;
}
#news .list ul li .category.other p {
  color: #B96FD9;
}
#news .list ul li .text {
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  margin-right: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media only screen and (max-width: 768px) {
  #news .list ul li .text {
    font-size: 3.125vw;
  }
}
#news .list ul li.active .category p {
  color: #fff;
}
#news .list ul li.active .category.products {
  background-color: #DD7DAC;
}