@charset "UTF-8";
:root {
  --purple: #48436d;
  --gold: #b39b6b;
}

html,
body {
  font-family: "Noto Serif JP", serif;
}

section {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  section {
    padding: 90px 0;
  }
}

a {
  text-decoration: none;
}

.header-top {
  height: 70px;
  background-color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 34px;
  padding-right: 34px;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .header-top {
    height: 50px;
  }
}

.vanilla-logo {
  width: 315px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .vanilla-logo {
    width: 208px !important;
    aspect-ratio: 315/46;
  }
}
.vanilla-logo img {
  width: 100%;
  height: 100%;
}

.twitter-top {
  width: 38px;
  height: 38px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .twitter-top {
    width: 24px;
    height: 24px;
    transform: translateY(-4px);
  }
}
.twitter-top img {
  width: 100%;
  height: auto;
}

main {
  overflow: hidden;
  position: relative;
}
main::before {
  content: "";
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
  width: 10%;
  max-width: 100px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
main::after {
  content: "";
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.1);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  width: 10%;
  max-width: 100px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

section.top-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38px 0 15px;
  width: 100%;
  height: auto;
  background-image: url(../img/bg.jpg);
  background-repeat: repeat;
  background-size: auto;
}

.top-bg2 {
  position: relative;
  display: flex;
  justify-content: center;
  height: auto;
  width: 100%;
  padding: 40px;
  background-image: url(../img/bg.jpg);
  background-repeat: repeat;
  background-size: auto;
  z-index: 97;
}
@media screen and (max-width: 767px) {
  .top-bg2 {
    bottom: 14%;
  }
}
.top-bg2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../img/pattern-line.svg);
  background-repeat: repeat-x;
  height: 79px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-bg2::after {
    background-image: url(../img/sm-pattern-line.png);
    background-repeat: repeat-x;
    height: 53px;
    width: 100%;
  }
}

.fes-logo {
  display: block;
  width: 373px;
  height: auto;
  margin-bottom: 10px;
}

ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
ul li.nav-btn {
  list-style: none;
}

@media screen and (min-width: 768px) {
  .sm-hidden {
    display: inline-block;
  }
  .pc-hidden {
    display: none;
  }
}
.top-visual img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .sm-hidden {
    display: none;
  }
  .pc-hidden {
    display: inline-block;
  }
  .fes-logo {
    width: 70%;
  }
  .top-visual {
    display: grid;
    place-items: center;
  }
  .top-visual img {
    width: 100%;
  }
  header img {
    width: 98%;
  }
}
.nav-container {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  height: auto;
  width: 100%;
  padding: 0;
  background-image: url(../img/bg.jpg);
  background-repeat: repeat;
  background-size: auto;
  z-index: 98;
}
.nav-container .nav-menu {
  padding: 0;
  margin-bottom: -10px;
}
@media screen and (max-width: 767px) {
  .nav-container {
    padding-bottom: 0px;
  }
}

.nav-btn {
  display: grid;
  place-items: center;
  width: 198px;
  height: 108px;
  margin: 0px -8px;
  background-image: url(../img/pc-menu.svg);
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  font-family: "fot-chiaro-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  color: #82652b !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s ease;
}
.nav-btn:hover {
  background-image: url(../img/pc-menu-hover.svg);
}
.nav-btn a {
  color: #82652b;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
.nav-btn a p {
  margin: 0;
  line-height: 1.2;
  transform: translateY(-3px);
}
.nav-btn a p span {
  letter-spacing: -0.1em;
}

@media screen and (max-width: 767px) {
  .nav-btn {
    display: grid;
    place-items: center;
    width: 25vw;
    height: 20vw;
    background-image: url(../img/sm-menu.png);
    background-size: 100%;
    padding-bottom: 2vw;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  .nav-btn:hover {
    background-image: url(../img/sm-menu-hover.png);
    background-size: 100%;
  }
  .nav-btn p {
    font-size: max(11px, 3vw);
    line-height: 1.4;
  }
}
.sec1 {
  overflow-y: visible;
  position: relative;
  border-top: solid 10px #c2aa7a;
  border-bottom: solid 10px #c2aa7a;
  width: 100%;
  background-image: url(../img/pc-sec1-bg-8.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}
.sec1 .sec1-title {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  text-align: center;
}
.sec1 .sec1-title img {
  width: 737px;
  height: 284px;
}
.sec1 .sec1-title h1 {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  transform: translateX(3px);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff, 0 0 8px rgba(72, 67, 109, 0.6901960784), 0 0 15px rgba(72, 67, 109, 0.1254901961);
  color: var(--purple);
}
.sec1 .sec1-title h1 span {
  font-size: 36px;
}
.sec1 p.sec1-body {
  margin: 45px auto 0;
  width: 700px;
  font-weight: 700;
  font-size: 18px;
  line-height: 2;
  color: #48436d;
  text-shadow: 0 0 6px rgba(153, 95, 2, 0.2666666667), 0 0 8px rgba(161, 100, 1, 0.3450980392), 0 0 10px rgba(182, 112, 0, 0.1921568627);
}
@media screen and (max-width: 810px) {
  .sec1 p.sec1-body {
    width: 90% !important;
  }
}
.sec1 .deco-line {
  margin: 60px 0 30px;
  text-align: center;
}
.sec1 .deco-line img {
  width: 100%;
  max-width: 700px;
}

@media screen and (max-width: 880px) {
  .sec1 .sec1-title img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec1 {
    border-top: solid 7px #c2aa7a;
    border-bottom: solid 7px #c2aa7a;
    width: 100%;
    background-image: url(../img/pc-sec1-bg-8.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
  }
  .sec1 .sec1-title {
    position: relative;
    width: 100%;
    text-align: center;
  }
  .sec1 .sec1-title img {
    width: 90%;
    height: auto;
  }
  .sec1 .sec1-title h1 {
    top: 16vw;
    transform: translateX(3px);
    font-size: max(17px, 4.5vw);
    line-height: 1.6;
  }
  .sec1 .sec1-title h1 span {
    font-size: max(22px, 6vw);
  }
  .sec1 p.sec1-body {
    margin: 45px auto 0;
    width: 85%;
    font-weight: 700;
    font-size: max(13px, 3vw);
    line-height: 2;
    text-align: justify;
    text-shadow: 0 0 6px rgba(153, 95, 2, 0.2666666667), 0 0 8px rgba(161, 100, 1, 0.3450980392), 0 0 10px rgba(182, 112, 0, 0.1921568627);
  }
  .sec1 .deco-line {
    width: 90%;
    margin: 60px 0 30px;
    text-align: center;
  }
}
.spacer {
  position: relative;
  width: 100%;
  height: 100px;
  background-image: url(../img/bg.jpg);
  background-repeat: repeat;
  background-size: auto;
}
.spacer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/pattern-line.png);
  transform: rotate(180deg);
  background-repeat: repeat-x;
  height: 79px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .spacer::before {
    background-image: url(../img/sm-pattern-line.png);
    background-position: 0 26px;
  }
}

section.purple {
  position: relative;
  background-image: url(../img/bg-dk.jpg);
  background-repeat: repeat;
  background-size: auto;
  overflow: visible;
}
section.purple .title-purple {
  width: 100%;
  height: 140px;
  position: absolute;
  top: -30px;
  left: 0;
  background: url(../img/pc-titlebar-purple.png) repeat-x;
  background-size: auto 140px;
}
@media screen and (max-width: 767px) {
  section.purple .title-purple {
    background: url(../img/sm-titlebar-purple.png) repeat-x;
  }
}
section.purple .title-purple .title-block {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  transform: translateY(50%);
  font-family: "fot-chiaro-std", sans-serif;
}
@media screen and (max-width: 767px) {
  section.purple .title-purple .title-block {
    top: -3px;
  }
}
@media screen and (min-width: 991px) {
  section.purple .title-purple .title-block {
    top: -5px;
  }
}
@media screen and (min-width: 991px) and (max-width: 1199px) {
  section.purple .title-purple .title-block {
    top: 1px;
  }
}
@media screen and (min-width: 1200px) {
  section.purple .title-purple .title-block {
    top: 24px;
  }
}
section.purple .title-purple .title-block img {
  width: 39px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  section.purple .title-purple .title-block img {
    width: 25px;
    height: 25px;
  }
}
section.purple .title-purple .title-block h2 {
  display: inline-block;
  color: #fff;
  font-family: "fot-chiaro-std", sans-serif;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 0 0 8px #fff;
}
@media screen and (max-width: 767px) {
  section.purple .title-purple .title-block h2 {
    font-size: 22px;
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  section.purple .title-purple .title-block h2 {
    padding-top: 9px;
  }
}
@media screen and (min-width: 991px) {
  section.purple .title-purple .title-block h2 {
    padding-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  section.purple .title-purple .title-block h2 {
    padding-top: 0px;
  }
}
section.purple .title-purple .title-block h2::before, section.purple .title-purple .title-block h2::after {
  content: "";
  display: inline-block;
  width: 39px;
  height: 40px;
  background-size: contain;
  vertical-align: middle;
  transform: translateY(-5px);
}
section.purple .title-purple .title-block h2::before {
  background-image: url(../img/dark-title-left.png);
  margin-right: 30px;
}
section.purple .title-purple .title-block h2::after {
  background-image: url(../img/dark-title-right.png);
  margin-left: 30px;
}

section.event {
  display: flex;
  justify-content: center;
}
section.event p.title-text {
  display: block;
  width: 80%;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  color: #fff;
  mix-blend-mode: lighten;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 46px;
  text-shadow: 0 0 4px #2260fc;
}
@media screen and (max-width: 767px) {
  section.event p.title-text {
    font-size: 15px;
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  section.event p.title-text {
    transform: translateY(81px);
    margin-top: 10px;
  }
}
@media screen and (min-width: 991px) {
  section.event p.title-text {
    transform: translateY(35px);
    width: 700px;
    margin-top: 50px;
  }
}
section.event p.caution {
  padding: 0 30px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  text-shadow: 0 0 4px #2260fc;
}
section.event p.caution span {
  font-size: 17px;
}
section.event p.caution1 {
  margin-top: 80px;
}
@media screen and (min-width: 768px) and (max-width: 910px) {
  section.event p.caution1 {
    margin-top: 0;
  }
}
section.event p.caution2 {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  section.event p.caution2 {
    margin-top: 20px;
  }
}

.small-wrapper {
  display: flex;
  justify-content: center;
}
.small-wrapper .small-text {
  margin-top: 60px;
  width: 700px;
  color: #fff;
  font-size: 12px;
  line-height: 2;
  text-shadow: 0 0 4px #2260fc;
}
@media screen and (max-width: 767px) {
  .small-wrapper .small-text {
    font-size: 10px;
    line-height: 1.6;
    width: 85%;
  }
}

.map {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map .map-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .map .map-wrapper {
    margin-top: 0;
    flex-direction: column;
  }
}
.map .map-wrapper .map-tokyo, .map .map-wrapper .map-osaka {
  position: relative;
  background: url(../img/pc-map-tokyo.png) no-repeat;
  background-size: contain;
  width: 450px;
  height: 860px;
}
@media screen and (max-width: 767px) {
  .map .map-wrapper .map-tokyo, .map .map-wrapper .map-osaka {
    width: 365px;
    height: 575px;
    background: url(../img/sm-map-tokyo.png) no-repeat;
    background-size: 365px 575px;
  }
}
@media screen and (min-width: 768px) and (max-width: 910px) {
  .map .map-wrapper .map-tokyo, .map .map-wrapper .map-osaka {
    width: 360px;
    height: 760px;
  }
}
.map .map-wrapper .map-tokyo .map-title, .map .map-wrapper .map-osaka .map-title {
  position: absolute;
  top: 81px;
  left: 183px;
  font-family: "fot-chiaro-std", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--purple);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .map .map-wrapper .map-tokyo .map-title, .map .map-wrapper .map-osaka .map-title {
    font-size: 20px;
    top: 59px;
    left: 143px;
  }
}
@media screen and (min-width: 768px) and (max-width: 910px) {
  .map .map-wrapper .map-tokyo .map-title, .map .map-wrapper .map-osaka .map-title {
    font-size: 20px;
    top: 64px;
    left: 140px;
  }
}
.map .map-wrapper .map-tokyo p, .map .map-wrapper .map-osaka p {
  transform: translate(80px, 137px);
  font-size: 17px;
  font-weight: bold;
  line-height: 1.8;
  color: var(--purple);
  text-shadow: 0 0 6px rgba(153, 95, 2, 0.2666666667), 0 0 8px rgba(161, 100, 1, 0.3450980392), 0 0 10px rgba(182, 112, 0, 0.1921568627);
}
@media screen and (min-width: 768px) and (max-width: 910px) {
  .map .map-wrapper .map-tokyo p, .map .map-wrapper .map-osaka p {
    font-size: 15px;
    transform: translate(50px, 116px);
  }
}
@media screen and (max-width: 767px) {
  .map .map-wrapper .map-tokyo p, .map .map-wrapper .map-osaka p {
    transform: translate(60px, 119px);
    font-size: 14px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 912px) {
  .map .map-wrapper .map-tokyo p, .map .map-wrapper .map-osaka p {
    transform: translate(80px, 160px);
  }
}
.map .map-wrapper .map-tokyo .btn-map, .map .map-wrapper .map-osaka .btn-map {
  display: none;
}
@media screen and (max-width: 767px) {
  .map .map-wrapper .map-tokyo .btn-map, .map .map-wrapper .map-osaka .btn-map {
    display: block;
    width: 128px;
    height: 64px;
    transform: translate(120px, 111px);
    background-image: url(../img/sm-btn-map.svg);
    background-repeat: no-repeat;
    cursor: pointer;
  }
  .map .map-wrapper .map-tokyo .btn-map:hover, .map .map-wrapper .map-osaka .btn-map:hover {
    background-image: url(../img/sm-btn-map-hover.svg);
  }
}
.map .map-wrapper .map-tokyo .google-map, .map .map-wrapper .map-osaka .google-map {
  transform: translate(64px, 143px);
  width: 330px;
  height: 185px;
}
@media screen and (min-width: 768px) and (max-width: 910px) {
  .map .map-wrapper .map-tokyo .google-map, .map .map-wrapper .map-osaka .google-map {
    transform: translate(50px, 120px);
    width: 260px;
    height: 131px;
  }
}
@media screen and (min-width: 912px) {
  .map .map-wrapper .map-tokyo .google-map, .map .map-wrapper .map-osaka .google-map {
    transform: translate(64px, 163px);
  }
}
.map .map-wrapper .map-osaka {
  background: url(../img/pc-map-osaka.png) no-repeat;
}
@media screen and (min-width: 768px) and (max-width: 910px) {
  .map .map-wrapper .map-osaka {
    background-size: 360px, 760px;
  }
}
@media screen and (max-width: 767px) {
  .map .map-wrapper .map-osaka {
    background: url(../img/sm-map-osaka.png) no-repeat;
  }
}

.btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-wrapper .btn-tokyo, .btn-wrapper .btn-osaka {
  width: 376px;
  height: 162px;
  background: url(../img/pc-button-yoyaku.png) no-repeat;
  background-size: 100%;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.btn-wrapper .btn-tokyo:hover, .btn-wrapper .btn-osaka:hover {
  opacity: 0.7;
  background: url(../img/pc-button-yoyaku-hover.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .btn-wrapper .btn-tokyo, .btn-wrapper .btn-osaka {
    background: url(../img/sm-button-yoyaku.png) no-repeat;
    background-size: contain;
    background-position: center center;
    width: 100%;
    height: 90px;
  }
  .btn-wrapper .btn-tokyo:hover, .btn-wrapper .btn-osaka:hover {
    opacity: 0.7;
    background: url(../img/sm-button-yoyaku-hover.png) no-repeat;
    background-size: contain;
    background-position: center center;
    width: 100%;
    height: 90px;
  }
}
.btn-wrapper .btn-tokyo p, .btn-wrapper .btn-osaka p {
  color: #fff;
  font-size: 27px;
  line-height: 36px;
  text-align: center;
  font-family: "fot-chiaro-std", sans-serif;
  font-weight: 700;
  padding-top: 10px;
  text-shadow: 0 0 6px rgba(153, 95, 2, 0.2666666667), 0 0 8px rgba(161, 100, 1, 0.3450980392), 0 0 10px rgba(182, 112, 0, 0.1921568627);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .btn-wrapper .btn-tokyo p, .btn-wrapper .btn-osaka p {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 0px;
  }
}

.scroll-zure {
  transform: translateY(-130px);
  opacity: 0;
  width: 0;
  height: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  .scroll-zure {
    transform: translateY(-80px);
  }
}

section.goods {
  position: relative;
  background-image: url(../img/bg.jpg);
  background-repeat: repeat;
  background-size: auto;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  section.goods {
    padding: 25px 0 10px;
  }
}
section.goods .title-white {
  width: 100%;
  height: 140px;
  position: absolute;
  top: -30px;
  left: 0;
  background: url(../img/pc-titlebar-white.png) repeat-x;
  background-size: auto 140px;
}
@media screen and (max-width: 767px) {
  section.goods .title-white {
    background: url(../img/sm-titlebar-white.png) repeat-x;
  }
}
section.goods .title-white .title-block {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  transform: translateY(50%);
}
@media screen and (max-width: 767px) {
  section.goods .title-white .title-block {
    top: 0px;
  }
}
@media screen and (min-width: 991px) {
  section.goods .title-white .title-block {
    top: -5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  section.goods .title-white .title-block {
    top: 22px;
  }
}
@media screen and (min-width: 1200px) {
  section.goods .title-white .title-block {
    top: 22px;
  }
}
section.goods .title-white .title-block img {
  width: 39px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  section.goods .title-white .title-block img {
    width: 25px;
    height: 25px;
  }
}
section.goods .title-white .title-block h2 {
  display: inline-block;
  color: var(--purple);
  font-family: "fot-chiaro-std", sans-serif;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 767px) {
  section.goods .title-white .title-block h2 {
    font-size: 22px;
  }
}
section.goods .title-white .title-block h2::before, section.goods .title-white .title-block h2::after {
  content: "";
  display: inline-block;
  width: 39px;
  height: 40px;
  background-size: contain;
  vertical-align: middle;
  transform: translateY(-5px);
}
section.goods .title-white .title-block h2::before {
  background-image: url(../img/dark-title-left.png);
  margin-right: 30px;
}
section.goods .title-white .title-block h2::after {
  background-image: url(../img/dark-title-right.png);
  margin-left: 30px;
}
section.goods .goods-text-wrap {
  display: grid;
  place-items: center;
}
section.goods p.goods-text {
  display: block;
  width: 80%;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  color: var(--purple);
  margin: 0 auto;
  margin-top: 100px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
  text-align: justify;
}
@media screen and (min-width: 991px) {
  section.goods p.goods-text {
    width: 700px;
  }
}
section.goods .goods-illust {
  display: grid;
  place-items: center;
  width: 100%;
  height: 122px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  section.goods .goods-illust {
    width: 86%;
    margin: 10px auto 0;
  }
}
section.goods .goods-illust img {
  width: 480px;
  height: 122px;
}
@media screen and (max-width: 767px) {
  section.goods .goods-illust img {
    width: 320px;
    height: 80px;
  }
}
section.goods .goods-slider-main {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 1/1;
  border: 3px solid var(--gold);
  background-color: #d0d0d0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
section.goods .goods-slider-main img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  section.goods .goods-slider-main {
    width: 86%;
  }
}
section.goods .goods-slider-main h2 {
  font-family: "fot-chiaro-std", sans-serif;
  font-size: 35px;
  line-height: 2;
  color: var(--purple);
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}
section.goods .goods-slider-main p {
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  color: var(--purple);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
}

.accordion-wrap {
  max-width: 904px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 100px auto 0;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 0 5px;
}

.accordion-item2 {
  width: min(85%, 435px);
  margin: 0 auto;
}
.accordion-item2 ul + p {
  font-weight: 700;
  color: var(--purple);
  text-shadow: 0 0 2px #875300;
  font-size: clamp(13px, 13px + 0.221vw, 15px);
  margin-bottom: 20px;
}

.accordion-title {
  aspect-ratio: 435/61;
  cursor: pointer;
  position: relative;
  color: #ffffff;
  z-index: 1;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  border-radius: 30px;
}
.accordion-title:hover {
  opacity: 0.7;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0);
}
.accordion-title img:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  mix-blend-mode: darken;
}
.accordion-title h3 {
  color: #ffffff;
  display: inline-block;
  position: absolute;
  top: 29%;
  left: 30px;
  z-index: 1;
  font-size: 24px;
  font-family: "fot-chiaro-std", sans-serif;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  mix-blend-mode: lighten;
}
@media screen and (min-width: 991px) {
  .accordion-title h3 {
    top: 17px;
  }
}
@media screen and (max-width: 767px) {
  .accordion-title h3 {
    top: 50%;
    font-size: 16px;
    transform: translate(0%, -50%);
  }
}

.arrow-icon {
  position: absolute;
  top: 50%;
  right: 4%;
  aspect-ratio: 18/11;
  max-width: min(10%, 18px);
  z-index: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.4s ease;
}

.arrow-icon.open {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 2%;
  display: flex;
  justify-content: space-between;
  transition: all 0.4s ease-out;
  margin-bottom: 12px;
}

.accordion-content img {
  aspect-ratio: 1/1;
  width: min(21%, 95px);
  height: min(21%, 95px);
  border: 2px solid var(--gold);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  display: block;
  margin-bottom: 10px;
}

.accordion-link-btns {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  flex-wrap: wrap;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .accordion-link-btns {
    flex-direction: column;
    align-items: center;
  }
}

.to-item-btn {
  margin-top: 50px;
  display: grid;
  place-items: center;
  aspect-ratio: 736/98;
  background: url(../img/to-item.png) no-repeat;
  width: min(90vw, 736px);
  height: auto;
  background-size: contain;
  border-radius: 10px;
}
.to-item-btn:hover {
  opacity: 0.7;
  background: url(../img/to-item-hover.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .to-item-btn {
    width: 90vw;
    max-width: 450px;
    background: url(../img/sm-to-item.png) no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .to-item-btn:hover {
    background: url(../img/sm-to-item-hover.png) no-repeat;
    background-size: cover;
    background-position: center center;
  }
}
.to-item-btn h3 {
  font-size: clamp(1rem, 0.7928rem + 0.884vw, 1.5rem);
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .to-item-btn h3 {
    transform: translateY(7px);
  }
}

.to-ec {
  margin-top: 30px;
  margin-bottom: 50px;
  display: grid;
  place-items: center;
  aspect-ratio: 736/143;
  background: url(../img/to-ec.png) no-repeat;
  width: min(90vw, 736px);
  height: auto;
  background-size: 100% 100%;
  border-radius: 10px;
  text-align: center;
}
.to-ec:hover {
  opacity: 0.7;
  background: url(../img/to-ec-hover.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .to-ec {
    background: url(../img/sm-button-ebten.png) no-repeat;
    background-size: contain;
    background-position: center;
    width: 90vw;
    max-width: 450px;
    height: 30vw;
  }
  .to-ec:hover {
    background: url(../img/sm-button-ebten-hover.png) no-repeat;
    background-size: contain;
    background-position: center;
  }
}
.to-ec h3 {
  font-family: "fot-chiaro-std", sans-serif;
  font-size: clamp(1.25rem, 0.9852rem + 1.1299vw, 1.875rem);
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 991px) {
  .to-ec h3 {
    transform: translateY(0px);
  }
}
@media screen and (max-width: 767px) {
  .to-ec h3 {
    line-height: 1.4;
    transform: translateY(7px);
  }
}

.mfp-counter {
  display: none;
}

.mfp-title {
  font-size: 16px;
}

section.sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../img/bg-dk.jpg);
  background-repeat: repeat;
  background-size: auto;
  overflow: visible;
}
section.sns p.sns-text {
  display: block;
  width: 80%;
  font-size: 15px;
  line-height: 2;
  color: #fff;
  mix-blend-mode: lighten;
  margin: 0 auto;
  margin-top: 80px;
  text-shadow: 0 0 4px #2260fc;
}
@media screen and (max-width: 767px) {
  section.sns p.sns-text {
    font-size: 13px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 991px) {
  section.sns p.sns-text {
    transform: translateY(35px);
    width: 700px;
    margin-top: 70px;
  }
}

.sns-illust {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin-top: 120px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .sns-illust {
    margin-top: 64px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sns-illust {
    width: 86%;
    margin: 50px auto 0;
  }
}
.sns-illust img {
  text-align: center;
  width: max(340px, 70%);
}

.twitter-present {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 10px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 840px) {
  .twitter-present {
    margin-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  .twitter-present {
    margin-top: 10px;
  }
}
.twitter-present .tp-wrap {
  width: 400px;
}
@media screen and (min-width: 991px) {
  .twitter-present .tp-wrap {
    width: 440px;
  }
}
@media screen and (max-width: 840px) {
  .twitter-present .tp-wrap {
    width: 329px;
    margin: 60px auto -30px;
  }
}
@media screen and (max-width: 767px) {
  .twitter-present .tp-wrap {
    width: 329px;
    margin: 60px auto -30px;
  }
}
.twitter-present .tp-wrap h3 {
  display: inline-block;
  width: 100%;
  aspect-ratio: 440/62;
  background: url(../img/sns-title.png) no-repeat;
  background-size: contain;
  color: var(--purple);
  text-align: center;
  font-family: "fot-chiaro-std", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.8;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
  padding-top: 5px;
}
@media screen and (max-width: 840px) {
  .twitter-present .tp-wrap h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .twitter-present .tp-wrap h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 991px) {
  .twitter-present .tp-wrap h3 {
    padding-top: 7px;
  }
}
.twitter-present .tp-wrap .tp-box {
  margin: 15px auto 0;
  width: 95%;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
}

.t-wrap {
  position: relative;
}
.t-wrap > img {
  aspect-ratio: 49/83;
  width: 12%;
  position: absolute;
  top: -9%;
  left: 16%;
}
@media screen and (max-width: 767px) {
  .t-wrap > img {
    top: -7%;
    width: 36px;
    height: 62px;
  }
}
.t-wrap .tp-box {
  overflow: scroll;
}

.p-wrap {
  position: relative;
}
.p-wrap > img {
  width: 12%;
  position: absolute;
  top: -2%;
  left: 16%;
}

.p-box {
  overflow: hidden;
}
.p-box img {
  width: 100%;
}

.time {
  margin: 100px auto 0;
  width: 480px;
  height: 105px;
  background: var(--gold);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .time {
    width: 320px;
    height: 70px;
  }
}
.time h3 {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 6px #875300;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .time h3 {
    margin-top: -5px;
    padding-top: 0px;
    font-size: 14px;
    line-height: 1.5;
  }
}
.time h3:before, .time h3:after {
  border-top: 1px solid;
  content: "";
  width: 3em;
}
@media screen and (max-width: 767px) {
  .time h3:before, .time h3:after {
    width: 4em;
  }
}
.time h3:before {
  margin-right: 1em;
}
.time h3:after {
  margin-left: 1em;
}
.time p {
  margin-top: 10px;
  margin-bottom: 0;
  padding: 0;
  font-size: 21px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 6px #875300;
}
@media screen and (max-width: 767px) {
  .time p {
    font-size: 14px;
  }
}

.twit-msg-btn {
  margin-top: 50px;
  display: grid;
  place-items: center;
  background: url(../img/pc-button-twitter.png) no-repeat;
  width: 736px;
  height: 162px;
  background-size: contain;
}
.twit-msg-btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .twit-msg-btn {
    margin-top: 15px;
    background: url(../img/sm-button-twitter.png) no-repeat;
    width: 357px;
    height: 122px;
    background-size: contain;
  }
}
.twit-msg-btn h3 {
  padding-top: 16px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  font-family: "fot-chiaro-std", sans-serif;
  text-shadow: 0 0 8px #2260fc, 0 0 10px #2260fc;
}
@media screen and (max-width: 767px) {
  .twit-msg-btn h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 991px) {
  .twit-msg-btn h3 {
    padding-top: 4px;
  }
}

.about {
  width: 700px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .about {
    width: 320px;
  }
}
.about h3 {
  text-align: start;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  text-shadow: 0 0 6px #2260fc;
}
@media screen and (max-width: 767px) {
  .about h3 {
    font-size: 14px;
  }
}
.about p {
  font-size: 12px;
  line-height: 2;
  text-align: justify;
  color: #fff;
  text-shadow: 0 0 6px #2260fc;
}
@media screen and (max-width: 767px) {
  .about p {
    font-size: 11px;
    line-height: 1.7;
  }
}

.kiyaku {
  margin-top: 70px;
  width: 700px;
}
@media screen and (max-width: 767px) {
  .kiyaku {
    margin-top: 40px;
    width: 320px;
  }
}
.kiyaku h3 {
  font-size: 21px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .kiyaku h3 {
    font-size: 14px;
  }
}
.kiyaku h3:before, .kiyaku h3:after {
  border-top: 1px solid;
  content: "";
  width: 40%;
}
@media screen and (max-width: 767px) {
  .kiyaku h3:before, .kiyaku h3:after {
    width: 35%;
  }
}
.kiyaku h3:before {
  margin-right: 1em;
}
.kiyaku h3:after {
  margin-left: 1em;
}
.kiyaku p {
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .kiyaku p {
    font-size: 12px;
  }
}

.kiyaku-wrap {
  width: 100%;
  display: grid;
  place-items: center;
  margin-top: 25px;
}

.kiyaku-title {
  font-size: 21px;
  margin-bottom: 30px;
  width: 480px;
  height: 71px;
  background: url(../img/pc-kiyaku-btn.png) no-repeat;
  background-size: contain;
  display: grid;
  place-items: center;
  text-shadow: 0 0 6px #2260fc;
}
.kiyaku-title:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .kiyaku-title {
    margin-left: 5px;
    width: 320px;
    height: 45px;
  }
}
.kiyaku-title span {
  font-weight: 700;
  padding-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .kiyaku-title span {
    padding-top: 0;
    font-size: 14px;
  }
}

.kiyaku-text {
  font-size: 14px;
  color: #fff;
  text-align: justify;
}

.fukidashi {
  margin: 80px auto 0;
  width: 748px;
  height: 506px;
  background: url(../img/pc-fukidashi.png) no-repeat;
  background-size: contain;
  padding: 70px 70px 0;
  text-shadow: 0 0 6px #875300;
}
@media screen and (max-width: 767px) {
  .fukidashi {
    padding: 43px 32px 30px;
    width: 348px;
    height: 409px;
    background: url(../img/sm-fukidashi.png) no-repeat;
  }
}
.fukidashi h3 {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fukidashi h3 {
    font-size: 14px;
  }
}
.fukidashi h3 span {
  font-size: 19px;
  color: #fff;
  transition: color 0.3s linear;
}
@media screen and (max-width: 767px) {
  .fukidashi h3 span {
    font-size: 14px;
  }
}
.fukidashi h3 span:hover {
  color: rgba(255, 255, 255, 0.5);
}
.fukidashi p {
  color: #fff;
  font-size: 12px;
  line-height: 2;
  margin-top: 35px;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .fukidashi p {
    margin-top: 20px;
    font-size: 10px;
    line-height: 1.8;
  }
}

.logos {
  margin: 90px auto 70px;
  text-align: center;
  overflow: hidden;
  max-width: min(1000px, 95%);
}
@media screen and (max-width: 767px) {
  .logos {
    margin: 40px auto 60px;
    width: 400px;
  }
}
.logos img {
  width: 85%;
}

footer {
  background: var(--purple);
}
footer .copyright {
  color: #fff;
  font-size: 13px;
  text-shadow: 0 0 6px #2260fc;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    font-size: 11px;
  }
}

p.company {
  margin-bottom: 40px;
  font-size: 15px;
  text-shadow: 0 0 6px #2260fc;
}
@media screen and (max-width: 767px) {
  p.company {
    font-size: 13px;
    margin-bottom: 37 px;
  }
}

.footer-logo2 {
  margin: 40px auto;
  width: 164px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer-logo2 {
    margin: 30px auto;
    width: 137px;
  }
}
.footer-logo2 img {
  width: 100%;
}

.twitter-low {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s linear;
  background: #209ef0;
  z-index: 101;
  /*   デフォルトは非表示 */
  opacity: 0;
}

.twitter-low:hover {
  box-shadow: 0 0 10px #00a6c4;
}

* {
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}

*,
::after {
  box-sizing: border-box;
}

::-webkit-datetime-edit-day-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
          appearance: button;
}

.item-list-bg {
  background-image: url(../img/bg.jpg);
  background-repeat: repeat;
  background-size: auto;
  overflow: visible;
  height: auto;
}

.item-list {
  position: relative;
}

.item-title {
  background: url(../img/product-title-bg-img.png) no-repeat;
  background-size: contain;
  aspect-ratio: 2620/861;
  background-position: center 30%;
  height: auto;
  text-align: center;
  max-width: min(98vw, 519px);
  position: relative;
  margin: 0 auto;
}
.item-title h1 {
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.25rem, 1.0911rem + 0.678vw, 1.625rem);
  font-weight: 700;
  color: var(--purple);
  font-family: "fot-chiaro-std", sans-serif;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

.menu-text {
  font-size: 14px;
  color: var(--purple);
}

.slider-container {
  margin: 0 auto;
  max-width: min(85%, 700px);
}

.goods-slider-main {
  margin: 70px auto 0;
  flex: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

ul.thumbnail {
  margin: 0 0 70px;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0;
  -moz-column-gap: min(1.8vw, 24px);
       column-gap: min(1.8vw, 24px);
}
ul.thumbnail li {
  margin-top: min(7%, 47px);
  padding: 0;
  flex: 0 1 17%;
  aspect-ratio: 1/1;
  border: 2px solid #b39b6b;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  opacity: 0.6;
}
ul.thumbnail li:hover, ul.thumbnail li.current {
  opacity: 1;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
ul.thumbnail li img {
  width: 100%;
  height: auto;
}

.to-index-btn {
  margin-top: 50px;
  display: grid;
  place-items: center;
  aspect-ratio: 272/96;
  background: url(../img/pc-button-back.png) no-repeat;
  width: 272px;
  height: auto;
  background-size: contain;
  border-radius: 10px;
}
.to-index-btn:hover {
  opacity: 0.7;
  background: url(../img/pc-button-back-hover.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .to-index-btn {
    max-width: 440px;
    margin-top: 0;
    margin-bottom: 100px;
    background: url(../img/sm-button-back.png) no-repeat;
    background-size: contain;
    background-position: center center;
  }
  .to-index-btn:hover {
    background: url(../img/sm-button-back-hover.png) no-repeat;
    background-size: contain;
    background-position: center center;
  }
}
.to-index-btn h3 {
  font-family: "fot-chiaro-std", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 991px) {
  .to-index-btn h3 {
    transform: translateY(0px);
  }
}
@media screen and (max-width: 767px) {
  .to-index-btn h3 {
    font-size: 14px;
    line-height: 1.4;
    transform: translateY(7px);
  }
}

@media screen and (max-width: 460px) {
  .container .hover-option6 .grid-item figcaption.bg-beige {
    min-height: 98px;
    padding: 15px 10px;
  }
}
body .hover-option6 .grid-item .portfolio-icon a {
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0);
  margin: 0 7px;
  height: 46px;
  width: 46px;
  display: inline-block;
  transition: all 0.2s ease 0s;
}
body .hover-option6 .grid-item .portfolio-icon a:hover {
  border: 0;
  background: rgba(255, 255, 255, 0);
}/*# sourceMappingURL=custom-style.css.map */