/*
Theme Name: Sakura Sushi
Description: 都内寿司店のホームページ
Author: tsuboi
*/

@charset "UTF-8";

body {
  font-family: "Noto Serif JP", "Yu Gothic Pr6N R", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  /* margin: 0 auto; */
  overflow-x: hidden;
}

img {
  width: 100%;
}

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

li {
  list-style: none;
}

.container {
  max-width: 1280px;
  justify-content: center;
  margin: 0 auto;
}

.button {
  display: block;
  margin: 64px auto;
  border: 1px solid #333;
  color: #fff;
  background: #333;
  cursor: pointer;
  transition: 0.5s;
  padding: 24px 48px;
}

.button:hover {
  background: #fff;
  color: #333;
}

.nav-list a {
  padding-bottom: 3px; /* テキストと下線の間隔 */
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}

.nav-list a:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}

.nav-list-sp a {
  padding-bottom: 3px; /* テキストと下線の間隔 */
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}

.nav-list-sp a:hover {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  border:  2px solid #676767;
  border-radius: 50%;
}

.pagetop__arrow {
  height: 20px;
  width: 20px;
  border-top: 3px solid #676767;
  border-right: 3px solid #676767;
  transform: translateY(20%) rotate(-45deg);
}

/*----------------------------
Header
-----------------------------*/

#header {
  background-color: #333;
  position: fixed;
  width: 100%;
  z-index: 5;
}

.header {
  display: flex;
  width: 100%;
  height: 80px;
  padding: 16px 32px;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  width: 96px;
}

.nav-pc {
  color: #fff;
  margin-left: auto;
}

.nav-list {
  display: flex;
  gap: 24px;
}

/*----------------------------
sp-menu
-----------------------------*/

.menu-button {
  width: 35px;
  height: 25px;
  position: relative;
  top: 0;
  margin-left: auto;
  display: none;
}

.menu-button span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: .5s;
}

.menu-button span:first-of-type {
  top: 0;
}

.menu-button span:nth-of-type(2) {
  top:50%
}

.menu-button span:last-of-type {
  top: 100%;
}

.nav-list-sp {
  background-color: #333;
  opacity: 0.8;
  position: fixed;
  top: 80px;
  width: 100%;
  height: 100%;
  left: 0;
  transform: translateX(100%);
  transition: transform 1s ease;
}

.nav-list-sp li {
  color: #fff;
  line-height: 400%;
  text-align: center;
}

.menu-button.active span:first-of-type {
  top: 50%;
  transform: rotate(45deg);
}

.menu-button.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-button.active span:last-of-type {
  top: 50%;
  transform: rotate(-45deg);
}

.nav-list-sp.active {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .nav-pc {
    display: none;
  }

  .menu-button {
    display: block;
  }
}

/*----------------------------
slider
-----------------------------*/

.swiper-slide {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100vh;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoomUp 10s linear 0s 1 normal both;
}
.slide-img img{
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

.slider-text {
  position: absolute;
  top: 180px;
  right: 60px;
  z-index: 4;
}

.slider-text h1 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: .1rem;
}

@media (max-width: 768px) {
  .slider-text {
    display: none;
  }
}

/*----------------------------
ご挨拶
-----------------------------*/

#about {
  padding-top: 120px;
}

.about {
  display: flex;
  align-items: center;
}

.about-text {
  width: 40%;
  margin: 0 auto;
  line-height: 2;
  letter-spacing: .1rem;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.2rem;
  /* margin-bottom: 16px; */
}

.about-img {
  width: 50%;
}

@media (max-width: 1024px) {

  .about {
    flex-direction: column;
    /* align-items: center; */
  }

  .about-text {
    width: 100%;
    margin-bottom: 16px;
    padding: 0 10%;
    text-wrap: wrap;
  }

  .about-text h2 {
    text-align: center;
    margin-bottom: 16px;
  }

  .about-img {
    width: 80%;
  }

}

@media (max-width: 768px) {

  .about-text {
    padding: 0 5%;
  }

  .about-img {
    width: 90%;
  }

}

/*----------------------------
こだわり
-----------------------------*/

.commit {
  margin-top: 120px;
}

.commit {
  display: flex;
  /* align-items: center; */
}

.commit-text {
  width: 40%;
  margin: 0 auto;
  line-height: 2;
  letter-spacing: .1rem;
  text-wrap: wrap;
}

.commit-text h2 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.2rem;
}

.commit-img {
  width: 50%;
}

video {
  width: 100%;
}

@media (max-width: 1024px) {

  .commit {
    flex-direction: column-reverse;
  }

  .commit-text h2 {
    margin-bottom: 16px;
    text-align: center;
  }

  .commit-img {
    width: 80%;
    margin: 0 auto;
  }

  .commit-text {
    width: 100%;
    padding: 0 10%;
    margin-bottom: 32px;
  }

  video {
    width: 100%;
  }

}
@media (max-width: 768px) {

  .commit-img {
    width: 90%;
  }

  .commit-text {
    padding: 0 5%;
  }

}

/*----------------------------
今月のおすすめ
-----------------------------*/

#column {
  padding-top: 120px;;
  margin: 0 auto 0 auto;
  max-width: 1300px;
}

.pickup {
  text-align: center;
  padding: 48px 0;
}

.pickup h2 {
  margin-bottom: 64px;
}

.section-title {
  font-size: 48px;
  font-weight: 200;
}

.swiper-slide02 {
  display: flex;
  height: 430px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #676767;
}

.column-text {
  width: 50%;
  height: 430px;
  padding: 0 48px 0 120px;
  box-sizing: border-box;
  align-self: center;
}

.slider {
  padding-bottom: 48px;
}

.slide-img02 {
  width: 50%;
  height: 430px;
}

.slide-img02 img {
  height: 430px;
  object-fit: cover;
}

.column-text h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 100;
  letter-spacing: 0.2rem;
}

.column-text p {
  letter-spacing: 0.2rem;
  line-height: 2;
}

@media (max-width: 1024px) {

  .swiper-slide02 {
    flex-direction: column;
    height: 800px;
  }

  .slider {
    padding-bottom: 0;
  }

  .column-text {
    width: 100%;
    padding: 0 10%;
    margin: 0 auto;

  }

  .slide-img02 {
    width: 80%;
    margin: 24px auto;
    padding-bottom: 24px;
  }

  .column-text h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 32px;
    font-weight: 100;
  }

  .column-text p {
    letter-spacing: 0.1rem;
    line-height: 2;
  }

}
@media (max-width: 768px) {

  .column-text {
    padding: 0 5%;
  }

  .section-title {
    font-size: 32px;
  }

  .slide-img02 {
    width: 90%;
  }

  .column-text h2 {
    font-size: 24px;
  }

}

/*----------------------------
ご予約・お問い合わせ
-----------------------------*/

#contact {
  margin: 0 auto 64px auto;
  padding-top: 140px;
  max-width: 1300px;
  letter-spacing: 0.1rem;
  /* padding: 0 5%; */
}

.contact-head {
  text-align: center;
  margin-bottom: 48px;
}

.reserve {
  text-align: center;
}

.reserve p {
  margin-bottom: 12px;
}

.reserve h3 {
  font-size: 32px;
  font-weight: 100;
}

.contact {
  text-align: center;
  margin-top: 32px;
}

.contact p {
  margin-bottom: 12px;
}

.cancel {
  margin-top: 64px;
  text-align: center;
}

.cancel h3 {
  font-size: 32px;
  font-weight: 100;
  margin-bottom: 24px;
}

.cancel p {
  margin-bottom: 12px;
}

@media (max-width: 768px) {

  #contact {
    padding: 64px 5% 0;
  }

  .reserve h3 {
    font-size: 24px;
  }

  button {
    padding: 24px 48px;
    background-color: #333;
    color: #fff;
    margin: 24px 0;
    cursor: pointer;
  }

  .contact {
    text-align: left;
  }

  .cancel {
    text-align: left;
  }

  .cancel h3 {
    font-size: 24px;
    text-align: center;
  }

}

/*----------------------------
店舗案内
-----------------------------*/

#information {
  padding-top: 120px;
  padding-bottom: 32px;
  background-color: #f7f7f7;
}

#information h2 {
  font-size: 40px;
  font-weight: 100;
  text-align: center;
  padding-top: 64px;
  margin-bottom: 64px;
}

.information {
  display: flex;
  max-width: 1300px;
}

.shop-info {
  width: 50%;
  text-align: center;
}

.adress {
  padding: 0 32px;
  margin-bottom: 48px;
}

.adress p {
  margin-bottom: 8px;
}

.business-hours {
  padding: 0 32px;
  margin-bottom: 48px;
}

.business-hours h3 {
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 24px;
}

.business-hours p {
  margin-bottom: 8px;
}

.lunch,
.dinner {
  display: flex;
  justify-content: center;
}

.lunch-time,
.dinner-time {
  padding-right: 16px;
}

.holiday {
  padding: 0 32px;
}

.holiday h3 {
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 24px;
}

.map {
  width: 50%;
}

@media (max-width: 1024px) {

  #information {
    padding-top: 32px;
  }

  .information {
    flex-direction: column;
  }

  .shop-info {
    width: 100%;
    margin-bottom: 64px;
  }

  .map {
    width: 100%;
    text-align: center;
  }
}

/*----------------------------
フッター
-----------------------------*/

#footer {
  width: 100%;
  /* background-color: #333; */
  background-image: url(img/footer.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 24px 0;
}

.footer-logo {
  width: 120px;
  margin: 0 auto;
}


/*----------------------------
お品書きページ
-----------------------------*/

.menu-img {
  position: relative;
  width: 100%;
  object-fit: cover;
}

.menu-img img {
  height: 100vh;
  object-fit: cover;
}

.menu-img::before {
  content: "お品書き";
  color: #fff;
  font-size: 48px;
  letter-spacing: 0.2rem;
  font-weight: 100;
  position: absolute;
  top: 15%;
  left: 5%;
}

#menu {
  margin: 120px auto 0 auto;
}

#menu h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 200;
}

.course {
  text-align: center;
}

.course h3 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 100;
}

.course p {
  margin-top: 8px;
  letter-spacing: 0.1rem;
}

.course-text {
  width: 80%;
  margin: 48px auto 48px auto;
}

.menu-slider img {
  width: 80%;
}

.course-menu {
  display: flex;
  gap: 5%;
  justify-content: center;
  margin-bottom: 48px;
  padding: 0 2%;
}

.course-1 {
  position: relative;
  padding: 0 24px 24px;
  width: -webkit-fill-available;
}

.course-1::after {
  display: block;
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background-color: #676767;
  bottom: 0;
  left: 0;
}

.course-1 h4 {
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 12px;
}

.course-img {
  margin-bottom: 64px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 2%;
  margin-bottom: 64px;
}

.grid-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.course-info {
  margin-bottom: 64px;
  text-align: center;
}

@media (max-width: 768px) {

  .menu-img::before {
    font-size: 32px;
    top: 80%;
    left: 10%;
  }

  #menu h2 {
    font-size: 32px;
  }

  .course {
    text-align: left;
  }

  .course-text {
    width: 80%;
    margin: 48px auto 48px auto;
  }

  .menu-slider img {
    width: 80%;
  }

  .course-menu {
    flex-direction: column;
  }

  .course-1 {
    position: relative;
    padding: 0 5% 24px;
    text-align: center;
  }

  .course-1 h4 {
    font-size: 20px;
  }

  .course-img {
    margin-bottom: 64px;
  }

  .grid-container {
    display: inherit;
    text-align: center;
  }

  .grid-item {
    margin-bottom: 32px;
  }

  .course-info {
    padding: 0 5%;
  }
}

/* お食事 */

.menu02-img {
  height: 200px;
  object-fit: cover;
  margin-bottom: 64px;
}

.menu-title {
  text-align: center;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: fit-content;
  padding: 0 5%;
  margin: 64px auto;
  gap: 120px 64px;
  /* justify-content: space-between; */
  position: relative;
}

.menu-list img {
  margin-bottom: 24px;
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.menu-item,
.menu-item02 {
  width: 100%;
  text-align: center;
}

.menu-item h3 {
  font-size: 32px;
  font-weight: 100;
  text-align: center;
  margin-bottom: 32px;
}

.menu-item02 h3 {
  font-size: 32px;
  font-weight: 100;
  text-align: center;
  margin-bottom: 32px;
}

.menu-list p {
  text-align: left;
  letter-spacing: .1rem;
  line-height: 2rem;
}

.menu-list h4 {
  font-size: 24px;
  font-weight: 100;
  margin-bottom: 48px;
}

#takeout {
  margin-top: 120px;
}

.takeout-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

#takeout h2 {
  font-size: 48px;
  font-weight: 200;
  text-align: center;
  margin-top: 64px;
}





@media (max-width: 768px) {

  #menu02 {
    padding-top: 120px;
  }

  .menu-title {
    text-align: center;
  }

  .menu-list {
    margin: 64px auto 32px auto;
    display: block;
    flex-direction: column;
  }

  .menu-item {
    margin-top: 64px;
  }

}

/*----------------------------
予約ページ
-----------------------------*/

#reserve {
  padding: 120px 5% 0;
  text-align: center;
  height: 100vh;
}

.reserve p {
  letter-spacing: .1rem;
  line-height: 2rem;
}
