@charset "utf-8";
@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

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


/*共通*/
body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  letter-spacing: 1px;
  color: #141414;
}

img {
  width: 100%;
}

a {
  color: #141414;
  text-decoration: none;
}

a:hover {
  opacity: .6;
}

.stickarrow {
  display: inline-block;
  width: 30px;
  height: 6px;
  border-bottom: 1px solid #cfab78;
  border-right: 1px solid #cfab78;
  transform: skew(45deg);
  position: relative;
  top: -4px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border: solid 2px #cfab78;
  transition: .4s;
  width: 150px;
  background-color: #cfab78;
  margin-left: auto;
  color: #fff;
}

/*ヘッダー*/

header {
  display: flex;
  justify-content: space-between;
}

h1 {
  margin-top: 2rem;
  margin-left: 5rem;
  line-height: 1.5;
  font-size: 1.2rem;
  font-weight: normal;
}

.mv {
  position: relative;
  text-align: right;
  width: 75%;
}

.mv .nav {
  position: absolute;
  top: 2rem;
  right: 1rem;
}

.mv .mv-text {
  position: absolute;
  top: 22rem;
  left: -8rem;
  line-height: 4.7;
  text-align: left;
  font-size: 1.1rem;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}


.mv-text span {
  background: #fff;
}

/*  ハンバーガーボタン*/
body.noscroll {
  overflow-x: hidden;
}

.burger-btn {
  display: block;
  width: 39px;
  height: 39px;
  position: relative;
  z-index: 3;
  border: none;
  /*    margin-top: 41px;*/
  right: 10px;
}

.bar {
  width: 20px;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}

.bar_top {
  top: 10px;
}

.bar_mid {
  top: 50%;
  transform: translate(-50%, -50%);
}

.bar_bottom {
  bottom: 10px;
}

.burger-btn.close .bar_top {
  transform: translate(-50%, 10px) rotate(45deg);
  transition: transform .3s;
}

.burger-btn.close .bar_mid {
  opacity: 0;
  transition: opacity .3s;
}

.burger-btn.close .bar_bottom {
  transform: translate(-50%, -8px) rotate(-45deg);
  transition: transform .3s;
}

.nav-wrapper {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.header-nav {
  width: 100%;
  height: 100%;
  background-color: #D2B84A;
  z-index: 2;
  opacity: 1;
}

.header-nav .nav-list {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.header-nav .nav-list a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.header-nav .nav-item {
  margin-right: 0;
  margin-bottom: 40px;
}

/*メイン*/
main {
  max-width: 75%;
  margin: 0 auto;
}

h2 {
  margin: 0 auto;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.2;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}

.sub {
  color: rgba(0, 0, 0, .5);
  font-size: 1.8rem;
}

#event h2 span,
#menu h2 span:first-child,
#info h2 span:first-child {
  color: #E2C447;
}

/*イベント*/
#event {
  padding: 10rem 0 5rem;
  display: flex;
  justify-content: space-between;
}

#event h2 {
  writing-mode: vertical-rl;
}

#event .sub {
  text-indent: 70%;
}

#event ul {
  margin: 0 auto;
}

#event ul li {
  list-style: none;
  padding-bottom: 1rem;
  line-height: 1.5;
}

#event ul li time {
  padding-right: 1rem;
}

#event ul li a {
  display: block;
  color: #47bce2;
}

#event ul li:last-of-type {
  text-align: right;
  margin-top: 10px;
}

#event .eventmore{
    color: #cfab78;
}

#event .stickarrow{
  color: #cfab78;
}

/*メニュー*/

#menu h2 {
  text-align: right;
  padding-bottom: 3rem;
}

#menu h2 .sub {
  margin-right: 0.3rem;
}

.background {
  position: relative;
}

/*
.square1 {
  background-color: #fff;
  width: 600px;
  height: 600px;
  margin-left: auto;
  position: absolute;
  margin-left: -600px;
  left: 100%;
}

.square2 {
  background-color: #fff;
  width: 400px;
  height: 600px;
  margin-left: auto;
  position: absolute;
  margin-left: -400px;
  left: 65%;
  bottom: -1000px;
}
*/

#menu figure {
  position: relative;
}

#menu img {
  height: auto;
  display: block;
  padding-bottom: 2rem;
}

.img1 {
  width: 90%;
}

.img2 {
  width: 70%;
  position: relative;
  margin-left: auto;
  left: 2rem;
}

.img3 {
  width: 60%;
}

#menu .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menu .flex .caption {
  position: relative;
  left: 2rem;
  line-height: 1.5;
  text-align: center;
}

#menu .flex p {
  text-align: center;
  padding-top: 1rem;
}

#menu a {
color: #fff;
}

/*インフォメーション*/

#info {
  padding: 5rem 0;
}

#infotitle {
  position: relative;
  padding-bottom: 3rem;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}

.infotitle {
  writing-mode: vertical-rl;
  position: absolute;
  top: -10%;
  left: 75%;
}

.shop {
  padding-top: 6rem;
}

#info h2 {
  margin: 0 1rem 0 3rem;
}

#info .sub {
  padding-top: 2rem;
}

.infotitle h2 br {
  display: none;
}

.infotitle p {
  margin-top: 2.5rem;
  line-height: 2;
}

.infotitle p span {
  background-color: #fff;
}

#infotext {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#infotext figure {
  width: 50%;
  text-align: center;
}

#infotext figure img {
  width: 60%;
}

#infotext .infotext {
  margin: 0 auto;
}

.infotext h3 {
  padding-bottom: 2rem;
}

.infotext p {
  line-height: 1.5;
}

.infotext p:last-child {
  padding-top: 1rem;
}

/*フッター*/

footer {
  padding: 5rem 0 3rem;
  background-color: #cfab78;
}

.footer {
  width: 75%;
  margin: 0 auto;
}

.footer ul {
  display: flex;
  list-style-type: none;
  padding-bottom: 2rem;
}

.footer ul li {
  padding-right: 1rem;
}

.footer p:last-child {
  font-size: 0.8rem;
  padding-top: 4rem;
}

/*レスポンシブ*/
@media screen and (max-width:1300px) {
  #event {
    padding-top: 15rem;
  }
}

@media screen and (max-width:1100px) {

  .mv .mv-text {
    top: 20rem;
  }

  #event {
    padding-top: 20rem;
  }
}

@media screen and (max-width:768px) {

  h1 {
    margin-left: 3rem;
  }

  .mv .mv-text {
    top: 11rem;
    line-height: 4;
  }

  #event {
    padding-top: 15rem;
  }

  .infotitle {
    left: 67%;
  }
}

@media screen and (max-width:576px) {

  body {
    font-size: 0.9rem;
  }


  header {
    display: block;
  }

  h1 {
    margin: 0;
    padding: 1rem;
    font-size: 0.9rem;
    display: block;
  }

  .mv {
    width: 100%;
  }

  .mv .nav {
    top: -3.8rem;
    right: 0;
  }

  .mv .mv-text {
    top: 8rem;
    left: 1rem;
    line-height: 3;
    font-size: 0.9rem;
  }

  .bar {
    height: 1px;
        background-color: #141414;
  }

  main {
    width: 90%;
  }

  h2 {
    font-size: 1.6rem;
    border-bottom: 1px solid #141414;
    margin-bottom: 1.5rem;
  }

  #event {
    display: block;
    margin: 0 1rem;
    padding-top: 10rem;
    justify-content: flex-start;
    padding-top: 8rem;
    padding-bottom: 2rem;
  }

  #event h2,
  .infotitle {
    writing-mode: horizontal-tb;
  }

  .sub {
    text-indent: 0;
    text-align: end;
    font-size: 1.6rem;
  }

  #menu h2 {
    padding-bottom: 0;
  }

  .img2 {
    left: 1rem;
  }

  #menu .flex {
    display: block;
    text-align: center;
  }

  #menu .flex .caption,
  .infotitle {
    position: static;
  }

  #menu .flex p {
    text-align: center;
  }

  #menu figure {
    padding: 0 0 3rem;
  }

  #info {
    padding: 0 0 3rem;
  }

  .shop {
    padding-top: 0;
  }

  #info h2 {
    margin: 1rem 0 1.5rem;
  }

  .infotitle p {
    margin-top: 0;
  }

  #infotext,
  .infotitle h2 br {
    display: block;
  }

  #infotext figure {
    width: 100%;
  }

  #infotitle {
    padding-bottom: 2rem;
  }
  
  #infotext .infotext{
    text-align: center;
  }

  .infotext h3 {
    padding: 2rem 0 1rem;
  }

  footer {
    padding: 2rem 0 1rem;
  }

  .footer ul {
    padding-bottom: 1rem;
  }

  .footer ul li {
    padding-right: 0.5rem;
  }

  .footer p:last-child {
    font-size: 0.7rem;
    padding-top: 3rem;
  }
}
