@charset "UTF-8";
/* 共通スタイル */
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

@media print, screen and (min-width: 768px) {
  html {
    font-size: 71.875%;
  }
}

@media print, screen and (min-width: 1400px) {
  html {
    font-size: 81. 75%;
  }
}

body {
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
}

#container {
  position: relative;
}

.cover {
  position: relative;
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

.inside {
  position: relative;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner {
  position: relative;
  width: 95%;
  max-width: 1024px;
  margin: 0 auto;
}

a[href^="tel:"] {
  pointer-events: none!important;
  color: #fff!important;
}

@media screen and (max-width: 430px){
  a[href^="tel:"] {
    pointer-events: auto!important;
    color: #fff!important;
  }
}


p {
  line-height: 1.8;
}

img {
  max-width: 100%;
  vertical-align: middle;
}


/* ボタン */
.btn {
  width: 95%;
  max-width: 600px;
  margin: 40px auto 0;
}

.btn a {
  display: block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border: 1px solid #fff;
  padding: 10px 0;
  transition: .2s;
}

.btn a::after {
  content: "→";
  margin-left: 10px;
}

.btn a:hover {
  background-color: #fff;
  color: #000;
}

.btn a:active {
  color: #000;
  background-color: #fff;
}

.btn-black a {
  color: #000;
  border-color: #000;
}

.btn-black a:hover {
  color: #fff;
  background-color: #000;
}

.btn-black a:active {
  color: #fff;
  background-color: #000;
}

@media print, screen and (min-width: 1024px) {
  .btn a {
    padding: 20px 0;
  }
}

/* 有効改行 */
.only-upper600 {
  display: none;
}

.only-upper768 {
  display: none;
}

@media print, screen and (min-width: 600px) {
  .only-upper600 {
    display: block;
  }
}

@media print, screen and (min-width: 768px) {
  .only-upper768 {
    display: block;
  }
}

/* ===================================== */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ common ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ===================================== */

/* ---------- header ---------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.pc-header-menu {
  display: none;
}

/* sp-menu */
.sp-header-menu {
}

.sp-header-logo {
  width: 150px;
  margin: 20px 0 0 5%;
}

.sp-menu-trigger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #CD2313;
  z-index: 9999;
}

.sp-menu-trigger span:not(:last-child) {
  position: relative;
  display: block;
  width: 40px;
  height: 3px;
  background-color: #fff;
  border-radius: 9999px;
  margin: 10px auto 0;
}

.sp-menu-trigger span:last-child::after {
  content: "MENU";
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.sp-menu-trigger.active span:first-child {
  transform: rotate(25deg);
  position: relative;
  top: 6.5px;
  transition: .5s;
}

.sp-menu-trigger.active span:nth-child(2) {
  transform: rotate(-25deg);
  position: relative;
  top: -6.5px;
  transition: .5s;
}

.sp-menu-trigger.active span:last-child::after {
  content: "CLOSE";
}

/* overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  transform: translateX(100%);
  z-index: 100;
}

.overlay.active {
  animation: menu-in .5s forwards;
}

@keyframes menu-in {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.overlay-header-nav {
  height: calc(100vh - 60px);
  text-align: center;
  padding: 10vh 0 0;
}

.overlay-header-nav li {
  height: 10vh;
}

.overlay-header-nav li a {
  color: #333;
  font-size: 1.8rem;
  font-weight: bold;
}

.overlay-bottom {
  display: flex;
  height: 60px;
  text-align: center;
}

.overlay-contact {
  width: 50%;
  background-color: #CD2313;
}

.overlay-contact a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin: 10px 0 0 20px;
}

.overlay-contact a::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/icon-tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}

.overlay-contact a span {
  font-size: 1.2rem;
}

.overlay-ritokara-link {
  width: 50%;
  background-color: #E24740;
}

.overlay-ritokara-link a {
  position: relative;
  display: inline-block;
}

.overlay-ritokara-link a::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/icon-kushi.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 43%;
  left: 0;
}

.overlay-ritokara-link a img {
  width: 80px;
  margin: 15px 0 0 20px;
}
/* ---------- header ---------- */

/* ---------- footer ---------- */
#footer {}

.footer-info-field{
  background-color: #000;
}

.footer-info-bg {
  width: 60%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.footer-info {
  background-color: #000;
  margin: 20px 0 0 0;
  padding: 20px 0;
}

.footer-info-flex {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 95%;
  margin: 0 auto;
}

.footer-info-ritokiya {
  width: 50%;
  border-right: 1px solid #fff;
}

.footer-info-ritokara {
  width: 50%;
}

.footer-info-logo {
  width: 80%;
  max-width: 250px;
  margin: 0 auto;
}

.footer-info-contact {
  text-align: center;
  margin: 10px 0 0 0;
}

.footer-info-contact a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 0.6;
  margin-left: 20px;
}

.footer-info-contact a::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../img/icon-tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}

.footer-info-contact a span {
  display: block;
  font-size: 1.2rem;
  text-align: left;
}

.footer-info-location {
  width: 95%;
  text-align: center;
  margin: 20px auto 0;
}

.footer-info-location address {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 20px 0 0 0;
}

.footer-info-location p {
  position: relative;
  display: inline-block;
  width: 300px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 0 0 0 20px;
  margin: 10px 0 0 0;
}

.footer-info-location p::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../img/icon-train.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.footer-info-location iframe {
  width: 100%;
  height: 250px;
  margin: 10px 0 0 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 95%;
  max-width: 1200px;
  margin: 40px auto 0;
}

.footer-nav ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px 0;
}

.footer-nav ul li {
  width: 50%;
}

.footer-nav ul li a {
  display: block;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.footer-nav ul li a:hover {
  color: #CD2313;
  text-decoration: underline;
}

.footer-nav ul li a:active {
  color: #CD2313;
}

.footer-ritokara-link {
  width: 240px;
  background-color: #E24740;
  margin: 20px auto 0;
}

.footer-ritokara-link a {
  position: relative;
  display: block;
  padding: 10px 0;
}

.footer-ritokara-link a::before {
  content: "";
  width: 35px;
  height: 40px;
  background-image: url(../img/icon-kushi.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 60%;
  left: 55px;
  transform: translateY(-50%);
}

.footer-ritokara-link a img {
  display: block;
  width: 100px;
  margin: 0 0 0 80px;
}

.copyright {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 20px;
}
/* ---------- footer ---------- */

/* ===================================== */
/* ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ common ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ */
/* ===================================== */



/* ==================================== */
/* ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ contents ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ */
/* ==================================== */

/* ---------- 下層ページ背景色 ---------- */
#menu main,
#drink main,
#map main,
#recruit main,
#news main {
  background-color: #1A1A1A;
}

/* -------------------------------- */
/* ---------- page-top ----------*/
/* -------------------------------- */
.page-top {
  position: relative;
  width: 100%;
  height: 240px;
  background-size: cover;
  background-repeat: no-repeat;
}

#menu .page-top {
  background-image: url(../img/menu/menu-main.jpg);
}

#room .page-top {
  background-image: url(../img/room/room-main.jpg);
}

#course .page-top {
  background-image: url(../img/course/course-main.jpg);
  background-position: 70% center;
}

#menu .page-top {
  background-image: url(../img/menu/menu-main.jpg);
  background-position: 45% center;
}

#map .page-top {
  background-image: url(../img/map/map-main.png);
}

#recruit .page-top {
  background-image: url(../img/recruit/recruit-main.jpg);
}

#news .page-top {
  background-image: url(../img/news/news-main.jpg);
}

.page-title {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
}

@media print, screen and (min-width: 768px) {
  .page-top {
    height: 400px;
  }

  .page-title {
    font-size: 3.6rem;
  }
}








/* ------------------------トップページここから------------------------ */
.contents-title{
  text-align: center;
  margin-bottom: 40px;
}

.contents-title figure img{
  width: 240px;
}

.contents-title h2{
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
}


#tokuten{
  background-color: #191E71;
  padding: 60px 0;
}

#tokuten p{
  color: #00FFFF;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 20px 0;
}

#tokuten figure{
  text-align: center;
}


#top-room{
  background: url(../img/top/top-room-background.jpg) no-repeat center center / cover;
  padding: 80px 0;
}

.top-room-top{
  margin-bottom: 80px;
}

#top-room .top-room-top ul{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

#top-room .top-room-top ul li figure img{
  width: 100%;
}

#top-room .top-room-top ul li figure{
  position: relative;
}

#top-room .top-room-top ul li figure figcaption{
  color: #fff;
  font-weight: bold;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

#top-room .top-room-top p{
  color: #fff;
}




#top-room .top-room-bottom ul{
  display: flex;
  flex-direction: column;
}

#top-room .top-room-bottom ul li{
  width: 100%;
  margin: 0 auto;
}

#top-room .top-room-bottom ul li:nth-of-type(n+1):nth-of-type(-n+2){
  margin-bottom: 40px;
}

#top-room .top-room-bottom ul li figure{
  text-align: center;
}

#top-room .top-room-bottom ul li figure img{
  width: 100%;
}

#top-room .top-room-bottom ul li figure figcaption{
  color: #E5007F;
  font-weight: bold;
  text-align: center;
  padding-top: 8px;
}

#top-room .top-room-bottom p{
  color: #fff;
  padding-top: 16px;
}



#top-menu{
  background: url(../img/top/top-menu-background.jpg) no-repeat center center / cover;
  padding: 80px 0;
}

#top-menu p,
#top-course h3,
#top-course h4{
  color: #fff;
  text-align: center;
}

#top-menu ul{
  display: flex;
  flex-direction: column;
}


#top-course{
  background: url(../img/top/top-course-background.jpg) no-repeat top center / cover;
  padding: 80px 0;
}

#top-course p{
  color: #fff;
}

#top-course .top-course > p{
  color: #E7E204;
  text-align: left;
  font-weight: bold;
  margin-top: 40px;
}

.top-course > ul{
  display: flex;
  flex-direction: column;
}

.top-course > ul > li:first-child{
  margin-bottom: 40px;
  text-align: center;
}

.top-course > ul > li:nth-of-type(2){
  margin-bottom: 40px;
  text-align: center;
}

.top-course > ul > li:last-child{
  text-align: center;
}

.top-course > ul > li > ul{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.top-course > ul > li > ul > li:nth-of-type(2){
  margin: 20px 0;
}

.top-course h3{
  font-size: 1.8rem;
  font-weight: bold;
}

.top-course h4{
  font-weight: bold;
  margin-bottom: 8px;
}

@media print, screen and (min-width: 530px) {
  #top-menu .top-menu ul{
    display: flex;
    flex-direction: row;
    width: 100%;
  }

  .slide-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}


@media print, screen and (min-width: 768px) {
  #top-room .top-room-top ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
  }

  #top-room .top-room-top ul li{
    width: 48%;
  }

  #top-room,
  #top-menu,
  #top-course{
    padding: 100px 0;
  }

  #top-room .top-room-bottom ul{
    flex-direction: row;
    gap: 20px;
  }

  #top-room .top-room-bottom ul li{
    margin-bottom: 0!important;
  }

  .top-course > ul{
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .top-course > ul > li:first-child{
    margin-bottom: 0!important;
  }

  .top-course > ul > li > ul > li:nth-of-type(2){
    margin: 0;
  }
  
  #top-course .top-course > p{
    text-align: center;
    margin-top: 40px;
  }

  .top-course > ul > li > ul{
    flex-direction: row;
    gap: 40px;
  }

  .top-course > ul > li > ul > li:first-child {
    margin-bottom: 0!important;
  } 

  .top-course > ul > li:last-child,
  .top-course > ul > li:first-child{
    text-align: left;
  } 
}




/* ------------------------トップページここまで------------------------ */

























/* ------------------------ルーム・設備ここから------------------------ */

#room p{
  color: #fff;
}

#rooms .rooms-top{
  background: url(../img/room/room-background.jpg) no-repeat top center / cover;
}

.rooms-top{
  padding: 80px 0;
}

#rooms .rooms-top h3{
  text-align: center;
  margin-bottom: 40px;
}

#rooms .rooms-bottom{
  background-color: #191E71;
  padding: 80px 0;  
}

#rooms .rooms-bottom h4{
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 20px 0 20px 17px;
}

#rooms .rooms-bottom ul li p{
  margin-left: 17px;
}

#rooms .rooms-bottom ul{
  display: flex;
  flex-direction: column;
}

#rooms .rooms-bottom ul:nth-of-type(2){
  margin: 80px 0;
}

#rooms .rooms-bottom ul:nth-of-type(3){
  margin-bottom: 80px;
}

#rooms .rooms-bottom ul li figure{
  margin-top: 20px;
}

#rooms .rooms-bottom ul li:nth-of-type(2){
  width: 95%;
  margin: 0 auto;
}



#facility{
  background-color: #1A1A1A;
}

.facility{
  padding: 80px 0;
}

.facility-top{
  max-width: 95%;
  width: 900px;
  margin: 0 auto;
}

.facility-top h3{
  text-align: center;
}

.facility-top p{
  margin: 40px 0 80px;
}

#facility .facility-bottom ul{
  display: flex;
  flex-direction: column;
}

#facility .facility-bottom ul li{
  width: 100%;
  margin: 0 auto;
}

#facility .facility-bottom ul li:nth-of-type(n+1):nth-of-type(-n+2){
  margin-bottom: 40px;
}

#facility .facility-bottom ul li figure{
  text-align: center;
}

#facility .facility-bottom ul li figure img{
  width: 100%;
}

#facility .facility-bottom ul li figure figcaption{
  color: #E5007F;
  font-weight: bold;
  text-align: center;
  padding-top: 8px;
}

#facility .facility-bottom p{
  color: #fff;
  padding-top: 16px;
}


@media print, screen and (min-width: 768px) {
  #rooms .rooms-top,
  #rooms .rooms-bottom,
  #facility .facility{
    padding: 100px 0;
  }

  #facility .facility-bottom ul{
    flex-direction: row;
    gap: 20px;

  }

  #facility .facility-bottom ul li{
    margin-bottom: 0!important;
  }
}


@media print, screen and (min-width: 1024px) {
  #rooms .rooms-bottom ul{
    max-width: 98%;
    width: 1450px;
    margin: 0 auto 0 0;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-start;
  }

  #rooms .rooms-bottom ul li:nth-of-type(1){
    width: 58%;
  }

  #rooms .rooms-bottom ul li:nth-of-type(2){
    width: 40%;
    margin: 0;
  }

  #rooms .rooms-bottom ul li figure {
    margin-top: 0;
  }

}

/* ------------------------ルーム・設備ここまで------------------------ */



















/* ------------------------料金・コースここから------------------------ */
#course p{
  color: #fff;
}

.price-top{
  background: url(../img/course/price-background.jpg) no-repeat right  / cover;
  height: 560px;
  display: grid;
  place-items: center;
}

.price-top h3{
  margin-left: 0;
  text-align: center;
}

.price-top p{
  margin-top: 40px;
}

.price-bottom{
  padding: 80px 0;
}

.price-bottom{
  background-color: #191E71;
}

.price-bottom > p{
  color: #E7E204;
  text-align: left;
  font-weight: bold;
  margin-top: 40px;
}

.price-bottom > ul{
  display: flex;
  flex-direction: column;
}

.price-bottom > ul > li:first-child{
  margin-bottom: 40px;
  text-align: center;
}

.price-bottom > ul > li:nth-of-type(2){
  margin-bottom: 40px;
  text-align: center;
}

.price-bottom > ul > li:last-child{
  text-align: center;
}

.price-bottom > ul > li > ul{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.price-bottom > ul > li > ul > li:nth-of-type(2){
  margin: 20px 0;
}

.price-bottom h4{
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.price-bottom h5{
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff;
}



.courses-top{
  background: url(../img/course/course-background.jpg) no-repeat right  / cover;
  height: 560px;
  display: grid;
  place-items: center;
}


.courses-top h3 {
  margin-left: 0;
  text-align: center;
}

.courses-top p{
  margin-top: 40px;
}

.courses-bottom{
  background-color: #191E71;
  padding: 80px 0;
}

.courses-bottom-top{
  text-align: center;
}

#course .courses-bottom .courses-bottom-top > p{
  font-size: 1.8rem;
  font-weight: bold;
  color: #E7E204;
  margin-bottom: 20px;
} 

.courses-bottom-top{
  margin-bottom: 80px;
}

.courses-bottom-bottom h3{
  text-align: center;
}

.courses-bottom-bottom h4{
  color: #E7E204;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  margin: 20px 0;
}


.courses-bottom-bottom dt{
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.courses-bottom-bottom dd{
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: normal;
}

.courses-bottom-bottom dd:nth-of-type(6) {
  margin-bottom: 40px;
}

.courses-bottom-bottom ul li:first-child{
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

.courses-bottom-bottom ul li p{
  width: 100%;
  font-size: 14px;
  margin-left: 1rem;
  text-indent: -1rem;
}

.courses-bottom-bottom .inner-block{
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 40px 0;
}

.courses-bottom-bottom .inner-block:nth-of-type(1){
  margin-bottom: 100px;
}

.courses-bottom-bottom .inner-block:nth-of-type(2) dl dd {
  font-weight: bold;
}

.courses-bottom-bottom .inner-block:nth-of-type(2) dl dt {
  margin-bottom: 20px;
}

.courses-bottom-bottom .inner-block:nth-of-type(2) dl dt:nth-of-type(5) {
  margin-bottom: 10px;
}

.courses-bottom-bottom .inner-block:nth-of-type(2) dl dd:nth-of-type(5) {
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: normal;
}

@media print, screen and (min-width:768px) {
  .price-bottom,
  .courses-bottom{
    padding: 100px 0;
  }

  .price-bottom > ul{
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }

  .price-bottom > ul > li:first-child{
    margin-bottom: 0!important;
  }
  
  .price-bottom > p{
    text-align: center;
    margin-top: 40px;
  }

  .price-bottom > ul > li > ul{
    flex-direction: row;
    gap: 40px;
  }

  .price-bottom > ul > li > ul > li:first-child {
    margin-bottom: 0!important;
  } 

  .price-bottom > ul > li:last-child,
  .price-bottom > ul > li:first-child{
    text-align: left;
  }

  .price-bottom > ul > li > ul > li:nth-of-type(2){
    margin: 0;
  }

  .courses-top h3{
    text-align: left;
    margin-left: -24px;
  }

  .price-top h3{
    margin-left: -40px;
    text-align: left;
  }

  .courses-bottom-top{
    margin-bottom: 100px;
  }


  .courses-bottom-bottom dl{
    display: flex;
    flex-wrap: wrap;
  }
  
  .courses-bottom-bottom dt{
    width: 300px;
  }
  
  .courses-bottom-bottom dd{
    width: calc(100% - 300px);
  }

  .courses-bottom-bottom dt:nth-of-type(n+1):nth-of-type(-n+5),
  .courses-bottom-bottom dd:nth-of-type(n+1):nth-of-type(-n+5){
    margin-bottom: 20px;
  }

  .courses-bottom-bottom dt:nth-of-type(6),
  .courses-bottom-bottom dd:nth-of-type(6){
    margin-bottom: 40px;
  }

  .courses-bottom-bottom ul li{
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .courses-bottom-bottom ul li p{
    width: 48%;
  }

  .courses-bottom-bottom ul li:first-child{
    margin-bottom: 10px;
    color: #fff;
  }

  .courses-bottom-bottom dd {
    font-weight: bold;
  }

}




.courses-bottom-top ul li {
  width: 100%;
}

.courses-bottom-top ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.courses-bottom-top .party-course.course01 {
  background-image: url(../img/course/course-img01.jpg);
}

.courses-bottom-top .party-course.course02 {
  background-image: url(../img/course/course-img02.jpg);
}

.courses-bottom-top .party-course.course03 {
  background-image: url(../img/course/course-img03.jpg);
}

.courses-bottom-top .party-course p {
  width: 100%;
  color: #FFFF33!important;
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  bottom: 10%;
}

.courses-bottom-top .party-course h3 {
  width: 90%;
  max-width: 300px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.courses-bottom-top .party-course h3 picture img {
  display: block;
  margin: 0 auto;
}

.courses-bottom-top .party-menu {
  color: #fff;
  padding: 20px;
}

.courses-bottom-top .party-menu dl {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}

.courses-bottom-top .party-menu dl dt {
  font-weight: bold;
  width: 30%;
}

.courses-bottom-top .party-menu dl dd {
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.6;
  width: 70%;
}

.courses-bottom-top .party-course {
  position: relative;
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
}


@media print, screen and (min-width: 768px){
  .courses-bottom-top ul {
    gap: 20px 0;
  }

  .courses-bottom-top ul li {
    width: 48%;
  }

  .courses-bottom-top .party-course p {
    bottom: 20%;
  }

  .courses-bottom-top .party-course h3 {
    width: 90%;
    max-width: 400px;
    top: 20%;
  }
}

@media print, screen and (min-width: 1024px){
  .courses-bottom-top ul {
    gap: 80px 0;
  }

  .courses-bottom-top .party-course {
    height: 280px;
  }

  .courses-bottom-top .party-course p {
    bottom: 30%;
  }

  .courses-bottom-top .party-course h3 {
    top: 30%;
  }
}

/* ------------------------料金・コースここまで------------------------ */











/* ------------------------フード・ドリンクここから------------------------ */
#menu .menu{
  background-color: #191E71;
}

#menu main{
  color: #fff;
}

#menu-all .tab_area{
  margin: 40px auto;
}

#menu-all .tab_area ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}

#menu-all .tab_area ul li.tab-color01,
#menu-all .tab_area ul li.tab-color02{
  cursor: pointer;
  border: 3px solid #FFF;
  border-radius: 35px;
  transition: 0.5s;
  display: grid;
  place-items: center;
}

#menu-all p{
  color: #fff;
  font-weight: bold;
}

#menu-all .tab_area ul li.tab-color01 figure,
#menu-all .tab_area ul li.tab-color02 figure{
  display: none;
}

#menu-all .tab_area ul li.tab-color01 p,
#menu-all .tab_area ul li.tab-color02 p{
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  padding-top: 3px;
}

#menu-all .tab_area ul li.tab-color01.active , 
#menu-all .tab_area ul li.tab-color01:hover,
#menu-all .tab_area ul li.tab-color02.active , 
#menu-all .tab_area ul li.tab-color02:hover{
  border: 3px solid #00FFFF;
  transition: 0.5s;
}

#menu-all .tab_area ul li.tab-color01.active figure, 
#menu-all .tab_area ul li.tab-color01:hover figure,
#menu-all .tab_area ul li.tab-color02.active figure, 
#menu-all .tab_area ul li.tab-color02:hover figure{
  display: block;
  transition: 0.5s;
}

#menu-all .tab_area ul li.tab-color01.active p, 
#menu-all .tab_area ul li.tab-color01:hover p,
#menu-all .tab_area ul li.tab-color02.active p, 
#menu-all .tab_area ul li.tab-color02:hover p{
  display: none;
  transition: 0.5s;
}

#menu-all .tab_area ul li a {
  display: block;
  transition: all .5s;
  border-bottom: 1px solid #333;
  padding: 1.6rem;
  color: #333;
  font-weight: bold;
}

#menu-all .tab_area ul li {
  max-width: 400px;
  width: 100%;
}

#menu-all .menu-all article a:hover{
  background-color: #F2F2F2;
  transition: 0.7s;
}

.menu-all{
  display: none;
}

.menu-all.active{
  display: block;
}

.menu-all .desert,
.menu-all .drink01{
  margin-bottom: 100px;
}

.menu-all .foods,
.menu-all .drink02{
  padding-bottom: 80px;
}

.menu-all .desert h3{
  background: url(../img/menu/desert-background.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

#menu .menu-all .desert p,
#menu .menu-all .foods p,
#menu .menu-all .drink01 p,
#menu .menu-all .drink02 p{
  color: #E7E204;
  text-align: center;
  margin: 40px 0;
}

.menu-all .desert ul,
.menu-all .foods ul,
.menu-all .drink01 ul,
.menu-all .drink02 ul{
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.menu-all .desert ul li figure img,
.menu-all .foods ul li figure img,
.menu-all .drink01 ul li figure img,
.menu-all .drink02 ul li figure img{
  width: 100%;
}

.menu-all .desert ul li dl,
.menu-all .foods ul li dl,
.menu-all .drink01 ul li dl,
.menu-all .drink02 ul li dl{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.menu-all .desert ul li dd,
.menu-all .foods ul li dd,
.menu-all .drink01 ul li dd,
.menu-all .drink02 ul li dd{
  width: 30%;
}

.menu-all .desert ul li dt,
.menu-all .foods ul li dt,
.menu-all .drink01 ul li dt,
.menu-all .drink02 ul li dt{
  width: 65%;
}

.menu-all .desert ul li dt,
.menu-all .desert ul li dd,
.menu-all .foods ul li dt,
.menu-all .foods ul li dd,
.menu-all .drink01 ul li dt,
.menu-all .drink01 ul li dd,
.menu-all .drink02 ul li dt,
.menu-all .drink02 ul li dd{
  margin-bottom: 20px;
}

.menu-all .desert ul li dt:last-of-type,
.menu-all .desert ul li dd:last-of-type,
.menu-all .foods ul li dt:last-of-type,
.menu-all .foods ul li dd:last-of-type,
.menu-all .drink01 ul li dt:last-of-type,
.menu-all .drink01 ul li dd:last-of-type,
.menu-all .drink02 ul li dt:last-of-type,
.menu-all .drink02 ul li dd:last-of-type{
  margin-bottom: 0;
}


.menu-all .foods ul li:first-child figure,
.menu-all .desert ul li:last-child figure,
.menu-all .drink02 ul li:first-child figure,
.menu-all .drink01 ul li:last-child figure{
  display: none;
}



.menu-all .foods h3{
  background: url(../img/menu/food-background.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all .foods ul li dd,
.menu-all .desert ul li dd,
.menu-all .drink01 ul li dd,
.menu-all .drink02 ul li dd{
  text-align: right;
}

#menu .ritokiya-menu p{
  text-align: left;
  color: #E5007F;
}

#menu .ritokiya-menu .btn{
  margin-top: 20px;
  padding-bottom: 80px;
}


.menu-all .drink01 h3.drink1{
  background: url(../img/menu/drink1-title.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all .drink02 h3.drink2{
  background: url(../img/menu/drink2-title.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all .drink01 h3.drink3{
  background: url(../img/menu/drink3-title.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all .drink02 h3.drink4{
  background: url(../img/menu/drink4-title.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all .drink01 h3.drink5{
  background: url(../img/menu/drink5-title.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all .drink02 h3.drink6{
  background: url(../img/menu/drink6-title.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all .drink01 h3.drink7{
  background: url(../img/menu/drink7-title.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all .drink02 h3.drink8{
  background: url(../img/menu/drink8-title.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all .drink01 h3.drink9{
  background: url(../img/menu/drink9-title.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all .drink02 h3.drink10{
  background: url(../img/menu/drink10-title.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all .drink01 h3.drink11{
  background: url(../img/menu/drink11-title.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all .drink02 h3.drink12{
  background: url(../img/menu/drink12-title.jpg) no-repeat center center / cover;
  height: 240px;
  display: grid;
  place-items: center;
}

.menu-all ul li dt,
.menu-all ul li dd{
  font-size: 14px;
  line-height: 1.4;
}

    #menu .menu-all .drink01 h3,
    #menu .menu-all .drink02 h3{
    margin-bottom: 40px;
  }


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

  #menu-all .tab_area{
    margin: 80px auto;
  }

  .menu-all .desert h3,
  .menu-all .foods h3{
    height: 400px;
  }

    #menu .menu-all .drink01 h3,
    #menu .menu-all .drink02 h3{
    height: 400px;
  }

  .menu-all .desert ul li,
  .menu-all .foods ul li,
  .menu-all .drink01 ul li,
  .menu-all .drink02 ul li{
    width: 48%;
  }

  .menu-all .foods ul li:first-child figure,
  .menu-all .desert ul li:last-child figure,
  .menu-all .drink02 ul li:first-child figure,
  .menu-all .drink01 ul li:last-child figure{
    display: block;
  }
  
  #menu-all .menu-all {
    position: relative;
  }

  .menu-all .foods,
  .menu-all .drink02{
    padding-bottom: 100px;
  }
  
  #menu .ritokiya-menu p{
    text-align: center;
  }

  #menu .ritokiya-menu .btn{
    padding-bottom: 100px;
  }

}
/* ------------------------フード・ドリンクここまで------------------------ */




.party-advantage-field {
  padding: 80px 0 0;
  scroll-margin-top: 60px;
  background: #191E71;
}

.party-advantage h2 {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding-left: 2.5%;
}

.party-advantage p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 20px 0 0 0;
}

.party-advantage ul {
  margin: 20px 0 0 0;
}

.party-advantage ul li {
  position: relative;
  color: #FFFF33;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 20px;
}

.party-advantage ul li::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}


@media print, screen and (min-width: 1024px){

  .party-advantage p {
    margin: 20px 0 0 0;
  }

  .menu-field:last-of-type, .drink-field:last-of-type, .party-advantage-field, .information-table-field {
    margin-bottom: 0;
  }

  .party-advantage ul {
    margin: 40px 0 0 0;
  }
}