/* ========================================
   咲都 -sato- スタイルシート
   ======================================== */

/* ----------------------------------------
   リセット・ベース
   ---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-family:
    "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo,
    sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ----------------------------------------
   共通
   ---------------------------------------- */
.section__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section__title {
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

/* ----------------------------------------
   ヘッダー
   ---------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  height: 100%;
}

.header__logo {
  height: 100%;
}

.header__logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.header__logo-img {
  height: 90%;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.header__nav-list {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
}

.header__nav-list li {
  flex-shrink: 0;
}

.header__nav-list a {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.header__nav-list a:hover {
  opacity: 0.7;
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.header__menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
}

.header__contact {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.header__contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #aaa;
  font-size: 12px;
  transition: opacity 0.3s;
}

.header__contact-item:hover {
  opacity: 0.7;
}

.header__contact-icon {
  font-size: 20px;
}

.header__contact-icon--svg {
  width: 20px;
  height: 20px;
}

.header__contact-item--ig {
  display: flex;
}


/* 400px〜767px: アイコンのみ、右寄せ */
@media (max-width: 767px) {
  .header__left {
    flex: 1;
  }

  .header__contact {
    margin-left: auto;
    margin-right: 15px;
  }
}

/* 240px未満: 連絡先非表示 */
@media (max-width: 240px) {
  .header__contact {
    display: none;
  }
}

/* ----------------------------------------
   ヒーロー
   ---------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url("../images/hero_counter.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.hero__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__catchcopy {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.hero__logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
}

.hero__opening {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ----------------------------------------
   ごあいさつ
   ---------------------------------------- */
.greeting {
  background-color: #1a1a1a;
  color: #fff;
}

.greeting .section__title {
  color: #fff;
}

.greeting__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.greeting__content p {
  margin-bottom: 1.5em;
  line-height: 2;
  color: #ccc;
  font-size: 16px;
}

.greeting__content p:last-child {
  margin-bottom: 0;
}

.greeting__catchcopy {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 20px;
  color: #fff;
  margin-top: 1.5em;
}

.greeting__toggle {
  text-align: center;
  margin-top: 40px;
}

.greeting__toggle-btn {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.greeting__toggle-btn:hover {
  color: #fff;
}

.greeting__toggle-text {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.greeting__toggle-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.greeting__toggle-btn.is-open .greeting__toggle-icon {
  transform: rotate(180deg);
}

.greeting__more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.greeting__more.is-open {
  max-height: 600px;
}

.greeting__more-inner {
  padding-top: 40px;
  text-align: center;
}

.greeting__subtitle {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

.greeting__more-inner p {
  margin-bottom: 1.5em;
  line-height: 2;
  color: #ccc;
  font-size: 16px;
}

.greeting__signature {
  font-family: "游明朝", "Yu Mincho", serif;
  color: #fff;
  margin-top: 2em;
  font-size: 16px;
}

/* ----------------------------------------
   料理/ドリンク
   ---------------------------------------- */
.food {
  background-color: #111;
  color: #fff;
}

.food .section__title {
  color: #fff;
}

.food__row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.food__row:last-child {
  margin-bottom: 0;
}

.food__row--reverse {
  flex-direction: row-reverse;
}

.food__text {
  flex: 1;
}

.food__subtitle {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.food__menu {
  margin-bottom: 15px;
}

.food__menu-item {
  margin-bottom: 15px;
}

.food__menu-item dt {
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}

.food__price {
  margin-left: 15px;
  color: #ccc;
}

.food__menu-item dd {
  font-size: 14px;
  color: #999;
}

.food__list {
  margin-bottom: 15px;
}

.food__list li {
  color: #ccc;
  margin-bottom: 8px;
  padding-left: 1em;
  position: relative;
  font-size: 16px;
}

.food__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.food__drink-item {
  margin-bottom: 12px;
}

.food__drink-item dt {
  font-size: 16px;
  color: #fff;
  margin-bottom: 3px;
}

.food__drink-item dd {
  font-size: 14px;
  color: #999;
}

.food__note {
  font-size: 12px;
  color: #666;
}

.food__carousel {
  flex: 1;
  position: relative;
  max-width: 450px;
}

.food__carousel-inner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 4px;
}

.food__carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.food__carousel-img.is-active {
  opacity: 1;
}

.food__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.food__carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.food__carousel-btn--prev {
  left: 10px;
}

.food__carousel-btn--next {
  right: 10px;
}

/* ----------------------------------------
   空間
   ---------------------------------------- */
.space {
  background-color: #1a1a1a;
  color: #fff;
}

.space .section__title {
  color: #fff;
}

.space__subtitle {
  color: #fff;
}

.space__text p {
  color: #ccc;
  margin-bottom: 1.2em;
}

.space__text p:last-child {
  margin-bottom: 0;
}

.space__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.space__row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.space__row--reverse {
  flex-direction: row-reverse;
}

.space__image {
  flex: 1;
}

.space__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}

.space__text {
  flex: 1;
}

.space__subtitle {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.space__text p {
  line-height: 2;
  font-size: 16px;
}

/* ----------------------------------------
   アクセス
   ---------------------------------------- */
.access {
  background-color: #222;
  color: #fff;
}

.access .section__title {
  color: #fff;
}

.access__item {
  border-bottom-color: #444;
}

.access__item dt {
  color: #999;
}

.access__item dd {
  color: #ddd;
}

.access__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.access__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access__item {
  display: flex;
  border-bottom: 1px solid #444;
  padding-bottom: 15px;
}

.access__item:last-child {
  border-bottom: none;
}

.access__item dt {
  width: 120px;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 16px;
}

.access__item dd {
  flex: 1;
  font-size: 16px;
}

.access__map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.access__map-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 4px;
}

/* ----------------------------------------
   ご予約
   ---------------------------------------- */
.reservation {
  background-color: #333;
  color: #fff;
}

.reservation .section__title {
  color: #fff;
}

.reservation__content {
  text-align: center;
}

.reservation__text {
  margin-bottom: 10px;
  font-size: 16px;
}

.reservation__note {
  font-size: 13px;
  color: #999;
  margin-bottom: 30px;
}

.reservation__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.reservation__btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 16px;
  letter-spacing: 0.1em;
  border: 2px solid;
  transition: all 0.3s;
  border-radius: 4px;
}

.reservation__btn--tel {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.reservation__btn--tel:hover {
  background-color: #fff;
  color: #333;
}

.reservation__btn--tabelog {
  background-color: #96310c;
  color: #fff;
  border-color: #96310c;
}

.reservation__btn--tabelog:hover {
  background-color: transparent;
  color: #96310c;
}

.reservation__contact {
  margin-top: 30px;
}

.reservation__contact p {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 16px;
}

.reservation__contact a {
  color: #fff;
  text-decoration: underline;
}

.reservation__contact a:hover {
  opacity: 0.7;
}

/* ----------------------------------------
   採用情報
   ---------------------------------------- */
.recruit {
  background-color: #1a1a1a;
  color: #fff;
}

.recruit .section__title {
  color: #fff;
}

.recruit .section__inner {
  text-align: center;
}

.recruit__image {
  max-width: 50%;
  height: auto;
  border-radius: 4px;
}

/* ----------------------------------------
   フッター
   ---------------------------------------- */
.footer {
  background-color: #444;
  color: #fff;
  padding: 40px 20px;
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer__sns {
  margin-bottom: 20px;
}

.footer__sns-link {
  display: inline-block;
  color: #fff;
  transition: opacity 0.3s;
}

.footer__sns-link:hover {
  opacity: 0.7;
}

.footer__sns-icon {
  width: 30px;
  height: 30px;
}

.footer__logo {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.footer__copyright {
  font-size: 12px;
  color: #aaa;
}

/* ----------------------------------------
   アニメーション
   ---------------------------------------- */

/* フェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 左からスライドイン */
.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.slide-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* 右からスライドイン */
.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* 料理/ドリンク：画像ホバーズーム */
.food__carousel-inner {
  overflow: hidden;
}

.food__carousel-img {
  transition:
    opacity 0.5s ease,
    transform 0.4s ease;
}

.food__carousel:hover .food__carousel-img.is-active {
  transform: scale(1.03);
}

.space__carousel {
  flex: 1;
  position: relative;
  max-width: 450px;
}

.space__carousel-inner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 4px;
}

.space__carousel-inner::after {
  content: "只今工事中";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.2em;
  text-shadow:
    0 0 20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 0, 0, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.9);
}

.space__carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: blur(1px);
  transition:
    opacity 0.5s ease,
    transform 0.4s ease,
    filter 0.4s ease;
}

.space__carousel-img.is-active {
  opacity: 1;
}

.space__carousel:hover .space__carousel-img.is-active {
  transform: scale(1.03);
  filter: blur(0);
}

.space__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.space__carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.space__carousel-btn--prev {
  left: 10px;
}

.space__carousel-btn--next {
  right: 10px;
}

/* 空間：画像ホバー効果 */
.space__image {
  overflow: hidden;
}

.space__image img {
  transition: transform 0.5s ease;
}

.space__image:hover img {
  transform: scale(1.03);
}

/* ----------------------------------------
   レスポンシブ
   ---------------------------------------- */
@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
  }

  .header__nav.is-open {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 0;
  }

  .header__nav-list li {
    border-bottom: 1px solid #333;
  }

  .header__nav-list li:last-child {
    border-bottom: none;
  }

  .header__nav-list a {
    display: block;
    padding: 15px 0;
  }

  .header__menu-btn {
    display: flex;
  }

  .header__menu-btn.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .header__menu-btn.is-open span:nth-child(2) {
    opacity: 0;
  }

  .header__menu-btn.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .header__menu-btn span {
    transition:
      transform 0.3s,
      opacity 0.3s;
  }

  .hero {
    background-attachment: scroll;
  }

  .hero__catchcopy {
    font-size: 24px;
  }

  .hero__logo-text {
    font-size: 14px;
  }

  .section__title {
    font-size: 22px;
  }

  .greeting__catchcopy,
  .greeting__subtitle {
    font-size: 18px;
  }

  .greeting__content p,
  .greeting__more-inner p,
  .greeting__signature {
    font-size: 15px;
  }

  .food__subtitle {
    font-size: 20px;
  }

  .food__menu-item dt,
  .food__list li {
    font-size: 15px;
  }

  .food__menu-item dd {
    font-size: 13px;
  }

  .food__drink-item dt {
    font-size: 15px;
  }

  .food__drink-item dd {
    font-size: 13px;
  }

  .food__note {
    font-size: 11px;
  }

  .space__text p {
    font-size: 15px;
  }

  .space__carousel-inner::after {
    font-size: 18px;
  }

  .access__item dt,
  .access__item dd {
    font-size: 15px;
  }

  .reservation__text,
  .reservation__contact p {
    font-size: 15px;
  }

  .reservation__note {
    font-size: 12px;
  }

  .reservation__btn {
    font-size: 15px;
  }

  .footer__logo {
    font-size: 18px;
  }

  .footer__copyright {
    font-size: 11px;
  }

  .header__nav-list a {
    font-size: 12px;
  }

  .section__inner {
    padding: 60px 20px;
  }

  .access__content {
    grid-template-columns: 1fr;
  }

  .access__item {
    flex-direction: column;
    gap: 5px;
  }

  .access__item dt {
    width: auto;
  }

  .space__row,
  .space__row--reverse {
    flex-direction: column;
  }

  .space__image img {
    height: 200px;
  }

  .food__row,
  .food__row--reverse {
    flex-direction: column;
  }

  .food__carousel {
    max-width: 100%;
    width: 100%;
  }

  .food__carousel-inner {
    height: 300px;
  }

  .space__carousel {
    max-width: 100%;
    width: 100%;
  }

  .space__carousel-inner {
    height: 250px;
  }

  .recruit__image {
    max-width: 80%;
  }
}

/* 480px以下 */
@media (max-width: 480px) {
  .hero__catchcopy {
    font-size: 16px;
  }

  .hero__opening {
    font-size: 14px;
  }

  .section__title {
    font-size: 18px;
  }

  .greeting__catchcopy,
  .greeting__subtitle {
    font-size: 16px;
  }

  .greeting__content p,
  .greeting__more-inner p,
  .greeting__signature {
    font-size: 12px;
  }

  .food__subtitle {
    font-size: 18px;
  }

  .food__menu-item dt,
  .food__list li {
    font-size: 12px;
  }

  .food__menu-item dd {
    font-size: 11px;
  }

  .food__drink-item dt {
    font-size: 12px;
  }

  .food__drink-item dd {
    font-size: 11px;
  }

  .food__note {
    font-size: 10px;
  }

  .space__text p {
    font-size: 12px;
  }

  .space__carousel-inner::after {
    font-size: 16px;
  }

  .access__item dt,
  .access__item dd {
    font-size: 12px;
  }

  .reservation__text,
  .reservation__contact p {
    font-size: 12px;
  }

  .reservation__note {
    font-size: 11px;
  }

  .reservation__btn {
    font-size: 14px;
  }

  .footer__logo {
    font-size: 16px;
  }

  .footer__copyright {
    font-size: 10px;
  }

  .header__nav-list a {
    font-size: 11px;
  }

  .header__contact-icon {
    font-size: 18px;
  }

  .header__contact-icon--svg {
    width: 18px;
    height: 18px;
  }
}

/* 320px以下 */
@media (max-width: 320px) {
  .hero__catchcopy {
    font-size: 14px;
  }

  .hero__opening {
    font-size: 13px;
  }

  .section__title {
    font-size: 16px;
  }

  .greeting__catchcopy,
  .greeting__subtitle {
    font-size: 14px;
  }

  .greeting__content p,
  .greeting__more-inner p,
  .greeting__signature {
    font-size: 10px;
  }

  .food__subtitle {
    font-size: 16px;
  }

  .food__menu-item dt,
  .food__list li {
    font-size: 10px;
  }

  .food__menu-item dd {
    font-size: 10px;
  }

  .food__drink-item dt {
    font-size: 10px;
  }

  .food__drink-item dd {
    font-size: 10px;
  }

  .food__note {
    font-size: 9px;
  }

  .space__text p {
    font-size: 10px;
  }

  .space__carousel-inner::after {
    font-size: 14px;
  }

  .access__item dt,
  .access__item dd {
    font-size: 10px;
  }

  .reservation__text,
  .reservation__contact p {
    font-size: 10px;
  }

  .reservation__note {
    font-size: 10px;
  }

  .reservation__btn {
    font-size: 13px;
  }

  .footer__logo {
    font-size: 14px;
  }

  .footer__copyright {
    font-size: 9px;
  }

  .header__nav-list a {
    font-size: 10px;
  }

  .header__contact-icon {
    font-size: 16px;
  }

  .header__contact-icon--svg {
    width: 16px;
    height: 16px;
  }
}

/* 250px以下 */
@media (max-width: 250px) {
  .hero__catchcopy {
    white-space: normal;
  }
}
