@charset "utf-8";

/* common */
html {
  font-size: 16px;
}
body {
  font-size: 16px;
  line-height: 2;
  color: #736357;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
#wrapper {
  max-width: 1920px;
  overflow: hidden;
}
.inner {
  max-width: 1120px;
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: #736357;
}
a:hover {
  text-decoration: none;
  color: #FF9E6E;
  font-weight: bold;
}
ul {
  list-style-type: none;
}
h2 {
  font-weight: normal;
  font-size: 1.1em;
}
h3 {
  display: inline-block;
  text-align: center;
}
.sp {
  display: none;
}
.target {
  opacity : 0;
  transform: translateY(20px);
  transition: 1s;
}
.is-active {
	opacity: 1;
  transform: translateY(0);
}

/* ハンバーガーメニュー */
.c-hamburger {
  display: inline-block;
  text-decoration: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  position: fixed;
  z-index: 5;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #FF9E6E;
  background-color: rgba(255, 255, 255, 0.9);
}
.c-hamburger__line {
  width: 22px;
  height: 2px;
  background-color: #FF9E6E;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: all .3s;
}
.c-hamburger__line::before, .c-hamburger__line::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    transition: all .3s;
}
.c-hamburger__line::before {
    top: -6px;
}
.c-hamburger__line::after {
    top: 6px;
}
.c-drawer {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  width: 30%;
  height: 100vh;
  background-color: rgba(83, 71, 65, 0.8);
  visibility: hidden;
}
.is-drawer-active .c-hamburger__line { 
  background-color: transparent;
}
.is-drawer-active .c-hamburger__line::before,
.is-drawer-active .c-hamburger__line::after {
  top: 0;
  background-color: #FF9E6E;
}
.is-drawer-active .c-hamburger__line::before {
  transform: rotate(45deg);
}
.is-drawer-active .c-hamburger__line::after {
  transform: rotate(-45deg);
}
.is-drawer-active .c-drawer {
  visibility: visible;
}

/* header */
header .top-view {
  position: relative;
  z-index: -2;
  background: repeating-linear-gradient(45deg,
  rgba(249, 242, 237, 0.5),
  rgba(249, 242, 237, 0.5) 20px,
  transparent 0,
  transparent 50px),
  repeating-linear-gradient(315deg,
  rgba(249, 242, 237, 0.5),
  rgba(249, 242, 237, 0.5) 20px,
  transparent 0,
  transparent 50px);
  height: 80vh;
  margin-bottom: 240px;
}
header .top-img {
  position: absolute;
  top: 0;
  left: 36%;
  z-index: -1;
}
header .top-img img {
  border-radius: 0 120px 0 120px;
}
header h1 {
  padding: 16px 0;
  margin-bottom: 100px;
}
header .catch-bg {
  background: rgba(83, 71, 65, 0.8);
  width: 40%;
  height: 20%;
  position: relative;
}
header .catch-bg h2 {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
}
nav ul {
  margin-top: 160px;
  text-align: center;
  font-size: 14px;
}
nav ul li {
  margin: 16px;
}
nav ul a {
  color: #fff;
}


/* news */
#news {
  position: relative;
  text-align: center;
  margin-bottom: 280px;
}
#news .news-flame {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 700px;
  min-height: auto;
}
#news h3 {
  margin-bottom: 16px;
}
#news table {
  margin: 0 auto 32px;
}
#news tr {
  background-image: linear-gradient(to right, #FF9E6E, #FF9E6E 10px, transparent 10px);
  background-size: 20px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
#news th {
  width: 20%;
  font-weight: normal;
  padding: 16px 0;
}
#news td {
  width: 80%;
  padding: 16px 0;
}
#news a {
  background: url(../images/more02.png) no-repeat left center/contain;
  padding: 18px 30px 22px 10px;
}

/* about */
#about {
  position: relative;
  margin-bottom: 240px;
}
#about .about-img {
  border-radius: 0 120px 0 120px;
  max-width: 42%;
  position: absolute;
  left: 3%;
  top: -20%;
  z-index: 1;
}
#about .about-box {
  width: 55%;
  height: auto;
  margin-left: 43%;
  position: relative;
  text-align: center;
}
#about .about-box p {
  background: rgba(255, 158, 110, 0.95);
  padding: 130px 0 60px;
}
#about .about-box h3 {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#about .about-box .flame01 {
  position: absolute;
  top: 20%;
  left: 12%;
}
#about .about-box .flame02 {
  position: absolute;
  bottom: 8%;
  right: 12%;
}

/* menu */
#menu .menu-box {
  background: #EACCB7;
  padding: 80px 0;
  text-align: center;
  position: relative;
  margin-bottom: 240px;
}
#menu .menu-ttl {
  margin-bottom: 60px;
}
#menu .slider-box {
  width: 65%;
  margin: 0 auto;
  margin-bottom: 80px;
}
#menu .slider-box p {
  line-height: 1.5;
  padding-top: 6px;
}
#menu .slider-box img {
  margin: 0 8px;
}
#menu .slider-box img:hover{
	opacity:0.5;
	transition:0.3s;
}
#menu .more {
  background: url(../images/more02.png) no-repeat left center/contain;
  padding: 18px 30px 22px 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
}

/* info */
#info {
  margin-bottom: 240px;
}
#info .info-ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#info .info-ttl h3 {
  padding-bottom: 40px;
}
#info .info-ttl .info-flame {
  min-width: 35%;
}
#info table {
  margin: 32px 0;
}
#info table th span {
  color: #fff;
  font-weight: normal;
  background: #FF9E6E;
  border-radius: 30px;
  padding: 2px 16px;
  margin-right: 32px;
  display: inline-block;
  width: 80%;
}
#info table td {
  line-height: 1.5;
  padding: 16px 0;
}
#info .info-cont {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#info .map {
  padding-top: 8px;
}
#info .map iframe {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
}

/* footer */
footer {
  background: #534741;
  padding: 8px 0;
}
footer .copy {
  color: #fff;
  font-size: 14px;
  text-align: center;
  border: 1px solid #C7B299;
  padding: 12px 0;
  margin: 0 12px;
}

/* menuページ */
.menu-top {
  background: repeating-linear-gradient(45deg,
  rgba(249, 242, 237, 0.5),
  rgba(249, 242, 237, 0.5) 20px,
  transparent 0,
  transparent 50px),
  repeating-linear-gradient(315deg,
  rgba(249, 242, 237, 0.5),
  rgba(249, 242, 237, 0.5) 20px,
  transparent 0,
  transparent 50px);
}
.menu-top h1 {
  margin: 0;
}
#menu-list {
  text-align: center;
  background: #EACCB7;
}
.menu-title {
  margin: 80px 0;
}
.menu-details {
  margin: 0 auto;
  padding-bottom: 60px;
}
.menu-details td {
  padding: 32px 0;
  text-align: left;
}
.menu-details td span {
  color: #f86262;
  font-size: 0.8em;
}
.menu-details td:nth-child(2n+1) {
  padding-right: 60px;
}
.menu-details tr {
  background-image: linear-gradient(to right, #FF9E6E, #FF9E6E 10px, transparent 10px);
  background-size: 20px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.menu-details tr:last-child {
  background-image: none;
}



/* タブレット */
@media screen and (max-width: 960px) {
  html, body {
    font-size: 14px;
  }
  h3 {
    max-width: 50%;
    height: auto;
  }
  header .top-view {
    min-height: 500px;
    max-height: 600px;
  }
  header .top-img {
    width: 100%;
  }
  header .top-img img {
    border-radius: 0 0 0 120px;
  }
  header h1 {
    padding: 0 0;
    margin-bottom: 18%;
  }
  header h1 img {
    background: none;
    max-width: 20%;
  }
  #about .about-img {
    border-radius: 0 120px 0 120px;
    max-width: 30%;
    position: absolute;
    left: 32px;
    top: -20%;
    z-index: 2;
  }
  #about .about-box .flame01,
  #about .about-box .flame02 {
    display: none;
  }
  #about .about-box {
    margin: 0 auto;
  }
  #info .info-cont {
    flex-direction: column;
  }
}

/* スマホ */
@media screen and (max-width: 520px) {
  header .top-view {
    min-height: 250px;
    max-height: 320px;
    margin-bottom: 15%;
  }
  header .catch-bg,
  header .catch-bg h2 {
    display: none;
  }
  header h2 .sp {
    display: block;
    position: absolute;
    left: auto;
    top: 140px;
    background: rgba(83, 71, 65, 0.8);
    padding: 2px 16px;
    color: #fff;
    font-size: 12px;
  }
  #news, #about, #menu .menu-box, #info {
    margin-bottom: 160px;
  }
  #news h3 {
    margin-bottom: 8px;
  }
  #news .news-flame {
    display: none;
  }
  #news table {
    display: none;
  }
  #news ul {
    display: block;
    text-align: left;
    margin: 2em auto;
    width: 80%;
  }
  #news ul li:nth-child(2n+1) {
    font-size: 12px;
  }
  #news ul li:nth-child(2n) {
    background-image: linear-gradient(to right, #FF9E6E, #FF9E6E 10px, transparent 10px);
    background-size: 20px 2px;
    background-position: left bottom;
    background-repeat: repeat-x;
    padding: 0.5em 0;
    margin-bottom: 1em;
  }
  #about .about-img {
    left: 0;
    top: -5%;
  }
  #about .about-box {
    width: 100%;
    height: auto;
  }
  #info table {
    display: none;
  }
  #info ul {
    display: block;
    text-align: center;
    margin: 2em 0;
  }
  #info ul li span {
  display: inline-block;
  width: 80%;
  text-align: center;
  color: #fff;
  background: #FF9E6E;
  border-radius: 30px;
  }
  #info ul li:nth-child(2n) {
    padding-bottom: 1.5em;
  }
  #menu-list td {
    display: block;
    width: 100%;
    text-align: center;
  }
  .menu-details td:nth-child(2n+1) {
    padding-right: 0;
  }
}