@charset "UTF-8";
/* 変数 */
/* */
body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Noto Serif JP", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #1a1a1a;
}

img {
  max-width: 100%;
}
a:hover {
  opacity: 0.6;
}
.logofont{
  font-family: "futura-pt", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500 !important;
}
/* */
header {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 100;
  background: #FFF;
}
header h1 {
  z-index: 50;
}
header h1 a:hover {
  opacity: 1;
}
header h1 img {
  width: 200px;
  padding: 30px;
  background-color: #FFF;
}

@media (max-width: 520px) {
  header {
    height: 60px;
  }
  header h1 img {
    width: 80px;
    padding: 10px;
  }
}
@media (min-width: 521px) and (max-width: 1024px){
  header h1 img {
    width: 160px;
  }
}
.headerMenu {
  display: flex;
  margin-right: 16px;
}
.headerMenu li {
  padding: 20px;
  display: flex;
  align-items: center;
  list-style: none;
}

.headerSpMenu {
  display: none;
}

@media (max-width: 520px) {
  .headerMenu {
    display: none;
    width: 100%;
    padding-top: 20px;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
    background: #FFF;
    box-shadow: 1px 2px 1.5px rgba(0, 0, 0, 0.15);
  }
  .active .headerMenu li {
    padding: 0;
    display: block;
  }
  .active .headerMenu a {
    padding: 20px;
    display: block;
  }
  .headerSpMenu {
    width: 24px;
    height: 15px;
    position: relative;
    top: 50%;
    right: 12.5px;
    display: block;
    transform: translateY(-50%);
  }
  .headerSpMenu span.toggle {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background: #333;
    position: relative;
    transition: all 0.5s;
  }
  .headerSpMenu span.toggle:nth-of-type(1) {
    top: 0;
  }
  .headerSpMenu span.toggle:nth-of-type(2) {
    top: 7px;
  }
  .headerSpMenu span.toggle:nth-of-type(3) {
    top: 14px;
  }
  .active .headerSpMenu span.toggle:nth-of-type(1) {
    transform: rotate(45deg);
    top: 9px;
  }
  .active .headerSpMenu span.toggle:nth-of-type(2) {
    opacity: 0;
  }
  .active .headerSpMenu span.toggle:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 7px;
  }
}
.topImage {
  margin-top: 80px;
  position: relative;
}
.topImage img {
  width: calc(100% - 40px);
  height: calc(100vh - 80px);
  margin: 0 20px;
  object-fit: cover;
}

.topImage .pc img{
  display: block;
}
.topImage .sp img{
  display: none;
}
@media (max-width: 520px) {
  .topImage .pc img{
    display: none;
  }
  .topImage .sp img{
    display: block;
  }
  }
.topImageText {
  width: 100vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  color: #FFF;
}
.topImageText ul {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.2rem;
  text-align: center;
}
.topImageText ul li:nth-of-type(2) {
  letter-spacing: -0.05rem;
  font-size: 6rem;
}

@media (max-width: 520px) {
  .topImage {
    width: calc(100% - 25px);
    margin: 60px auto 0;
  }
  .topImage img {
    width: 100%;
    height: calc(100vh - 100px);
    margin: 0;
    object-fit: cover;
  }
  .topImageText {
    padding: 0 10px;
  }
  .topImageText ul {
    font-size: 1rem;
  }
  .topImageText ul li:nth-of-type(2) {
    letter-spacing: -0.05rem;
    font-size: 2.5rem;
  }
  .topImageText ul li:nth-of-type(3) {
    font-size: 0.875rem;
  }
}
@media (min-width: 521px) and (max-width: 1024px) {
  .topImage img {
    height: auto;
  }
  .topImageText ul {
    font-size: 1.5rem;
  }
  .topImageText ul li:nth-of-type(2) {
    font-size: 4rem;
  }
}
.contents01 {
  padding: 80px 0;
  position: relative;
  overflow-x: hidden;
}
.contents01::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #eee;
  display: block;
  z-index: -1;
  width: 30%;
  height: 140%;
}
.contents01Wrap {
  width: 85%;
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
}
.contents01Wrap::after {
  content: "";
  background: url("../images/content01.jpg") no-repeat center;
  background-size: cover;
  width: calc(80% - 100px);
  height: 100%;
  display: block;
  position: absolute;
  left: calc(50% + 50px);
  bottom: 0;
}
.contents01Article {
  margin-right: calc(50% - 60px);
  padding: 0 50px 50px 0;
  line-height: 2.2;
}
.contents01Title {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 600;
}
/* .contents01Text {
  font-weight: ;
} */

@media (max-width: 520px) {
  .contents01 {
    padding: 40px 5%;
  }
  .contents01::before {
    width: 40%;
    height: 120%;
  }
  .contents01Wrap {
    max-width: 100%;
    width: 100%;
    /* padding-bottom: 270px; */
  }
  .contents01Wrap::after {
    display: none;
    width: 100%;
    height: 250px;
    left: 0;
  }
  .contents01Article {
    margin-right: 0;
    padding: 0;
  }
  .contents01Title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
@media(min-width:521px) and (max-width: 1024px){
  .contents01{
    padding: 60px 0;
  }
  .contents01Article {
    margin-right: 0;
    padding: 0 0 20px 0;
  }
  .contents01Wrap{
    width: 90%;
  }
  .contents01Wrap::after {
    width: 100%;
    height: 250px;
    position: static;
  }
}
.contents02 {
  position: relative;
}
.contents02::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #eee;
  display: block;
  z-index: -1;
  width: 30%;
  height: 100%;
}
.contents02::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #eee;
  display: block;
  z-index: -1;
  width: 100%;
  height: 70%;
}
.contents02Wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 100px;
  display: flex;
  justify-content: space-between;
}
.contents02Article {
  width: 31%;
  position: relative;
}
.contents02Article img {
  width: 100%;
}
.contents02Article:nth-of-type(2) {
  top: 30px;
}
.contents02Article:nth-of-type(3) {
  top: 60px;
}
.contents02Title {
  margin: 30px 0 15px 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.contents02Text {
  line-height: 2;
}

@media (max-width: 520px) {
  .contents02 {
    padding: 0 5%;
  }
  .contents02::before {
    width: 40%;
  }
  .contents02::after {
    height: 95%;
  }
  .contents02Wrap {
    max-width: 100%;
    flex-flow: column;
    padding-bottom: 0;
  }
  .contents02Article {
    width: 100%;
    margin-bottom: 30px;
  }
  .contents02Article:nth-of-type(2), .contents02Article:nth-of-type(3) {
    top: 0;
  }
  .contents02Title {
    font-size: 1.4rem;
    margin: 30px 0 20px 0;
  }
}
@media (max-width: 1024px) {
  .contents02 {
    padding: 0 5%;
  }
}
.contents03 {
  background: url("../images/top_image02.jpg") no-repeat center;
  background-size: cover;
}
.contents03Wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 80px 0;
  color: #FFF;
  line-height: 2.2;
}
.contents03Title {
  font-family: "futura-pt", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500 !important;
  font-size: 4rem;
  margin-bottom: 30px;
}

@media (max-width: 520px) {
  .contents03Wrap {
    max-width: 100%;
    padding: 40px 5%;
  }
  .contents03Title {
    font-size: 2.6rem;
    margin-bottom: 15px;
  }
}
@media (min-width: 521px) and (max-width: 1024px){
  .contents03{
    padding: 0 5%;
  }
}
.contents04 {
  padding: 80px 0;
}
.contents04Wrap {
  max-width: 1150px;
  margin: 0 auto 80px;
  display: flex;
}
.contents04Wrap.reverse {
  flex-flow: row-reverse;
}
.contents04Wrap.reverse img {
  margin-left: 50px;
  margin-right: 0;
}
.contents04Wrap:last-child {
  margin-bottom: 0;
}
.contents04 img {
  width: 50%;
  margin-right: 50px;
}
.contents04Title {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}
.contents04Article {
  display: flex;
  flex-flow: column;
  justify-content: center;
  line-height: 2;
}

@media (max-width: 520px) {
  .contents04 {
    padding: 40px 5%;
  }
  .contents04Wrap {
    max-width: 100%;
    margin-bottom: 40px;
    flex-flow: column;
  }
  .contents04Wrap.reverse {
    flex-flow: column;
  }
  .contents04Wrap.reverse img {
    margin-left: 0;
  }
  .contents04 img {
    width: 100%;
    margin-right: 0;
  }
  .contents04Title {
    font-size: 1.25rem;
    margin: 20px 0 5px 0;
  }
}
@media (min-width: 521px) and (max-width: 1024px) {
  .contents04{
    padding: 80px 5%;
  }
  .contents04 img{
    object-fit: cover;
  }
}
.contents05 h3 {
  font-size: 1.875rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.contents06 {
  overflow: hidden;
}
.contents06Wrap {
  max-width: 1150px;
  margin: 0 auto 80px;
}
.contents06Title {
  font-size: 1.875rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}
.contents06PlanArticle {
  margin: 120px 0 80px;
  position: relative;
}
.contents06PlanImg {
  height: 500px;
}
.contents06PlanImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contents06PlanBox {
  color: #FFF;
  position: absolute;
}
.contents06PlanBox::before {
  content: "";
  width: 200%;
  height: 100%;
  background: #1a1a1a;
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  opacity: .8;
}
.contents06PlanBox.up {
  padding: 35px 35px 35px 0;
  top: -10%;
  z-index: 10;
}
.contents06PlanBox.up::before {
  right: 0;
}
.contents06PlanBox.down {
  padding: 35px;
  bottom: 10%;
  right: 0;
  z-index: 10;
}
.contents06PlanBox.down::before {
  left: 0;
}
.contents06PlanBox li {
  margin-bottom: 20px;
}
.contents06PlanBox li:nth-of-type(1) {
  padding: 20px 30px;
  background: #FFF;
  color: #333;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
}
.contents06PlanBox li:nth-of-type(2) {
  font-weight: 600;
  font-size: 1.25rem;
}
.contents06PlanBox li:last-of-type {
  margin-bottom: 0;
}
.contents06 .drinkWrap {
  width: 100%;
}
.contents06 .drinkWrap::after {
  content: "";
  clear: both;
  display: block;
}
.contents06 .drinkWrap li:not(.drinkCategory) {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  margin-top: 25px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #ccc;
}
.contents06 .drinkArticle:nth-of-type(odd) {
  width: 40%;
  float: left;
  margin: 0 10% 40px 0;
}
.contents06 .drinkArticle:nth-of-type(even) {
  width: 40%;
  float: right;
  margin: 0 0 40px 10%;
}
.contents06 .drinkCategory {
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "futura-pt", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.contents06 .drinkMenu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.contents06 .drinkMenu li {
  line-height: 1.6;
}
.contents06 .drinkMenu .drinkPrice {
  text-align: right;
}
.alert{
  line-height: 2;
  font-size: 0.875rem;
}
@media (max-width: 520px) {
  .contents06Wrap {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .contents06Title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .contents06Article {
    padding: 0 5%;
  }
  .contents06PlanArticle {
    margin: 40px 0;
  }
  .contents06PlanImg {
    height: 300px;
    padding: 0 5%;
  }
  .contents06PlanBox {
    position: relative;
    margin-top: 5%;
  }
  .contents06PlanBox.up {
    margin-right: 5%;
    padding: 20px;
  }
  .contents06PlanBox.down {
    margin-left: 5%;
    padding: 20px;
  }
  .contents06PlanBox li:nth-of-type(1) {
    font-size: 1.3rem;
  }
  .contents06PlanBox li:nth-of-type(2) {
    font-size: 1rem;
  }
  .contents06 .drinkWrap::after {
    content: none;
  }
  .contents06 .drinkArticle:nth-of-type(odd), .contents06 .drinkArticle:nth-of-type(even) {
    width: 100%;
    float: none;
    margin: 0 0 40px 0;
  }
  .alert {
  font-size: 0.8rem;
  padding: 0 5%;
  }
}
@media (min-width: 521px) and (max-width: 1024px){
  .contents06PlanBox.up{
    padding: 35px;
  }
  .contents06PlanBox.down{
    bottom: -10%;
  }
  .alert{
    padding: 0 5%;
  }
}
footer .companyContent {
  display: flex;
  height: 500px;
}
footer .companyArticle {
  width: 40%;
  padding: 40px 80px;
  line-height: 2;
  background: #1a1a1a;
  color: #fff;
}
footer .companyTitle {
  font-size: 2rem;
  letter-spacing: -0.05rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 20px;
}
footer .companyText {
  font-size: 0.875rem;
}
footer .companyMap {
  width: 100%;
}
footer .footerLogo {
  padding: 40px;
}
footer .footerLogo img {
  width: 170px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 520px) {
  footer .companyArticle {
    width: 100%;
    padding: 5%;
  }
  footer .companyContent {
    height: auto;
    flex-flow: column;
  }
  footer .companyMap {
    width: 100%;
    height: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
  }
  footer .companyMap iframe {
    position: absolute;
  }
  footer .companyTitle {
    font-size: 2rem;
    letter-spacing: -0.05rem;
    margin-bottom: 15px;
  }
  footer .footerLogo {
    padding: 20px;
  }
  footer .footerLogo img {
    width: 70px;
  }
}
@media (min-width: 521px) and (max-width: 1024px){
  footer .companyArticle {
    width: 70%;
    padding: 40px 20px;
    line-height: 2;
    background: #1a1a1a;
    color: #fff;
  }
  footer .footerLogo img {
    width: 100px;
  }
}
.copyright {
  background: #1a1a1a;
  padding: 15px 0;
  text-align: center;
  color: #fff
}/*# sourceMappingURL=style.css.map */

/* .contentsKaraokeImg{
  background: url("../images/dam_top.jpg") no-repeat center;
  background-size: cover;
} */
.contentsKaraokeImgTitle {
  font-size: 1.875rem;
  font-weight: 600;
  text-align: center;
  margin: 60px 0;
}
.contentsKaraokeImgWrap{
  /* max-width: 1150px; */
  margin: 0 auto;
  padding: 0 0 40px;
  color: #FFF;
  line-height: 2.2;
}
@media (max-width: 520px) {
  .contentsKaraokeImgTitle {
    font-size: 1.5rem;
    margin: 30px 0;
  }
  .contentsKaraokeImgWrap {
    max-width: 100%;
    padding: 0 5% 20px;
  }
  .contentsKaraokeImgWrap > img {
    height: 57vw;
    object-fit: cover;
  }
}
.contentsKaraokeInfo {
  position: relative;
}
.contentsKaraokeInfoWrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 100px;
  display: flex;
  justify-content: space-between;
}
.contentsKaraokeInfoArticle {
  width: 31%;
  position: relative;
}
.contentsKaraokeInfoArticle img {
  width: 100%;
}
.contentsKaraokeInfoArticle:nth-of-type(2) {
  top: 30px;
}
.contentsKaraokeInfoArticle:nth-of-type(3) {
  top: 60px;
}
.contentsKaraokeInfoTitle {
  margin: 30px 0 15px 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.contentsKaraokeInfoText {
  line-height: 2;
}

@media (max-width: 520px) {
  .contentsKaraokeInfo {
    padding: 0 5%;
  }
  .contentsKaraokeInfoWrap {
    max-width: 100%;
    flex-flow: column;
    padding-bottom: 0;
  }
  .contentsKaraokeInfoArticle {
    width: 100%;
    margin-bottom: 30px;
  }
  .contentsKaraokeInfoArticle:nth-of-type(2), .contentsKaraokeInfoArticle:nth-of-type(3) {
    top: 0;
  }
  .contentsKaraokeInfoTitle {
    font-size: 1.4rem;
    margin: 30px 0 20px 0;
  }
}
@media(min-width: 521px) and (max-width: 1024px){
  .contentsKaraokeInfo {
    padding: 0 5%;
  }
}