@charset "UTF-8";
* {
  font-family: "Playfair Display", serif;
}

img {
  max-width: 100%;
}

header {
  width: 100%;
  height: 80px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.header-inner {
  min-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  margin: 0 auto;
}
.header-nav ul {
  display: flex;
  justify-content: space-between;
}
.header-nav ul li {
  text-align: center;
  margin-right: 25px;
}
.header-nav ul li a {
  color: #000;
  font-family: "Playfair Display", serif;
}
.header-nav ul li a .header-img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

main {
  background-color: #000;
}

.contact-btn {
  width: 155px;
  height: 37px;
  background-color: darkslategray;
  color: #fff;
  border-radius: 10px;
  display: block;
  text-align: center;
  line-height: 37px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.32);
}

.header-btn a:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.slide {
  position: relative;
  width: 100%;
  height: 679px;
  overflow: hidden;
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}
.slide-image:nth-child(1) {
  background-image: url(images/shurimp.JPG);
  animation-delay: -2s;
}
.slide-image:nth-child(2) {
  background-image: url(images/steak.JPG);
  animation-delay: 6s;
}
.slide-image:nth-child(3) {
  background-image: url(images/steak2.JPG);
  animation-delay: 14s;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
.fv {
  position: relative;
}

.main-logo {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 1;
  width: 430px;
  top: 60px;
  left: 60px;
  background-color: #fff;
  color: #000;
  font-size: 2.6rem;
  font-weight: bold;
  padding: 4px;
}
.main-logo img {
  width: 60px;
  height: 60px;
}

.main-title {
  font-size: 32px;
  font-weight: bold;
  margin-left: 0;
}

.main-btn {
  position: absolute;
  z-index: 1;
  top: 362px;
  right: 708px;
}
.main-btn a {
  display: block;
  width: 250px;
  height: 60px;
  color: #fff;
  background-color: #000;
  border: 1px #fff solid;
  text-align: center;
  padding: 20px;
  font-size: 1.1rem;
  opacity: 0.75;
}
.main-btn a:hover {
  transform: scale(1.05);
  opacity: 0.6;
}

.shop-inner {
  margin-right: 10%;
  margin-left: 10%;
  text-align: center;
  margin-top: 30px;
}

.shop-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.shop-li {
  width: 40%;
  height: 300px;
  margin-right: 10px;
  margin-top: 10px;
  color: #fff;
}

.li-head {
  height: 40px;
  width: 100%;
  background-color: darkslategray;
  text-align: center;
  padding-top: 10px;
}

.li-body {
  height: 260px;
  background-color: #262925;
  text-align: center;
  padding-top: 10px;
}

.li-body-name {
  font-size: 1rem;
}

.li-body-time {
  margin-top: 5px;
  font-size: 0.9rem;
}

.li-body-inner {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}

.body-inner-img {
  width: 45%;
}

.body-inner-img-america {
  width: 120px;
  height: 100px;
}

.body-inner-tel {
  width: 35%;
  margin-top: 50px;
  padding: 15px 5px;
  border-radius: 5px;
  border: 1px #fff solid;
  height: 90px;
}

.tel-number {
  font-size: 1rem;
}

.tel-contact {
  font-size: 0.6rem;
  margin-top: 10px;
}

.Topics {
  background-color: antiquewhite;
  height: 580px;
}
.Topics-inner {
  width: 55%;
  padding-top: 30px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

h2 {
  font-size: 28px;
  font-weight: bold;
  text-align: left;
}

.p-title {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0;
  text-align: left;
}

.Topics-contents {
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.Topics-list {
  width: 90%;
  height: 80px;
  line-height: 80px;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
}

.text-right {
  width: 15px;
  height: 15px;
  line-height: 50px;
}

.btn-more {
  height: 50px;
  width: 120px;
  border-radius: 10px;
  background-color: darkslategray;
  line-height: 50px;
  margin-top: 40px;
  color: #fff;
  display: inline-block;
}

.Guide {
  height: 720px;
  background-color: antiquewhite;
  padding-top: 60px;
}
.Guide-inner {
  width: 60%;
  padding-top: 50px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.Guide .Guide-title {
  text-align: center;
}
.Guide .Guide-p {
  text-align: center;
  margin: 10px;
}

.accordion-container {
  width: 500px;
  margin: 50px auto;
}

.Guide-list {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding-right: 30px;
  font-size: 18px;
  border-top: 1px solid rgb(1, 3, 39);
  color: rgb(1, 3, 39);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.Guide-list:last-of-type {
  border-bottom: 1px solid rgb(1, 3, 39);
}

.Guide-text {
  width: 90%;
  height: 80px;
  line-height: 80px;
}

.text-plus {
  width: 15px;
  height: 15px;
  line-height: 50px;
}

.Guide-text:hover,
.Guide-text:active,
.Guide-text.is-active {
  text-decoration: underline;
}

.accordion-content {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  padding: 0 18px;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition-duration: 0.3s;
}

.accordion-content.is-open {
  background-color: #e7e7e7;
  padding: 12px 18px;
  margin: 12px 0;
  line-height: normal; /* numberに書き換える*/
  height: auto;
  opacity: 1;
}

footer {
  width: 100%;
  height: 150px;
  background-color: darkslategray;
  padding-top: 60px;
}

.footer-logo {
  display: flex;
  text-align: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  width: 430px;
  background-color: #fff;
  color: #000;
  font-size: 2.6rem;
  font-weight: bold;
}
.footer-logo img {
  width: 60px;
  height: 60px;
}

.footer-title {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 600px) {
  body {
    max-width: 100%;
    font-size: 9px;
  }
  .header-inner {
    min-width: 300px;
    width: 100%;
  }
  .header-nav ul li {
    margin-right: 10px;
  }
  .contact-btn {
    margin: 0;
    width: 55px;
    height: 17px;
    line-height: 18px;
  }
  .slide-image {
    max-width: 95%;
    max-height: 95%;
  }
  .main-logo {
    position: static;
    text-align: center;
    width: 100%;
    top: 0;
    background-color: #fff;
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 2px 50px;
  }
  .main-logo .main-img {
    width: 40px;
    height: 40px;
  }
  .main-logo .main-title {
    font-size: 20px;
    font-weight: bold;
    margin-left: 0;
  }
  .shop-inner {
    text-align: center;
    margin-top: 30px;
  }
  .shop-ul {
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0 10%;
  }
  .shop-li {
    width: 80%;
    height: 220px;
    margin-right: 0;
    margin-top: 10px;
    color: #fff;
  }
  .li-head {
    height: 20px;
    width: 100%;
    background-color: darkslategray;
    text-align: center;
    padding-top: 5px;
  }
  .li-body {
    height: 180px;
    background-color: #262925;
    text-align: center;
    padding-top: 5px;
  }
  .li-body-name {
    font-size: 0.8rem;
  }
  .li-body-time {
    margin-top: 5px;
    font-size: 0.6rem;
  }
  .li-body-inner {
    display: flex;
    justify-content: space-around;
    margin-top: 5px;
  }
  .body-inner-img {
    width: 45%;
  }
  .body-inner-img-america {
    width: 80px;
    height: 60px;
  }
  .body-inner-tel {
    width: 35%;
    margin-top: 10px;
    padding: 5px 1px;
    border-radius: 5px;
    border: 1px #fff solid;
    height: 80px;
    font-size: 0.9rem;
  }
  .tel-number {
    font-size: 0.8rem;
  }
  .tel-contact {
    font-size: 0.6rem;
    margin-top: 10px;
  }
  .Topics {
    height: 350px;
  }
  .Topics-inner {
    width: 90%;
    padding-top: 30px;
  }
  h2 {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
  }
  .p-title {
    font-size: 10px;
    font-weight: bold;
    margin: 5px 0;
    text-align: left;
  }
  .Topics-contents {
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  .Topics-list {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #000;
    display: flex;
    justify-content: space-between;
    padding-right: 20px;
    font-size: 0.5rem;
  }
  .text-right {
    width: 5px;
    height: 5px;
    line-height: 30px;
  }
  .btn-more {
    height: 30px;
    width: 80px;
    border-radius: 10px;
    background-color: darkslategray;
    line-height: 30px;
    margin-top: 30px;
    color: #fff;
    display: inline-block;
  }
  .Guide {
    height: 520px;
    padding-top: 40px;
  }
  .Guide-inner {
    width: 85%;
    padding-top: 40px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
  .Guide .Guide-title {
    text-align: center;
  }
  .Guide .Guide-p {
    text-align: center;
    margin: 5px;
  }
  .accordion-container {
    width: 100%;
    margin: 40px auto;
  }
  .Guide-list {
    border-bottom: 1px solid #000;
    padding-right: 20px;
    font-size: 0.5rem;
    border-top: 1px solid rgb(1, 3, 39);
    color: rgb(1, 3, 39);
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .Guide-list:last-of-type {
    border-bottom: 1px solid rgb(1, 3, 39);
  }
  .Guide-text {
    width: 90%;
    height: 50px;
    line-height: 50px;
  }
  .text-plus {
    width: 5px;
    height: 5px;
    line-height: 30px;
  }
  footer {
    width: 100%;
    height: 80px;
    background-color: darkslategray;
    padding-top: 30px;
  }
  .footer-logo {
    display: flex;
    text-align: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    width: 60%;
    background-color: #fff;
    color: #000;
    font-size: 1rem;
    font-weight: bold;
  }
  .footer-logo img {
    width: 30px;
    height: 30px;
  }
  .footer-logo .footer-title {
    margin-left: auto;
    margin-right: auto;
  }
}/*# sourceMappingURL=style.css.map */