/* ブレイクポイント */
/* pc:900px～
tab:～900px
mobile:～425px */

/* main-page */

body {
  overflow-x: hidden;
}

/* header */

#header {
  position: sticky;
  top: 0;
  z-index: 10;
}

/* 消現の動き */

#header.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

#header.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#header .header-inner {
  height: 60px;
  background: #e87b0b;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .header-inner #logo {
  width: 166px;
}

#header .header-inner #logo a {
  width: 100%;
}

#header .header-inner #logo a span {
  font-family: "Sonsie One", cursive;
  font-size: 36px;
  color: #fff;
}

#header .header-inner #mainMenu nav ul.nav-list {
  display: flex;
  justify-content: space-between;
  position: relative;
}

#header .header-inner #mainMenu nav ul.nav-list li {
  padding: 0 20px;
}

#header .header-inner nav ul.nav-list li a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: 0.5s;
}

#header .header-inner nav ul.nav-list li.list-item:hover a {
  color: #ddd;
  text-shadow: 5px 2px 1px #333;
}

#header .header-inner nav ul.nav-list .dropdown {
  position: relative;
}

#header .header-inner nav ul.nav-list .dropdown .dropdown-menu {
  width: 180px;
  padding: 20px 0 10px;
  background: #333;
  position: absolute;
  left: -70px;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s linear;
}

#header .header-inner nav ul.nav-list .dropdown.open .dropdown-menu {
  top: 40px;
  opacity: 1;
  pointer-events: auto;
}

#header .header-inner nav ul.nav-list .dropdown-menu .dropdown-submenu {
  line-height: 1;
  margin-bottom: 10px;
}

#header .header-inner nav ul.nav-list .dropdown-menu .dropdown-submenu a {
  width: 100%;
  height: 20px;
  line-height: 20px;
  color: #fff;
}

#header .header-inner nav ul.nav-list .dropdown-menu .dropdown-submenu:hover a {
  text-decoration: underline;
  text-shadow: none;
}

#header
  .header-inner
  nav
  ul.nav-list
  .dropdown-menu
  .dropdown-submenu
  .fa-brands {
  color: #fff;
  margin: 0 10px 1px 0;
  vertical-align: middle;
}

#header .header-inner #mainMenu-trigger {
  display: none;
  width: 30px;
  height: 100%;
  position: relative;
}

#header .header-inner #mainMenu-trigger .lines {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 14px;
  left: 0;
  transition: all 0.5s ease-in-out;
}

#header .header-inner #mainMenu-trigger .lines:first-child {
  position: absolute;
  top: 2px;
  left: 0;
}

#header .header-inner #mainMenu-trigger .lines:last-child {
  position: absolute;
  top: 26px;
  left: 0;
}

#mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #222;
  opacity: 0.9;
  z-index: 20;
  transition: all 0.5s linear;
}

/* active */

#header .header-inner.active #mainMenu-trigger .lines:nth-child(2) {
  opacity: 0;
}

#header .header-inner.active #mainMenu-trigger .lines:first-child {
  transform: rotate(315deg);
  top: 50%;
  z-index: 21;
}

#header .header-inner.active #mainMenu-trigger .lines:last-child {
  transform: rotate(-315deg);
  top: 50%;
  z-index: 21;
}

#header .header-inner.active #mask {
  display: block;
  transition: 0.5s linear;
}

/* main */

.sp {
  display: none;
}

.sp2 {
  display: none;
}

#main-visual {
  width: 100%;
  height: calc(100vh - 50px);
  background-image: url(img/lamai1.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

#main-visual .slide-captions h1 {
  font-family: "Passion One", sans-serif;
  font-size: 96px;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
  top: calc(50% - 50px);
}

.slide-captions span.pc2 {
  font-family: "Passion One", sans-serif;
  font-size: 96px;
  color: #fff;
}

/* page-content */

.wrapper {
  padding: 60px 5%;
  margin: 0 auto;
}

h2 {
  font-size: 36px;
  margin-bottom: 16px;
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  text-shadow: 1px 1px #ddd;
  opacity: 0;
}

/* Animation */

/* fadeIn - その場で浮き出る - */

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  /* opacity: 0; */
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* fadeUp - 下から浮き出る - */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
  transition: ease-in-out;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* fadeIn2 - 下から浮き出る2 - */
.fadeIn2 {
  animation-name: fadeIn2Anime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  transition: ease-in-out;
  opacity: 0;
}

@keyframes fadeIn2Anime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* fadeIn3 - 浮き出て横スライド - */
.fadeIn3 {
  animation-name: fadeIn3Anime;
  animation-duration: 4s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 1s;
  opacity: 0;
}

@keyframes fadeIn3Anime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 0.6;
    transform: translateX(0);
  }
}

/* about */

#about h2 {
  margin-bottom: 32px;
}

.contents-page #about .container {
  background: linear-gradient(#e47350, #eb6035);
  height: 700px;
  position: relative;
}

.contents-page #about .container .text-box {
  width: 50%;
  position: relative;
  z-index: 2;
  opacity: 0;
}

.contents-page #about .container .text-box p {
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
}

.contents-page #about .container .img-box {
  width: 70%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  border-radius: 100% 0 0 0;
  background: #7d7b7b8a;
  overflow: hidden;
  opacity: 0;
}

.contents-page #about .container .img-box .shadow {
  box-shadow: inset 0 0 30px #ddd;
  height: 100%;
  border-radius: 100% 0 0 0;
}

.contents-page #about .container .img-box img {
  z-index: -1;
  position: relative;
  height: 100%;
}

.contents-page #about .container .fadeIn {
  opacity: 0;
  transition: all 1s ease-out;
}

/* menu */

.contents-page #menu {
  background: #333;
  position: relative;
}

.contents-page #menu .menu-inner {
  background-image: url(img/lamai-menu-bg.png);
  padding: 30px;
}

.contents-page #menu .menu-inner .slick-list {
  padding-bottom: 10px;
}

.contents-page #menu .menu-inner .menu-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 90%;
  margin: 0 auto;
  padding-top: 40px;
}

.contents-page #menu .menu-inner .food .menu-box {
  /* grid-template-columns: repeat(3, 1fr); */
  grid: repeat(1, 1fr) / auto-flow;
}

.contents-page #menu .menu-inner .menu-box .container {
  text-align: center;
  width: 100%;
}

.contents-page #menu .menu-inner .menu-box .container h3 {
  font-size: 24px;
  margin-bottom: 18px;
  position: relative;
}

.contents-page #menu .menu-inner .menu-box .container h3::before {
  display: block;
  content: "";
  width: 20%;
  height: 1px;
  background: #333;
  position: absolute;
  top: 18px;
  left: 10%;
}

.contents-page #menu .menu-inner .menu-box .container h3::after {
  display: block;
  content: "";
  width: 20%;
  height: 1px;
  background: #333;
  position: absolute;
  top: 18px;
  right: 10%;
}

.contents-page #menu .menu-inner .menu-box .container .img {
  text-align: center;
  max-width: 300px;
  width: 100%;
  height: 230px;
  margin: 0 auto 24px;
  position: relative;
  transition: all 0.3s ease-out;
}

.contents-page #menu .menu-inner .menu-box .container .img a {
  height: 100%;
}

.contents-page #menu .menu-inner .menu-box .container .img p {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #333333b4;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 100px 0;
  position: absolute;
  z-index: 9;
  visibility: hidden;
}

.contents-page #menu .menu-inner .menu-box .container .img img {
  object-fit: cover;
  height: 100%;
}

.contents-page #menu .menu-inner .menu-box .container .img:hover {
  outline: 5px solid #e87b0b;
}

.contents-page #menu .menu-inner .menu-box .container .img:hover img {
  opacity: 0.7;
}

.contents-page #menu .menu-inner .menu-box .container .img:hover p {
  visibility: visible;
}

.contents-page #menu .menu-inner .menu-box .menu-list li {
  font-size: 18px;
}

/* modaal */

.contents-page #menu .menu-inner .menu-slide .hide-area {
  display: none;
}

.modaal-container {
  max-width: 1200px;
}

.modaal-content {
  background: #333;
  padding: 30px;
}

.modaal-content .modaal-content-container {
  background-image: url(img/lamai-menu-bg.png);
  padding: 50px 6%;
}

.modaal-content .modaal-content-container .page-inner h3 {
  font-size: 38px;
  margin-bottom: 36px;
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  text-shadow: 0 0 2px #fff;
  text-align: center;
}

.modaal-content .modaal-content-container .page-inner h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.modaal-content .modaal-content-container .page-inner .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6%;
}

.modaal-content .modaal-content-container .page-inner .list-box {
  margin-bottom: 30px;
}

.modaal-content .modaal-content-container .page-inner .list-box dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  word-break: keep-all;
}

.modaal-content .modaal-content-container .page-inner .list-box dl dt {
  width: 100%;
  line-height: 2;
  font-size: 16px;
}

.modaal-content .modaal-content-container .page-inner .list-box dl dt.liqueur {
  font-weight: 600;
}

.modaal-content .modaal-content-container .page-inner .list-box dl dd {
  width: 100%;
  font-size: 16px;
  line-height: 2;
  text-align: right;
  border-bottom: 1px solid #333;
  margin-bottom: 16px;
}

.modaal-content
  .modaal-content-container
  .page-inner
  .list-box
  dl
  dd.liqueur-menu {
  font-size: 14px;
}

.modaal-content .modaal-content-container .page-inner .list-box dl dd.rs {
  border-bottom: none;
  margin-bottom: 0;
}

/* softdrink food*/

.modaal-content .modaal-content-container .page-inner.softdrink-page-inner,
.modaal-content .modaal-content-container .page-inner.food-page-inner {
  width: 70%;
  margin: 0 auto;
}

/* modaal food */

.modaal-content .modaal-content-container .food-page-inner .container h2 {
  text-align: center;
}

/* gallery */

.contents-page #gallery {
  overflow-x: hidden;
}

.contents-page #gallery .gallery-inner {
  background: linear-gradient(#e47350, #eb6035);
}

.contents-page #gallery .gallery-inner .slide-items {
  padding: 50px 0;
  opacity: 0;
}

.contents-page #gallery .gallery-inner .slide-items .slide-item img {
  max-width: 285px;
  width: auto;
  height: 100%;
  margin: auto;
  object-fit: cover;
  border: 2px solid #333;
}

@media screen and (901px <= width <= 1200px) {
  .contents-page #gallery .gallery-inner .slide-items .slide-item img {
    max-width: 230px;
  }
}

.contents-page #gallery .gallery-inner .gallery-list {
  display: none;
}

/* access */

.contents-page #access {
  background-color: #333;
}

.contents-page #access .container {
  display: flex;
  justify-content: space-between;
}

.contents-page #access .container .map-dsc {
  width: 50%;
}

.contents-page #access .container .map-dsc .access-fade {
  opacity: 0;
  margin-top: 40px;
}

.contents-page #access h2,
.contents-page #access .container li {
  color: #fff;
}

.contents-page #access .container li {
  font-size: 16px;
  line-height: 1.8;
}

.contents-page #access .container li:last-child {
  padding-top: 20px;
}

.contents-page #access .container .map {
  width: 50%;
  margin-left: 5%;
}

.contents-page #access .container .map iframe {
  width: 100%;
}

/* footer */

footer {
  background: #333;
}

footer #gotop {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 25px;
  right: 0;
  opacity: 0;
  transition: 0.5s;
  margin-right: 10px;
  pointer-events: visible;
}

footer #gotop.active {
  opacity: 1;
}

footer #gotop a {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #e87b0b;
  border-radius: 50%;
  background: #121212;
  position: relative;
  transition: all 0.3s;
}

footer #gotop a::before {
  display: block;
  content: "";
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  top: 14px;
  left: 10px;
}

footer #gotop a:hover {
  transform: rotateX(360deg);
}

.footer-inner .copy {
  display: block;
  text-align: center;
  color: #fff;
  padding: 20px 0;
}

/* レスポンシブ */

@media screen and (max-width: 900px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

.wrapper{
  padding: 60px 10%;
}

  /* sp navigation */

  nav.sp {
    opacity: 0;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 21;
    transition: all 0.5s linear;
  }

  #header .header-inner.active nav.sp {
    opacity: 1;
    left: 0;
    transition: 0.5s linear;
  }

  nav.sp ul.nav-list {
    padding: 30px;
  }

  #header .header-inner nav.sp ul.nav-list a:hover {
    text-decoration: underline;
    text-shadow: none;
  }

  #header .header-inner nav.sp ul.nav-list .dropdown .dropdown-menu {
    background-color: inherit;
    left: 15px;
    top: 0;
  }

  #header .header-inner nav.sp ul.nav-list .dropdown.open .dropdown-menu {
    top: 20px;
  }

  #header .header-inner nav.sp ul.nav-list .dropdown .dropdown-menu li a,
  #header .header-inner nav.sp ul.nav-list .dropdown .dropdown-menu li i {
    font-size: 12px;
  }

  #header .header-inner #mainMenu {
    display: none;
  }

  #header .header-inner #mainMenu-trigger {
    display: block;
  }

  #main-visual .slide-captions h1 {
    font-size: 80px;
    top: calc((100% - 105px) / 2);
  }

  /* #about */

  .contents-page #about .container {
    height: auto;
  }

  .contents-page #about .container h2 {
    text-align: center;
  }

  .contents-page #about .container .text-box {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
  }

  .contents-page #about .container .text-box p {
    font-size: 16px;
  }

  .contents-page #about .container .img-box {
    position: relative;
    border-radius: inherit;
    width: 70%;
    right: -10%;
  }

  .contents-page #about .container .img-box .shadow {
    border-radius: inherit;
  }

  /* #menu */

  .contents-page #menu .menu-inner {
    padding: 60px 10%;
  }

  .contents-page #menu .menu-inner h2 {
    text-align: center;
    margin-bottom: 36px;
  }

  .contents-page #menu .menu-inner .menu-box {
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;
  }

  .contents-page #menu .menu-inner .drink .menu-box .container {
    margin-bottom: 60px;
  }

  .contents-page #menu .menu-inner .food .menu-box {
    grid: repeat(3, 1fr) / auto-flow;
  }

  .contents-page #menu .menu-inner .dots-class {
    position: absolute;
    top: 50px;
    right: calc((100% - 40px) / 2);
  }

  .modaal-content .modaal-content-container .page-inner {
    width: 70%;
    margin: 0 auto;
  }

  .modaal-content .modaal-content-container .page-inner .row {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }

  .modaal-content .modaal-content-container .page-inner .list-box dl dt {
    font-size: 14px;
    line-height: 1.8;
  }

  .modaal-content .modaal-content-container .page-inner .list-box dl dd {
    font-size: 14px;
    line-height: 1.8;
  }

  /* #access */

  .contents-page #access h2 {
    text-align: center;
  }

  .contents-page #access .container {
    flex-direction: column-reverse;
    padding-top: 30px;
  }

  .contents-page #access .container .map-dsc {
    width: 100%;
  }

  .contents-page #access .container .map-dsc .access-fade {
    margin-top: 0;
    padding-top: 40px;
  }

  .contents-page #access .container .map {
    width: 70%;
    margin: 0 auto;
  }

}

@media screen and (max-width: 600px) {
  .sp2 {
    display: block;
  }

  .pc2 {
    display: none;
  }

  #header .header-inner {
    height: 42px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #header .header-inner #logo {
    width: 120px;
  }

  #header .header-inner #logo a span {
    font-size: 26px;
  }

  #header .header-inner #mainMenu-trigger .lines {
    top: 10px;
  }
  
  #header .header-inner #mainMenu-trigger .lines:first-child {
    top: 0;
  }
  
  #header .header-inner #mainMenu-trigger .lines:last-child {
    top: 20px;
  }

  #main-visual {
    height: 400px;
  }

  #main-visual .slide-captions h1 {
    font-size: 64px;
    top: calc((100% - 211px) / 2);
  }

  h2 {
    font-size: 28px;
  }

  .contents-page #about .container .text-box p {
    font-size: 14px;
  }

  .contents-page #menu .menu-inner .menu-box .container h3 {
    font-size: 22px;
  }

  .contents-page #menu .menu-inner .menu-box .container .img {
    width: 200px;
    height: auto;
  }

  .contents-page #menu .menu-inner .menu-box .container .img img {
    object-fit: contain;
  }

  .contents-page #menu .menu-inner .menu-box .container .img p {
    padding: 50px 0;
  }

  .modaal-content .modaal-content-container .page-inner {
    width: 90%;
    margin: 0 auto;
  }

  .modaal-content .modaal-content-container .page-inner h4 {
    font-size: 20px;
  }

  .modaal-content .modaal-content-container .page-inner .list-box dl dd.rs {
    margin-top: 16px;
  }

  .contents-page #gallery .gallery-inner .slide-items {
    display: none;
  }

  .contents-page #gallery .gallery-inner .gallery-list {
    display: grid;
    grid: repeat(3, 1fr) / auto-flow;
    gap: 10px;
    padding-top: 30px;
  }

  .contents-page #gallery .gallery-inner .gallery-list li a {
    height: 100%;
  }

  .contents-page #gallery .gallery-inner .gallery-list li img {
    height: 100%;
    object-fit: cover;
  }

  .contents-page #access .container .map {
    height: 200px;
  }

  .contents-page #access .container .map iframe {
    height: 100%;
  }

  .contents-page #access .container li {
    font-size: 14px;
  }

  .footer-inner .copy {
    font-size: 10px;
  }
}
