/* ----------------- */
/* ------ All ------ */
/* ----------------- */
body{
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
a:hover{
  color: #C12500;
}
/* ----------------- */
/* ----- Header ---- */
/* ----------------- */
nav{
	background-color: #FBF8F1B3;
	transition: all 0.5s;
  height: 70px;
}
nav.headerColorScroll{
	background-color: #FBF8F1B3;
  transition: all 0.5s;
}
.logo-link{
  height: 100%;
  padding: 0;
  margin: 0;
}
.header-logo{
  height: 100%;
}
nav button{
	padding: 5px 10px !important;
	background-color:#FBF8F1B3 !important;
	font-size: 1.5rem !important;
}
#global-menu{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color:#C12500;
  height: 36px;
  line-height: 18px;
}
#global-menu li{
  padding: 10px 25px 8px 25px;
}
.instagram{
  padding-right: 0 !important;
}
.line{
  padding-right: 30px !important;
  padding-left: 20px !important;
}
#global-menu a{
  padding: 0;
  margin: 0;
}
#global-menu span{
  font-size: 12px;
}
.carousel{
  height: 100vh;
}
.top-img{
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
.op-0{
  object-position: 50% 0%;
}
.op-20{
  object-position: 50% 20%;
}
@media screen and (min-width: 992px) {
  .carousel{
    height: auto;
  }
  .top-img{
    height: 740px;
    width: 100%;
    object-fit: cover;
  }
  .header-logo{
    padding-left: 40px;
    height: 100%;
  }
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav{
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  /*他の透明なデザインの背景に出ないようにはじめは透過0*/
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  background:#FBF8F1;
  transition: all 0.3s;
  padding-top: 12px;
  padding-bottom: 12px;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive-1{
opacity: 1;
z-index: 9998;
}
.background{
  position:fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -2;
  background-color: #797979;
  transition: all 0.3s;
  opacity: 0;
}
.background.panelactive-2{
  opacity: 0.4;
  z-index:9997;
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}
#g-nav.panelactive-1 ul {
  display: block;
  width: 100%;
}

/*リストのレイアウト設定*/
#g-nav li{
  text-align: center;
}
#g-nav li a{
  color: #C12500;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
}
#g-nav span{
  font-size: 10px;
}
.create-border{
  height: 0;
  width: 50px;
  margin: 15px auto;
  border-top: solid #C12500 1px;
}
.hm-logo img{
  height: 48px;
}

/*========= ボタンのためのCSS ===============*/
/*×に変化する前*/
.openbtn{
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top:35px;
  left: 20px;
  transform: translate(0%,-50%);
  cursor: pointer;
  width: 37px;
  height:37px;
  background-color: #FBF8F1;
  border-radius: 5px;
}
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 4.5px;
  height: 5px;
  border-radius: 2px;
  background-color: #C12500;
  width: 28px;
}

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

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

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

/*×に変化*/
.openbtn.active span:nth-of-type(1) {
  top: 18.5px;
  left: 4px;
  transform: translateY(-50%) rotate(-45deg);
  width: 30px;
}

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

.openbtn.active span:nth-of-type(3){
  top: 18.5px;
  left: 4px;
  transform: translateY(-50%) rotate(45deg);
  width: 30px;
}

/* ----------------- */
/* ------ Main ----- */
/* ----------------- */
main{
  background-image: url(../img/background.svg);
  background-repeat: repeat;
}

/* ---- coupon ---- */
.coupon-img{
  width: 100%;
}
@media screen and (min-width: 992px) {
  .coupon-img{
    position:fixed;
    top: 529px;
    right: 0;
    width: 180px;
    opacity: 0.4;
    transition: 0.4s;
  }
  .coupon-img:hover{
    opacity: 1;
    transition: 0.4s;
  }
  .opacity{
    opacity: 1;
    transition: 0.4s;
  }
}

/* ---- copy ---- */
.copy{
  padding: 50px 0;
}
.copy-inner{
  margin: 0 auto;
  padding: 50px 20px;
  background: #FFFFFF80 0% 0% no-repeat padding-box;
  border-radius: 30px;
  text-align: center;
  opacity: 1;
}
.message-large{
  font-size: 28px;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: #C12500;
  text-underline-offset: 10px;
  text-decoration-thickness: 2px;
  padding-bottom: 30px;
  color: #393939;
}
.message-small{
  font-size: 16px;
  color: #393939;
}
@media screen and (min-width: 992px) {
  .copy{
    padding: 50px 100px;
  }
  .copy-inner{
    max-width: 900px;
    padding: 50px 68px;
  }
  .message-large{
    font-size: 35px;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: #C12500;
    text-underline-offset: 10px;
    text-decoration-thickness: 2px;
    padding-bottom: 55px;
    color: #393939;
  }
  .message-small{
    font-size: 18px;
    color: #393939;
  }
}

/* ---- simulation golf ---- */
.col{
  padding: 0 25px;
}
.sec{
  padding: 74px 0 80px 0;
}
h2{
  font-size: 35px;
  line-height: 35px;
  font-weight: bold;
  color: #C12500;
  text-align: center;
}
.caption{
  font-size: 16px;
  font-weight: bold;
  color: #C12500;
  text-align: center;
  padding: 7px 0 47px 0;
}
.col-left{
  padding-right: auto;
}
.col-right{
  padding-left: auto;
}
h3{
  font-size: 16px;
  font-weight: bold;
  color: #393939;
  padding-bottom: 10px;
}
.grid{
  text-align: center;
  line-height: 11px;
  max-width: 572px;
  margin: 0 auto;
}
.price-table{
  width: 100%;
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 5px;
  border-collapse: separate;
  border-spacing: 2px;
  table-layout: fixed;
}
.price-table th, .price-table td{
  text-align: center;
  line-height: 60px;
  height: 60px;
}
.bgcolor-gray{
  background-color: #E3E3E3;
  text-align: center;
}
.bgcolor-white{
  background-color: #FFFFFF;
}
.supplement{
  font-size: 12px;
  color: #797979;
}
.last-sentence{
  padding-bottom: 37px;
}
.sentence{
  font-size: 16px;
  color: #4A4A4A;
}
@media screen and (min-width: 992px) {
  h2{
    font-size: 50px;
    font-weight: bold;
    color: #C12500;
    text-align: center;
    height: 50px;
    line-height: 50px;
  }
  h3{
    font-size: 20px;
    font-weight: bold;
    color: #393939;
    padding-bottom: 20px;
  }
  .caption{
    font-size: 20px;
    font-weight: bold;
    color: #C12500;
    text-align: center;
    padding: 16px 0 47px 0;
  }
  .col-left{
    padding-right: 25px;
  }
  .col-right{
    padding-left: 25px;
  }
  .price-table{
    font-size: 20px;
  }
  .sentence{
    font-size: 20px;
  }
  .last-sentence{
    padding-bottom: 46px;
  }
}
/* ---- karaoke ---- */
.karaoke-table{
  width: 100%;
  font-size: 16px;
  color: #4A4A4A;
  border-collapse: separate;
  border-spacing: 2px;
  table-layout: auto;
  text-align: center;
  padding-bottom: 46px;
}
.karaoke-table td{
  padding: 12px;
  height: 60px;
  vertical-align: middle;
}
.songs{
  width: 124px;
}
@media screen and (min-width: 992px) {
  .karaoke-table{
    font-size: 20px;
  }
  .songs{
    width: 180px;
  }
}

/* ---- menu ---- */
.col-left-menu{
  padding-right: 10px;
}
.col-right-menu{
  padding-left: 10px;
}
.trapezoid{
	width: 128px;
  height: 0;
  line-height: 0;
	border-top: 36px solid #C12500;
	border-right: 16px solid transparent;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
}
.trapezoid p{
  position: absolute;
  font-size: 25px;
  font-weight: bold;
  top: -17px;
  left: 20px;
}
.food-inner{
  max-width: 900px;
  padding: 27px 20px 8px 20px;
  margin-bottom: 0px;
  background: #FFFFFF;
  border-radius: 30px;
  opacity: 1;
}
.drink-inner{
  max-width: 900px;
  padding: 27px 20px 8px 20px;
  margin-bottom: 16px;
  background: #FFFFFF;
  border-radius: 30px;
  opacity: 1;
}
dl{
  font-size: 12px;
}
dt{
  font-weight: normal;
  height: 21px;
  width: 80%;
  margin-bottom: 20px;
  background-image: url(../img/repeat_grid_menu.svg);
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 10px;
}
dd{
  height: 21px;
  margin: 0;
  margin-left: 5px;
  margin-bottom: 20px;
}
.repeat-box{
  padding-right: 40px;
  background-color: #FFFFFF;
}
.double{
  line-height: 16px;
}
.small-font{
  font-size: 10px;
}
.menu-left{
  padding-right: 2px;
  padding-left: 10px;
  padding-bottom: 26px;
}
.menu-left img{
  padding-bottom: 4px;
}
.menu-right{
  padding-left: 2px;
  padding-right: 10px;
  padding-bottom: 26px;
}
.menu-right img{
  padding-bottom: 4px;
}
.trapezoid-drink{
	width: 138px;
  height: 0;
  line-height: 0;
	border-top: 36px solid #C12500;
	border-right: 16px solid transparent;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  margin-top: 80px;
}
.trapezoid-drink p{
  position: absolute;
  font-size: 25px;
  font-weight: bold;
  top: -17px;
  left: 20px;
}

@media(min-width: 992px){
  .trapezoid{
    margin-bottom: 20px;
  }
  .trapezoid-drink{
    margin-top: 70px;
    margin-bottom: 20px;
  }
  .menu-left{
    padding-right: 0px;
    padding-left: 10px;
  }
  .menu-left img{
    padding-bottom: 11px;
    height: 311px;
  }
  .menu-right{
    padding-left: 20px;
  }
  .menu-right img{
    padding-bottom: 11px;
    height: 207px;
    width: 280px;
  }
  .food-inner{
    padding: 27px 46px 8px 30px;
    margin-bottom: 20px;
  }
  .drink-inner{
    padding: 27px 46px 8px 30px;
    margin-bottom: 20px;
  }
  dl{
    font-size: 16px;
  }
  dt{
    width: 80%;
  }
  dd{
    width: auto;
  }
}

/* ---- shop ---- */
.shop-sec{
  padding: 74px 0 50px 0;
}
.col-left-shop{
  padding-right: 10px;
}
.col-right-shop{
  padding-left: 10px;
}
iframe{
  border: 1px solid #C12500;
  width: 100%;
  min-height: 260px;
  margin-bottom: 40px;
}
.info-table{
  width: 100%;
  font-size: 16px;
  color: #4A4A4A;
  border-collapse: separate;
  border-spacing: 2px;
  table-layout: auto;
}
.info-table td{
  padding: 12px;
  vertical-align: middle;
}
@media(min-width: 992px){
  iframe{
    min-height: 324px;
    margin-bottom: 40px;
  }
}
/* ---- cv ---- */
.call-cv, .line-cv{
  text-align: center;
  padding-bottom: 10px;
  max-width: 480px;
}
.cv a{
  max-width: 480px;
}
.cv a:hover{
  opacity: 0.6;
  transition: 0.4s;
}
.cv-white{
  border: solid 2px #C12500;
  border-radius: 40px;
  background-color: #FFFFFF;
  height: 80px;
  color: #C12500;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto;
}
.cv-red{
  border: solid 2px #C12500;
  border-radius: 40px;
  background-color: #C12500;
  height: 80px;
  color: #FFFFFF;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto;
}
.cv-red:hover{
  color: #FFFFFF;
}
.cv img{
  padding-right: 10px;
}
.last-sec{
  padding-bottom: 80px;
}
.padding-bottom-3{
  padding-bottom: 30px;
}
.padding-bottom-4{
  padding-bottom: 40px;
}
.padding-bottom-5{
  padding-bottom: 50px;
}
.padding-top-5{
  padding-top: 50px;
}

@media(min-width: 992px){
  .last-sec{
    padding-bottom: 100px;
  }
  .call-cv{
    text-align: left;
    margin-left: auto;
    margin-right: 0px;
  }
  .line-cv{
    text-align: left;
    margin-right: auto;
    margin-left: 0px;
  }
  .cv-white{
    border: solid 2px #C12500;
    border-radius: 40px;
    background-color: #FFFFFF;
    height: 80px;
    color: #C12500;
    font-size: 30px;
    font-weight: bold;
    margin-left: auto;
    margin-right: 0px;
  }
  .cv-red{
    border: solid 2px #C12500;
    border-radius: 40px;
    background-color: #C12500;
    height: 80px;
    color: #FFFFFF;
    font-size: 30px;
    font-weight: bold;
    margin-right: auto;
    margin-left: 0px;
  }
}

/* ----------------- */
/* ----- Footer ---- */
/* ----------------- */
footer{
  height: 60px;
  background-color: #C12500;
  text-align: center;
  color: #E3E3E3;
  line-height: 60px;
}