@charset "UTF-8";
/*----------------------------------------------------
  sass変数
----------------------------------------------------*/
/* -----------------------------------------------------------
  basic
----------------------------------------------------------- */
label {
  margin-bottom: 1rem;
}

/* -----------------------------------------------------------
  sec-opn
----------------------------------------------------------- */
.sec-opn .sec-opn_bg {
  padding: 0;
}
.sec-opn .sec-opn_bg .contents__left {
  height: auto;
  padding: 30px;
  background: #a49072;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec-opn .sec-opn_bg .contents__left--ttl {
  display: inline-block;
  color: #FFF;
}
.sec-opn .sec-opn_bg .contents__left--ttl p {
  display: inline-block;
  font-family: "Lora", serif;
  font-size: 1.4rem;
  border-bottom: 1px solid #FFF;
}
.sec-opn .sec-opn_bg .contents__left--ttl h2 {
  font-family: "Lora", serif;
  font-size: 3.5rem;
  letter-spacing: 0.5rem;
  margin-bottom: 0.5rem;
}
.sec-opn .sec-opn_bg .contents__left--ttl span {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}
.sec-opn .sec-opn_bg .contents__right {
  padding: 0;
}
.sec-opn .sec-opn_bg .contents__right--img {
  width: 100%;
  height: auto;
  position: relative;
}
.sec-opn .sec-opn_bg .contents__right--img img {
  width: 100%;
}

.kvAnime::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

@media only screen and (max-width: 1100px) {
  .sec-opn {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 768px) {
  .sec-opn {
    margin-top: 0;
  }
  .sec-opn .sec-opn_bg {
    padding: 0;
  }
  .sec-opn .sec-opn_bg .contents {
    position: relative;
  }
  .sec-opn .sec-opn_bg .contents__left {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
    padding: 0;
    display: block;
    background: none;
    z-index: 1;
  }
  .sec-opn .sec-opn_bg .contents__left--ttl {
    padding: 20px 30px;
    display: inline-block;
    color: #FFF;
    background: #a49072;
  }
  .sec-opn .sec-opn_bg .contents__left--ttl p {
    display: none;
  }
  .sec-opn .sec-opn_bg .contents__left--ttl h2 {
    font-size: 2.5rem;
  }
  .sec-opn .sec-opn_bg .contents__left--ttl span {
    font-size: 1.3rem;
  }
  .sec-opn .sec-opn_bg .contents__right {
    padding: 0;
  }
  .sec-opn .sec-opn_bg .contents__right--img {
    width: auto;
    height: 45vh;
  }
  .sec-opn .sec-opn_bg .contents__right--img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 22%;
       object-position: 22%;
  }
}
.annotation {
  font-size: 16px;
  text-align: center;
  margin-bottom: 60px;
}

/* -----------------------------------------------------------
  menu
----------------------------------------------------------- */
.menu__bg {
  position: relative;
  padding: 120px 6.777vw;
}
.menu__bg::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 110%;
  background: url(../img/menu/menu_bg.svg) no-repeat top center;
  background-size: cover;
  z-index: -1;
  opacity: 0.3;
}
.menu__contents {
  max-width: 1000px;
  margin: 0 auto;
}
.menu__contents .menu-item {
  width: 100%;
  padding: 60px 4vw;
  background: #FFF;
  box-shadow: 0px 0px 100px 10px #f0f0f0;
  -webkit-box-shadow: 0px 0px 100px 10px #f0f0f0;
  -moz-box-shadow: 0px 0px 100px 10px #f0f0f0;
  -o-box-shadow: 0px 0px 100px 10px #f0f0f0;
  -ms-box-shadow: 0px 0px 100px 10px #f0f0f0;
}
.menu__contents .menu-item:not(:last-of-type) {
  margin-bottom: 70px;
}
.menu__contents .menu-item__ttl {
  font-family: "Lora", serif;
  font-size: 50px;
  letter-spacing: 5px;
  color: #a49072;
  padding-bottom: 10px;
  border-bottom: 10px solid #a49072;
}
.menu__contents .menu-item__link {
  text-align: center;
  margin-top: 50px;
}
.menu__contents .menu-item__link a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 1.5rem 1.8rem;
  font-size: 1.3rem;
  letter-spacing: 0.5rem;
  text-align: left;
  color: #000000;
  border: 1px solid #000000;
  border-right: none;
}
.menu__contents .menu-item__link a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 55px;
  height: 100%;
  background: url(../img/share/arrow02.svg) no-repeat center center;
  background-size: contain;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.menu__contents .menu-item__link a:hover::before {
  right: -5%;
}
.menu__contents .menu-item__link a .link-txt {
  color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.menu__contents .menu-item__link a:hover .link-txt {
  color: #000000;
}
.menu__contents .menu-item__table {
  width: 100%;
}
.menu__contents .menu-item__table tr {
  border-bottom: 1px solid #f0f0f0;
}
.menu__contents .menu-item__table tr th {
  width: 75%;
  letter-spacing: 1px;
  line-height: 1.8;
  padding: 25px 0;
  border-bottom: 1px solid rgba(164, 144, 114, 0.5);
}
.menu__contents .menu-item__table tr th span {
  display: block;
  font-size: 13px;
  color: #cf6565;
}
.menu__contents .menu-item__table tr td {
  width: 25%;
  letter-spacing: 1px;
  line-height: 1.8;
  padding: 25px 20px;
  text-align: right;
}
.menu__contents .menu-item .annotation {
  font-size: 13px;
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .menu__bg {
    position: relative;
    padding: 120px 20px 60px;
  }
  .menu__bg::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 110%;
    background: url(../img/menu/menu_bg.svg) no-repeat top center;
    background-size: cover;
    z-index: -1;
    opacity: 0.3;
  }
  .menu__contents .menu-item {
    padding: 30px 15px;
    background: #FFF;
    box-shadow: 0px 0px 100px 10px #f0f0f0;
    -webkit-box-shadow: 0px 0px 100px 10px #f0f0f0;
    -moz-box-shadow: 0px 0px 100px 10px #f0f0f0;
    -o-box-shadow: 0px 0px 100px 10px #f0f0f0;
    -ms-box-shadow: 0px 0px 100px 10px #f0f0f0;
  }
  .menu__contents .menu-item:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .menu__contents .menu-item__ttl {
    font-size: 30px;
    padding-bottom: 10px;
    border-bottom: 5px solid #a49072;
  }
  .menu__contents .menu-item__link {
    margin-top: 30px;
  }
  .menu__contents .menu-item__table {
    width: 100%;
  }
  .menu__contents .menu-item__table tr {
    border-bottom: 1px solid #f0f0f0;
  }
  .menu__contents .menu-item__table tr th {
    width: 80%;
    font-size: 14px;
    padding: 25px 0;
  }
  .menu__contents .menu-item__table tr th span {
    font-size: 12px;
  }
  .menu__contents .menu-item__table tr td {
    width: 20%;
    font-size: 14px;
    padding: 25px 20px;
  }
  .menu__contents .menu-item .annotation {
    font-size: 12px;
    margin-top: 20px;
  }
}/*# sourceMappingURL=menu.css.map */