@charset "UTF-8";
/*
 * htmlのfont-size用
 */
/*
   * font-size可変用
   */
/*メディアクエリー
---------------------------------------------*/
/* For modern browsers */
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.clearfix {
  zoom: 1;
}

/* variable */
i {
  margin: auto 20px;
}

/*------------------------
 image responsove change
 --------------------------*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: inherit !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 769px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inherit !important;
  }
}
/*---------------------------------------------------------------
 common
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
}

body {
  font-size: 3.2vw;
  line-height: 200%;
  color: #76705C;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  background: #F5F5ED;
  text-justify: inter-ideograph;
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: #76705C;
  text-decoration: none;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.fade-in {
  transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
}

img {
  width: 100%;
  vertical-align: bottom;
}

h2 {
  margin: 0 auto 8vw;
  font-size: 8.5333333333vw;
  text-align: center;
  font-family: din-2014, sans-serif;
}
@media screen and (min-width: 769px) {
  h2 {
    margin: 0 auto 50px;
    font-size: 5.2rem;
  }
}

/*-------------------------------
 block
--------------------------------- */
.pc {
  display: none;
}

/*---------------------------------------------------------------
 navi
-------------------------------------------------------------- */
#toggle {
  position: fixed;
  top: 25px;
  right: 25px;
}

#toggle-box {
  position: relative;
  width: 36px;
  height: 32px;
  cursor: pointer;
}

#toggle-box > span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #76705C;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
}

#toggle-box > span:nth-child(1) {
  top: 0;
}

#toggle-box > span:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}

#toggle-box > span:nth-child(3) {
  bottom: 0;
}

#toggle {
  z-index: 1000;
}

#nav-content {
  z-index: 900;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: #76705C;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  text-align: center;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  font-family: trajan-pro-3, shippori-mincho, sans-serif;
}
@media screen and (min-width: 769px) {
  #nav-content {
    width: 30%;
    max-width: 800px;
    border-left: solid 1px #3D4658;
  }
}
#nav-content nav {
  height: 100vh;
  padding: 13.3333333333vw 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  #nav-content nav {
    padding: 80px 8%;
  }
}
#nav-content nav ul li {
  margin-bottom: 5.3333333333vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 769px) {
  #nav-content nav ul li {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
#nav-content nav ul li a {
  color: #fff;
}
#nav-content nav ul li:first-child {
  margin-bottom: 21.3333333333vw;
}
@media screen and (min-width: 769px) {
  #nav-content nav ul li:first-child {
    margin-bottom: 80px;
  }
}
#nav-content nav ul li:first-child figure {
  width: 70%;
  margin: 0 auto;
}

.is-open {
  overflow: hidden;
}

.is-open #toggle-box > span {
  background: #fff;
}

.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
  z-index: 999;
  transform: translateX(0);
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
}

/*-------------------------------
 main
--------------------------------- */
header {
  width: 100%;
  margin: 0 auto;
}
header .box {
  margin: 0 auto;
  overflow: hidden;
}
header .box figure {
  width: 120vw;
  margin: 0 auto 8vw -10vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  header .box figure {
    width: 80%;
    max-width: 1500px;
    margin: 0 auto 30px;
  }
}
header .box figure img {
  max-width: 350px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  header .box figure img {
    max-width: 100%;
  }
}
header .box h1 {
  width: 55%;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  header .box h1 {
    max-width: 250px;
  }
}

.main {
  width: 100%;
  background-color: #908C7F;
}
.main .movie {
  position: relative;
}
.main .movie iframe#leeep-tag-iframe-1113016633007321088,
.main .movie iframe#leeep-tag-iframe-1113728597392113664 {
  width: 100% !important;
  max-width: 100% !important;
}
.main .movie .logomark {
  width: 60%;
  max-width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/*-------------------------------
lead
--------------------------------- */
.lead {
  width: 100%;
  padding: 21.3333333333vw 0;
  background-color: #908C7F;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .lead {
    padding: 100px 0;
  }
}
.lead h2 {
  width: 80%;
  max-width: 1000px;
  margin-bottom: 6.4vw;
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: bold;
  font-size: 5.3333333333vw;
  line-height: 200%;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .lead h2 {
    margin-bottom: 20px;
    font-size: 3.6rem;
    text-align: center;
  }
}
.lead p {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 3.4666666667vw;
  line-height: 200%;
}
@media screen and (min-width: 769px) {
  .lead p {
    font-size: 1.8rem;
    text-align: center;
  }
}
.lead .onsale {
  width: 80%;
  max-width: 800px;
  margin: 0 auto 21.3333333333vw;
}
@media screen and (min-width: 769px) {
  .lead .onsale {
    margin: 0 auto 80px;
  }
}
.lead .onsale ul {
  margin: 13.3333333333vw auto 0;
}
@media screen and (min-width: 769px) {
  .lead .onsale ul {
    margin-top: 50px;
  }
}
.lead .onsale ul li {
  margin: 0 0 5.3333333333vw 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .lead .onsale ul li {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.lead .onsale ul li .title {
  width: 100%;
  padding: 5px;
  margin-bottom: 5.3333333333vw;
  font-size: 3.733vw;
  letter-spacing: 1px;
  line-height: 150%;
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: bold;
  border-top: solid 1px;
  border-bottom: solid 1px;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .lead .onsale ul li .title {
    margin-bottom: 30px;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 769px) {
  .lead .onsale ul li .flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.lead .onsale ul li .date {
  margin-bottom: 2.6666666667vw;
  font-size: 6.4vw;
  line-height: 100%;
  font-family: din-2014, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .lead .onsale ul li .date {
    margin-bottom: 0;
    font-size: 4.8rem;
    display: inherit;
  }
}
.lead .onsale ul li .date span {
  margin-left: 1.3333333333vw;
  font-size: 8.5333333333vw;
}
@media screen and (min-width: 769px) {
  .lead .onsale ul li .date span {
    margin-left: 5px;
    font-size: 6.4rem;
  }
}
.lead .onsale ul li .date span.week {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 769px) {
  .lead .onsale ul li .date span.week {
    font-size: 3.2rem;
  }
}
.lead .onsale ul li .time {
  font-size: 4.2666666667vw;
  line-height: 100%;
  font-family: din-2014, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 769px) {
  .lead .onsale ul li .time {
    margin-left: 15px;
    font-size: 2.4rem;
    display: inherit;
  }
}
.lead .onsale ul li .time span {
  margin-left: 5px;
  font-size: 8.5333333333vw;
}
@media screen and (min-width: 769px) {
  .lead .onsale ul li .time span {
    font-size: 4.6rem;
  }
}
.lead .instalive {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  padding: 6.6666666667vw;
  text-align: center;
  border: solid 1px #76705C;
  border-radius: 10px;
}
@media screen and (min-width: 769px) {
  .lead .instalive {
    width: 80%;
    padding: 30px 25px 40px;
  }
}
.lead .instalive h2 {
  margin-bottom: 4vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .lead .instalive h2 {
    margin-bottom: 15px;
  }
}
.lead .instalive p {
  font-size: 4.2666666667vw;
  line-height: 160%;
}
@media screen and (min-width: 769px) {
  .lead .instalive p {
    font-size: 1.6rem;
  }
}
.lead .instalive p a {
  color: #fff;
  text-decoration: underline;
}
.lead .instalive p.date {
  margin-bottom: 1.3333333333vw;
  font-size: 4.8vw;
}
@media screen and (min-width: 769px) {
  .lead .instalive p.date {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
}
.lead .instalive a.btn {
  margin-top: 5.3333333333vw;
  padding: 2.6666666667vw;
  background: #76705C;
  color: #fff;
  display: block;
  border-radius: 100px;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .lead .instalive a.btn {
    margin-top: 30px;
    padding: 10px;
  }
}
.lead .instalive_popup {
  text-align: center;
}
.lead .instalive_popup i {
  margin-bottom: 5.3333333333vw;
  font-size: 21.3333333333vw;
}
@media screen and (min-width: 769px) {
  .lead .instalive_popup i {
    margin-bottom: 20px;
    font-size: 8rem;
  }
}
.lead .instalive_popup h2 {
  margin-bottom: 8vw;
  font-size: 6.9333333333vw;
  line-height: 150%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .lead .instalive_popup h2 {
    margin-bottom: 30px;
    font-size: 3.6rem;
  }
}
.lead .instalive_popup .txt1 {
  margin-bottom: 5.3333333333vw;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 769px) {
  .lead .instalive_popup .txt1 {
    margin-bottom: 20px;
    font-size: 2.4rem;
    line-height: 160%;
  }
}
.lead .instalive_popup .txt2 {
  margin-bottom: 5.3333333333vw;
  font-size: 3.2vw;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .lead .instalive_popup .txt2 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
  }
}
.lead .instalive_popup .txt3 {
  font-size: 6.4vw;
  line-height: 140%;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .lead .instalive_popup .txt3 {
    font-size: 3.2rem;
    margin-bottom: 20px;
  }
}
.lead .instalive_popup .txt3 span {
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .lead .instalive_popup .txt3 span {
    font-size: 2.8rem;
  }
}
.lead .instalive_popup .txt4 {
  font-size: 4.2666666667vw;
  line-height: 160%;
}
@media screen and (min-width: 769px) {
  .lead .instalive_popup .txt4 {
    font-size: 2rem;
  }
}
.lead .instalive_popup a {
  text-decoration: underline;
  color: #fff;
}

/*-------------------------------
item
--------------------------------- */
.item {
  width: 100%;
  padding: 21.3333333333vw 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .item {
    padding: 100px 80px;
  }
}
.item .item_box {
  margin: 0 auto 13.3333333333vw;
  padding: 8vw 0;
  border: solid 1px;
  border-radius: 15px;
  background: url("../images/bg.png");
  background-repeat: repeat-x;
}
@media screen and (min-width: 769px) {
  .item .item_box {
    margin: 0 auto 50px;
    max-width: 1500px;
    padding: 30px 0;
  }
}
.item .item_box .scene {
  padding: 5.3333333333vw 8vw;
  font-size: 3.7333333333vw;
  font-family: din-2014, sans-serif;
  font-weight: 500;
  border-bottom: dotted 1px;
}
@media screen and (min-width: 769px) {
  .item .item_box .scene {
    padding: 40px 80px;
    font-size: 1.8rem;
  }
}
.item .item_box .scene span {
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 769px) {
  .item .item_box .scene span {
    font-size: 2.6rem;
  }
}
.item .item_box h3 {
  padding: 5.3333333333vw 8vw;
  font-size: 6.4vw;
  font-weight: bold;
  line-height: 150%;
}
@media screen and (min-width: 769px) {
  .item .item_box h3 {
    padding: 40px 80px;
    font-size: 36px;
  }
}
.item .item_box .movie {
  width: 100%;
  position: relative;
}
.item .item_box .movie div .logomark {
  width: 26.6666666667vw;
  position: absolute;
  top: -18.6666666667vw;
  right: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .item .item_box .movie div .logomark {
    max-width: 180px;
    top: -100px;
    right: 50px;
  }
}
.item .item_box .movie div iframe#leeep-tag-iframe-1113021480477700096,
.item .item_box .movie div iframe#leeep-tag-iframe-1113359104199376896,
.item .item_box .movie div iframe#leeep-tag-iframe-1113376818594856960,
.item .item_box .movie div iframe#leeep-tag-iframe-1113376415413190656,
.item .item_box .movie div iframe#leeep-tag-iframe-1113377056634191872,
.item .item_box .movie div iframe#leeep-tag-iframe-1113377254932496384,
.item .item_box .movie div iframe#leeep-tag-iframe-1113377400613257216,
.item .item_box .movie div iframe#leeep-tag-iframe-1113377585976328192 {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
}
.item .item_box .item_list {
  width: 100%;
  max-width: 1500px;
  margin: 8vw auto;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .item .item_box .item_list {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.item .item_box .item_list li {
  width: 90%;
  margin: 0 auto 2.6666666667vw;
  padding: 2.6666666667vw 2.6666666667vw 5.3333333333vw;
  text-align: center;
  line-height: 120%;
}
@media screen and (min-width: 769px) {
  .item .item_box .item_list li {
    width: 30%;
    margin: 0 0 10px 0;
    padding: 10px 10px 20px;
  }
}
.item .item_box .item_list li a {
  padding: 0;
  margin: 0;
  display: block;
}
.item .item_box .item_list li a figure {
  width: 53.3333333333vw;
  height: 53.3333333333vw;
  margin: 0 auto 4vw;
  border-radius: 100%;
  border: dotted 1px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .item .item_box .item_list li a figure {
    width: 18.6666666667vw;
    max-width: 350px;
    height: 18.6666666667vw;
    max-height: 350px;
    margin: 0 auto 20px;
  }
}
.item .item_box .item_list li a figure img {
  margin: 0;
  padding: 0;
  height: 100%;
  border-radius: 100%;
  vertical-align: bottom;
}
.item .item_box .item_list li a figure .buy {
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  margin: 0;
  padding: 0;
  text-align: center;
  display: inline-block;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 3.7333333333vw;
  color: #fff;
  background: #CC0000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .item .item_box .item_list li a figure .buy {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    max-width: 80px;
    max-height: 80px;
    font-size: 14px;
  }
}
.item .item_box .item_list li .price {
  margin: 0 0 2.6666666667vw 0;
  font-size: 3.7333333333vw;
  letter-spacing: 1px;
}
@media screen and (min-width: 769px) {
  .item .item_box .item_list li .price {
    margin: 0 0 15px 0;
    font-size: 2.2rem;
  }
}
.item .item_box .item_list li .price span {
  font-size: 2.6666666667vw;
  margin-bottom: 10px;
  line-height: 150%;
}
@media screen and (min-width: 769px) {
  .item .item_box .item_list li .price span {
    font-size: 1.2rem;
  }
}
.item .item_box .item_list li .name {
  margin: 0 0 1.3333333333vw 0;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 769px) {
  .item .item_box .item_list li .name {
    margin: 0 0 10px 0;
    font-size: 2rem;
  }
}
.item .item_box .item_list li .size {
  margin: 0 0 1.3333333333vw 0;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .item .item_box .item_list li .size {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
  }
}
.item .item_box .item_list li .text {
  font-size: 2.6666666667vw;
  text-align: left;
  line-height: 160%;
}
@media screen and (min-width: 769px) {
  .item .item_box .item_list li .text {
    font-size: 1.4rem;
  }
}
.item .item_box .item_list li .coming {
  width: 80%;
  padding: 10px;
  margin: 15px auto 0;
  font-size: 14px;
  font-family: din-2014, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.item .location {
  width: 70%;
  max-width: 500px;
  margin: 13.3333333333vw auto 0;
}
@media screen and (min-width: 769px) {
  .item .location {
    margin: 80px auto 0;
  }
}
.item .location h2 {
  margin-bottom: 5.3333333333vw;
  font-size: 6.4vw;
  line-height: 160%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .item .location h2 {
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
}
.item .location figure {
  width: 100%;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .item .location figure {
    margin-bottom: 20px;
  }
}
.item .location h3 {
  margin-bottom: 2.6666666667vw;
  font-size: 4.8vw;
  font-weight: bold;
  line-height: 160%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .item .location h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
.item .location p.add {
  margin: 2.6666666667vw 0;
  font-size: 2.9333333333vw;
  line-height: 160%;
}
@media screen and (min-width: 769px) {
  .item .location p.add {
    margin: 10px 0;
    font-size: 1.1rem;
  }
}
.item .location a {
  text-decoration: underline;
}
.item .staff {
  width: 90%;
  max-width: 500px;
  margin: 13.3333333333vw auto 0;
}
@media screen and (min-width: 769px) {
  .item .staff {
    margin: 80px auto 0;
  }
}
.item .staff h2 {
  margin-bottom: 5.3333333333vw;
  font-size: 6.4vw;
  line-height: 160%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .item .staff h2 {
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
}
.item .staff ul {
  display: flex;
  justify-content: space-between;
}
.item .staff ul li {
  width: 48%;
  margin-bottom: 8vw;
}
.item .staff ul li a {
  text-align: center;
  display: block;
  text-decoration: none;
}
.item .staff ul li a figure {
  width: 100%;
  max-width: 150px;
  margin: 0 auto 2.6666666667vw;
  border: solid 1px;
  border-radius: 75px;
}
@media screen and (min-width: 769px) {
  .item .staff ul li a figure {
    margin-bottom: 10px;
  }
}
.item .staff ul li a figure img {
  width: 100%;
  border-radius: 75px;
}
.item .staff ul li a h3 {
  margin-bottom: 1.3333333333vw;
  font-size: 4.8vw;
  font-weight: bold;
  line-height: 160%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .item .staff ul li a h3 {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
}
.item .staff ul li a i {
  font-size: 8.5333333333vw;
}
@media screen and (min-width: 769px) {
  .item .staff ul li a i {
    font-size: 3.2rem;
  }
}
.item .staff a {
  text-decoration: underline;
}

.item_detail {
  width: 80%;
  max-width: 600px;
  margin: 80px auto;
}
.item_detail li {
  margin-bottom: 30px;
}
.item_detail li img {
  margin-bottom: 30px;
  border: dotted 1px #BAB3AB;
}

/*-----------------------------
 present
------------------------------------ */
.present {
  width: 100%;
  padding: 21.3333333333vw 8vw;
  color: #fff;
  background-color: #908C7F;
}
@media screen and (min-width: 769px) {
  .present {
    padding: 100px 20px;
  }
}
.present h3 {
  margin-bottom: 5.3333333333vw;
  font-size: 6.4vw;
  font-weight: bold;
  line-height: 160%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .present h3 {
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
}
.present p {
  text-align: left;
}
@media screen and (min-width: 769px) {
  .present p {
    text-align: center;
  }
}
.present p.btn {
  width: 100%;
  padding: 5.3333333333vw;
  margin-top: 5.3333333333vw;
  background: #CC0000;
  color: #fff;
  font-size: 5.3333333333vw;
  display: block;
  text-align: center;
  border-radius: 100px;
  opacity: 0.2;
}
@media screen and (min-width: 769px) {
  .present p.btn {
    width: 500px;
    padding: 20px;
    margin: 20px auto 0;
    font-size: 2rem;
  }
}
.present .coming {
  margin-top: 10px;
  color: #fff;
}
.present a.btn {
  width: 100%;
  padding: 5.3333333333vw;
  margin-top: 5.3333333333vw;
  background: #CC0000;
  color: #fff;
  font-size: 5.3333333333vw;
  display: block;
  text-align: center;
  border-radius: 100px;
}
@media screen and (min-width: 769px) {
  .present a.btn {
    width: 500px;
    padding: 20px;
    margin: 20px auto 0;
    font-size: 2rem;
  }
}

/*-----------------------------
 pickup
------------------------------------ */
.pickup {
  width: 100%;
  padding: 21.3333333333vw 8vw;
  border-bottom: dotted 1px;
}
@media screen and (min-width: 769px) {
  .pickup {
    padding: 100px 20px;
  }
}
.pickup h3 {
  margin-bottom: 5.3333333333vw;
  font-size: 6.4vw;
  font-weight: bold;
  line-height: 160%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .pickup h3 {
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
}
.pickup p {
  text-align: left;
}
@media screen and (min-width: 769px) {
  .pickup p {
    text-align: center;
  }
}
.pickup a {
  width: 100%;
  margin: 5.3333333333vw auto 0;
  display: block;
}
@media screen and (min-width: 769px) {
  .pickup a {
    max-width: 500px;
    margin-top: 20px;
  }
}
.pickup a img {
  width: 100%;
}
.pickup a.btn {
  width: 100%;
  padding: 5.3333333333vw;
  margin-top: 5.3333333333vw;
  background: #CC0000;
  color: #fff;
  font-size: 5.3333333333vw;
  display: block;
  text-align: center;
  border-radius: 100px;
}
@media screen and (min-width: 769px) {
  .pickup a.btn {
    width: 500px;
    padding: 20px;
    margin: 20px auto 0;
    font-size: 2rem;
  }
}
.pickup .coming {
  margin-top: 10px;
}

/*-----------------------------
 information
------------------------------------ */
.information {
  width: 100%;
  margin: 0 auto;
  padding: 21.3333333333vw 0;
}
@media screen and (min-width: 769px) {
  .information {
    padding: 100px 0;
  }
}
.information .information_box {
  width: 80%;
  max-width: 700px;
  margin: 0 auto;
}
.information .information_box h3 {
  margin: 8vw auto 2.6666666667vw;
  padding: 2.6666666667vw;
  font-size: 4.2666666667vw;
  border: solid 1px #938B81;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .information .information_box h3 {
    margin: 30px auto 10px;
    padding: 10px;
    font-size: 2.4rem;
  }
}
.information .information_box p {
  padding: 0;
  margin-bottom: 4vw;
  font-size: 3.7333333333vw;
  line-height: 180%;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .information .information_box p {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
.information .information_box p::before {
  content: "※";
}
.information .information_box p span {
  color: #76705C;
}
.information .information_box p a {
  width: 80%;
  margin: 10px auto 30px;
  padding: 8px 20px 6px 30px;
  font-weight: 500;
  color: #fff;
  background: #76705C;
  display: block;
  text-align: center;
  border-radius: 100px;
}
.information .information_box p a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  font-size: 0.9rem;
  padding-left: 10px;
}

.line {
  border-bottom: dashed 1px;
  margin: 40px auto;
}

.copyright {
  margin: 0 auto;
  padding: 0 0 13.3333333333vw 0;
  background: #FDF9FB;
}
@media screen and (min-width: 769px) {
  .copyright {
    padding: 0 0 50px 0;
  }
}
.copyright figure {
  width: 80%;
  margin: 0 auto 5.3333333333vw;
}
@media screen and (min-width: 769px) {
  .copyright figure {
    margin: 0 auto 20px;
    max-width: 500px;
  }
}
.copyright small {
  width: 80%;
  margin: 0 auto;
  padding: 0;
  font-size: 2.6666666667vw;
  letter-spacing: 1px;
  line-height: 130%;
  display: block;
}
@media screen and (min-width: 769px) {
  .copyright small {
    font-size: 1rem;
    text-align: center;
  }
}

/*---------------------------------------------------------------
 footer
-------------------------------------------------------------- */
footer {
  margin: 21.3333333333vw auto 0;
  padding: 21.3333333333vw 0 42.6666666667vw;
  background: #908C7F;
  position: relative;
  display: block;
  color: #fff;
}
@media screen and (min-width: 769px) {
  footer {
    margin: 100px auto 0;
    padding: 100px 0;
  }
}
footer figure {
  width: 90%;
  max-width: 350px;
  position: absolute;
  left: 0;
  right: 0;
  top: -100px;
  margin: auto;
}
footer a.logo {
  width: 40%;
  max-width: 150px;
  margin: 0 auto;
  padding: 0;
  display: block;
}
footer a.logo img {
  vertical-align: bottom;
}
footer ul {
  margin: 30px auto;
  padding: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
footer ul li {
  width: 50px;
  margin: 0 15px;
  padding: 0;
}
footer ul li i {
  margin: 0;
  font-size: 4.2rem;
  color: #fff;
}
footer small {
  width: 80%;
  margin: 0 auto;
  padding: 0;
  font-size: 2.6666666667vw;
  letter-spacing: 1px;
  line-height: 130%;
  display: block;
  text-align: center;
}
@media screen and (min-width: 769px) {
  footer small {
    font-size: 1rem;
    text-align: center;
  }
}

.item_all {
  width: 100%;
  margin: 0 auto;
  padding: 8vw 2.6666666667vw;
  background: #76705C;
  font-size: 4.8vw;
  letter-spacing: 2px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  position: fixed;
  left: 0;
  bottom: -90px;
  z-index: 200;
}
@media screen and (min-width: 769px) {
  .item_all {
    padding: 30px 10px;
    font-size: 2.4rem;
  }
}
.item_all a {
  display: block;
  color: #fff;
}
.item_all a i {
  margin-right: 5px;
}

/*------------------------------
 animation
 -------------------------------*/
.invisible {
  transition: opacity 0.5s ease;
  opacity: 0;
}

.visible {
  transition: opacity 0.5s ease;
  opacity: 1;
}/*# sourceMappingURL=style.css.map */