/*=====
  Common
=====*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
@font-face {
  font-family: 'minion';
  src: url(../font/MinionPro-Bold.otf) format('opentype');
}
@font-face {
  font-family: 'minionit';
  src: url(../font/MinionPro-BoldIt.otf) format('opentype');
}
html {
  background-color: #201c19;
  scroll-behavior: smooth;
  /* scroll-padding-top: 100px;  */
}
/* @media screen and (max-width: 960px) {
  html {
    scroll-padding-top: 0px;
  }
} */

body {
  font-family: 'Zen Old Mincho', serif;
  color: #333;
  max-width: 1920px;
  margin-inline: auto;
  position: relative;
}

.font-minion {
  font-family: 'minion', 'Zen Old Mincho', serif;
}

.font-minion-it {
  font-family: 'minionit', 'Zen Old Mincho', serif;
}

:root {
  /*--main: #bc2931;*/
  --main: #1818c9;
  --sub: #201c19;
  --beige: #fff2bc;
}

.color-main {
  color: var(--main);
}

.color-white {
  color: #fff;
}

.bg-main {
  background: var(--main);
}

.bg-sub {
  background: var(--sub);
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.75;
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
  font-size: inherit;
  font-weight: inherit;
}

br.sp-br {
  display: none;
}
@media screen and (max-width: 960px) {
  br.sp-br {
    display: initial;
  }
}
.pc-only {
  display: initial;
}
.sp-only {
  display: none;
}
@media (max-width: 960px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: initial;
  }
}

.section-title {
  font-family: 'minion', 'Zen Old Mincho', serif;
  font-size: 5rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .section-title {
    font-size: 3rem;
  }
}
.button {
  background: var(--main);
  color: #fff;
  font-family: 'minion';
  padding: 0.75rem 2rem 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
}
.button .line {
  height: 1px;
  width: 6rem;
  background: #fff;
  margin: 0 -2rem 2px 1rem;
}

.button::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.button:hover {
  opacity: 1;
}

.button:hover::before {
  opacity: 0.25;
}

/*=====
  header
=====*/
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  max-width: 1920px;
  height: 125px;
  background-color: var(--main);
  /*background: rgba(188, 41, 49, 0.8);*/
  background: rgba(24, 24, 201, 0.8);
  color: #fff;
  display: flex;
  justify-content: end;
  align-items: center;
}
.header .logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
}
.header .logo a:hover {
  opacity: 1;
}
.header .nav {
  display: flex;
  flex-direction: column;
}
.header .nav .tel {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 1.75rem;
}
.header .nav .tel .icon {
  width: 1.5rem;
  margin-right: 0.5rem;
  margin-bottom: 5px;
}
.header .nav .nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 1.125rem;
  font-weight: bold;
}
.header .sns {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 3rem;
}
.header .sp-hamburger {
  display: none;
  position: absolute;
  z-index: 1001;
  top: 10px;
  right: 10px;
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10%;
  background: var(--main);
  width: 50px;
  aspect-ratio: 1/1;
}
.header .sp-hamburger .line {
  height: 1px;
  width: 30%;
  background-color: #fff;
  content: '';
  transition: 0.3s;
}
.header .sp-hamburger.active .line:nth-child(1) {
  position: absolute;
  top: 50%;
  bottom: 50%;
  width: 40%;
  transform: rotate(-45deg);
}
.header .sp-hamburger.active .line:nth-child(2) {
  opacity: 0;
}
.header .sp-hamburger.active .line:nth-child(3) {
  position: absolute;
  top: 50%;
  bottom: 50%;
  width: 40%;
  transform: rotate(45deg);
}
.header .sp-nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: -120%;
  width: 80vw;
  height: 100dvh;
  background-color: var(--main);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}
.header .sp-nav .nav-links {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.header .sp-nav .nav-links__item {
  font-size: 1.2rem;
}
.header .sp-nav.active {
  right: 0;
}
.header .overlay {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.75;
}
.header .overlay.active {
  display: block;
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

@media screen and (max-width: 1040px) {
  .header {
    background: rgba(0, 0, 0, 0);
    align-items: flex-start;
    padding-top: min(5%, 30px);
  }
  .header .logo {
    width: min(40%, 240px);
  }
  .header .nav {
    display: none;
  }
  .header .sns {
    margin-right: 25%;
    gap: min(5vw, 2rem);
  }
  .header .sp-hamburger {
    display: flex;
  }
}
/*=====
  mv
=====*/
.mv {
  position: relative;
  height: 100vh;
  max-height: 800px;
}
.mv .glide {
  height: 100%;
}
.mv .glide .glide__track {
  height: 100%;
}
.mv .glide .glide__slides {
  height: 100%;
}
.mv .glide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mv .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 55px));
  max-width: 100%;
  padding: 0 2.5%;
  color: #fff;
  text-align: center;
}
.mv .container .copy {
  font-size: clamp(1.2rem, 0.6rem + 3vw, 3rem);
  font-weight: bold;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9);
}
.mv .container .copy span {
  font-size: clamp(1.5rem, 0.6667rem + 4.1667vw, 4rem);
}

@media screen and (max-width: 768px) {
  .mv {
    height: 50vh;
  }
  .mv .container {
    transform: translate(-50%, calc(-50% + 25px));
  }
}
/*=====
  news
=====*/
.news {
  padding: 5rem 0;
}
.news .container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  display: flex;
  align-items: stretch;
  background: #fff;
}
.news .container .flex-left {
  padding: 2rem 8%;
}
.news .container .flex-left h2 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--main);
  text-align: center;
}
.news .container .flex-left h2 .main {
  font-size: 4rem;
  font-weight: bold;
}
.news .container .flex-left h2 .sub {
  font-size: 1.5rem;
  font-weight: bold;
}
.news .container .flex-right {
  padding: 3rem;
  max-height: 400px;
  overflow-y: scroll;
}
.news .container .flex-right li {
  display: flex;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.news .container .flex-right li .date {
  margin-right: 1rem;
}
.news .container .flex-right li:last-child {
  border-bottom: none;
  padding-bottom: 0rem;
  margin-bottom: 0rem;
}

@media screen and (max-width: 960px) {
  .news .container {
    flex-direction: column;
  }
  .news .container .flex-left {
    padding: 2rem 8% 0;
  }
  .news .container .flex-left h2 .main {
    text-align: center;
    font-size: 3rem;
  }
  .news .container .flex-left h2 .sub {
    text-align: center;
    font-size: 1.25rem;
  }
  .news .container .flex-right {
    padding: 2rem 1rem 3rem;
    text-align: justify;
  }
  .news .container .flex-right li {
    flex-direction: column;
  }
}
/*=====
  food
=====*/
.food {
  padding: 9rem 0 5rem;
}
.food .container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.food .container .text {
  border: var(--beige) 1px solid;
  width: 80%;
  padding: 2rem;
  padding-left: calc(30% + 1rem);
  margin-left: auto;
}
.food .container .text .head {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 2rem;
}
.food .container .text p {
  margin-bottom: 3rem;
}
.food .container .floatbox {
  position: absolute;
  z-index: 1;
  width: 50%;
  top: -25%;
  left: -2.5%;
}
.food .container .floatbox .img {
  width: 100%;
  height: fit-content;
  aspect-ratio: 4/3;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.food .container .floatbox .section-title {
  margin-top: 1rem;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .food {
    padding-top: 20%;
  }
  .food .container .text {
    width: 100%;
    padding: 5%;
    padding-top: 75%;
    margin: auto;
    text-align: justify;
  }
  .food .container .text .head {
    font-size: 1.5rem;
  }
  .food .container .floatbox {
    top: -10%;
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;
  }
}
/*=====
  drink
=====*/
.drink {
  padding: 8rem 0;
  background: url(../img/bg-drink.png) no-repeat center center/cover;
  background-color: var(--sub);
}
.drink .flex {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 5%;
}
.drink .flex .images {
  width: 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 2rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
.drink .flex .images .img1 {
  grid-column: 1/3;
}
.drink .flex .images .img1 img {
  margin: auto;
}
.drink .flex .text {
  width: 50%;
  color: #fff;
}
.drink .flex .text .section-title {
  text-align: center;
  margin-bottom: 1.25rem;
}
.drink .flex .text .head {
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 1;
}
.drink .flex .text p {
  margin-bottom: 4rem;
}
.drink .flex .sp-images {
  display: none;
}

@media screen and (max-width: 960px) {
  .drink {
    padding: 5rem 0;
  }
  .drink .flex {
    flex-wrap: wrap;
  }
  .drink .flex .images {
    width: 100%;
    margin-bottom: 3rem;
  }
  .drink .flex .images .img2,
  .drink .flex .images .img3 {
    display: none;
  }
  .drink .flex .text {
    width: 100%;
    margin-bottom: 3rem;
    text-align: justify;
  }
  .drink .flex .text .head {
    font-size: 1.5rem;
  }
  .drink .flex .sp-images {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
/*=====
  floor
=====*/
.floor {
  /*background: url(../img/bg-floor.png) no-repeat 100% 0%;*/
  background-size: 55%;
  background-color: var(--sub);
  padding: 5rem 0;
}
.floor .section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.floor .container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.floor .container p {
  margin-bottom: 3rem;
}
.floor .container .images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  row-gap: 2rem;
  margin-bottom: 3rem;
}
.floor .container .images .floor-image {
  cursor: pointer;
}
.floor .container .floor-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  justify-content: center;
  align-items: center;
}
.floor .container .floor-modal.show {
  opacity: 1;
}
.floor .container .floor-modal.hide {
  opacity: 0;
}
.floor .container .modal-container {
  position: relative;
  width: 80%;
  max-width: 700px;
}
.floor .container .modal-image {
  margin: auto;
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}
.floor .container .floor-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  transition: color 0.3s;
}
.floor .container .floor-modal-close:hover,
.floor .container .floor-modal-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.floor .container .link {
  margin-bottom: 5rem;
}

@media screen and (max-width: 960px) {
  .floor {
    background-size: 90%;
  }
  .floor .container .text {
    text-align: justify;
  }
  .floor .container .images {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*=====
  information
=====*/
.information {
  /*background: url(../img/bg-information.png) no-repeat 0% 5%;*/
  background-size: 40%;
  background-color: #fff;
  padding: 5rem 0;
}
.information .section-title {
  text-align: center;
  margin-bottom: 5rem;
}
.information .container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.information .container .flex {
  display: flex;
  align-items: center;
  gap: 5%;
  margin-bottom: 3rem;
}
.information .container .flex .img {
  width: 50%;
}
.information .container .flex .table {
  width: 50%;
  padding: 0 1rem;
}
.information .container .flex .table .row {
  display: flex;
  border-bottom: rgba(51, 51, 51, 0.4) 1px solid;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.information .container .flex .table .row .th {
  width: 30%;
  padding-left: 1rem;
  font-weight: bold;
}
.information .container .flex .table .row .td {
  width: 70%;
  padding-left: 1rem;
}
.information .container .flex .table .link {
  margin-top: 3rem;
}
@media screen and (max-width: 960px) {
  .information {
    /*background: url(../img/bg-information.png) no-repeat 0% 5%;*/
    background-size: 60%;
    background-color: #fff;
  }
  .information .section-title {
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  }
  .information .container .flex {
    flex-direction: column-reverse;
  }
  .information .container .flex .img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .information .container .flex .table {
    padding: 0;
    width: 100%;
    margin-bottom: 3rem;
  }
}
/*=====
  gallery
=====*/
.gallery {
  padding: 8rem 0;
  background: url(../img/bg-gallery.png) no-repeat center center/cover;
  background-color: var(--sub);
}
.gallery .container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.gallery .container .text {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 3rem;
}
.gallery .container .section-title {
  margin-bottom: 3rem;
}
.gallery .glide {
  margin-bottom: 5rem;
}

@media screen and (max-width: 960px) {
  .gallery .container {
    display: flex;
    flex-direction: column-reverse;
  }
  .gallery .container .section-title {
    text-align: center;
  }
  .gallery .container .text {
    text-align: justify;
  }
}
/*=====
  contact
=====*/
.contact {
  background-color: #FEFAE4;
}
.contact .flex {
  display: flex;
}
.contact .map {
  width: 100%;
}
.contact .map iframe {
  width: 100%;
  height: 400px;
}
/*.contact .flex .map {
  width: 50%;
}
.contact .flex .map iframe {
  width: 100%;
  height: 100%;
}*/
.contact .flex .container {
  width: 50%;
  text-align: center;
  padding: 8rem 5%;
}
.contact .flex .container .section-title {
  margin-bottom: 3rem;
}
.contact .flex .container p {
  margin-bottom: 3rem;
}
.contact .flex .container .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  line-height: 1;
}
.contact .flex .container .tel .icon {
  margin-right: 1rem;
  margin-bottom: 10px;
  width: 2.5rem;
}

@media screen and (max-width: 960px) {
  .contact .flex {
    flex-direction: column-reverse;
  }
  .contact .flex .container {
    width: 100%;
  }
  .contact .flex .container p {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    margin-bottom: 3rem;
    text-align: justify;
  }
  .contact .flex .container .tel {
    font-size: 2rem;
  }
  .contact .flex .container .tel .icon {
    width: 2rem;
    margin-right: 0.5rem;
    margin-bottom: 5px;
  }
  .contact .flex .map {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
/*=====
  footer
=====*/
.footer {
  background-color: #fff;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 3rem 1rem;
}
.footer .logo {
  position: absolute;
  top: 50%;
  transform: translate(10%, -50%);
  left: 0;
  width: min(20%, 150px);
}
.footer .logo img {
  max-width: 100%;
  max-height: 100%;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .container .sns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer .container .nav .nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 1.125rem;
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .footer .logo {
    position: initial;
    transform: initial;
    margin-bottom: 3rem;
    width: min(50%, 220px);
  }
}
@media screen and (max-width: 960px) {
  .footer .nav .nav-links {
    flex-direction: column;
    align-items: center;
  }
}
.copyright {
  text-align: center;
  color: #fff;
  background: var(--main);
  padding: 1.5rem 0.5rem;
  font-size: 0.8rem;
}

.scroll-top {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 99;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}
.scroll-top a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.scroll-top a .block {
  width: 50px;
  height: 50px;
  background: var(--main);
  display: flex;
  justify-content: center;
  align-items: center;
}
.scroll-top a .block .triangle {
  display: block;
  width: 50%;
  height: 50%;
  -webkit-clip-path: polygon(100% 60%, 100% 75%, 50% 45%, 0 75%, 0 60%, 50% 25%);
  clip-path: polygon(100% 60%, 100% 75%, 50% 45%, 0 75%, 0 60%, 50% 25%);
  background: #fff;
}
.scroll-top a::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.scroll-top a:hover {
  opacity: 1;
}
.scroll-top a:hover::before {
  opacity: 0.25;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  .scroll-top {
    bottom: 5%;
    right: 5%;
  }
} /*# sourceMappingURL=style.css.map */
