/* common */
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Oswald', sans-serif;
  font-family: 'Zen Antique Soft', serif;
  background-color: #f8fdff;
}

.flex {
  display: flex;
}

img {
  width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

section {
  padding-bottom: 10%;
}

.reverse {
  flex-direction: row-reverse;
}

.note {
  text-align: center;
  padding: 10px;
  color: #393939a9;
  font-size: 0.9rem;
}

/* scroll animation */

.scrolling {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}


/* header */

header {
  width: 100%;
  position: fixed;
  align-items: baseline;
  /* background-color: bisque; */
  z-index: 10;
}

.pc-header-container {
  max-width: 1400px;
  width: 100%;
  padding: 40px 4% 20px;
  justify-content: space-between;
  align-items: baseline;
  box-sizing: border-box;
  background-color: #f8fdffea;
  /* background-color: antiquewhite; */
  margin: 0 auto;
}

.logo {
  max-width: 350px;
}

.logo:hover {
  opacity: .6;
}


/* global nav */
#gnav li {
  padding-left: 30px;
  /* position: fixed; */
}

#gnav a {
  color: #393939;
  font-size: 1.25rem;
  text-decoration: none;
}

#gnav a:hover {
  opacity: 0.8;
}


/* drawer */
#sp-nav {
  /* background-color: rgba(163, 163, 163, 0.651); */
  margin: 10px;
  cursor: pointer;
  z-index: 10;
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
}

.drawer-btn {
  width: 70px;
}

.close {
  opacity: 0.8;
  background-color: #3939397c;
  border-radius: 50%;
  transition: 500ms ease;
}

.sp-close {
  display: none;
  border-bottom: none !important;
  font-weight: bold;
}

.fa-x {
  padding-right: 20px;
}

/* main */

main {
  max-width: 1000px;
  margin: 0 auto;
}

.mainvisual {
  max-width: 700px;
  padding-top: 200px;
  margin: 0 auto;
  z-index: 1;
  padding-bottom: 50px;

}

/* about */

#about h2 {
  text-align: center;
  line-height: 1.5;
  font-size: 3rem;
  font-weight: 400;
  padding-bottom: 80px;
}

#about p {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.8;
}

/* coupon */
.coupon-container {
  margin: 0 auto;
  padding: 30px 0;
  width: 50%;
}
.coupon-img {
  border-radius: 10px;
}

.line-text {
  text-align: center;
  font-size: 1.25rem;
  padding-bottom: 20px;
}

/* menu */

.menu-container {
  width: 100%;
  justify-content: space-between;
  padding-bottom: 30px;
}
.ramen01 {
  width: 45%;
  margin: 50px;
}

.menu-text-area{
  width: 40%;
  padding-left: 50px;
}

#menu h3 {
  padding-top: 200px;
  font-size: 1.5rem;
}

#menu p {
  padding: 50px 0 ;
  line-height: 1.5;
  font-size: 1.25rem;
}

/* details */
.map-container {
  padding: 10px 5%;
  justify-content: space-between;
}

.info {
  width: 35%;
  padding: 0 5%;
}

.google-map {
  text-align: center;
  width: 60%;
  aspect-ratio: 5/4;
}

.info h3, p {
  padding-bottom: 15px;
}

.hours-table dd {
  padding-bottom: 10px;
}

.hours-table dt {
  padding-bottom: 20px;
}


/* footer */
footer {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 20px 0 10px;
  text-align: center;
}

footer ul {
  justify-content: center;
}

footer li {
  padding: 0 20px
}

footer a {
  color: #393939;
}

.fa-youtube:hover {
  color: red;
  transition: 500ms ease;
}

.fa-twitter:hover {
  color:#1C96E8;
  transition: 500ms ease;
}

.fa-instagram-square{
  background: linear-gradient(45deg, yellow, red, purple);
  background-clip: text;
  -webkit-background-clip: text;
}

.fa-instagram-square:hover {
  color: transparent;
  transition: 500ms ease;
}

.copy-right {
  font-family: "noto-sans";
  font-size: 0.6em;
  text-align: center;
  padding: 10px 0 20px;
}

.go_back {
  text-decoration: none;
  font-size: 1rem;
}
.go_back:hover {
  color: #ff7a00;
  transition: 1s;
}