@charset "UTF-8";

/*
主たるブレークポイント

sp: ～ 600px
tab: 600px ～ 1024px
pc: 1024px ～
*/

/* =================== 
全体の設定
======================*/
html {
  font-size: 67.5%; /*基本的にブラウザのフォントサイズは16px。ルートのfontsizeを10pxに、こうすると都合がいい*/
}

body {
  background-color: #f6e6cb;
  font-size: 1.6rem; /*body以下のフィンとを16pxに戻しておく*/
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
  color: #333;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.5;
}

/* =================== 
汎用クラス
======================*/
.inner {
  padding-left: 5.6%;
  padding-right: 5.6%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.title {
  font-weight: normal;
  font-size: 3.4rem;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  margin-bottom: 8px;
}

.sub_title {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.text {
  line-height: 2;
  margin-top: -0.5em;
}

.btn {
  display: block;
  max-width: 380px;
  line-height: 80px;
  color: #fff;
  background-color: #534340;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1025px) {
  .inner {
    padding-left: 0;
    padding-right: 0;
  }
}

/* =================== 
ヘッダー
======================*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}

header h1 {
  /* SVGなのであえてWidth明示的にしてあげる */
  width: 150px;
}

header .menu_btn {
  width: 26px;
  height: 26px;
  z-index: 10;
}

header .menu_btn span {
  display: block;
  background-color: #333;
  height: 2px;
  transition: 0.2s;
}

.on header .menu_btn span {
  background-color: #fff;
}

header .menu_btn span:nth-child(2) {
  transform: translateY(10px);
}

header .menu_btn span:last-child {
  transform: translateY(20px);
}

/*header展開時*/
.on header .menu_btn span:first-child {
  transform: translateY(12px) rotate(45deg);
}

.on header .menu_btn span:last-child {
  transform: translateY(10px) rotate(-45deg);
}

.on header .menu_btn span:nth-child(2) {
  display: none;
}

@media screen and (min-width: 1025px) {
  header .menu_btn {
    display: none;
  }

  header {
    justify-content: center;
  }
}

/* =================== 
キービジュアル
======================*/
.key.inner {
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 64px;
}

.key ul {
  padding: 0;
  list-style: none;
}

/* =================== 
ナビゲーション
======================*/
nav {
  background-color: rgba(83, 67, 64, 0.8);
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  padding-top: 50px;
  opacity: 0; /*fadeInさせたいのでdisplayでなくopacity式にする*/
  visibility: hidden;
  transition: 0.3s;
}

.on nav {
  opacity: 1;
  visibility: visible;
}

nav p {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 80px;
}

nav ul {
  list-style: none;
  padding: 0;
  border-top: 2px dashed #fff;
}

nav ul li {
  text-align: center;
  font-size: 3.5rem;
  line-height: 2;
  border-bottom: 2px dashed #fff;
}

nav ul li a {
  color: #fff;
  display: block;
}

nav ul li a span {
  display: none;
}

@media screen and (min-width: 1025px) {
  nav {
    /*SP用のレイアウトから通常に戻していく*/
    opacity: 1;
    visibility: visible;
    background-color: transparent;
    width: auto;
    height: auto;
    position: static;
    margin-top: 64px;
    padding-top: 0;
    margin-bottom: 128px;
  }

  nav p {
    display: none;
  }

  nav ul {
    border-top: none;
    display: flex;
    justify-content: space-between;
  }

  nav ul li {
    border-bottom: none;
    font-size: 1.6rem;
    width: 23.7288136%;
    line-height: 1.5;
  }

  nav ul li a {
    background-color: #e3cdc1;
    color: #534340;
    padding: 22px 0;
  }

  nav ul li a span {
    display: block;
    font-size: 1.2rem;
  }
}

/* =================== 
ANDANTEについて
======================*/
.top_about {
  max-width: 600px;
  margin-bottom: 64px;
}
.top_about img {
  margin-bottom: 24px;
}

.top_about .text {
  margin-bottom: 24px;
}

@media screen and (min-width: 1025px) {
  .top_about {
    margin-bottom: 128px;
    min-width: 1180px;
    padding-left: 8.4745627%;
    padding-right: 8.4745627%;
  }

  .top_about .top_about_content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .top_about img {
    width: 48.9795918%;
    height: 100%;
  }

  .top_about .top_about_text {
    width: 48.9795918%;
  }
}
/* =================== 
メニュー
======================*/
.top_menu figure {
  margin-bottom: 24px;
}

.top_menu figure img {
  margin-bottom: 8px;
}

.top_menu figure figcaption {
  text-align: center;
}

.top_menu figure figcaption span {
  font-size: 1.2rem;
}

@media screen and (min-width: 600px) {
  .top_menu_content {
    display: flex;
    justify-content: space-between;
  }

  .top_menu_content figure {
    flex-basis: 32.2033898%;
  }
}

/* =================== 
フッター
======================*/
footer {
  background-color: #534340;
  margin-top: 160px;
  padding-top: 32px;
  padding-bottom: 32px;
}

footer .footer_logo {
  width: 175px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

footer .footer_nav {
  list-style: none;
  padding: 0;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  border-top: 1px dashed #fff;
}

footer .footer_nav li {
  border-bottom: 1px dashed #fff;
  line-height: 3;
}

footer .footer_nav a {
  display: block;
  color: #fff;
}

footer small {
  display: block;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 600px) {
  footer .footer_nav {
    display: flex;
    border-top: none;
    width: auto;
    justify-content: center;
  }

  footer .footer_nav li {
    border-bottom: none;
  }

  footer .footer_nav a {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* =================== 
下層ペース共通
======================*/
/*.underをつけることで下層ページのみの処理をわけられる*/
.under nav {
  margin-top: 0;
  margin-bottom: 64px;
}

.under_title {
  height: 190px;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
}

.under_title h2 {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px 30px;
  font-family: 'Noto Serif JP', serif;
  color: #534340;
  font-size: 8vw; /*iPhoneSEのサイズに合わせるも考えたけれど、横幅に対してサイズを可変させているよ*/
}

@media screen and (min-width: 600px) {
  .under_title h2 {
    font-size: 3.5rem;
  }
  /*========= min-width:600px =========*/
}

.headding {
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
  color: #534340;
  margin-bottom: 24px;
  font-family: 'Noto Serif JP', serif;
}

.headding::after {
  content: '';
  display: block;
  height: 2px;
  width: 178px;
  background-color: #534340;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}

/* =================== 
About
======================*/
.about .under_title {
  background-image: url(../img/about_title.jpg);
}

.about .relaxation {
  margin-bottom: 64px;
}

.about .about_box .box_text {
  margin-bottom: 24px;
}

@media screen and (min-width: 600px) {
  .about .about_box {
    display: flex;
    flex-direction: column-reverse;
  }

  .about .about_box .box_text {
    background-color: rgba(227, 205, 193, 0.85);
    padding: 2rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    margin-top: -50px; /*ネガティブmargin*/
  }
  /*========= min-width:600px =========*/
}

@media screen and (min-width: 1025px) {
  .about .relaxation {
    /* margin-bottom: 220px; */
  }

  .about .about_box {
    display: block;
    width: 780px;
    position: relative;
    margin-bottom: 220px;
  }

  .about .about_box .box_text {
    position: absolute;
    bottom: 0;
    width: 480px;
    transform: translateY(90px);
  }

  .about .relaxation .box_text {
    right: 0;
  }

  .about .about_box img {
    width: 580px;
  }

  .about .blend img {
    margin-left: auto;
  }

  .about .headding {
    text-align: left;
    font-size: 4.6rem;
  }

  .about .headding::after {
    margin-left: 0;
  }

  .about .blend .headding {
    font-size: 3.8rem;
  }

  /*========= min-width:1025px =========*/
}
/* =================== 
メニュー
======================*/
.menu .under_title {
  background-image: url(../img/menu_title.jpg);
}

.menu .drink {
  margin-bottom: 64px;
}

.menu .menu_box figure {
  margin-bottom: 24px;
}

.menu .menu_box figure img {
  margin-bottom: 8px;
}

.menu .menu_box figure figcaption {
  text-align: center;
}

@media screen and (min-width: 600px) {
  .menu .menu_box div {
    display: flex;
    justify-content: space-between;
  }

  .menu .menu_box div figure {
    flex-basis: 32.2033898%;
  }
  /*========= min-width:600px =========*/
}
/* =================== 
アクセス
======================*/
.access .under_title {
  background-image: url(../img/access_title.jpg);
}

.access .map {
  margin-bottom: 64px;
}

.access .map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}

.access .access_box table th,
.access .access_box table td {
  display: block;
}

.access .access_box table th {
  text-align-last: left;
  font-weight: normal;
  border-bottom: 1px dashed #534340;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.access .access_box table td {
  margin-bottom: 24px;
  line-height: 2;
}

@media screen and (min-width: 600px) {
  .access .map iframe {
    aspect-ratio: 2/1;
  }

  .access .access_box table {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

  .access .access_box table th,
  .access .access_box table td {
    display: table-cell;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .access .access_box table th {
    width: 31.0344828%;
  }

  .access .access_box table td {
    border-bottom: 1px dashed #534340;
  }
  /*========= min-width:600px =========*/
}
