@charset "UTF-8";
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 999;
  background: transparent;
}
.header .on {
  display: none;
}
.header .off {
  display: block;
}
.header.active {
  background: #fff !important;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 48vw;
  }
}
.header__information {
  background: #000000;
  padding: 13px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__information {
    overflow: auto;
    -ms-overflow-style: none;
  }
  .header__information::-webkit-scrollbar {
    display: none;
  }
}
.header__information p {
  font-size: 12px;
  text-align: center;
  color: #fff;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .header__information p {
    font-size: 3.2vw;
    width: -moz-max-content;
    width: max-content;
    white-space: nowrap;
  }
}
.header__inner {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 2.6666666667vw 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav > ul {
  display: flex;
  align-items: center;
}
.header__nav > ul > li {
  padding: 25px 20px;
}
.header__nav > ul > li > a {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  color: #fff !important;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 1200px) {
  .header__nav > ul > li > a {
    font-size: 13px;
  }
}
.header__nav > ul .megamenuOpen {
  cursor: pointer;
  position: relative;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__icons li {
  position: relative;
}
.header__icons li .counter {
  top: -2px;
  right: -7px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  font-size: 10px;
  width: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  height: 12px;
}
.header__search {
  position: relative;
  border-bottom: 1px solid #fff !important;
  width: 180px;
  color: #fff !important;
}
@media screen and (max-width: 768px) {
  .header__search {
    display: none;
  }
}
.header__search input {
  width: 100%;
  background: transparent;
  box-sizing: border-box;
  padding: 10px;
  border: none;
  color: #fff;
  outline: none !important;
  border-radius: 0 !important;
  background: none !important;
}
.header__search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
}
.header.is_active {
  background: #fff;
}
.header.is_active .counter {
  background: #000;
  color: #fff;
}
.header.is_active .header__nav > ul > li > a {
  color: #000 !important;
}
.header.is_active .header__search {
  border-bottom: 1px solid #000 !important;
}
.header.is_active .header__search input {
  color: #000 !important;
}
.header.is_active .on {
  display: block;
}
.header.is_active .off {
  display: none;
}
.header.active {
  background: #fff !important;
}
.header.active .counter {
  background: #000 !important;
  color: #fff !important;
}
.header.active .header__nav > ul > li > a {
  color: #000 !important;
}
.header.active .header__search {
  border-bottom: 1px solid #000 !important;
}
.header.active .header__search input {
  color: #000 !important;
}
.header.active .on {
  display: block;
}
.header.active .off {
  display: none;
}

.megamenu {
  display: none;
  background: #EFEEEA;
  padding: 50px;
  z-index: 1000;
  position: fixed;
  top: 115px;
  left: 50%;
  transform: translateX(-50%);
  width: 1140px;
  max-width: 92vw;
}
.megamenu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.megamenu ul li span {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.megamenu ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.megamenu ul li .links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 20px;
}
.megamenu ul li .links a {
  display: block;
  text-align: center;
}
.megamenu ul li .links img {
  margin-bottom: 15px;
}
.megamenu ul li .links p {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .megamenu {
    display: none !important;
  }
}

.megamenu03 {
  position: absolute;
  left: 0;
  transform: translateX(0);
  width: -moz-max-content;
  width: max-content;
  top: 100%;
}

/* ハンバーガーボタン */
.header__btn {
  display: none;
  /* PCでは非表示 */
  width: 23px;
  height: 12px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  /* メニューより上に */
}

.header__btn span {
  display: block;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}

.header__btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__btn {
    display: flex;
  }
}

.is_active .header__btn span {
  background: #000;
}

.active .header__btn span {
  background: #000 !important;
}

body {
  padding-top: 0 !important;
}

#sub-column {
  display: none !important;
}

#contents {
  max-width: unset !important;
  padding: 0 0 0 !important;
  width: 100% !important;
  overflow: unset !important;
}

#main-column {
  float: unset !important;
  width: 100% !important;
  padding: 0 !important;
}

#main-column {
  margin-bottom: 0 !important;
}

#main-column h2 {
  border-top: 0;
  padding: 0;
}

.w100 .freeArea2 {
  margin-bottom: 0;
  padding-bottom: 0;
}

.fv {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 100vh;
    height: 100svh;
  }
}
.fv__slider {
  height: 100%;
  /* ズームイン */
  /* ズームアウト */
}
.fv__slider .swiper-slide {
  display: block;
  height: 100%;
}
.fv__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__slider .swiper-slide-active .fv__slider--itemImg,
.fv__slider .swiper-slide-duplicate-active .fv__slider--itemImg,
.fv__slider .swiper-slide-prev .fv__slider--itemImg {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center center/cover;
  /* ズームイン */
  animation: fvZoomIn 10s linear 0s normal both;
  /*ズームアウト */
}
@keyframes fvZoomIn {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fvZoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}
.fv__inner {
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    padding: 0;
  }
}
.fv__contents {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  position: absolute;
  z-index: 10;
  bottom: 20px;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .fv__contents {
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 5.3333333333vw 6.4vw 6.6666666667vw;
  }
}
.fv__contents--en {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: #fff;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .fv__contents--en {
    justify-content: center;
    font-size: 4.8vw;
  }
}
.fv__contents h3 {
  font-size: 32px;
  font-weight: normal;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 25px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .fv__contents h3 {
    text-align: center;
    font-size: 5.8666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.fv__contents .more {
  color: #fff;
  border-color: #fff;
}
@media screen and (max-width: 768px) {
  .fv__contents .more {
    margin: 0 auto;
  }
}
.fv__contents .more:hover {
  border-color: #B5B73B;
  opacity: 1;
  background: #B5B73B;
  color: #fff;
}

.news {
  background: #FFFFFF;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 0;
  }
}
.news__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.news__slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .news__slider {
    padding: 4vw 10.6666666667vw;
  }
}
.news .swiper-slide {
  display: flex;
  align-items: center;
  gap: 26px;
}
@media screen and (max-width: 768px) {
  .news .swiper-slide {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.news .swiper-slide .date {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .news .swiper-slide .date {
    font-size: 3.7333333333vw;
  }
}
.news .swiper-slide .title {
  font-size: 14px;
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  .news .swiper-slide .title {
    max-width: 100%;
    font-size: 3.7333333333vw;
  }
}
.news .swiper-controls {
  position: absolute;
  display: flex;
  align-items: center;
  right: 0;
  z-index: 30;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .news .swiper-controls {
    position: unset;
  }
}
.news .swiper-button-prev,
.news .swiper-button-next {
  position: unset;
  width: 12px;
  height: 12px;
}
@media screen and (max-width: 768px) {
  .news .swiper-button-prev,
  .news .swiper-button-next {
    position: absolute;
    top: 70%;
  }
}
@media screen and (max-width: 768px) {
  .news .swiper-button-prev {
    left: 10px !important;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.event {
  padding: 100px 40px;
  background: #EFEEEA;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .event {
    padding: 16vw 5.3333333333vw;
  }
}
.event__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .event__inner {
    display: block;
  }
}
.event .section__title {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .event .section__title {
    width: 100%;
    text-align: center;
  }
}
.event__slider {
  width: 60%;
  padding: 0 35px 30px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .event__slider {
    width: 100%;
    overflow: visible;
    margin-top: 10.6666666667vw;
    padding-bottom: 40px;
  }
}
.event__slider .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  margin: 0 10px !important;
}
.event__slider .swiper-pagination-bullet-active {
  background: #000;
}
.event__slider .swiper-button-prev {
  left: 0;
}
@media screen and (max-width: 768px) {
  .event__slider .swiper-button-prev {
    width: 44px;
    height: 44px;
  }
}
.event__slider .swiper-button-next {
  right: 0;
}
@media screen and (max-width: 768px) {
  .event__slider .swiper-button-next {
    width: 44px;
    height: 44px;
  }
}
.event__slider--item {
  position: relative;
  display: block;
}
.event__slider--item p {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  font-size: 70px;
  font-weight: normal;
  white-space: nowrap;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 1200px) {
  .event__slider--item p {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .event__slider--item p {
    font-size: 12.5333333333vw;
  }
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  margin: 0 10px !important;
}

.swiper-pagination-bullet-active {
  background: #000;
}

.tea {
  padding: 100px 40px;
  overflow: hidden;
  border-bottom: 1px solid #A7A098;
}
@media screen and (max-width: 768px) {
  .tea {
    padding: 26.6666666667vw 5.3333333333vw 18.6666666667vw;
  }
}
.tea__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tea .section__title {
  text-align: center;
}
.tea__slider {
  position: relative;
  margin-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .tea__slider {
    margin-top: 21.3333333333vw;
  }
}
.tea__slider .swiper-pagination-bullet {
  background: #EFEEEA;
}
.tea__slider .swiper-pagination-bullet-active {
  background: #000;
}
.tea__slider .swiper-button-prev {
  left: 25.3%;
  top: 180px;
}
@media screen and (max-width: 768px) {
  .tea__slider .swiper-button-prev {
    width: 44px;
    height: 44px;
    top: 17%;
    left: 10px;
  }
}
.tea__slider .swiper-button-next {
  right: 25.3%;
  top: 180px;
}
@media screen and (max-width: 768px) {
  .tea__slider .swiper-button-next {
    width: 44px;
    height: 44px;
    top: 17%;
    right: 10px;
  }
}
.tea__slider--item {
  text-align: center;
  transform: scale(1) !important;
  transition: 0.3s ease;
  opacity: 0.4 !important;
}
.tea__slider--item .tea__slider--itemContents {
  display: none;
}
.tea__slider--item.swiper-slide-active {
  transform: scale(1.2) !important;
  z-index: 100;
  opacity: 1 !important;
}
.tea__slider--item.swiper-slide-active .tea__slider--itemContents {
  display: block;
}
.tea__slider--itemImg {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .tea__slider--itemImg {
    margin-bottom: 5.3333333333vw;
  }
}
.tea__slider--itemImg img {
  width: 100%;
}
.tea__slider--itemTitle {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .tea__slider--itemTitle {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.tea__slider--itemText {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .tea__slider--itemText {
    font-size: 3.4666666667vw;
  }
}
.tea__slider--itemTag {
  width: -moz-max-content;
  width: max-content;
  font-size: 12px;
  background: #EFEEEA;
  padding: 6px 10px;
  margin: 0 auto 22px;
}
@media screen and (max-width: 768px) {
  .tea__slider--itemTag {
    font-size: 3.2vw;
  }
}
.tea__slider--item .more {
  color: #000;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .tea__slider--item .more {
    transform: scale(0.8);
  }
}
.tea__slider--item .more:hover {
  color: #fff;
}

.biscuits {
  padding: 100px 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .biscuits {
    padding: 26.6666666667vw 5.3333333333vw 18.6666666667vw;
  }
}
.biscuits__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.biscuits .section__title {
  text-align: center;
}
.biscuits .tea__slider {
  position: relative;
  margin-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .biscuits .tea__slider {
    margin-top: 21.3333333333vw;
  }
}
.biscuits .tea__slider .swiper-pagination-bullet {
  background: #EFEEEA;
}
.biscuits .tea__slider .swiper-pagination-bullet-active {
  background: #000;
}
.biscuits .tea__slider .swiper-button-prev {
  left: 25.3%;
  top: 180px;
}
@media screen and (max-width: 768px) {
  .biscuits .tea__slider .swiper-button-prev {
    width: 44px;
    height: 44px;
    top: 17%;
    left: 10px;
  }
}
.biscuits .tea__slider .swiper-button-next {
  right: 25.3%;
  top: 180px;
}
@media screen and (max-width: 768px) {
  .biscuits .tea__slider .swiper-button-next {
    width: 44px;
    height: 44px;
    top: 17%;
    right: 10px;
  }
}
.biscuits .tea__slider--item {
  text-align: center;
  transform: scale(1) !important;
  transition: 0.3s ease;
  opacity: 0.4 !important;
}
.biscuits .tea__slider--item .tea__slider--itemContents {
  display: none;
}
.biscuits .tea__slider--item.swiper-slide-active {
  transform: scale(1.2) !important;
  z-index: 100;
  opacity: 1 !important;
}
.biscuits .tea__slider--item.swiper-slide-active .tea__slider--itemContents {
  display: block;
}
.biscuits .tea__slider--itemImg {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .biscuits .tea__slider--itemImg {
    margin-bottom: 5.3333333333vw;
  }
}
.biscuits .tea__slider--itemImg img {
  width: 100%;
}
.biscuits .tea__slider--itemTitle {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .biscuits .tea__slider--itemTitle {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.biscuits .tea__slider--itemText {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .biscuits .tea__slider--itemText {
    font-size: 3.4666666667vw;
  }
}
.biscuits .tea__slider--itemTag {
  width: -moz-max-content;
  width: max-content;
  font-size: 12px;
  background: #EFEEEA;
  padding: 6px 10px;
  margin: 0 auto 22px;
}
@media screen and (max-width: 768px) {
  .biscuits .tea__slider--itemTag {
    font-size: 3.2vw;
  }
}
.biscuits .tea__slider--item .more {
  color: #000;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .biscuits .tea__slider--item .more {
    transform: scale(0.8);
  }
}
.biscuits .tea__slider--item .more:hover {
  color: #fff;
}

.enjoy {
  padding: 100px 40px;
  background: #EFEEEA;
}
@media screen and (max-width: 768px) {
  .enjoy {
    padding: 26.6666666667vw 5.3333333333vw;
  }
  .enjoy .section__title {
    text-align: center;
  }
}
.enjoy__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.enjoy__lists {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4列 */
  grid-template-rows: auto auto;
  /* 2行 */
  grid-template-areas: "item1 item2 item4 item5" "item1 item3 item4 item6";
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .enjoy__lists {
    margin-top: 10.6666666667vw;
    display: block;
  }
}
.enjoy .enjoy__list {
  position: relative;
}
@media screen and (max-width: 768px) {
  .enjoy .enjoy__list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .enjoy .enjoy__list--img {
    width: 46%;
  }
}
.enjoy .enjoy__list--img img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .enjoy .enjoy__list--img img {
    aspect-ratio: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.enjoy .enjoy__list--contents {
  padding: 20px 16px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 1200px) {
  .enjoy .enjoy__list--contents {
    padding: 15px 10px;
  }
}
@media screen and (max-width: 768px) {
  .enjoy .enjoy__list--contents {
    width: 50%;
    position: unset;
    background: transparent;
    padding: 0;
  }
}
.enjoy .enjoy__list--contents h3 {
  color: #fff;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 1200px) {
  .enjoy .enjoy__list--contents h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .enjoy .enjoy__list--contents h3 {
    color: #000;
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.enjoy .enjoy__list--contents p {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .enjoy .enjoy__list--contents p {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .enjoy .enjoy__list--contents p {
    color: #000;
    font-size: 3.7333333333vw;
  }
}
.enjoy .enjoy__list:nth-child(1) {
  grid-area: item1;
}
.enjoy .enjoy__list:nth-child(2) {
  grid-area: item2;
}
.enjoy .enjoy__list:nth-child(3) {
  grid-area: item3;
}
.enjoy .enjoy__list:nth-child(4) {
  grid-area: item4;
}
.enjoy .enjoy__list:nth-child(5) {
  grid-area: item5;
}
.enjoy .enjoy__list:nth-child(6) {
  grid-area: item6;
}

.caddy {
  padding: 100px 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .caddy {
    padding: 37.3333333333vw 5.3333333333vw 26.6666666667vw;
  }
}
.caddy__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.caddy__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .caddy__box {
    display: block;
  }
}
.caddy__img {
  width: 34%;
}
@media screen and (max-width: 768px) {
  .caddy__img {
    width: 52%;
    margin-bottom: 10.6666666667vw;
  }
}
.caddy__text {
  margin: 45px 0 25px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .caddy__text {
    margin-top: 6.6666666667vw;
  }
}
.caddy__contents {
  width: 62%;
  padding-bottom: 80px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .caddy__contents {
    width: 100%;
    padding-bottom: 42.6666666667vw;
  }
  .caddy__contents .section__title {
    text-align: center;
  }
  .caddy__contents .more {
    margin: 0 auto;
  }
}
.caddy__contents .caddy__img01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 185px;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .caddy__contents .caddy__img01 {
    width: 130px;
    top: -40px;
  }
}
.caddy__contents .caddy__img02 {
  position: absolute;
  width: 360px;
  bottom: 0;
  z-index: -1;
  left: 50%;
}
@media screen and (max-width: 1200px) {
  .caddy__contents .caddy__img02 {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .caddy__contents .caddy__img02 {
    width: 56vw;
    left: unset;
    right: 20px;
  }
}

.set {
  padding: 100px 40px;
  background: #EFEEEA;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .set {
    padding: 26.6666666667vw 5.3333333333vw;
  }
  .set .section__title {
    text-align: center;
  }
}
.set__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.set .section__text {
  text-align: left;
}
.set__slider {
  margin-top: 60px;
  /* overflow: hidden; */
}
@media screen and (max-width: 768px) {
  .set__slider {
    overflow: visible;
    margin-top: 10.6666666667vw;
  }
}
.set__slider .swiper-button-prev {
  left: -40px;
  top: 45%;
}
@media screen and (max-width: 768px) {
  .set__slider .swiper-button-prev {
    width: 44px;
    height: 44px;
    left: 10px;
    top: 40%;
  }
}
.set__slider .swiper-button-next {
  right: -40px;
  top: 45%;
}
@media screen and (max-width: 768px) {
  .set__slider .swiper-button-next {
    width: 44px;
    height: 44px;
    right: 10px;
    top: 40%;
  }
}
.set__slider--itemImg {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .set__slider--itemImg {
    margin-bottom: 5.3333333333vw;
  }
}
.set__slider--itemImg img {
  width: 100%;
}
.set__slider--itemTitle {
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .set__slider--itemTitle {
    font-size: 4.2666666667vw;
  }
}
.set__slider--itemText {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .set__slider--itemText {
    font-size: 3.7333333333vw;
  }
}

@media screen and (max-width: 768px) {
  .gift {
    margin-top: 26.6666666667vw;
  }
}
.gift__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .gift__inner {
    display: block;
  }
}
.gift__img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .gift__img {
    width: 100%;
  }
}
.gift__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gift__contents {
  background: #B5B73B;
  padding: 5%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .gift__contents {
    width: 100%;
    padding: 16vw 5.3333333333vw 10.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .gift .section__title {
    text-align: center;
  }
}
.gift .section__title span {
  color: #000;
}
.gift .section__text {
  text-align: left;
  margin-bottom: 40px;
}
.gift .more {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .gift .more {
    margin: 0 auto;
  }
}
.gift .more:hover {
  background: #000;
  color: #fff;
}

.instagram {
  padding: 100px 40px;
  background: #EFEEEA;
}
@media screen and (max-width: 768px) {
  .instagram {
    padding: 16vw 5.3333333333vw;
  }
}
.instagram .more {
  margin: 40px auto 0;
}
.instagram__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.instagram__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 40px;
  font-weight: normal;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 768px) {
  .instagram__title {
    font-size: 9.3333333333vw;
  }
}
.instagram__title img {
  width: 40px;
}
@media screen and (max-width: 768px) {
  .instagram__title img {
    width: 8vw;
  }
}
.instagram__lists {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.instagram__lists img {
  vertical-align: bottom;
  aspect-ratio: 1;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .instagram__lists {
    margin-top: 10.6666666667vw;
    grid-template-columns: repeat(2, 1fr);
  }
}

.brand {
  padding: 100px 40px;
}
@media screen and (max-width: 768px) {
  .brand {
    padding: 13.3333333333vw 0;
  }
}
.brand__inner {
  padding: 85px 40px;
  max-width: 1000px;
  margin: 0 auto;
  background: #000;
  position: relative;
}
@media screen and (max-width: 768px) {
  .brand__inner {
    padding: 13.3333333333vw 10.6666666667vw;
  }
}
.brand__inner::after {
  content: "";
  width: 97%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .brand__inner::after {
    width: 90%;
    height: 85%;
  }
}
.brand__title {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .brand__title {
    margin-bottom: 6.9333333333vw;
  }
}
.brand__title img {
  width: 231px;
}
@media screen and (max-width: 768px) {
  .brand__title img {
    width: 55.7333333333vw;
  }
}
.brand p {
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 1.7;
}

.shop {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .shop {
    margin-bottom: 13.3333333333vw;
  }
}
.shop__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  .shop__inner {
    display: block;
  }
}
.shop__img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .shop__img {
    width: 100%;
  }
}
.shop__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .shop__img img {
    aspect-ratio: 1.7;
    vertical-align: bottom;
  }
}
.shop__contents {
  background: #6D6D6D;
  padding: 5%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .shop__contents {
    padding: 13.3333333333vw 5.3333333333vw;
    width: 100%;
    text-align: center;
  }
}
.shop .section__title {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .shop .section__title h2 {
    margin-bottom: 8vw;
  }
}
.shop .section__title span {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .shop .section__title {
    margin-bottom: 6.9333333333vw;
  }
}
.shop .address {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
}
.shop .address a {
  margin-left: 10px;
}

.voice {
  padding: 100px 40px;
  background: url(../img/top/voice-img.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .voice {
    padding: 24vw 5.3333333333vw;
    background: url(../img/top/voice-bg-sp.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.voice__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.voice .section__title {
  text-align: center;
  color: #fff;
}
.voice .section__title span {
  color: #fff;
}
.voice .section__text {
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .voice .section__text {
    text-align: center;
    margin-bottom: 10.6666666667vw;
  }
}
.voice .more {
  background: #fff;
  margin: 0 auto;
}
.voice .more:hover {
  background: #B5B73B;
  color: #fff;
}

.img img {
  vertical-align: bottom;
}

.fade-in {
  opacity: 0;
  /* 初期状態で透明 */
  transform: translateY(50px);
  /* 下に少しずらす */
  transition: opacity 1s ease, transform 1s ease;
  /* アニメーションの設定 */
}

.fade-in01 {
  transition: opacity 1s 0.3s ease, transform 1s 0.3s ease;
  /* アニメーションの設定 */
}

.fade-in02 {
  transition: opacity 1s 0.5s ease, transform 1s 0.5s ease;
  /* アニメーションの設定 */
}

.fade-in03 {
  transition: opacity 1s 0.5s ease, transform 1s 0.5s ease;
  /* アニメーションの設定 */
}

.fade-in04 {
  transition: opacity 1s 0.7s ease, transform 1s 0.7s ease;
  /* アニメーションの設定 */
}

.fade-in05 {
  transition: opacity 1s 0.9s ease, transform 1s 0.9s ease;
  /* アニメーションの設定 */
}

.fade-in06 {
  transition: opacity 1s 1.1s ease, transform 1s 1.1s ease;
  /* アニメーションの設定 */
}

.fade-in07 {
  transition: opacity 1s 1.3s ease, transform 1s 1.3s ease;
  /* アニメーションの設定 */
}

.fade-in.show {
  opacity: 1;
  /* 表示 */
  transform: translateY(0);
  /* 元の位置 */
}

.img-wrap {
  opacity: 0;
}

.img-wrap.in {
  transition: opacity 0.3s 0.5s ease;
  opacity: 1;
  animation: img-wrap 2.4s 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes img-wrap {
  0% {
    clip-path: polygon(30% 30%, 70% 30%, 70% 70%, 30% 70%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}/*# sourceMappingURL=top.css.map */

.expl-fixed {
  z-index: 10;
}