/* ベース
===================================================== */
body {
  color: #222;
  font-family: sans-serif;
  line-height: 1.5;
}

a {
  color: black;
  text-decoration: none;
}

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

/* コンテナー
===================================================== */
.ly_siteContaner {
  width: 100%;
}

/* メインビジュアル
===================================================== */
.ly_mainVisual_inner {
  display: flex;
}

@media screen and (max-width:1024px) {
    .ly_mainVisual_inner {
  }
}

/* グローバルナビ
===================================================== */
.ly_globalNav {
  width: 400px;
  height: 100vh;
  display: flex;
  text-align: center;
  justify-content: center;
  position: fixed;
}

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

.ly_globalNav_inner {
  display: block;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}

.bl_siteLogo {
  width: 80%;
}

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

.bl_siteLog_list {
  padding: 0;
  list-style: none;
  line-height: 1.7;
  font-size: 2.3vw;
  font-family: "Kranky", cursive;
}

.bl_siteLogo_item {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.bl_siteLogo_item:hover {
  color: white;
}

.bl_siteLogo_item:hover span {
  transform: none;
}

.bl_siteLogo_item > span {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  transform: translateX(-101%);
  transition: transform 0.2s;
  z-index: -1;
}

.fab {
  font-size: 3.5vw;
  transition: all 0.2s;
}

.fab:hover {
  color: pink;
}

.fa-twitter-square {
  margin: 0 10px;
}

.bl_reserve {
  margin-top: 10%;
}

.btn {
  width: 100%;
  border: 1px solid #ba6400;
  border-radius: 20px;
  background-color: #ba6400;
  color: white;
  font-size: 1vw;
}
.btn:hover {
  background-color: #fff;
  border: 1px solid #000;
  transition: all 0.3s;
  color: #000;
}

/* レスポンシブ用ボタン */
.bl_res{
  width: 60%;
  border: 1px solid #000;
  background-color: #fff;
  font-size: 3vw;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
}

.bl_res:hover {
  background-color: #000;
  border: 1px solid #fff;
  transition: all 0.3s;
  color: #fff;
}

@media screen and (min-width:1024px) {
    .bl_res {
      display: none;
  }
}

/* レスポンシブ用ボタン */

/* レスポンシブ様グローバルナビ */
/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn{
  position: fixed;
  top: 20px;
  right: 0px;
  z-index: 2;
  width: 37px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
}

@media screen and (min-width:1025px) {
    .menu-btn {
      display: none;
  }
}

@media screen and (max-width:600px) {
    .menu-btn {
  width: 35px;  }
}

@media screen and (max-width:300px) {
    .menu-btn {
  width: 33px;  }
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  opacity: 0.5;
}

.menu > ul {
  font-size: 2.5rem;
}

@media screen and (max-width:428px) {
    .menu > ul {
      font-size: 1.5rem;
  }
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu{
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active{
  pointer-events: auto;
  opacity: 1;
}


/* メインスライダー
===================================================== */
.ly_mainSlider {
  position: relative;
  width: calc(100% - 400px - 80px);
  height: 100vh;
  margin-left: 400px;
}

@media screen and (max-width:1024px) {
    .ly_mainSlider {
      margin: 0;
      width: 100%;
      height: auto;
  }
}

.heroImg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width:1024px) {
    .heroImg {
  }
}

/* サイドテキスト
===================================================== */
.ly_sideText {
  display: flex;
  writing-mode: vertical-rl;
  text-align: center;
  justify-content: center;
  width: 80px;
  height: 100vh;
  background-color: black;
}

@media screen and (max-width:1024px) {
    .ly_sideText {
      width: 40px;
      height: 50%;
  }
}

.sideText_text {
  margin: 0 auto;
  color: #fff;
  letter-spacing: 5px;
  font-weight: bold;
  font-family: "Kranky", cursive;
  font-size: 1vw;
}

@media screen and (max-width:1024px) {
    .sideText_text {
      font-size: 0.5rem;
  }
}

/* セクション
===================================================== */
.ly_section {
  width: calc(100% - 400px);
  margin-left: 400px;
  font-family: 'Tiro Gurmukhi', serif;
}

@media screen and (max-width:1024px) {
    .ly_section {
      margin: 0;
      width: 100%;
      height: auto;
  }
}

.ly_section_inner {
  width: 100%;
}

.bl_Tel {
  margin: 0;
  padding: 20px;
  font-size: 2.5vw;
  text-align: right;
  color: #d11313;
  font-weight: bold;
}

@media screen and (max-width:1024px) {
    .bl_Tel {
      font-size: 3rem;
  }
}

@media screen and (max-width:440px) {
    .bl_Tel {
      font-size: 1.5rem;
  }
}

.ly_secCont_inner {
  width: 100%;
  display: flex;
  justify-content: center;
}

.secLunch {
  background-image: url("../img/secCont1.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 20%;
}

.ly_secCont {
  width: 80%;
  margin-top: 20vh;
  margin-bottom: 20vh;
  display: flex;
  text-align: center;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width:1024px) {
    .ly_secCont {
      display: block;
      margin-top: 20vh;
      margin-bottom: 5vh;
      width: 100%;
      height: auto;
  }
}

.secImg {
  width: 50%;
  box-shadow: 10px 10px;
}

@media screen and (max-width:1024px) {
  .secImg {
width: 70%;
  }
}

.ly_secTextbox {
  width: 40%;
}

@media screen and (max-width:1024px) {
.ly_secTextbox {
width: 100%;
  }
}

@media screen and (max-width:1024px) {
.ly_secTextbox img{
  display: none;
  }
}

.bl_secTtl {
  display: inline-block;
  font-size: 5vw;
  border: 5px solid #000;
  padding: 0 10px;
  margin: 0;
}

@media screen and (max-width:1200px) {
.bl_secTtl {
  font-size: 4vw;
  margin-top: 50px;
  }
}

@media screen and (max-width:1024px) {
.bl_secTtl {
  font-size: 13vw;
  margin-top: 50px;
  }
}


@media screen and (max-width:428px) {
.bl_secTtl {
  font-size: 15vw;
  margin-top: 50px;
  }
}

.bl_sec_subText1 {
  font-size: 2vw;
  margin: 0;
}

@media screen and (max-width:1024px) {
.bl_sec_subText1 {
  font-size: 13vw;
  }
}

@media screen and (max-width:428px) {
.bl_sec_subText1 {
  font-size: 15vw;
  }
}

.bl_sec_subText2 {
  font-size: 2vw;
  text-align: left;
  margin-top: 50px;
}

@media screen and (max-width:1024px) {
.bl_sec_subText2 {
  font-size: 2.5rem;
  width: 90%;
  margin: 0 auto;
  }
}

@media screen and (max-width:428px) {
.bl_sec_subText2 {
  font-size: 1.5rem;
  }
}

/* セクション２のDinnerの修正
=============================================== */

.secdinner {
  background-image: url("../img/secCont2.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}

.secCont_dinner {
  display: flex;
  flex-direction: row-reverse;
  color: #fff;
}

@media screen and (max-width:1024px) {
.secCont_dinner {
  display: block;
  color: #ba6400;
  }
}

.dinnerImg {
  box-shadow: 10px 10px #fff;
}

.dinner_ttl2 {
  border: 5px solid #fff;
}

@media screen and (max-width:1024px) {
.dinner_ttl2 {
  font-size: 13vw;
  }
}

@media screen and (max-width:428px) {
.dinner_ttl2 {
  font-size: 15vw;
  }
}

@media screen and (max-width:1024px) {
  .dinner_ttl2 {
  border: 5px solid #ba6400;
  }
}

/* セクション3のDrinkの修正
=============================================== */

.drink_ttl {
  border: none;
}
.drinkImg {
  box-shadow: none;
}

@media screen and (max-width:1024px) {
.drinkImg {
  margin-bottom: 100px;
  }
}

.bl_Ttl_illust {
  display: flex;
  justify-content: center;
}

@media screen and (max-width:1024px) {
.bl_Ttl_illust {
  display: block;
  }
}

.bl_Ttl_illust > img {
  width: 7vw;
}

@media screen and (max-width:1024px) {
.bl_Ttl_illust > img {
    width: 10vw;
  }
}

@media screen and (max-width:428px) {
.bl_Ttl_illust > img {
    width: 26vw;
  }
}

.sec3subText {
  margin-top: 20px;
}

/* セクション4のTakeOutの修正
=============================================== */
.secTakeout {
  color: #fff;
  background-image: url("../img/secCont3.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.secCont_Takeout {
  display: flex;
  color: #fff;
}

@media screen and (max-width:1024px) {
.secCont_Takeout {
  display: block;
  color: #ba6400;
  }
}

.TakeoutImg {
  box-shadow: none;
}


/* セクション5のCourseの修正
=============================================== */
.secCourse {
  background-image: url("../img/secCont4.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 20%;
}

.secCont_Course {
  display: flex;
  flex-direction: row-reverse;
  color: #000;
  margin-top: 0;
}

  @media screen and (max-width:1024px) {
    .secCont_Course {
      display: block;
      margin-top: 200px;
      margin-bottom: 300px;
  }
}

  @media screen and (max-width:428px) {
    .secCont_Course {
      display: block;
      margin-top: 200px;
      margin-bottom: 200px;
  }
}

.courseImg {
  box-shadow: none;
}

.course_ttl {
  border: none;
}

.rakuda {
  width: 50%;
  display: block;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

/* セクション6のCourseの修正
=============================================== */
.secCont_Prof {
  display: block;
  padding-top: 5vw;
  background-color: #000;
}

.bl_prof_text {
  display: flex;
  font-size: 1.5vw;
  color: #fff;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width:428px) {
    .bl_prof_text {
      display: block;
      text-align: center;
  }
}

.bl_sec6_text {
  margin-left: 20px;
  text-align: left;
}

@media screen and (max-width:1024px) {
    .bl_sec6_text {
      font-size: 2rem;
  }
}

@media screen and (max-width:428px) {
    .bl_sec6_text {
      font-size: 1rem;
      margin-top: 20px;
  }
}

  .gmap-wrap{
    position : relative;
    height : 0;
    padding-bottom : 56.25%; /* 縦横比の指定 */
    overflow : hidden;
  }

  @media screen and (max-width:428px) {
    .gmap-wrap {
    padding-bottom : 100%; /* 縦横比の指定 */
  }
}


  .gmap-wrap iframe,
  .gmap-wrap object,
  .gmap-wrap embed{
    position : absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width : 80%;
    height : 50%;
}

/* footer
=============================================== */
.ly_footer {
  width: calc(100% - 400px);
  margin-left: 400px;
  background-color: #000;
}

@media screen and (max-width:428px) {
    .ly_footer {
      background-color: #fff;
      padding-bottom: 5vh;
  }
}

@media screen and (max-width:1024px) {
    .ly_footer {
      margin: 0;
      width: 100%;
      height: auto;
  }
}

.ly_footer_inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width:428px) {
    .ly_footer_inner {
      display: block;
  }
}

@media screen and (max-width:428px) {
    .ly_footer_inner > img {
      display: none;
  }
}

.bl_footer_Text {
  color: #fff;
  font-size: 1.5vw;
  line-height: 0.5;
  margin-left: 10vw;
}

@media screen and (max-width:1024px) {
    .bl_footer_Text {
    font-size: 2rem;
    margin-left: 10vw;
  }
}

@media screen and (max-width:428px) {
    .bl_footer_Text > p {
      font-size: 0.8rem;
      margin-left: 0;
      color: black;
  }
}


.textTime {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width:1100px) {
    .textTime {
      font-size: 1.5vw;
  }
}

@media screen and (max-width:428px) {
    .textTime {
      margin-bottom: 0;
  }
}
