@charset "UTF-8";
/* ******************************* */
* {
  box-sizing: border-box;
  margin: 0;
}

body a img {
  pointer-events: none;
}

a {
  display: inline-block;
  text-decoration: none;
}

main {
  overflow: hidden;
}

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

h2 {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

.mincho {
  font-family: "Zen Old Mincho", serif;
}

.cta_line {
  max-width: 460px;
  filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 768px) {
  .cta_line {
    width: 300px;
  }
}

.title_top {
  max-width: 180px;
}
@media screen and (max-width: 768px) {
  .title_top {
    width: 40%;
    min-width: 140px;
  }
}

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

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

.no-click {
  pointer-events: none;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  width: 100vw;
  padding: 18px 18px 0 28px;
  z-index: 10;
}
.header_logo {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 90px;
  }
}

.nav_wrap {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 31px;
  font-size: 12px;
  font-weight: 700;
  height: 54px;
  padding-left: 40px;
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .nav_wrap {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .nav_wrap {
    padding-left: 10px;
  }
}
.nav_wrap a {
  margin-right: 30px;
  color: #0f0f0f;
}
@media screen and (max-width: 1000px) {
  .nav_wrap a {
    margin-right: 10px;
  }
}
.nav_outer {
  display: table;
  background-color: #D4060B;
  border-radius: 31px;
  font-size: 17px;
  width: 340px;
  height: 54px;
  padding: 7px 0 7px 20px;
  box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1000px) {
  .nav_outer {
    width: 250px;
    font-size: 13px;
  }
}
.nav_outer a {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
}
.nav_reserve::before {
  content: "";
  background-image: url(../images/party/header_calender.png);
  background-size: cover;
  display: inline-block;
  width: 18px;
  height: 18px;
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.nav_line::before {
  content: "";
  background-image: url(../images/party/header_phone.png);
  background-size: cover;
  display: inline-block;
  width: 12px;
  height: 18px;
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.nav_border {
  width: 1px;
  height: 40px;
  margin-right: 20px;
}
@media screen and (max-width: 1000px) {
  .nav_border {
    margin-right: 10px;
  }
}

.header-area {
  display: none;
  justify-content: space-between;
  height: 65px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-area {
    display: flex;
  }
}

/*ボタン外側*/
.openbtn {
  position: relative;
  background: #EA0801;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  z-index: 999;
}

.openbtn.active {
  background: rgba(0, 0, 0, 0);
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 16px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 17px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 29px;
}

.openbtn span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 5px;
  left: 0;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.openbtn.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background-color: #EA0801;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background-color: #EA0801;
}

.openbtn.active span:nth-of-type(3)::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.slide-menu {
  text-align: center;
  background-color: #F0EDE7;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s;
  color: #0f0f0f;
  z-index: 50;
}
.slide-menu a {
  color: #0f0f0f;
}
.slide-menu_inner {
  position: relative;
  list-style: none;
  width: 260px;
  margin: auto;
  padding: 0;
  font-size: 18px;
}
.slide-menu_inner li::after {
  content: "";
  background-image: url(../images/party/menu_border.svg);
  background-size: cover;
  display: inline-block;
  position: relative;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
  width: 260px;
  height: 2px;
}
.slide-menu_btn img {
  display: block;
  width: 260px;
  margin: auto;
}
.slide-menu figure {
  width: 72px;
  margin: 25px auto 20px;
}
.slide-menu_tel {
  color: #EA0801;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin: 20px auto 0;
}
.slide-menu_tel::before {
  content: "";
  background-image: url(../images/party/menu_tel.svg);
  background-size: cover;
  display: inline-block;
  position: relative;
  top: 0;
  left: -13px;
  width: 12px;
  height: 24px;
}

.slide-menu li {
  line-height: 1.8;
  text-align: center;
  margin: 0;
}

.slide-menu.active {
  transform: translateX(0);
}

.fv {
  position: relative;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 700px;
}
.fv-container {
  position: relative;
  overflow: hidden;
  background-color: #0f0f0f;
  width: 100%;
  height: 700px;
}
.fv-container__img {
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  opacity: 0;
  animation: change-img-anim 25s infinite;
}
.fv-container__img:nth-of-type(1) {
  animation-delay: 0s;
  background-image: url(../images/party/fv01.jpg);
  background-position: center;
  background-size: cover;
}
.fv-container__img:nth-of-type(2) {
  animation-delay: 5s;
  background: url(../images/party/fv02.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.fv-container__img:nth-of-type(3) {
  animation-delay: 10s;
  background: url(../images/party/fv03.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.fv-container__img:nth-of-type(4) {
  animation-delay: 15s;
  background: url(../images/party/fv04.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.fv-container__img:nth-of-type(5) {
  animation-delay: 20s;
  background: url(../images/party/fv05.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.fv_tel {
  position: absolute;
  top: 12%;
  right: 1%;
  width: 184px;
}
.fv h1 {
  position: relative;
  top: -75%;
  color: #fff;
  text-align: center;
  font-size: 19px;
  font-weight: 900;
  background-color: rgba(15, 15, 15, 0.6);
  padding: 16px 18px;
  width: fit-content;
  margin: auto;
}
.fv h1::after {
  content: "";
  background-image: url(../images/party/ebisu-east/fv_balloon_ebisu.png);
  background-size: cover;
  display: inline-block;
  position: absolute;
  right: -40px;
  top: -56px;
  width: 120px;
  height: 64px;
}
.fv_inner {
  position: relative;
  top: -75%;
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin: 50px auto 70px;
}
@media screen and (max-width: 768px) {
  .fv_inner {
    width: 320px;
  }
}
.fv_inner img {
  max-width: 150px;
}
@media screen and (max-width: 768px) {
  .fv_inner figure {
    width: 100px;
  }
}
.fv p {
  position: relative;
  top: -80%;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .fv p {
    font-size: 17px;
  }
}
.fv .border::before {
  content: "";
  background-image: url(../images/party/fv_border01.svg);
  background-size: cover;
  display: inline-block;
  width: 20px;
  height: 30px;
  margin: -6px 10px;
}
@media screen and (max-width: 768px) {
  .fv .border::before {
    width: 12px;
    height: 26px;
  }
}
.fv .border::after {
  content: "";
  background-image: url(../images/party/fv_border02.svg);
  background-size: cover;
  display: inline-block;
  width: 20px;
  height: 30px;
  margin: -6px 10px;
}
@media screen and (max-width: 768px) {
  .fv .border::after {
    width: 12px;
    height: 26px;
  }
}
.fv_text {
  position: absolute;
  bottom: 14%;
  left: 50%;
  translate: -50%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .fv_text {
    display: block;
    bottom: 16%;
    width: 260px;
    margin-top: 18px;
  }
}
.fv_text img {
  max-width: 640px;
  width: 100%;
}

@keyframes change-img-anim {
  0% {
    opacity: 0;
    filter: blur(3px);
  }
  30% {
    opacity: 1;
    filter: blur(0px);
  }
  36% {
    opacity: 1;
  }
  45% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
  }
}
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  top: 680px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.cta_btn {
  position: fixed;
  bottom: -10px;
  display: none;
  justify-content: space-evenly;
  align-items: center;
  background: #EA0801;
  width: 100%;
  height: 64px;
  padding: 5px;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .cta_btn {
    display: flex;
  }
}
.cta_btn a {
  color: #fff;
}
.cta_btn .nav_border {
  margin: 0;
}

.reserve {
  background-color: #F7F6F4;
  text-align: center;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  .reserve {
    padding: 40px 0 40px;
  }
}
.reserve_img {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .reserve_img {
    width: 300px;
    margin-bottom: 20px;
  }
}

.user_voice {
  position: relative;
  background-color: #F7F6F4;
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .user_voice {
    padding-bottom: 50px;
  }
}
.user_voice_title {
  max-width: 530px;
  margin: 0 auto 14px;
}
@media screen and (max-width: 768px) {
  .user_voice_title {
    width: 80%;
    min-width: 280px;
  }
}
.user_voice_heading {
  margin: 14px auto 50px;
}
@media screen and (max-width: 768px) {
  .user_voice_heading {
    font-size: 16px;
  }
}
.user_voice .border::before {
  content: "";
  background-image: url(../images/party/user_voice_border01.svg);
  background-size: cover;
  display: inline-block;
  width: 28px;
  height: 38px;
  margin: -6px 10px;
}
@media screen and (max-width: 768px) {
  .user_voice .border::before {
    width: 12px;
    height: 20px;
  }
}
.user_voice .border::after {
  content: "";
  background-image: url(../images/party/user_voice_border02.svg);
  background-size: cover;
  display: inline-block;
  width: 28px;
  height: 38px;
  margin: -6px 10px;
}
@media screen and (max-width: 768px) {
  .user_voice .border::after {
    width: 12px;
    height: 20px;
  }
}

.swiper_voice {
  max-width: 1024px;
  width: 90%;
  height: auto;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .swiper_voice {
    width: 100%;
  }
}
.swiper_voice_wrapper {
  transition-timing-function: linear;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  bottom: 0;
  top: auto;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #ED3B3B;
}

.swiper-button-prev {
  content: "";
  background-image: url(../images/party/user_voice_prev_btn.svg);
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  z-index: 2;
}

.swiper-button-next {
  content: "";
  background-image: url(../images/party/user_voice_next_btn.svg);
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  z-index: 2;
}

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

.modal {
  display: none;
}
.modal_wrap {
  height: calc(100vh + 1px);
  width: 1px;
  background-color: transparent;
}
.modal_outer {
  display: flex;
  overscroll-behavior: contain;
  overflow-y: scroll;
}
.modal_style {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  overflow: hidden;
  outline: 0;
}
.modal_style img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1085px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .modal_style img {
    display: block;
    width: 50%;
    min-width: 280px;
  }
}
@media screen and (max-width: 400px) {
  .modal_style img {
    width: 80%;
  }
}
.modal_btn_wrap {
  position: relative;
  max-width: 1085px;
  width: 100%;
  height: 510px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .modal_btn_wrap {
    height: 640px;
  }
}
.modal_close {
  cursor: pointer;
}
.modal_close::before, .modal_close::after {
  display: flex;
  content: "";
  background-color: #fff;
  width: 30px;
  height: 4px;
  border-radius: 4px;
  position: absolute;
  top: 13px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.modal_close::before {
  top: -8%;
  right: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .modal_close::before {
    top: 1%;
    right: 25%;
  }
}
@media screen and (max-width: 400px) {
  .modal_close::before {
    top: 10%;
    right: 10%;
  }
}
.modal_close::after {
  top: -8%;
  right: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .modal_close::after {
    top: 1%;
    right: 25%;
  }
}
@media screen and (max-width: 400px) {
  .modal_close::after {
    top: 10%;
    right: 10%;
  }
}

.features {
  background-color: #F7F6F4;
  text-align: center;
  padding-bottom: 110px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .features {
    padding-bottom: 50px;
  }
}
.features h2 {
  margin-top: 8px;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .features h2 {
    font-size: 24px;
  }
}
.features_accordion {
  max-width: 800px;
  width: 90%;
  background-color: #fff;
  border: #FF4545 3px solid;
  border-radius: 22px;
  margin: 70px auto 50px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .features_accordion {
    width: 95%;
    min-width: 300px;
    margin: 30px auto 40px;
    padding: 50px 15px 30px;
  }
}
.features_accordion_title {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .features_accordion_title {
    margin-bottom: 20px;
  }
}
.features_accordion_inner {
  height: 0px;
  overflow: hidden;
}
.features_accordion_inner.active {
  height: auto;
}
.features_case_title {
  max-width: 530px;
  min-width: 280px;
  width: 70%;
  height: 42px;
  background-color: #FF4545;
  color: #fff;
  border-radius: 30px;
  margin: auto;
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .features_case_title {
    height: 35px;
  }
}
.features_case_title p {
  font-size: 22px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .features_case_title p {
    font-size: 16px;
  }
}
.features_case-btn {
  background-color: #fff;
  border: none;
  color: #FF4545;
}
.features_user_wrap {
  display: flex;
}
.features_staff_wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}
@media screen and (max-width: 1000px) {
  .features_staff_wrap {
    margin-top: 10px;
  }
}
.features_icon {
  width: 100px;
  margin: 0 10px;
}
@media screen and (max-width: 1000px) {
  .features_icon {
    width: 90px;
  }
}
@media screen and (max-width: 768px) {
  .features_icon {
    width: 50px;
    margin: 0 5px;
  }
}
@media screen and (max-width: 768px) {
  .features_accordion_inner {
    margin: 0;
  }
}
.features_balloon {
  max-width: 490px;
  min-width: 210px;
  width: 80%;
}
@media screen and (max-width: 1000px) {
  .features_balloon {
    width: 50%;
  }
}
.features_report {
  display: flex;
  text-align: left;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .features_report {
    display: block;
    margin-top: 20px;
  }
}
.features_report img {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .features_report img {
    margin-left: 0;
  }
}
.features_report_title {
  color: #B9B328;
  font-size: 19px;
}
.features_report_text {
  color: #0f0f0f;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .features_report_text {
    font-size: 14px;
  }
}
.features hr {
  border: none;
  border-top: 2px dotted #707070;
  max-width: 450px;
}
.features_text {
  color: #0f0f0f;
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .features_text {
    font-size: 14px;
  }
}

.attractive {
  background-color: #F7F6F4;
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .attractive {
    padding-bottom: 50px;
  }
}
.attractiveh2 {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .attractiveh2 {
    font-size: 24px;
  }
}
.attractive_title {
  max-width: 256px;
}
@media screen and (max-width: 768px) {
  .attractive_title {
    width: 70%;
    min-width: 192px;
  }
}
.attractive_list {
  list-style: none;
  max-width: 800px;
  min-width: 300px;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px auto 0;
  padding: 0 20px;
  gap: 40px 0;
}
@media screen and (max-width: 768px) {
  .attractive_list {
    padding: 0;
    margin: 50px auto 0;
  }
}
.attractive_list img {
  width: 170px;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .attractive_list img {
    width: 130px;
    margin-bottom: 11px;
  }
}
.attractive p {
  color: #0f0f0f;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .attractive p {
    font-size: 11px;
  }
}

.plan {
  background: url(../images/party/plan_back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .plan {
    padding: 30px 0;
  }
}
.plan_title {
  max-width: 180px;
}
.plan h2 {
  color: #fff;
  margin-top: 8px;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .plan h2 {
    font-size: 24px;
  }
}
.plan_img {
  display: block;
  max-width: 688px;
  width: 90%;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .plan_img {
    display: block;
    margin: 20px auto 0;
    width: 80%;
    min-width: 280px;
  }
}
.plan_annotation {
  color: #0f0f0f;
  font-size: 12px;
  margin: 20px 0;
}
.plan hr {
  max-width: 688px;
  background-color: #0f0f0f;
  border: none;
  height: 1px;
}
@media screen and (max-width: 768px) {
  .plan hr {
    width: 80%;
    min-width: 280px;
    margin: 0 auto 10px;
  }
}
.plan_list {
  color: #fff;
  width: 680px;
  margin: auto;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .plan_list {
    display: block;
    font-size: 16px;
    width: 80%;
    min-width: 280px;
  }
}
.plan_list-bace {
  margin: 20px auto;
}
.plan_list-another {
  margin: 20px auto 0;
}
.plan table {
  max-width: 480px;
  margin: auto;
}
.plan td {
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .plan td {
    padding: 0 3px;
  }
}
.plan th {
  text-align: center;
  font-size: 16px;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .plan th {
    padding: 0 3px;
  }
}
.plan table, .plan th, .plan td {
  border: none;
}
@media screen and (max-width: 768px) {
  .plan table, .plan th, .plan td {
    font-size: 14px;
  }
}
.plan_text {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .plan_text {
    font-size: 16px;
    margin: 13px 0;
  }
}

.menu {
  background-color: #F7F6F4;
  text-align: center;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .menu {
    padding-top: 30px;
  }
}
.menu_title {
  width: 180px;
  margin-bottom: 50px;
}
.menu h2 {
  margin: 8px auto 50px;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .menu h2 {
    font-size: 24px;
  }
}
.menu h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .menu h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .menu h3 {
    text-align: center;
    font-size: 22px;
  }
}
.menu h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 26px;
}
@media screen and (max-width: 768px) {
  .menu h4 {
    text-align: center;
    font-size: 22px;
  }
}
.menu_wrap {
  background: url(../images/party/menu_back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .menu_wrap {
    padding: 100px 0 50px;
  }
}
.menu_outer {
  text-align: left;
  max-width: 900px;
  width: 90%;
  margin: auto;
}
.menu p {
  margin-bottom: 20px;
}
.menu_content {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  position: relative;
  margin-bottom: 210px;
}
@media screen and (max-width: 1000px) {
  .menu_content {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .menu_content {
    grid-template-columns: 1fr;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .menu_content_inner {
    margin: 60% auto 0;
    width: 80%;
    min-width: 280px;
  }
}
.menu_content p {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .menu_content p {
    font-size: 14px;
  }
}
.menu_food_img {
  width: 700px;
  position: absolute;
  top: -140px;
  left: -30%;
}
@media screen and (max-width: 1000px) {
  .menu_food_img {
    width: 560px;
  }
}
@media screen and (max-width: 768px) {
  .menu_food_img {
    top: -110px;
    left: 50%;
    transform: translate(-50%);
    width: 80%;
    min-width: 370px;
  }
}
.menu_drink_img {
  order: 2;
  width: 800px;
  position: absolute;
  right: -50%;
  top: -60%;
}
@media screen and (max-width: 1000px) {
  .menu_drink_img {
    width: 510px;
    right: -30%;
    top: -20%;
  }
}
@media screen and (max-width: 768px) {
  .menu_drink_img {
    width: 80%;
    min-width: 380px;
    right: 50%;
    top: 0;
    transform: translate(60%, -10%);
  }
}
.menu_drink_inner {
  order: 1;
}
@media screen and (max-width: 768px) {
  .menu_drink_inner {
    margin: 60% auto 0;
    width: 90%;
    min-width: 286px;
  }
}
@media screen and (max-width: 400px) {
  .menu_drink_inner {
    margin: 80% auto 0;
  }
}
@media screen and (max-width: 768px) {
  .menu_drink_inner h3 {
    font-size: 21px;
    line-height: 2;
  }
}
.menu_btn {
  max-width: 390px;
}
@media screen and (max-width: 768px) {
  .menu_btn_wrap {
    text-align: center;
  }
}
.menu_champagne {
  max-width: 420px;
  margin-bottom: 180px;
}
.menu_course {
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .menu_course {
    display: block;
    width: 80%;
    min-width: 280px;
    margin: 0 auto 50px;
  }
}
.menu table {
  margin-bottom: 100px;
  border: #C9C9C9 1px solid;
}
@media screen and (max-width: 768px) {
  .menu table {
    display: table;
    width: 80%;
    min-width: 280px;
    margin: 0 auto 50px;
  }
}
.menu th {
  background-color: #8E7D42;
  font-weight: 400;
  width: 210px;
  padding: 14px;
}
@media screen and (max-width: 768px) {
  .menu th {
    width: 90px;
    padding: 8px;
  }
}
.menu td {
  padding: 14px;
}

.support {
  text-align: center;
}
.support_title {
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .support_title {
    width: 80%;
    min-width: 280px;
  }
}
.support_wrapper {
  background: url(../images/party/support_back.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #F7F6F4;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .support_wrapper {
    padding: 50px 0 0;
  }
}
.support_wrapper p {
  font-size: 20px;
  line-height: 2.5;
  color: #0f0f0f;
}
@media screen and (max-width: 768px) {
  .support_wrapper p {
    font-size: 12px;
  }
}
.support_outer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 600px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .support_outer {
    width: 30%;
    min-width: 280px;
    justify-content: center;
  }
}
.support_outer img {
  max-width: 180px;
}
@media screen and (max-width: 768px) {
  .support_outer img {
    width: 135px;
    margin: 2px;
  }
}
.support_blank {
  width: 4%;
}
.support_text_wrap {
  position: relative;
  display: flex;
  margin: auto;
  width: 800px;
}
@media screen and (max-width: 1000px) {
  .support_text_wrap {
    width: 730px;
  }
}
@media screen and (max-width: 768px) {
  .support_text_wrap {
    display: block;
    width: 94%;
    min-width: 280px;
    padding-bottom: 160px;
    overflow: hidden;
  }
}
.support_text_wrap::before {
  content: "";
  background-image: url(../images/party/support_staff.png);
  background-size: cover;
  display: inline-block;
  width: 116px;
  height: 360px;
}
@media screen and (max-width: 768px) {
  .support_text_wrap::before {
    position: absolute;
    bottom: -36%;
    left: 35%;
    transform: translate(-50%, 0);
    width: 96px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .support_text_wrap::before {
    left: 30%;
  }
}
.support_text_wrap::after {
  content: "";
  background-image: url(../images/party/support_user.png);
  background-size: cover;
  display: inline-block;
  width: 108px;
  height: 360px;
}
@media screen and (max-width: 768px) {
  .support_text_wrap::after {
    position: absolute;
    bottom: -36%;
    left: 65%;
    transform: translate(-50%, 0);
    width: 96px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .support_text_wrap::after {
    left: 70%;
  }
}
.support_red {
  color: #EA0801;
}
.support_point {
  background-color: #F7F6F4;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .support_point {
    padding: 25px 0 50px;
  }
}
.support_point_outer {
  max-width: 800px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .support_point_outer {
    margin: 0 auto 50px;
  }
}
.support_point_outer img {
  max-width: 200px;
}
.support_point_wrap {
  max-width: 240px;
  height: 350px;
  padding: 16px;
  background-color: #fff;
  border: #FF4545 2px solid;
  border-radius: 8px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .support_point_wrap {
    width: 45%;
    min-width: 145px;
    height: 300px;
    padding: 8px;
    margin-bottom: 20px;
  }
}
.support_point h3 {
  color: #FF4545;
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .support_point h3 {
    font-size: 14px;
    margin: 4px auto 10px;
  }
}
.support_point p {
  color: #0f0f0f;
  font-size: 14px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .support_point p {
    font-size: 12px;
  }
}

.shop {
  background-color: #F0EDE7;
  text-align: center;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .shop {
    padding: 50px 0;
  }
}
.shop h2 {
  margin-top: 8px;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .shop h2 {
    font-size: 24px;
  }
}
.shop h3 {
  position: relative;
  margin: 100px auto 50px;
}
@media screen and (max-width: 768px) {
  .shop h3 {
    margin: 50px auto 30px;
  }
}
.shop h3::after {
  content: "";
  background-image: url(../images/party/shop_border.svg);
  background-size: cover;
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 68px;
  height: 3px;
}

.swiper_area {
  position: relative;
  width: 700px;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .swiper_area {
    width: 80%;
    min-width: 320px;
    margin: 20px auto 0;
  }
}

.slider-thumbnail .swiper-button-prev .swiper-button-next {
  position: absolute;
  z-index: 10;
}

.slider-thumbnail .swiper-button-prev {
  left: -30px;
}

.slider-thumbnail .swiper-button-next {
  right: -30px;
}

.swiper_shop {
  width: 700px;
}
@media screen and (max-width: 768px) {
  .swiper_shop {
    width: 80%;
    min-width: 280px;
  }
}

.swiper_outer {
  justify-content: space-between;
}

.slider-thumbnail {
  width: 700px;
}
@media screen and (max-width: 768px) {
  .slider-thumbnail {
    width: 64%;
    min-width: 280px;
  }
}
.slider-thumbnail .swiper-slide {
  margin-top: 26px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .slider-thumbnail .swiper-slide {
    margin-top: 10px;
  }
}
.slider-thumbnail .swiper-slide img {
  width: 108px;
}
.slider-thumbnail .swiper-slide img:hover {
  opacity: 0.5;
  border: #D4060B solid 2px;
}

.facility_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  max-width: 900px;
  width: 95%;
  margin: auto;
  color: #0f0f0f;
  font-size: 15px;
  font-weight: 700;
  padding: 0;
}
.facility_list li {
  margin: 0 8px;
}
@media screen and (max-width: 768px) {
  .facility_list li {
    margin: 0 5px;
  }
}
.facility_list img {
  max-width: 130px;
}
@media screen and (max-width: 768px) {
  .facility_list img {
    width: 90px;
  }
}
.facility_list p {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .facility_list p {
    font-size: 12px;
  }
}

.access_wrap {
  display: flex;
  text-align: left;
  margin: auto;
  max-width: 900px;
  width: 90%;
  color: #0f0f0f;
}
@media screen and (max-width: 768px) {
  .access_wrap {
    display: block;
    width: 80%;
    min-width: 280px;
  }
}
.access_wrap iframe {
  margin-right: 40px;
  width: 410px;
  height: 220px;
  border: 0;
}
@media screen and (max-width: 768px) {
  .access_wrap iframe {
    margin-right: 0;
    width: 100%;
    min-width: 280px;
  }
}
.access_wrap dd {
  margin: 0;
}
.access_info_list_title {
  font-size: 16px;
  font-weight: 700;
  margin: 20px auto 0;
}
.access_info_list_text {
  font-size: 14px;
  font-weight: 400;
}

.question {
  background-color: #F7F6F4;
  text-align: center;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .question {
    padding: 50px 0;
  }
}
.question h2 {
  margin: 8px auto 50px;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .question h2 {
    font-size: 24px;
    margin: 8px auto 20px;
  }
}
.question_accordion {
  max-width: 900px;
  width: 90%;
  text-align: left;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .question_accordion {
    width: 80%;
    min-width: 300px;
  }
}
.question_accordion dd, .question_accordion dt, .question_accordion p {
  margin: 0;
}
.question_accordion_title {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #453E20;
  color: #fff;
  font-size: 24px;
  padding: 22px 30px;
}
@media screen and (max-width: 1000px) {
  .question_accordion_title {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .question_accordion_title {
    display: flex;
    font-size: 16px;
    padding: 12px 33px 12px 10px;
  }
}
.question_accordion_title::before {
  content: "Q";
  display: block;
  top: 0;
  bottom: 0;
  margin: auto 10px 0 0;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .question_accordion_title::before {
    font-size: 20px;
    margin: 0 7px 0 0;
  }
}
.question_accordion_title_text {
  margin-left: 20px;
  line-height: 2;
}
.question_accordion_inner {
  display: none;
  background-color: #fff;
  color: #0f0f0f;
  font-size: 20px;
  padding: 30px 30px 30px 74px;
}
@media screen and (max-width: 768px) {
  .question_accordion_inner {
    font-size: 14px;
  }
}
.question_accordion_inner_text {
  position: relative;
}
.question_accordion_inner_text::before {
  content: "A";
  display: inline-block;
  position: absolute;
  left: -40px;
  font-size: 32px;
  margin-right: 20px;
  color: #B9B328;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .question_accordion_inner_text::before {
    font-size: 20px;
    margin-right: 7px;
  }
}

.question_icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
@media screen and (max-width: 768px) {
  .question_icon_wrap {
    right: 1%;
  }
}

.question_icon {
  display: block;
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .question_icon {
    width: 20px;
    height: 20px;
  }
}

.question_accordion .open .question_icon_wrap {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.question_icon:before, .question_icon:after {
  display: flex;
  content: "";
  background-color: #fff;
  width: 30px;
  height: 2px;
  position: absolute;
  top: 13px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .question_icon:before, .question_icon:after {
    width: 20px;
    top: 8px;
  }
}

.question_icon:before {
  width: 2px;
  height: 30px;
  top: 0;
  left: 13px;
}
@media screen and (max-width: 768px) {
  .question_icon:before {
    height: 20px;
    left: 8px;
  }
}

.question_accordion .open .question_icon_wrap .question_icon:before {
  content: none;
}

.question_accordion .open .question_icon_wrap .question_icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.other {
  background-color: #F7F6F4;
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .other {
    padding-bottom: 50px;
  }
}
.other h2 {
  margin: 8px auto 60px;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .other h2 {
    margin: 8px auto 20px;
    font-size: 24px;
  }
}
.other_list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1024px;
  width: 90%;
  margin: auto;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .other_list {
    width: 80%;
    min-width: 300px;
  }
}
.other_list img {
  max-width: 256px;
}
@media screen and (max-width: 768px) {
  .other_list img {
    width: 150px;
  }
}
.other_list p {
  color: #B9B328;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .other_list p {
    margin: 8px auto 0;
  }
}
.other_list li {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .other_list li {
    margin-bottom: 20px;
  }
}

.form {
  background-color: #4B4B3A;
  text-align: center;
  color: #fff;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .form {
    padding: 50px 0;
  }
}
.form h2 {
  margin-top: 8px;
  color: #fff;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .form h2 {
    font-size: 24px;
  }
}
.form_text {
  margin: 30px 0 50px 0;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .form_text {
    font-size: 12px;
  }
}
.form_label {
  font-size: 20px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .form_label {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.form_label_wrap {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-weight: 400;
}
.form_label_wrap:first-of-type {
  margin-top: 30px;
}
.form_heading {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin: 50px auto 20px;
}
@media screen and (max-width: 768px) {
  .form_heading {
    font-size: 16px;
    margin: 50px auto 10px;
  }
}
.form_required {
  background-color: #DE0000;
  font-size: 14px;
  padding: 4px 8px;
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .form_required {
    font-size: 12px;
    padding: 4px 4px;
    line-height: 1;
    margin-bottom: 10px;
  }
}
.form_any {
  background-color: #7E7E7E;
  font-size: 14px;
  padding: 4px 8px;
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .form_any {
    font-size: 12px;
    padding: 4px 4px;
    line-height: 1;
    margin-bottom: 10px;
  }
}
.form_submit {
  display: grid;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .form_submit {
    font-size: 12px;
  }
}
.form_submit_outer {
  display: flex;
  justify-content: center;
}
.form_pc_delete {
  display: none;
}
@media screen and (max-width: 1000px) {
  .form_pc_delete {
    display: block;
  }
}

.wpcf7 input.wpcf7-submit {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: #B9B328 !important;
  width: 442px;
  height: 90px;
  font-size: 32px;
  margin-top: 30px !important;
  border: none !important;
  box-shadow: none !important;
}
@media screen and (max-width: 768px) {
  .wpcf7 input.wpcf7-submit {
    width: 80%;
    min-width: 270px;
    height: 60px;
    font-size: 20px;
  }
}

span.wpcf7-spinner {
  display: none;
}

.wpcf7 {
  background-color: #4B4B3A !important;
  border: none !important;
  text-align: left;
  max-width: 800px;
  width: 90%;
  margin: auto !important;
}
@media screen and (max-width: 768px) {
  .wpcf7 {
    width: 90%;
    min-width: 280px;
  }
}
.wpcf7-text {
  width: 100%;
  max-width: 800px;
}
.wpcf7-textarea {
  width: 100%;
}
.wpcf7-list-item {
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .wpcf7-list-item {
    font-size: 13px;
  }
}
.wpcf7 a {
  color: #fff;
  text-decoration: underline;
}

.form_date-box {
  margin-top: 0;
  margin-right: 20px;
  width: 204px;
}
@media screen and (max-width: 768px) {
  .form_date-box {
    width: 150px;
  }
}

.form-box_child {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.times {
  font-size: 18px;
  font-weight: 400;
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .times {
    font-size: 12px;
    margin-right: 4px;
  }
}

.footer {
  background-color: #0f0f0f;
  text-align: center;
  color: #fff;
  font-size: 10px;
  padding: 26px;
}
.footer img {
  width: 40px;
  margin-bottom: 20px;
}/*# sourceMappingURL=party_ebisu_east.css.map */