body {
  font-family: "Shippori Mincho";
  font-size: 16px;
  color: #333;
  line-height: 2;
}

main {
  background-image: url(../img/background.png);
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
}

h3 {
  font-size: 24px;
  position: relative;
}
@media (max-width: 500px) {
  h3 {
    font-size: 18px;
  }
}

h3::after {
  content: "";
  display: block;
  width: 350px;
  height: 80px;
  background-image: url("../img/after-line.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -80px;
  left: 0;
}
@media (max-width: 500px) {
  h3::after {
    width: 200px;
    height: 40px;
    bottom: -30px;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #121212;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

section {
  overflow-x: hidden;
  padding-block: 80px;
}
@media (max-width: 500px) {
  section {
    padding-block: 50px;
  }
}

@media (max-width: 500px) {
  section:not(.mainvisual, .info) {
    margin-inline: 15px;
  }
}
@media (max-width: 900px) {
  section:not(.mainvisual, .info) {
    margin-inline: 30px;
  }
}
@media (max-width: 500px) {
  .info {
    padding-inline: 15px;
  }
}
.wrapper {
  max-width: 1100px;
  margin-inline: auto;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.section-title:after {
  content: "";
  display: block;
  width: 200px;
  height: 100px;
  background-image: url("../img/after-wave.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -80px;
  left: 51%;
  transform: translateX(-50%);
}

header {
  height: 80px;
  width: 100%;
  background-color: #D8D1C4;
  font-size: 18px;
  position: fixed;
  top: 0;
  z-index: 10;
  text-align: center;
}
@media (max-width: 500px) {
  header {
    height: 50px;
  }
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 500px) {
  header .wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  header .wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  header .wrapper.navi {
    width: 500px;
    height: 100vh;
    overflow-y: hidden;
    background-color: #D8D1C4;
    padding-top: 60px;
    position: fixed;
    top: 0;
    left: -500px;
    bottom: 0;
    opacity: 0;
    overflow-y: auto;
    z-index: 20;
    transition: 0.5s;
  }
}
@media (max-width: 500px) {
  header .wrapper.navi {
    width: 300px;
    height: 100vh;
    overflow-y: hidden;
    background-color: #D8D1C4;
    padding-top: 60px;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    opacity: 0;
    overflow-y: auto;
    z-index: 20;
    transition: 0.5s;
  }
}
header .wrapper.navi ul {
  display: flex;
}
@media (max-width: 500px) {
  header .wrapper.navi ul {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  header .wrapper.navi ul {
    flex-direction: column;
  }
}
header .wrapper.navi ul li {
  margin-inline: 20px;
}
header .wrapper.navi ul li a {
  display: block;
  position: relative;
  padding-bottom: 2px;
}
@media (max-width: 500px) {
  header .wrapper .call {
    margin-top: 40px;
  }
}
@media (max-width: 900px) {
  header .wrapper .call {
    margin-top: 40px;
  }
}
header .wrapper .call .tel {
  display: flex;
  align-items: center;
}
header .wrapper .call .tel img {
  width: 32px;
  height: 32px;
}
header .wrapper .call .tel a {
  padding-left: 20px;
}
header .toggle_btn {
  width: 50px;
  height: 60px;
  position: fixed;
  top: 15px;
  right: 50px;
  cursor: pointer;
  display: none;
  z-index: 30;
}
@media (max-width: 900px) {
  header .toggle_btn {
    display: block;
  }
}
@media (max-width: 500px) {
  header .toggle_btn {
    display: block;
    width: 40px;
    height: 40px;
    top: 5px;
    right: 30px;
  }
}
header .toggle_btn span {
  content: "";
  width: 90%;
  height: 3px;
  background-color: #333;
  transition: all 0.5s;
  position: absolute;
}
header .toggle_btn span:nth-child(1) {
  top: 30%;
}
header .toggle_btn span:nth-child(2) {
  top: 50%;
}
header .toggle_btn span:nth-child(3) {
  top: 70%;
}
header .mask {
  display: none;
}
@media (max-width: 500px) {
  header.open .navi {
    left: 0;
    opacity: 1;
    transition: 0.5s;
  }
}
@media (max-width: 900px) {
  header.open .navi {
    left: 0;
    opacity: 1;
    transition: 0.5s;
  }
}
header.open .toggle_btn span:nth-child(1) {
  transform: rotate(135deg);
  top: 50%;
}
header.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
header.open .toggle_btn span:nth-child(3) {
  transform: rotate(-135deg);
  top: 50%;
}
header.open .mask {
  width: 100%;
  height: 100vh;
  background-color: #333;
  display: block;
  z-index: 15;
  opacity: 0.6;
}

footer {
  background-color: #432C02;
  font-size: 18px;
  color: #fff;
}
footer .logo {
  width: 350px;
}
footer .contents {
  display: flex;
  justify-content: center;
  gap: 300px;
}
@media (max-width: 900px) {
  footer .contents {
    gap: 140px;
  }
}
@media (max-width: 700px) {
  footer .contents {
    gap: 50px;
    justify-content: baseline;
  }
}
@media (max-width: 500px) {
  footer .contents {
    flex-direction: column;
    margin-top: 0;
    gap: 40px;
  }
}
footer .contents nav {
  max-width: 400px;
}
footer .contents nav ul li a {
  font-size: 18px;
  color: #fff;
  display: block;
  padding: 20px 60px;
  text-align: center;
}
@media (max-width: 500px) {
  footer .contents nav ul li a {
    text-align: left;
    padding: 5px 10px;
  }
}
footer .contents nav ul li a:after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
}
footer .contents nav ul li a:hover {
  opacity: 0.4;
}
footer .contents nav .pagetop {
  margin-top: 30px;
  display: flex;
}
footer .contents nav .pagetop .to-top {
  width: 40px;
  height: 40px;
}
footer .contents nav .pagetop .to-top img {
  margin-right: 15px;
}
footer .contents nav .pagetop a {
  width: 100%;
  height: 100%;
  color: #fff;
}
footer .contents .footer-info p {
  text-align: left;
}
footer .contents .footer-info .news-list {
  width: auto;
  height: 150px;
  overflow-y: auto;
  background-color: beige;
}
footer .contents .footer-info .news-list::-webkit-scrollbar {
  display: none;
}
footer .contents .footer-info .news-list .news-item {
  border: #333 1px solid;
}
footer .contents .footer-info .news-list .news-item a {
  margin: 0;
  padding: 0 10px;
}
footer .contents .footer-info a {
  display: inline-block;
  color: #333;
  margin-top: 60px;
  padding: 20px 90px;
  background-color: beige;
}
footer p {
  text-align: center;
}

.mainvisual {
  margin-top: 0;
  background-color: #fff;
}
.mainvisual .main-img {
  position: relative;
  height: 100vh;
  margin-bottom: 50px;
  max-width: 1600px;
  margin-inline: auto;
}
@media (max-width: 500px) {
  .mainvisual .main-img {
    height: 30vh;
  }
}
.mainvisual h1 {
  width: 100%;
  max-width: 700px;
  z-index: 5;
  position: absolute;
  top: 130px;
  left: -70px;
}
@media (max-width: 768px) {
  .mainvisual h1 {
    max-width: 500px;
    top: 100px;
    left: -50px;
  }
}
@media (max-width: 500px) {
  .mainvisual h1 {
    max-width: 80%;
    top: 40px;
    left: -40px;
  }
}
.mainvisual h1 img {
  width: 100%;
}
.mainvisual .slideitems {
  display: flex;
  overflow-x: hidden;
}
.mainvisual .slideitems .slideitem {
  padding-inline: 15px;
  box-sizing: border-box;
}

.dinner .container {
  display: flex;
  gap: 50px;
}
@media (max-width: 500px) {
  .dinner .container {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.dinner .container .dinnertext h3 {
  margin-bottom: 30px;
}
.dinner .container .dinnertext p {
  margin-bottom: 10px;
}
.dinner .container .dinnertext a {
  width: 300px;
  background-color: #FAF0E6;
  display: inline-block;
  padding-block: 5px;
  text-align: center;
  box-shadow: 3px 4px 0 #4d3939;
}
.dinner .container .dinnertext a:active {
  transform: translateY(4px);
  box-shadow: none;
}
.dinner .container .slick {
  max-width: 50%;
  width: 100%;
}
@media (max-width: 500px) {
  .dinner .container .slick {
    max-width: 100%;
  }
}
.dinner .container .slick ul {
  position: relative;
  width: auto;
  height: 400px;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 500px) {
  .dinner .container .slick ul {
    width: 100%;
    height: 300px;
  }
}
.dinner .container .slick ul li {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  animation: dinner-fade 15s infinite linear;
}
.dinner .container .slick ul li img {
  width: 100%;
}
.dinner .container .slick ul li:nth-of-type(1) {
  animation-delay: 0s;
}
.dinner .container .slick ul li:nth-of-type(2) {
  animation-delay: 5s;
}
.dinner .container .slick ul li:nth-of-type(3) {
  animation-delay: 10s;
}

@keyframes dinner-fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.lunch .container {
  display: flex;
  gap: 50px;
}
@media (max-width: 500px) {
  .lunch .container {
    flex-direction: column;
    gap: 0;
  }
}
.lunch .container .lunchtext h3 {
  margin-bottom: 30px;
}
.lunch .container .lunchtext p {
  margin-bottom: 10px;
}
.lunch .container .lunchtext a {
  width: 300px;
  background-color: #FAF0E6;
  display: inline-block;
  padding-block: 5px;
  text-align: center;
  box-shadow: 3px 4px 0 #4d3939;
}
.lunch .container .lunchtext a:active {
  transform: translateY(4px);
  box-shadow: none;
}
.lunch .container .slick {
  max-width: 50%;
  width: 100%;
}
@media (max-width: 500px) {
  .lunch .container .slick {
    max-width: 100%;
  }
}
.lunch .container .slick ul {
  position: relative;
  width: auto;
  height: 400px;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 500px) {
  .lunch .container .slick ul {
    width: 100%;
    height: 300px;
  }
}
.lunch .container .slick ul li {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  animation: fade 15s infinite;
}
.lunch .container .slick ul li img {
  width: 100%;
}
.lunch .container .slick ul li:nth-of-type(1) {
  animation-delay: 0s;
}
.lunch .container .slick ul li:nth-of-type(2) {
  animation-delay: 5s;
}
.lunch .container .slick ul li:nth-of-type(3) {
  animation-delay: 10s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.course .course-img {
  margin-inline: auto;
  width: auto;
  height: 450px;
}
@media (max-width: 500px) {
  .course .course-img {
    width: 100%;
    height: auto;
  }
}
.course .course-img img {
  height: 100%;
}
.course .content {
  margin-block: 30px;
  margin-inline: auto;
  border: 1px solid black;
  max-width: 370px;
  height: 230px;
  text-align: center;
  background-color: #FAF0E6;
}
@media (max-width: 500px) {
  .course .content {
    max-width: 260px;
    height: auto;
  }
}
.course .content p {
  font-weight: bold;
  margin-block: 7px;
}
.course .content ul {
  display: flex;
  flex-wrap: wrap;
}
.course .content ul li {
  width: 50%;
  line-height: 2.5;
}
.course .content a {
  display: inline-block;
  padding-block: 5px;
  margin-bottom: 10px;
  text-align: center;
  box-shadow: 3px 4px 0 #4d3939;
}
.course .content a:active {
  transform: translateY(4px);
  box-shadow: none;
}
.course .drink {
  margin-top: 10px;
  display: inline-block;
  border: 1px solid black;
  text-align: center;
  padding: 5px 20px;
}
.course p {
  text-align: center;
}

.seat .seatitem {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
}
@media (max-width: 500px) {
  .seat .seatitem {
    gap: 15px;
    margin-bottom: 10px;
  }
}
.seat .seatitem .seattext {
  width: 50%;
}
.seat .seatitem .seattext h3 {
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .seat .seatitem .seattext p {
    display: none;
  }
}
.seat .seatitem .seat-img {
  border-radius: 3px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  width: 50%;
  max-width: none;
}
.seat .seatitem .seat-img .fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}
.seat .seatitem .seat-img img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.home .home-items {
  display: flex;
  gap: 100px;
  justify-content: center;
}
@media (max-width: 500px) {
  .home .home-items {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 500px) {
  .home .home-items .person {
    max-width: 400px;
    height: auto;
    margin-inline: auto;
  }
}
.home .home-items .person img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
@media (max-width: 500px) {
  .home .home-items .person img {
    max-width: 200px;
    max-height: 300px;
  }
}
.home .home-items .hometext {
  width: 50%;
}
@media (max-width: 500px) {
  .home .home-items .hometext {
    width: 100%;
  }
}
.home .home-items .hometext h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .home .home-items .hometext h2 {
    font-size: 24px;
  }
}
.home .home-items .hometext p {
  line-height: 2;
}

.info .map {
  margin-inline: auto;
}
.info .map iframe {
  width: 100%;
}
@media (max-width: 500px) {
  .info .map iframe {
    height: 300px;
  }
}
.info .logo {
  width: 400px;
  margin-block: 50px;
}
@media (max-width: 500px) {
  .info .logo {
    max-width: 250px;
    margin-block: 30px;
  }
}
.info dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.info dl dt {
  width: 20%;
  padding-bottom: 5px;
}
.info dl dd {
  width: 80%;
  padding-bottom: 5px;
}/*# sourceMappingURL=main.css.map */