:root {
  --c-white: #FFFFFF;
  --c-text-strong: #111;
  --c-text: #333;
  --c-heading: #111;
  --c-main: #C9A400;
  --c-accent: #7C2C2C;
  --c-line: #E6E1D6;
  --container: 1440px;
}

/* Base */
body {
  margin: 0;
  color: var(--c-text);
  background-image: url("../img/demo5/bg.jpg");
  font-family: "Shippori Mincho", serif;
  line-height: 1.8;
}

.pc-none {
  display:none;
}

img {
  max-width:100%;
  height:auto;
  display:block;
}

hr {
  background: var(--c-text-eng);
}

h1 {
  font-size: min(28px,2.1vw);
  font-weight:400;
  letter-spacing:0.1em;
  line-height: 2.8;
}

h2 {
  font-size: min(42px,2.9vw);
  letter-spacing:0.1em;
  font-weight:400;
}

h3 {
  font-size: min(24px,1.6vw);
  letter-spacing:0.1em;
  font-weight:500;
}

h4 {
  font-size: min(20px,1.4vw);
  letter-spacing:0.1em;
  font-weight:700;
}

h5,
h6 {
  font-size: min(16px,1.1vw);
  letter-spacing:0.1em;
  font-weight:500;
}

a {
  color: var(--c-text);
  text-decoration: none;
  letter-spacing: 0.1em;
}

a:hover {
  color: var(--c-main);
  transition: 0,3s;
}

p {
  font-size: min(16px,1.1vw);
  letter-spacing: 0.1em;
}

li {
  list-style-type: none;
}

button {
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
}

.vertical-text {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.3em;
}

.vertical-text span {
  color: var(--c-main);
}

.has-text-align-center {
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.u-container {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.u-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 5vw;
  border-top: 1px solid var(--c-line);
}

.u-title-eng {
  color: rgba(201, 164, 0, 0.3);
  font-size: min(80px,5.5vw);
  letter-spacing: 0.2em;
  line-height: 0.75;
}

@media screen and (max-width:767px) {
  .pc-none {
    display:block;
  }

  .sp-none {
    display:none;
  }

  body {
    font-size:min(12px,3.2vw);
  }

  h1 {
    font-size: min(24px,5.9vw);
    line-height: 2;
  }

  h2 {
    font-size: min(20px,5.3vw);
  }

  h3,
  h4 {
    font-size: min(16px, 4.2vw);
  }

  h5,
  h6 {
    font-size: min(16px,4.2vw);
    letter-spacing:0.1em;
    font-weight:500;
  }

  a {
    font-size: min(12px,3.2vw);
    letter-spacing:0.1em;
  }

  p {
    font-size: min(12px,3.2vw);
    letter-spacing:0.1em;
	white-space:nowrap;
  }

  .u-title-eng {
    font-size: min(40px,10.6vw);
    line-height: 1;
  }
}

/* animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* 表示状態 */
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  height: 120px;
  background-image: url("../img/demo5/bg.jpg");
  z-index: 100;
}

.header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 2.5%;
}

.site-header__logo {
  width: 80%;
}

.header__list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
  padding: 0;
}
.header__list li {
  font-size: min(14px,1vw);
  padding: 0 10px;
}

.header__reservarion {
  color: var(--c-white);
  background-color: var(--c-accent);
  line-height: 120px;
}

.header__reservarion:hover {
  background-color: var(--c-main);
  transition: 0.3s;
}

.header__reservarion a {
  color: var(--c-white);
}

.header__toggle {
  display: none;
}

@media screen and (max-width:960px) and (min-width:768px) {
  .header {
    height: 80px;
  }

  .header__list {
    gap: 10px;
  }

  .header__list li {
    font-size: min(10px,1.2vw);
  }

  .header__reservarion {
    line-height: 80px;
  }
} 

@media screen and (max-width:767px) {
  .header {
    height: 100px;
  }

  .site-header__logo {
    width: 60%;
  }

  .header__toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 28px;
    height: 20px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1001;
  }

  .header__toggle-line,
  .header__toggle-line::before,
  .header__toggle-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #333;
    left: 0;
    transition: .3s ease;
  }

  .header__toggle-line {
    top: 50%;
    transform: translateY(-50%);
  }

  .header__toggle-line::before {
    top: -8px; 
  }
  .header__toggle-line::after {
    top: 8px; 
  }

  /* open時のバツ印 */
  .header--open .header__toggle-line {
    background: transparent;
  }

  .header--open .header__toggle-line::before {
    transform: rotate(45deg);
    top: 0;
    background: var(--c-white);
  }

  .header--open .header__toggle-line::after {
    transform: rotate(-45deg);
    top: 0;
    background: var(--c-white);
  }

  /* ナビゲーション */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000;
    transition: right .3s ease;
    z-index: 1000;
    padding: 80px 0;
  }

  .header__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .header__link {
    color: var(--c-white);
  }

  .header__reservarion {
    background: none;
    line-height: 1.8;
    margin-top: 20px;
    background-color: var(--c-white);
    padding: 5px 10px!important;
  }

  .header__reservarion a {
    color: #000;
  }

  .header--open .header__nav {
    right: 0;
  }

  /* 背景オーバーレイ */
  .header::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
  }

  .header--open::after {
    opacity: 1;
    visibility: visible;
  }
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
}

.hero__bg {
  width: 100%;
  height: 100%;
  max-height: 650px;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: sepia(30%);
}

.hero__lead {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-text-strong);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px 0;
}

.hero__sub {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-top: 10px;
  background: rgba(201, 164, 0, 0.5);
  padding: 20px 40px;
}

@media screen and (max-width:767px) {
  .hero__bg {
    height: 80vh;
  }

  .hero__sub {
    padding: 10px 20px;
  }
}

/* Greeting */
.greeting__wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  gap: 50px;
}

.greeting__text {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  gap: 50px;
}

.greeting__text--content {
  line-height: 3;
}

.greeting__img {
  width: 50%;
  height: auto;
}
.greeting__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  opacity: 0.7;
}

@media screen and (max-width:767px) {
  .greeting__wrap {
    flex-direction: column-reverse;
  }

  .greeting__text {
    width: 100%;
    gap: 0;
  }

  .greeting__img {
    width: 80%;
    margin: 0 auto;
}
}

/* Menu */
.menu__group {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
  margin: 150px auto 0;
}

.menu__text {
  display: flex;
  flex-direction: row-reverse;
  width: 45%;
  justify-content: space-evenly;
  line-height: 3;
}

.menu__text h3 {
  font-size: min(32px,2.2vw);
}

.menu__group--dinner,
.menu__group--takeout {
  flex-direction: row;
}

/* スライダー共通 */
.slider {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.slider__track {
  display: flex;
  transition: transform 0.4s ease;
}

.slider__item {
  position: relative;
  min-width: 100%;
  text-align: center;
}

.slider__item img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.slider__caption {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 25%;
  color: var(--c-text);
  background-color: rgba(255,255,255,0.9)
}

/* ボタン */
.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(139, 46, 46, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  font-size: 16px;
  z-index: 99;
}

.slider__btn--prev { left: 2px; }
.slider__btn--next { right: 2px; }

.slider__btn:hover {
  background: rgba(176, 141, 87, 0.9);
  transition: 0.3s;
}

@media screen and (max-width:960px) and (min-width:768px) {
  .slider__btn {
    width: 50px;
    height: 50px;
  }

  .slider__caption {
    font-size: 14px;
    width: 50%;
    height: 30%;
  }
}

@media screen and (max-width:767px) {
  .menu__group {
    flex-direction: column-reverse;
    gap: 50px;
    margin: 50px auto 0;
  }

  .menu__text,
  .slider {
    width: 80%;
    margin: 0 auto;
  }

  .menu__text h3 {
    font-size: min(16px,4.3vw);
  }

  .slider__btn {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .slider__caption {
    font-size: min(10px,2.6vw);
    width: 50%;
    height: 30%;
  }
}


/* Interior */
.interior__group {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
}

.interior__group .u-title-eng {
  position: absolute;
  top: -5%;
  right: 0%;
}

.interior__content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  gap: 5%;
  width: 90%;
  margin-top: 100px;
}

.interior__content--p {
  line-height: 3;
}

.interior__card {
  width: 40%;
  overflow: hidden;
}

.interior__media,
.interior__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.interior__meta {
  text-align: center;
  margin: 20px auto;
}

@media screen and (max-width:767px) {
  .interior__group h2 {
    position: absolute;
    top: -2.5%;
    right: 10%;
  }

  .interior__group .u-title-eng {
    position: absolute;
    top: 0%;
    right: 2.5%;
  }

  .interior__content {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin: 100px auto 0;
  }

  .interior__card {
    width: 80%;
  }
}

/* Access */
.access__wrap {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}

.access__wrap .u-title-eng {
  position: absolute;
  top: -5%;
  right: 0%;
}

.access__flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  margin-top: 100px;
}

.access__panel {
  width: 45%;
}

.access__info,
.access__meta {
  margin-bottom: 20px;
}

.access__map {
  min-height: 320px;
}

.access__btn {
  color: var(--c-accent);
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid var(--c-accent);
  text-align: center;
  width: 240px;
  height: 50px;
  line-height: 50px;
  float: right;
}

.access__btn:hover {
  color: var(--c-accent);
  background-color: var(--c-main);
  color: var(--c-white);
  border: none;
  transition: 0.3s;
}

@media screen and (max-width:767px) {
  .access__wrap h2 {
    position: absolute;
    top: -2.5%;
    right: 10%;
  }

  .access__wrap .u-title-eng {
    position: absolute;
    top: 0%;
    right: 2.5%;
  }

  .access__flex {
    flex-direction: column-reverse;
    gap: 50px;
  }

  .access__panel {
    width: 80%;
    margin: 0 auto;
  }

  .access__btn {
    width: 150px;
    height: 40px;
    line-height: 40px;
    margin-top: 20px;
  }
}

/* Contact */
.contact {
  text-align: center;
}

.contact__form {
  max-width: 900px;
  margin: 50px auto 0;
  text-align: left;
}

.contact__field {
  margin-bottom: 40px;
}

.contact__label {
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.contact__required {
  color: var(--c-accent); /* 赤 */
  margin-left: 5px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 20px 10px;
  border: none;
  background: #fff;
  color: #111;
  box-sizing: border-box;
}

.contact__input:focus,
.contact__textarea:focus {
  outline: 2px solid var(--c-main);
}

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

.btn--submit {
  display: inline-block;
  width: 240px;
  height: 50px;
  color: var(--c-accent);
  background: transparent;
  border: 1px solid var(--c-accent);
  transition: 0.3s;
}

.btn--submit:hover {
  background: var(--c-main);
  color: #fff;
  border: none;
}

@media screen and (max-width:767px) {
  .contact__input,
  .contact__textarea {
    padding: 10px;
  }

  .btn--submit {
    width: 150px;
    height: 40px;
    line-height: 40px;
  }
}

/* Footer */
.footer {
  background: #000;
  color: var(--c-white);
  padding: 28px 0;
}

.footer__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin: 10px auto 30px;
}

.footer__flex {
  text-align: center;
}
.footer__link {
  color: var(--c-white);
}

@media screen and (max-width:767px) {
  .footer__list {
    flex-direction: column;
  }
}